/* ========================================
   FeatU - 静的ページスタイル
   ======================================== */

.static-page__card.help__listall_wrap{
    max-width: 640px;
    margin: auto;
}

/* 静的ページカード */
.static-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
}

.static-page__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.static-page__content {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 52px;
}

.static-page__content h2 {
    font-size: 17px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 12px;
    
}

.static-page__content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 36px;
    margin-bottom: 12px;
    
}

.static-page__content h4 {
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 8px;
    
}

.static-page__revision-date {
    text-align: right;
    color: var(--fontgray);
}

.static-page__content p {
    margin-bottom: 12px;
}

.static-page__content ul,
.static-page__content ol {
    margin-bottom: 15px;
    padding-left: 2em;
}

.static-page__content li {
    margin-bottom: 4px;
}

.static-page__content a {
    color: #0066cc;
    text-decoration: underline;
}

.static-page__content a:hover {
    text-decoration: none;
}

/* テーブル（会社概要、特商法表記用） */
.static-page__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.static-page__table th,
.static-page__table td {
    padding: 15px;
    border-bottom: 1px solid #e3e3e3;
    text-align: left;
    vertical-align: top;
}

.static-page__table th {
    width: 180px;
    font-weight: 500;
    background-color: #f9f9f9;
}

.static-page__table td {
    background-color: #fff;
}

/* ヘルプセンター用 */
.page-pages-help .static-page__content{
    font-weight: 400;
}
.static-page__content .for_helpcontent{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-left: 0;
}
.for_helpcontent li {
    list-style: none;
}
.for_helpcontent li a{
    padding: 1em .5em;
    display: flex;
    border: solid 1px var(--maincolor);
    text-decoration: none;
    color: var(--maincolor);
    text-align: center;
    border-radius: 4px;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    position: relative
}
.for_helpcontent li a::after{
    font-family: 'Material Symbols Outlined';
    content: "\f181";
    display: block;
    position: absolute;
    right: 10px;
    font-variation-settings: 'FILL' 1;
    font-size: 20px;
}
.for_helpcontent li a:hover{
    background-color: #f3dff8;
}
/* ==========================================================================
   全体・コンテナ設定
   ========================================================================== */
.qa-container {
    max-width: 840px;
    margin: 50px auto;
    color: #333;
    box-sizing: border-box;
}

/* 内部のラジオボタン等は非表示 */
.qa-container input[type="radio"],
.qa-container input[type="checkbox"] {
    display: none !important;
}
.qa-container h3{
    font-size: 20px;
    scroll-margin-top: 100px;
    color: var(--maincolor);
}
/* ==========================================================================
   タブメニュー（PC版：740px以上はスクロールバーなしで均等縮小）
   ========================================================================== */
.tab-menu-wrapper {
    position: relative;
    border-bottom: 2px solid #333; /* 下のベースラインを黒に */
}

.tab-menu {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    gap: 2px;
}

/* 通常時（非アクティブ）は背景グレー・文字ダークグレー */
.tab-label {
    display: flex;
    align-items: center; 
    justify-content: center;
    min-height: 56px;
    padding: 0 4px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    background-color: #e0e0e0;
    color: #666;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    box-sizing: border-box;
    max-width: 166px;
    white-space: normal;
    line-height: 1.1;
}

.tab-label:hover {
    background-color: #d0d0d0;
    color: #333;
}

/* ==========================================================================
   スマホ版設定（740px以下：右はみ出しスワイプ、グラデーション表示）
   ========================================================================== */
@media screen and (max-width: 740px) {
    .static-page__content .for_helpcontent{
        grid-template-columns: 1fr;
    }
    .tab-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-menu::-webkit-scrollbar {
        display: none;
        height: 0;
    }

    .tab-label {
        flex-shrink: 0;
        flex-basis: auto;
        padding: 0 20px;
    }

    /* 右側のスワイプ促進グラデーション */
    .tab-menu-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 80%);
        pointer-events: none;
        z-index: 2;
    }
}

/* ==========================================================================
   タブ切り替えのCSSロジック
   ========================================================================== */
.tab-content {
    display: none;
    padding-top: 20px;
}

