@import url('/common/css/root.css');
@import url('/common/css/custom/nobody/anken_top_list.css');
@import "tailwindcss";

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: auto-phrase;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Yu Gothic', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
    font-weight: 300;
}

/* ラッパー */
#wrapper {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}

#container {
    flex: 1;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* トップウェルカム - ヒーローセクション */
.top-welcome {
    background-size: cover !important;
    background-attachment: fixed;
    background-position: 71% 50%;
    background-image: url(/common/img/fv.jpg);
    /* background: linear-gradient(135deg, rgba(69, 130, 55, 0.85) 0%, rgba(58, 111, 47, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23e8f4fd;stop-opacity:1" /><stop offset="100%" style="stop-color:%23d6eafc;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23bg)"/><polygon fill="%23ffffff" points="0,0 800,0 1200,400 0,600" opacity="0.3"/><polygon fill="%23f8f9fa" points="600,200 1920,0 1920,800 800,1080" opacity="0.4"/></svg>') center/cover; */
    color: white;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width:769px) {
    .top-welcome {
        margin-top: 80px;
    }
}

@media (max-width:768px) {
    .top-welcome {
        background-attachment: initial;
        background-size: auto;
    }

}

.top-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(234, 115, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(69, 130, 55, 0.1) 0%, transparent 50%);
}

.top-welcome__ {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 2;
}

@media (max-width:768px) {
    .top-welcome__ {
        padding: 100px 20px 60px;
    }
}

/* CMSLグリッド */
.cmslGrid {
    display: grid;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.cmslGrid--separate {
    grid-template-columns: 1.2fr 0.8fr;
}

/* ウェルカムタイトル */
.top-welcome__title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.top-welcome__text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 300;
}

.top-welcome__text--strong {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.6;
    opacity: 1;
}