/* ラジオボタンがチェックされたら、対応するlabel要素を確実に【背景黒・文字白】にします */
#sec1-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec1-tab1"],
#sec1-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec1-tab2"],
#sec1-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec1-tab3"],
#sec1-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec1-tab4"],
#sec1-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec1-tab5"],
#sec1-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec1-tab6"],

#sec2-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec2-tab1"],
#sec2-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec2-tab2"],
#sec2-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec2-tab3"],
#sec2-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec2-tab4"],
#sec2-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec2-tab5"],
#sec2-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec2-tab6"] ,

#sec3-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec3-tab1"],
#sec3-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec3-tab2"],
#sec3-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec3-tab3"],
#sec3-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec3-tab4"],
#sec3-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec3-tab5"],
#sec3-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec3-tab6"],

#sec4-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec4-tab1"],
#sec4-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec4-tab2"],
#sec4-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec4-tab3"],
#sec4-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec4-tab4"],
#sec4-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec4-tab5"],
#sec4-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec4-tab6"],

#sec5-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec5-tab1"],
#sec5-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec5-tab2"],
#sec5-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec5-tab3"],
#sec5-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec5-tab4"],
#sec5-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec5-tab5"],
#sec5-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec5-tab6"],

#sec6-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec6-tab1"],
#sec6-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec6-tab2"],
#sec6-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec6-tab3"],
#sec6-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec6-tab4"],
#sec6-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec6-tab5"],
#sec6-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec6-tab6"],

#sec7-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec7-tab1"],
#sec7-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec7-tab2"],
#sec7-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec7-tab3"],
#sec7-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec7-tab4"],
#sec7-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec7-tab5"],
#sec7-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec7-tab6"],

#sec8-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec8-tab1"],
#sec8-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec8-tab2"],
#sec8-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec8-tab3"],
#sec8-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec8-tab4"],
#sec8-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec8-tab5"],
#sec8-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec8-tab6"],

#sec9-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec9-tab1"],
#sec9-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec9-tab2"],
#sec9-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec9-tab3"],
#sec9-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec9-tab4"],
#sec9-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec9-tab5"],
#sec9-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec9-tab6"],

#sec10-tab1:checked ~ .tab-menu-wrapper .tab-menu label[for="sec10-tab1"],
#sec10-tab2:checked ~ .tab-menu-wrapper .tab-menu label[for="sec10-tab2"],
#sec10-tab3:checked ~ .tab-menu-wrapper .tab-menu label[for="sec10-tab3"],
#sec10-tab4:checked ~ .tab-menu-wrapper .tab-menu label[for="sec10-tab4"],
#sec10-tab5:checked ~ .tab-menu-wrapper .tab-menu label[for="sec10-tab5"],
#sec10-tab6:checked ~ .tab-menu-wrapper .tab-menu label[for="sec10-tab6"]{
    background-color: #333 !important;
    color: #fff !important;
}

/* 対応するコンテンツを表示 */
#sec1-tab1:checked ~ #sec1-content1,
#sec1-tab2:checked ~ #sec1-content2,
#sec1-tab3:checked ~ #sec1-content3,
#sec1-tab4:checked ~ #sec1-content4,
#sec1-tab5:checked ~ #sec1-content5,
#sec1-tab6:checked ~ #sec1-content6,

#sec2-tab1:checked ~ #sec2-content1,
#sec2-tab2:checked ~ #sec2-content2,
#sec2-tab3:checked ~ #sec2-content3,
#sec2-tab4:checked ~ #sec2-content4,
#sec2-tab5:checked ~ #sec2-content5,
#sec2-tab6:checked ~ #sec2-content6,

#sec3-tab1:checked ~ #sec3-content1,
#sec3-tab2:checked ~ #sec3-content2,
#sec3-tab3:checked ~ #sec3-content3,
#sec3-tab4:checked ~ #sec3-content4,
#sec3-tab5:checked ~ #sec3-content5,
#sec3-tab6:checked ~ #sec3-content6,

#sec4-tab1:checked ~ #sec4-content1,
#sec4-tab2:checked ~ #sec4-content2,
#sec4-tab3:checked ~ #sec4-content3,
#sec4-tab4:checked ~ #sec4-content4,
#sec4-tab5:checked ~ #sec4-content5,
#sec4-tab6:checked ~ #sec4-content6,

#sec5-tab1:checked ~ #sec5-content1,
#sec5-tab2:checked ~ #sec5-content2,
#sec5-tab3:checked ~ #sec5-content3,
#sec5-tab4:checked ~ #sec5-content4,
#sec5-tab5:checked ~ #sec5-content5,
#sec5-tab6:checked ~ #sec5-content6,

#sec6-tab1:checked ~ #sec6-content1,
#sec6-tab2:checked ~ #sec6-content2,
#sec6-tab3:checked ~ #sec6-content3,
#sec6-tab4:checked ~ #sec6-content4,
#sec6-tab5:checked ~ #sec6-content5,
#sec6-tab6:checked ~ #sec6-content6,

#sec7-tab1:checked ~ #sec7-content1,
#sec7-tab2:checked ~ #sec7-content2,
#sec7-tab3:checked ~ #sec7-content3,
#sec7-tab4:checked ~ #sec7-content4,
#sec7-tab5:checked ~ #sec7-content5,
#sec7-tab6:checked ~ #sec7-content6,

#sec8-tab1:checked ~ #sec8-content1,
#sec8-tab2:checked ~ #sec8-content2,
#sec8-tab3:checked ~ #sec8-content3,
#sec8-tab4:checked ~ #sec8-content4,
#sec8-tab5:checked ~ #sec8-content5,
#sec8-tab6:checked ~ #sec8-content6,

#sec9-tab1:checked ~ #sec9-content1,
#sec9-tab2:checked ~ #sec9-content2,
#sec9-tab3:checked ~ #sec9-content3,
#sec9-tab4:checked ~ #sec9-content4,
#sec9-tab5:checked ~ #sec9-content5,
#sec9-tab6:checked ~ #sec9-content6,

#sec10-tab1:checked ~ #sec10-content1,
#sec10-tab2:checked ~ #sec10-content2,
#sec10-tab3:checked ~ #sec10-content3,
#sec10-tab4:checked ~ #sec10-content4,
#sec10-tab5:checked ~ #sec10-content5,
#sec10-tab6:checked ~ #sec10-content6 {
    display: block;
}

/* ==========================================================================
   アコーディオン（Q&A部分）
   ========================================================================== */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.question-label {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.question-label::before {
    content: "Q.";
    color: var(--maincolor);
    margin-right: 6px;
    white-space: nowrap;
}

.question-label::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
    position: absolute;
    right: 12px;
}

.answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.answer-inner {
    padding: 20px 42px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.6;
}

/*
.answer-inner::before {
    content: "A.";
    color: #39a6e6;
    font-weight: 600;
    margin-right: 8px;
    flex-shrink: 0;
}
*/
.accordion-toggle:checked + .question-label::after {
    transform: rotate(-135deg);
}

.accordion-toggle:checked ~ .answer-content {
    max-height: inherit;
}
.page-pages-help .static-page__content .ans_small-title{
    margin-top: 1em;
    margin-bottom: .3em;
}
.answer-inner *{
    font-size: 14px;
}
.answer-inner p{
    line-height: 1.8;
}
.answer-inner ul,
.answer-inner ol{
    margin-top: .3em;
    margin-bottom: .3em;
    padding-left: 1em;
}
.answer-inner ul li,
.answer-inner ol li{
    margin-bottom: 0;
}
.strong__txt{
    font-weight: 600;
}
.answer-inner dl dt{
    margin: 0 0 .2em 0;
    font-weight: 600;
}
.answer-inner dl dd{
    margin: 0;
}
.under-txt{
    margin-top: .3em;
}