/* ファンクションカードリスト */
.functionCardList {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

@media (max-width:768px) {
    .functionCardList {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 322px;
        margin: auto;
    }


}

.functionCard {
    background: rgb(52, 73, 94, .8);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 50%;
    flex-direction: column-reverse;
}

@media (min-width:769px) {
    .functionCard {
        width: 140px;
    }
}

@media (max-width:768px) {
    .functionCard {
        padding: 6.6vw 16px;
        height: 40vw;
        justify-content: center;
    }

    .functionCard:nth-child(1) {
        grid-column: 1 / -1;
        width: 50%;
        margin: auto;
        max-width: 150px;
        max-height: 150px;
    }

    .functionCardList>.functionCard:nth-child(2),
    .functionCardList>.functionCard:nth-child(3) {
        grid-column: auto;
        max-width: 150px;
        max-height: 150px;

    }
}

.functionCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.functionCard:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.functionCard:hover::before {
    opacity: 1;
}

.functionCard__iconWrap {
    margin: 0;
    flex-shrink: 0;
}

.functionCard__iconWrap span i {
    font-size: 2.5rem;
    color: var(--sub-color);
    filter: drop-shadow(0 4px 8px rgba(234, 115, 23, 0.3));
}

.functionCard__body {
    display: block;
}

.functionCard__body__title {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 8px;
    color: white;
    line-height: 1.3;
    text-align: center;
    word-break: break-all;
}

.functionCard__body__comments {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 300;
}

/* 登録ボタン */
.top-welcome__register {
    margin-bottom: 80px;
}

@media (max-width:768px) {
    .top-welcome__register {
        margin-bottom: 40px;
    }
}

.top-welcome__register__ {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    list-style: none;
    flex-wrap: wrap;
}

@media (max-width:768px) {
    .top-welcome__register__link {
        width: 100%;
    }
}

.top-welcome__register__link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.top-welcome__register__link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.top-welcome__register__link a:hover::before {
    left: 100%;
}

.top-welcome__register__link--n a {
    background: var(--sub-gradation-color);
    color: white;
    box-shadow: 0 6px 20px rgba(234, 115, 23, 0.3);
    font-family: var(--font-base);
}

.top-welcome__register__link--n a:hover {
    background: #d4640f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 115, 23, 0.4);
}

.top-welcome__register__link--c a {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-family: var(--font-base);
}

.top-welcome__register__link--c a:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* 簡単検索フォーム */
.easySearchForm {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.easySearchForm::before {
    content: '福祉M&A案件を探す';
    display: block;
    text-align: center;
    margin-bottom: 28px;
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: var(--font-base);
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.cmn-stylishSelect {
    position: relative;
}

.cmn-stylishSelect--w100 {
    width: 100%;
}

.cmn-stylishSelect select {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border: 2px solid #e9ecef;
    font-size: 0.95rem;
    background: white;
    appearance: none;
    color: #333;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cmn-stylishSelect select:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(69, 130, 55, 0.1);
}

.cmn-stylishSelect .fa-angle-down {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 1.1rem;
}

.easySearchForm__crossIcon {
    text-align: center;
    color: #adb5bd;
    font-size: 1.2rem;
}

.easySearchForm__submit .cmn-stylishBtn {
    background: var(--main-gradation-color);
    color: white;
    padding: 14px 28px;
    border: none;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(69, 130, 55, 0.3);
}

.easySearchForm__submit .cmn-stylishBtn:hover {
    background: linear-gradient(135deg, #3a6f2f 0%, #2d5a25 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(69, 130, 55, 0.4);
}

/* メインコンテンツ */
.l-main.nobody {
    background: #f8f9fa;
    padding: 45px 0;
    margin-top: 45px;
    margin-bottom: 45px;
}

.l-main article {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 共通インデックスエリア */
.cmn_index_area {
    margin-bottom: 100px;
    background: white;
    padding: 80px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.cmn_index_area__title {
    font-size: 2.2rem;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: var(--font-base);
}

.cmn_index_area__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sub-gradation-color);
}

.cmn_index_area__title img {
    width: 100%;
    max-width: 300px;
    margin: auto;
}

/* 新着案件 */
.job_new_list {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    position: relative;
    overflow: scroll;
}

@media (max-width:768px) {
    .job_new_list {
        padding: initial;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

/* 業種検索 */
.search_card_list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
}

.search_card_list ul li {
    background: white;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    overflow: hidden;
    position: relative;
}

.search_card_list ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(69, 130, 55, 0.02) 0%, rgba(234, 115, 23, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search_card_list ul li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.search_card_list ul li:hover::before {
    opacity: 1;
}

.search_card_list ul li.BK001 {
    border-left-color: var(--sub-color);
}

.search_card_list ul li.BK002 {
    border-left-color: #4285f4;
}

.search_card_list ul li.BK003 {
    border-left-color: #34a853;
}

.search_card_list ul li.BK004 {
    border-left-color: #ea4335;
}

.search_card_list ul li.BK005 {
    border-left-color: #9c27b0;
}

.search_card_list ul li.BK006 {
    border-left-color: var(--main-color);
}

.search_card_list ul li.BK007 {
    border-left-color: #ff9800;
}

.search_card_list ul li.BK008 {
    border-left-color: #795548;
}

.search_card_list ul li.BK009 {
    border-left-color: #607d8b;
}
.search_card_list ul li.BK010 {
    border-left-color: #3f51b5;
    /* Indigo */
}

.search_card_list ul li.BK011 {
    border-left-color: #00bcd4;
    /* Cyan */
}

.search_card_list ul li.BK012 {
    border-left-color: #8bc34a;
    /* Light Green */
}

.search_card_list ul li.BK013 {
    border-left-color: #e91e63;
    /* Pink */
}

.search_card_list ul li.BK014 {
    border-left-color: #cddc39;
    /* Lime */
}

.search_card_list ul li.BK015 {
    border-left-color: #9e9e9e;
    /* Grey */
}

.search_card_list ul li a {
    display: block;
    padding: 28px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.search_card_list ul li a:hover {
    color: var(--main-color);
}

/* ログインセクション */
.login_sc {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.login_sc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="%23458237" opacity="0.05"/></svg>') repeat;
    background-size: 40px 40px;
}

.sc_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.cmn-section.sc_message,
.cmn-section.sc_form {
    margin: initial;
    width: 100%;
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.cmn-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.sectionTitle {
    background: linear-gradient(135deg, var(--main-color) 0%, #3a6f2f 100%);
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: var(--font-base);
}

.cmn-section__body {
    padding: 32px;
}

/* ボタンリスト */
.sc_buttonList {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sc_buttonList__item .button {
    display: block;
    padding: 16px;
    background: var(--sub-gradation-color);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 300;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(234, 115, 23, 0.25);
    font-family: var(--font-base);
}

.sc_buttonList__item .button:hover {
    background: linear-gradient(135deg, #d4640f 0%, #c05a0e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 115, 23, 0.35);
}

/* ログインフォーム */
.loginForm__form {
    margin-bottom: 20px;
}

.loginForm__form dd {
    margin-bottom: 16px;
}

.loginForm__form input[type="text"],
.loginForm__form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.loginForm__form input[type="text"]:focus,
.loginForm__form input[type="password"]:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(69, 130, 55, 0.1);
}

.loginForm__auto {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.loginForm__auto label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.loginForm__button input[type="submit"] {
    width: 100%;
    padding: 16px;
    background: var(--main-gradation-color);
    color: white;
    border: none;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: var(--font-base);
    box-shadow: 0 4px 15px rgba(69, 130, 55, 0.25);
}

.loginForm__button input[type="submit"]:hover {
    background: linear-gradient(135deg, #3a6f2f 0%, #2d5a25 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 130, 55, 0.35);
}

.loginForm__reminder {
    text-align: center;
    margin-top: 16px;
}

.loginForm__reminder a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.loginForm__reminder a:hover {
    color: var(--main-color);
    text-decoration: underline;
}



/* レスポンシブ */
@media (max-width: 1200px) {

    .globalNav__list {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cmn_index_area {
        padding: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .cmslGrid--separate {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 40px;
    }

    .sc_list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .easySearchForm {
        padding: 32px;
    }

    .login_sc {
        padding: 40px;
    }

    .cmn_index_area {
        padding: 50px 32px;
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {


    .header__ {
        padding-right: 80px;
        height: 70px;
    }

    .headerMenu {
        display: none;
    }

    .globalNav__list {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .globalNav__list li a {
        padding: 12px 20px;
    }

    .globalNav {
        margin-top: 70px;
    }



    .top-welcome__title {
        font-size: 2.6rem;
        line-height: 1.2;
    }

    .top-welcome__text--strong {
        font-size: 1rem;
        font-weight: 400;
    }

    .formGrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .easySearchForm__crossIcon {
        display: none;
    }

    .top-welcome__register__ {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-welcome__register__link a {
        width: 100%;
        box-sizing: border-box;
    }

    .cmn_index_area__title {
        font-size: 1.8rem;
    }

    .search_card_list ul {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .search_card_list ul li a {
        padding: 20px;
        font-size: 0.95rem;
    }

    .footerMenu {
        /* flex-direction: column; */
        text-align: center;
        gap: 16px;
    }

    .easySearchForm {
        padding: 24px;
    }

    .login_sc {
        padding: 32px 24px;
    }

    .l-main article {
        padding: 0 20px;
    }

    .cmn_index_area {
        padding: 40px 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .top-welcome__title {
        font-size: 2.6rem;
        font-weight: 700;
    }

    .easySearchForm {
        padding: 20px;
    }

    .cmn-section__body {
        padding: 20px;
    }

    .sectionTitle {
        padding: 16px;
        font-size: 1.1rem;
    }

    .cmn_index_area {
        padding: 32px 0px 0;
    }
}

/* アニメーション効果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cmn_index_area {
    animation: fadeInUp 0.6s ease forwards;
}

.functionCard {
    animation: fadeInUp 0.6s ease forwards;
}

/* フォーカスアクセシビリティ */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

/* スクロールアニメーション */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------------------------------------------------------------------------------------------






















               セクションスタイル




















------------------------------------------------------------------------------------------------------------------------------------ */

.bgImage {
    width: 100%;
    height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-image: url(/common/img/index/bgimage.jpg);
}

@media (max-width:768px) {
    .bgImage {
        background-attachment: initial;
    }
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--main-color);
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 0.02em;
    font-family: var(--font-base);
    word-break: auto-phrase;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2d5016, #4a7c59);
    display: block;
    margin: 25px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    word-break: auto-phrase;
}

/* 上品なカードデザイン */
.elegant-card {
    background: #ffffff;
    border: 1px solid #e3e6ea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.elegant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #2d5016;
}

.elegant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d5016, #4a7c59);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elegant-card:hover::before {
    opacity: 1;
}

/* 成約実績セクション */
.achievements {
    background: linear-gradient(135deg, #1a472a 0%, #2d5016 100%);
    color: white;
    position: relative;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    pointer-events: none;
}

@media (max-width:768px) {
    .inner {
        padding: 0 20px;
    }
}

.achievements .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    font-family: "Georgia", serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
}

/* お客様の声セクション */
.testimonials {
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px double #ced4da;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    background-size: cover;
    background-position: center;
}

.support-item:nth-of-type(1) .testimonial-image {
    background-image: url('/common/img/index/sennin.webp');
}

.support-item:nth-of-type(2) .testimonial-image {
    background-image: url('/common/img/index/shigyo.jpg');
}

.support-item:nth-of-type(3) .testimonial-image {
    background-image: url('/common/img/index/himitsu.jpg');
}

.support-item:nth-of-type(4) .testimonial-image {
    background-image: url('/common/img/index/zisseki.jpg');
}

.testimonial-image i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #2d5016;
}

.testimonial-image .image-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-image .image-caption {
    font-size: 0.85rem;
    text-align: center;
    padding: 0 15px;
    opacity: 0.8;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #495057;
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3rem;
    color: #2d5016;
    font-family: "Georgia", serif;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #2d5016;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* M&Aの流れセクション */
.process {
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    padding: 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
    position: relative;
}

.step-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    border: 3px solid white;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 20px;
}

.step-description {
    color: #6c757d;
    line-height: 1.7;
}

/* サポート体制セクション */
.support {
    background: #ffffff;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.support-item {
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.2);
    transition: all 0.3s ease;
}

.support-item:hover .support-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.3);
}

.support-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 20px;
}

.support-description {
    color: #6c757d;
    line-height: 1.7;
}

/* 市場動向セクション */
.market-trends {
    background: #f8f9fa;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url(/common/img/index/bgimage.jpg);
}

.market-trends::before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 106%;
    background: rgb(255, 255, 255, .7);
    top: -1px;
    left: 0;
}

.market-trends .section-subtitle {
    position: relative;
    color: #333;
    z-index: 2;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.trend-card {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.trend-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.trend-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 20px;
}

.trend-content {
    color: #6c757d;
    line-height: 1.7;
}

/* FAQセクション */
.faq {
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e3e6ea;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: #2d5016;
    color: white;
}

.faq-icon {
    margin-right: 15px;
    font-size: 1.3rem;
    color: #2d5016;
    width: 25px;
}

.faq-item.active .faq-icon {
    color: white;
}

.faq-question-text {
    flex: 1;
    font-weight: 500;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 30px;
    color: #6c757d;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 25px 30px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #2d5016;
    font-weight: bold;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: white;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, #1a472a 0%, #2d5016 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

@media (max-width:768px) {
    .cta-content {
        padding: 0 20px;
    }
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

@media (max-width:768px) {
    .cta-title {
        font-size: 1.8rem;
        /* word-break: keep-all;
        overflow-wrap: anywhere; */
    }

}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (max-width:768px) {
    .cta-description {
        font-size: 16px;
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* 画像とコンテンツのレイアウト */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.content-text {
    padding: 20px 0;
}

.content-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-grid,
    .testimonial-grid,
    .process-steps,
    .support-grid,
    .trends-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .testimonial-card,
    .step-card,
    .support-item,
    .trend-card {
        padding: 30px;
    }

    .faq-question {
        padding: 20px;
    }

    .testimonial-image {
        height: 150px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {

    .support-grid,
    .trends-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-with-image {
        gap: 40px;
    }
}

/* アニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}