@media (max-width:740px) {
    .question-label{
        padding-right: 36px;
    }
    .answer-inner{
        padding: 12px 20px;
    }
    .tab-label{
        font-size: 13px;
        max-width: 130px;
        min-width: 130px;
        white-space: normal;
        line-height: 1.2;
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* お問い合わせセクション */
.help-page__contact-section{
    margin-top: 60px;
    padding: 32px 42px;
    border: 1px solid rgb(214 214 214);
    border-radius: 8px; 
}
.help-page__contact-section form.help-page__contact-form label{
    display: block;
    font-size: 14px; 
    margin-bottom: 6px; 
    line-height: 1;
}
.help-page__contact-section h2{
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 28px;
}

.help-page__contact-section h2 span{
    margin-left: 1em;
    font-size: 13px;
    font-weight: 400;
}
.help-page__contact-section h2 .material-symbols-outlined{
    font-size: 20px;
    color: var(--maincolor);
    margin-right: 2px;
    margin-left: 0;
    font-variation-settings: 'FILL' 1;
}
.help-page__contact {
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}
.help-formitem{
    margin-bottom: 28px;
}
.help-formitem_btn{
    text-align: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .static-page{
        padding: 0;
    }
    .static-page__content{
        margin-bottom: 0;
    }
    .static-page__card {
        padding: 30px 0px 40px;
    }

    .static-page__title {
        font-size: 18px;
    }
    .static-page__content h2{
        font-size: 16px;
    }
    .static-page__table th {
        width: 120px;
    }

    .static-page__table th,
    .static-page__table td {
        padding: 12px 10px;
        font-size: 12px;
    }
    .help-page__contact-section{
        padding: 16px;
    }
    .help-page__contact-section h2{
        flex-direction: column;
        line-height: 1.6;
    }
    .help-page__contact-section h2 .material-symbols-outlined{
        font-size: 24px;
        margin-bottom: 5px;
    }
    .static-page__content h3{
        margin-top: 28px;
    }
}

/* ==========================================================================
   ランディングページ01
   ========================================================================== */
    /* --- Layout Container --- */
    .page-pages-lp-2 .lp-02_container {
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* --- Hero Section (MV) --- */
    .page-pages-lp-2 .hero {
        padding: 60px 0;
        overflow: hidden;
    }
    .page-pages-lp-2 .hero-inner {
        display: grid;
        grid-template-columns: 432px 1fr;
        justify-content: space-between;
        align-items: center;
        gap: 0px;
    }
    .page-pages-lp-2 .hero-content {
        flex: 1;
        max-width: 500px;
    }
    .page-pages-lp-2 .hero-title {
        font-size: 43px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 24px;
    }
    .page-pages-lp-2 .hero-title span {
        color: #ba46df;
    }
    .page-pages-lp-2 .hero-lead {
        font-size: 16px;
        color: var(--fontcolor);
        margin-bottom: 35px;
        line-height: 1.8;
    }
    .page-pages-lp-2 .hero-buttons {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .page-pages-lp-2 .hero-buttons a{
        text-decoration: none;
        text-align: center;
    }
    .page-pages-lp-2 .btn-primary {
        display: inline-block;
        background: #ba46df;
        color: #fff;
        padding: 14px 36px;
        border-radius: 999px;
        font-weight: bold;
        transition: opacity 0.3s;
        font-size: 15px;
        font-weight: 400;
        border: none;
    }
    .page-pages-lp-2 .btn-primary:hover {
        opacity: 0.7;
    }
    .page-pages-lp-2 .link-more {
        color: var(--fontcolor);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
        line-height: 1;
    }
    .page-pages-lp-2 .link-more:hover{
        color: var(--maincolor);
    }
    .page-pages-lp-2 .link-more .material-symbols-outlined{
        font-size: 15px;
        color: var(--maincolor);
    }
    .page-pages-lp-2 .hero-image img {
        width: 100%;
    }

    /* --- Features Section (5 Circles) --- */
    .page-pages-lp-2 .features {
        text-align: center;
    }
    .page-pages-lp-2 .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
        justify-content: space-between;
        gap: 20px;
    }
    .page-pages-lp-2 .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .page-pages-lp-2 .feature-icon-wrap {
        margin-bottom: 15px;
    }
    .page-pages-lp-2 .feature-icon-wrap img {
        width: 80px;
        height: 80px;
    }
    .page-pages-lp-2 .feature-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .page-pages-lp-2 .feature-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    /* --- Summary Section (Cards) --- */
    .page-pages-lp-2 .summary {
        padding: 80px 0;
        background-color: #fff;
    }
    .page-pages-lp-2 .section-title {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 50px;
    }
    .page-pages-lp-2 .summary-grid {
        display: grid;
        grid-template-columns: repeat(4, 15fr);
        gap: 20px;
    }
    .page-pages-lp-2 .summary-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        border: 1px solid #f5f5f5;
    }
    .page-pages-lp-2 .card-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .page-pages-lp-2 .card-title .material-symbols-outlined{
        color: var(--maincolor);
        font-size: 26px;
    }
    .page-pages-lp-2 .card-desc {
        font-size: 13px;
        margin-bottom: 20px;
        min-height: 44px;
    }
    .page-pages-lp-2 .card-img-wrap {
        width: 100%;
        margin-top: auto;
        border-radius: 8px;
    }
    .page-pages-lp-2 .card-img-wrap img{
        max-width: 100%;
    }

    /* --- Footer CTA (Width 100% Background) --- */
    .page-pages-lp-2 .footer-cta {
        width: 100vw; /* 画面の横幅いっぱいに拡大 */
        margin-left: calc(50% - 50vw); /* 左側に引き伸ばして中央に配置 */
        margin-right: calc(50% - 50vw); /* 右側に引き伸ばして中央に配置 */
        background-color: #000;
        /* 背景画像（宇宙・ラメ風）を模した黒基調のグラデーション演出 */
        background-image: url(../images/lp/02/cv-bg.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 80px 0;
        text-align: center;
    }
    .page-pages-lp-2 .cta-title {
        font-size: 28px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 40px;
    }
    .page-pages-lp-2 .footer-cta .hero-buttons {
        justify-content: center;
    }
    .page-pages-lp-2 .footer-cta .link-more {
        color: #fff;
    }
    .page-pages-lp-2 .footer-cta .link-more:hover{
        color: var(--maincolor);
    }

    @media (max-width: 740px) {
        .page-pages-lp-2 .lp-02_container{
            padding: 0;
        }
        .page-pages-lp-2 .hero {
            padding: 40px 0;
        }
        .page-pages-lp-2 .hero-inner {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .page-pages-lp-2 .hero-content {
            max-width: 100%;
        }
        .page-pages-lp-2 .hero-title {
            font-size: 28px;
            text-align: center;
        }
        .page-pages-lp-2 .hero-lead{
            text-align: center;
        }
        .page-pages-lp-2 .hero-buttons {
            flex-direction: column;
            gap: 26px;
            width: 100%;
        }
        .page-pages-lp-2 .btn-primary {
            width: 100%;
            max-width: 280px;
        }

        .page-pages-lp-2 .features-grid {
            display: flex;
            flex-wrap: wrap; /* 折り返しを許可 */
            justify-content: center; /* 残った要素も含めて中央寄せ */
            gap: 20px;
        }
        .page-pages-lp-2 .features-grid > * {
            width: calc(50% - 10px); /* 50% から gap(20px) の半分を引く */
            box-sizing: border-box;
        }
        .page-pages-lp-2 .feature-item {
            flex: 0 0 45%;
            margin-bottom: 0px;
        }
        /* 5つめのアイテムをSP表示の中央に */
        .page-pages-lp-2 .feature-item:last-child {
            flex: 0 0 100%;
            max-width: 200px;
        }

        .page-pages-lp-2 .section-title {
            font-size: 22px;
            margin-bottom: 30px;
        }
        .page-pages-lp-2 .summary{
            padding: 40px 0;
        }
        .page-pages-lp-2 .summary-grid {
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 0 24px;
        }
        .page-pages-lp-2 .summary-card {
            padding: 32px 28px;
        }

        .page-pages-lp-2 .cta-title {
            font-size: 24px;
            line-height: 1.9;
        }
        .page-pages-lp-2 .footer-cta{
            padding: 40px 24px;
        }
    }
