/*==================================================
# 共通
==================================================*/
:root {
    /* テーマカラー（TV通販LP：緑系 / Figmaより取得） */
    --color-text: #040000;
    --color-green-light: #00D5A0;
    --color-green-dark: #006F53;
    --color-green-shadow: #83D487;
    --color-green-pale: #BAFFBA;
    --color-footer-bg: #BAFFBA;
    --color-red: #FF2A09;
    --gradient-btn: linear-gradient(180deg, var(--color-green-light) 0%, var(--color-green-dark) 100%);
    --gradient-text: linear-gradient(180deg, var(--color-green-dark) 0%, var(--color-green-light) 100%);
    --font-hiragino: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(14px, calc((16 * 100vw) / 1440), 16px);
    letter-spacing: calc(0.64 / 16 * 1em);
    color: var(--color-text);
}


@media screen and (min-width: 768px) {
    .sp-only {
    display: none!important;
}
}

@media screen and (min-width: 1025px) {
    .u-tab-show {
    display: none!important;
}
}


@media screen and (max-width: 1024px) {
    .u-tab-none {
        display: none!important;
    }
}

@media screen and (max-width: 767px) {

    .pc-only {
        display: none!important;
    }
}

/* 緑グラデーション文字 */
.u-grad-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* 黄色マーカー */
.u-marker {
    background: linear-gradient(#FBFF00, #FBFF00) no-repeat left bottom / 100% clamp(10px, calc(16 * 100vw / 1440), 16px);
    padding: 0 2px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .u-marker {
        background-size: 100% 8px;
    }
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(24px, calc(40 * 100vw / 1440), 40px);
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: #1F1F1F;
}

.section-title__line {
    display: block;
    font-weight: 700;
}

.section-title__lg {
    font-size: clamp(28px, calc(48 * 100vw / 1440), 48px);
    letter-spacing: 0.08em;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .section-title {
        letter-spacing: 0;
    }
}

/* ボタン（白ピル型＋黒枠＋ライトグリーン影） */
.common-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
    max-width: 500px;
    min-height: 100px;
    border-radius: 50px;
    text-align: center;
    background: #fff;
    border: 2px solid #000;
    padding: 16px 60px;
    box-shadow: 8px 8px var(--color-green-pale);
    position: relative;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .common-btn {
        padding: 8px 40px;
        max-width: 320px;
        min-height: 56px;
        box-shadow: 4px 4px var(--color-green-pale);
    }
}


.common-btn:hover {
    transform: translate(8px, 8px);
    box-shadow: 0 0 var(--color-green-pale);
}

@media screen and (max-width: 767px) {
    .common-btn:hover {
        transform: translate(5px, 5px);
    }
}

/* 右矢印（▶） */
.common-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 13px;
    height: 18px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: var(--color-green-dark);
}

@media screen and (max-width: 767px) {
    .common-btn::after {
        right: 18px;
        width: 10px;
        height: 14px;
    }
}

.common-btn__text {
    color: var(--color-green-dark);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: calc(2.24 / 28 * 1em);
}

@media screen and (max-width: 767px) {
    .common-btn__text {
        font-size: 18px;
    }
}

@media screen and (max-width: 374px) {
    .common-btn {
        padding: calc(12 * 100vw / 375) calc(48 * 100vw / 375);
        max-width: calc(320 * 100vw / 375);
        min-height: calc(70 * 100vw / 375);
    }

    .common-btn::after {
        right: calc(18 * 100vw / 375);
        width: calc(10 * 100vw / 375);
        height: calc(14 * 100vw / 375);
    }

    .common-btn__text {
        font-size: calc(18 * 100vw / 375);
    }
}




/*==================================================
# ヘッダー
==================================================*/
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05);
}

.header__inner {
    padding: 10px 30px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    max-width: 240px;
    width: 100%;
}

.header__button-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.header__button {
    display: block;
    transition: all 0.3s ease 0s;
    max-width: 280px;
    border-radius: 50px;
    background: var(--gradient-btn);
    padding: 15px 30px 15px 44px;
    box-shadow: 4px 4px var(--color-green-shadow), 4px 6px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}

.header__button:hover {
    transform: translate(4px, 4px);
    box-shadow: 0 0 var(--color-green-shadow), 0 2px 4px rgba(0, 0, 0, 0.25);
}


.header__button::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    width: 16px;
    height: 16px;
    background-image: url(../img/common/icon_mail.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.header__button::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 8px;
    height: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(../img/common/icon_right.svg);
}

.header__button-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: calc(0.8 / 16 * 1em);

}

@media screen and (max-width: 767px) {
    .header__inner {
        padding: 12px;
        gap: 23px;
    }

    .header__logo {
        max-width: 120px;
    }

    .header__button {
        max-width: 203px;
        padding: 8px 28px 8px 33px;
    }

    .header__button::before {
        left: 12px;
    }

    .header__button::after {
        right: 12px;
    }

    .header__button-text {
        font-size: 13px;
    }
}

/* 374px以下は vw で縮小（375基準） */
@media screen and (max-width: 374px) {
    .header__inner {
        padding: calc(12 * 100vw / 375);
        gap: calc(23 * 100vw / 375);
    }

    .header__logo {
        max-width: calc(120 * 100vw / 375);
    }

    .header__button {
        max-width: calc(203 * 100vw / 375);
        padding: calc(8 * 100vw / 375) calc(28 * 100vw / 375) calc(8 * 100vw / 375) calc(33 * 100vw / 375);
    }

    .header__button::before {
        left: calc(12 * 100vw / 375);
    }

    .header__button::after {
        right: calc(12 * 100vw / 375);
    }

    .header__button-text {
        font-size: calc(13 * 100vw / 375);
    }
}




/*==================================================
# TOP
==================================================*/
/* FV */
.index-fv {
    position: relative;
    background: #fff url(../img/top/index_fv_bg.jpg) no-repeat center top;
    background-size: 100% auto;
    overflow: hidden;
}

.index-fv__inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    min-height: clamp(400px, calc(590 * 100vw / 1440), 590px);
}

.index-fv__content {
    position: relative;
    z-index: 2;
    padding: clamp(40px, calc(68 * 100vw / 1440), 68px) 0 0 clamp(30px, calc(80 * 100vw / 1440), 80px);
}

/* タイトル */
.index-fv__title {
    font-family: var(--font-hiragino);
    font-weight: 700;
    color: #000;
}

.index-fv__title-row {
    display: flex;
    align-items: baseline;
    width: fit-content;
    font-size: clamp(20px, calc(40 * 100vw / 1440), 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 0 16px 10px 0;
    margin-bottom: clamp(10px, calc(18 * 100vw / 1440), 18px);
    background: linear-gradient(#000, #000) no-repeat left bottom / 100% 1.6px;
}

.index-fv__title-row:last-child {
    margin-bottom: 0;
}

/* 数字（Oswald） */
.index-fv__num {
    font-family: var(--font-oswald);
    font-weight: 600;
    font-size: clamp(28px, calc(56 * 100vw / 1440), 56px);
    letter-spacing: 0.05em;
}

.index-fv__num--lg {
    font-size: clamp(36px, calc(72 * 100vw / 1440), 72px);
    letter-spacing: 0.02em;
}

/* 緑グラデーション文字 */
.index-fv__grad {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.index-fv__grad--sm {
    font-size: clamp(24px, calc(48 * 100vw / 1440), 48px);
    letter-spacing: 0.05em;
    font-weight: 700;
}

.index-fv__grad--md {
    font-size: clamp(28px, calc(56 * 100vw / 1440), 56px);
    letter-spacing: 0.05em;
}

.index-fv__grad--lg {
    font-size: clamp(32px, calc(64 * 100vw / 1440), 64px);
    letter-spacing: 0.05em;
}

.index-fv__grad--xl {
    font-size: clamp(34px, calc(68 * 100vw / 1440), 68px);
    letter-spacing: 0.06em;
}

/* リード文 */
.index-fv__lead {
    margin-top: clamp(14px, calc(24 * 100vw / 1440), 24px);
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(16px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #161616;
    letter-spacing: 0;
}

.index-fv__lead-em {
    font-weight: 700;
    color: var(--color-red);
}

/* FVボタン */
.index-fv__button-wrapper {
    margin-top: clamp(20px, calc(32 * 100vw / 1440), 32px);
    max-width: 617px;
    display: flex;
    justify-content: center;
}

.index-fv__button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 398px;
    min-height: 56px;
    border-radius: 50px;
    background: var(--gradient-btn);
    padding: 10px 40px;
    transition: all 0.3s ease 0s;
}

.index-fv__button:hover {
    opacity: 0.8;
}

.index-fv__button::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 8px;
    height: 12px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #fff;
}

.index-fv__button-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: calc(0.8 / 16 * 1em);
}

/* メイン画像（楕円マスク／ACF管理） */
.index-fv__image {
    position: absolute;
    z-index: 1;
    top: clamp(-98px, calc(-98 * 100vw / 1440), 0px);
    right: clamp(-36px, calc(-36 * 100vw / 1440), -18px);
    width: clamp(360px, calc(779.244 * 100vw / 1440), 779.244px);
    aspect-ratio: 779.244 / 636.4;
    border-radius: 50%;
    overflow: hidden;
}

.index-fv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テレビイラスト（擬似要素） */
.index-fv__inner::after {
    content: "";
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: clamp(4px, calc(8 * 100vw / 1440), 8px);
    width: clamp(140px, calc(263 * 100vw / 1440), 263px);
    aspect-ratio: 263 / 240;
    background: url(../img/top/index_fv_tv.png) no-repeat center center / contain;
    pointer-events: none;
}

/* キャッチコピー帯 */
.index-fv__catch {
    position: relative;
    z-index: 2;
    background-color: var(--color-green-pale);
    padding: clamp(16px, calc(26 * 100vw / 1440), 26px) clamp(20px, calc(40 * 100vw / 1440), 40px);
    text-align: center;
}

.index-fv__catch-text {
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(30 * 100vw / 1440), 30px);
    line-height: 1.5;
    color: #161616;
}

/* SP */
@media screen and (max-width: 767px) {
    /* 背景はヘッダー下〜キャッチ帯の直前（inner）までを覆う */
    .index-fv {
        background-image: none;
    }

    .index-fv__inner {
        min-height: 0;
        background: url(../img/top/index_fv_bg_sp.jpg) no-repeat center top / cover;
        display: flex;
        flex-direction: column;
        padding: 30px 16px 28px;
    }

    /* タイトル→リード→画像→ボタン の順に並べ替え */
    .index-fv__content {
        display: contents;
    }

    .index-fv__title {
        order: 1;
    }

    .index-fv__lead {
        order: 2;
    }

    .index-fv__image {
        order: 3;
    }

    .index-fv__button-wrapper {
        order: 4;
    }

    .index-fv__title {
        margin-left: 8px;
    }

    .index-fv__title-row {
        font-size: 28px;
        background-size: 100% 1.6px;
        padding-bottom: 8px;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .index-fv__num {
        font-size: 40px;
    }

    .index-fv__num--lg {
        font-size: 40px;
    }

    .index-fv__grad--sm {
        font-size: 28px;
    }

    .index-fv__grad--md {
        font-size: 28px;
    }

    .index-fv__grad--lg {
        font-size: 36px;
    }

    .index-fv__grad--xl {
        font-size: 36px;
    }

    .index-fv__lead {
        margin-top: 16px;
        font-size: 15px;
    }

    .index-fv__lead-em {
        font-size: 16px;
    }

    .index-fv__button-wrapper {
        max-width: 100%;
        margin-top: 20px;
    }

    .index-fv__button {
        max-width: 340px;
        min-height: 56px;
        padding: 10px 36px 10px 22px;
    }

    .index-fv__button-text {
        font-size: 14px;
    }

    /* 楕円は横長（340×205）に */
    .index-fv__image {
        position: static;
        width: 100%;
        aspect-ratio: 340 / 205;
        margin: 16px auto 0;
    }

    /* テレビイラスト：画像右下に重ねて表示 */
    .index-fv__inner::after {
        width: 132px;
        right: 16px;
        bottom: 91px;
    }

    .index-fv__catch {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 104px;
        padding: 16px 24px;
    }

    .index-fv__catch-text {
        font-size: 16px;
        text-align: center;
    }
}




/* introduction */
.index-intro {
    padding-top: clamp(50px, calc(80 * 100vw / 1440), 80px);
}

.index-intro__inner {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

/* タイトル */
.index-intro__title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(24px, calc(40 * 100vw / 1440), 40px);
    line-height: 1.35;
    letter-spacing: 0.08em;
    color: #1F1F1F;
    margin-bottom: clamp(-22px, calc(-22 * 100vw / 1440), -12px);
}

.index-intro__title-line {
    display: block;
    font-weight: 700;
}

.index-intro__title-lg {
    font-size: clamp(28px, calc(48 * 100vw / 1440), 48px);
    letter-spacing: 0.08em;
    font-weight: 700;
}

/* 黄色マーカー */
.index-intro__title-em {
    background: linear-gradient(#FBFF00, #FBFF00) no-repeat left bottom / 100% clamp(10px, calc(16 * 100vw / 1440), 16px);
    padding: 0 2px;
    font-weight: 700;
}

/* 緑グラデーション文字 */
.index-intro__grad {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* カード */
.index-intro__card {
    background: rgba(186, 255, 186, 0.2);
    border-radius: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: clamp(40px, calc(74 * 100vw / 1440), 74px) clamp(16px, calc(40 * 100vw / 1440), 40px) clamp(30px, calc(60 * 100vw / 1440), 60px);
}

.index-intro__list {
    display: flex;
    justify-content: center;
    gap: clamp(24px, calc(50 * 100vw / 1440), 50px);
}

.index-intro__item {
    width: 260px;
    flex-shrink: 1;
}

.index-intro__item-title {
    position: relative;
    padding-left: 36px;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(18px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.5;
    color: #161616;
    white-space: nowrap;
}

.index-intro__item-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 24px;
    height: 24px;
    background: url(../img/common/icon_check_orange.svg) no-repeat center center / contain;
}

.index-intro__item-text {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

/* 下部リード文 */
.index-intro__lead {
    margin-top: clamp(24px, calc(40 * 100vw / 1440), 40px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(20 * 100vw / 1440), 20px);
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #161616;
}

.index-intro__lead-em {
    font-weight: 700;
    color: var(--color-red);
}

/* SP */
@media screen and (max-width: 767px) {
    .index-intro {
        padding-top: 40px;
    }

    .index-intro__inner {
        width: calc(100% - 32px);
    }

    .index-intro__title {
        margin-bottom: -14px;
    }

    .index-intro__title-line {
        display: inline;
        margin-right: -10px;
    }

    .index-intro__title-em {
        background-size: 100% 8px;
    }

    .index-intro__card {
        border-radius: 16px;
        padding: 44px 21px 40px;
    }

    .index-intro__list {
        flex-direction: column;
        gap: 28px;
    }

    .index-intro__item {
        width: 100%;
    }

    .index-intro__item-title {
        white-space: normal;
        font-size: 20px;
        padding-left: 32px;
    }

    .index-intro__item-title::before {
        top: 4px;
        transform: none;
        width: 20px;
        height: 20px;
    }

    .index-intro__item-text {
        margin-top: 12px;
        font-size: 16px;
    }

    .index-intro__lead {
        margin-top: 30px;
        text-align: left;
        font-size: 18px;
    }
}




/* reason */
.index-reason {
    padding-top: clamp(60px, calc(100 * 100vw / 1440), 100px);
    padding-bottom: clamp(60px, calc(80 * 100vw / 1440), 80px);
}

.index-reason__inner {
    width: min(940px, calc(100% - 40px));
    margin: 0 auto;
}

.index-reason__list {
    margin-top: clamp(24px, calc(40 * 100vw / 1440), 40px);
}

.index-reason__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(30px, calc(80 * 100vw / 1440), 80px);
    margin-top: clamp(40px, calc(60 * 100vw / 1440), 60px);
}

.index-reason__item:first-child {
    margin-top: 0;
}

.index-reason__item--reverse {
    flex-direction: row-reverse;
}

.index-reason__body {
    width: 560px;
    flex-shrink: 1;
}

/* Reason1 などのラベル */
.index-reason__label {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(18px, calc(24 * 100vw / 1440), 24px);
    line-height: 1;
    letter-spacing: 0.04em;
}

.index-reason__item-title {
    margin-top: 16px;
    width: fit-content;
    padding-bottom: 6px;
    background: linear-gradient(180deg, #006F53 0%, #00D5A0 100%) no-repeat left bottom / 100% 2px;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(20px, calc(28 * 100vw / 1440), 28px);
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #161616;
}

.index-reason__text {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

/* 補足（Reason1） */
.index-reason__note {
    margin-top: 20px;
    margin-left: 40px;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

/* 箇条書き（Reason2） */
.index-reason__points {
    margin-top: 16px;
    margin-left: 20px;
}

.index-reason__point {
    position: relative;
    padding-left: 24px;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

.index-reason__point::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-green-dark);
    font-weight: 600;
}

.index-reason__image {
    width: clamp(220px, calc(300 * 100vw / 1440), 300px);
    flex-shrink: 0;
}

.index-reason__image img {
    width: 100%;
    height: auto;
}

/* SP：ラベル→見出し→イラスト→本文 の順に並べ替え */
@media screen and (max-width: 767px) {
    .index-reason {
        padding-top: 50px;
    }

    .index-reason__inner {
        width: calc(100% - 32px);
    }

    .index-reason__item,
    .index-reason__item--reverse {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 40px;
    }

    .index-reason__body {
        display: contents;
    }

    .index-reason__label {
        order: 1;
        font-size: 20px;
    }

    .index-reason__item-title {
        order: 2;
        margin-top: 8px;
        font-size: 20px;
        white-space: normal;
    }

    .index-reason__image {
        order: 3;
        width: 240px;
        margin: 24px auto 0;
    }

    .index-reason__text {
        order: 4;
        margin-top: 16px;
    }

    .index-reason__note {
        order: 5;
        margin-top: 16px;
        margin-left: 0;
    }

    .index-reason__points {
        order: 5;
        margin-top: 16px;
        margin-left: 10px;
    }
}




/* results */
.index-results {
    background-color: #F1FFF1;
    padding: clamp(50px, calc(80 * 100vw / 1440), 80px) 20px;
}

.index-results__inner {
    max-width: 920px;
    margin: 0 auto;
}

.index-results__lead {
    margin-top: clamp(24px, calc(40 * 100vw / 1440), 40px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #161616;
}

/* カード（背景に棒グラフイラスト） */
.index-results__cards {
    position: relative;
    margin-top: clamp(24px, calc(36 * 100vw / 1440), 36px);
}

.index-results__cards::before {
    content: "";
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 100%);
    aspect-ratio: 720 / 490;
    background: url(../img/top/index_results_chart.png) no-repeat center top / contain;
    opacity: 0.4;
    pointer-events: none;
}

.index-results__list {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: clamp(20px, calc(40 * 100vw / 1440), 40px);
}

.index-results__card {
    width: 280px;
    flex-shrink: 1;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--color-green-dark);
    border-radius: 24px;
    padding: 32px 18px 24px;
    text-align: center;
}

/* 金額（黄色マーカー付き） */
.index-results__num {
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(#FBFF00, #FBFF00) no-repeat left bottom / 100% 13px;
    padding: 0 4px;
    color: var(--color-red);
    line-height: 1;
    white-space: nowrap;
}

.index-results__num-value {
    font-family: var(--font-oswald);
    font-weight: 600;
    font-size: clamp(44px, calc(60 * 100vw / 1440), 60px);
}

.index-results__num-unit {
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(30px, calc(40 * 100vw / 1440), 40px);
    letter-spacing: 0.04em;
}

.index-results__cat {
    margin-top: 10px;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(20px, calc(24 * 100vw / 1440), 24px);
    line-height: 1;
    letter-spacing: 0.04em;
    color: #161616;
}

.index-results__desc {
    margin-top: 28px;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

/* 下向き矢印 */
.index-results__arrow {
    margin: clamp(24px, calc(40 * 100vw / 1440), 40px) auto 0;
    width: min(400px, 60%);
    height: clamp(28px, calc(40 * 100vw / 1440), 40px);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: linear-gradient(180deg, #83D487 0%, #BAFFBA 100%);
}

.index-results__note {
    margin-top: clamp(20px, calc(32 * 100vw / 1440), 32px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #161616;
}

/* それがTV通販です！ */
.index-results__catch {
    margin-top: clamp(14px, calc(20 * 100vw / 1440), 20px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(28px, calc(48 * 100vw / 1440), 48px);
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #1F1F1F;
}

.index-results__catch-em {
    font-weight: 700;
    font-size: clamp(32px, calc(56 * 100vw / 1440), 56px);
    color: var(--color-red);
}

.index-results__catch-em .u-marker {
    font-weight: 700;
}

.index-results__illusts {
    margin-top: clamp(24px, calc(40 * 100vw / 1440), 40px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(20px, calc(42 * 100vw / 1440), 42px);
}

.index-results__illusts img {
    width: auto;
    height: clamp(130px, calc(193 * 100vw / 1440), 193px);
}

/* results直後のCTAは隙間なし */
.index-results + .cta {
    margin-top: 0;
}

/* SP */
@media screen and (max-width: 767px) {
    .index-results {
        padding: 40px 20px;
    }

    .index-results__lead {
        font-size: 16px;
    }

    .index-results__list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .index-results__card {
        width: min(100%, 300px);
        padding: 32px 20px 24px;
    }

    .index-results__cards::before {
        top: 188px;
        width: min(320px, 100%);
    }

    .index-results__num {
        background-size: 100% 8px;
    }

    .index-results__num-value {
        font-size: 48px;
    }

    .index-results__num-unit {
        font-size: 32px;
    }

    .index-results__cat {
        font-size: 20px;
    }

    .index-results__desc {
        margin-top: 20px;
    }

    .index-results__arrow {
        width: 280px;
        height: 28px;
    }

    .index-results__note {
        font-size: 18px;
    }

    .index-results__catch {
        font-size: 24px;
    }

    .index-results__catch-em {
        font-size: 28px;
    }

    .index-results__catch-em .u-marker {
        background-size: 100% 8px;
    }

    .index-results__illusts img {
        height: 128px;
    }
}




/* flow */
.index-flow {
    background-color: #F4F4F4;
    padding: clamp(50px, calc(80 * 100vw / 1440), 80px) 20px;
}

.index-flow__inner {
    max-width: 994px;
    margin: 0 auto;
}

.index-flow__lead {
    margin-top: clamp(24px, calc(38 * 100vw / 1440), 38px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #161616;
}

.index-flow__card {
    margin-top: clamp(24px, calc(40 * 100vw / 1440), 40px);
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: clamp(30px, calc(50 * 100vw / 1440), 50px) clamp(20px, calc(80 * 100vw / 1440), 80px) clamp(40px, calc(70 * 100vw / 1440), 70px);
}

/* ステップごとのカラー */
.index-flow__step--01 { --step-color: #D4E88B; }
.index-flow__step--02 { --step-color: #83D487; }
.index-flow__step--03 { --step-color: #00D5A0; }
.index-flow__step--04 { --step-color: #04AD83; }
.index-flow__step--05 { --step-color: #046E53; }

.index-flow__step {
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, calc(50 * 100vw / 1440), 50px);
}

/* STEPバッジ（円弧はconic-gradientで描画） */
.index-flow__badge {
    position: relative;
    flex-shrink: 0;
    width: clamp(60px, calc(104 * 100vw / 1440), 104px);
    aspect-ratio: 104 / 208;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--step-color);
}

/* 円弧（直径208pxの円の半分がボックス内に見える） */
.index-flow__badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--step-color) 0 180deg, transparent 180deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3.5px));
}

/* 奇数：円の中心がボックス左端（右半分の弧）＋テキストやや左寄り */
.index-flow__step--01 .index-flow__badge,
.index-flow__step--03 .index-flow__badge,
.index-flow__step--05 .index-flow__badge {
    padding-right: clamp(28px, calc(44 * 100vw / 1440), 44px);
}

/* 偶数：円の中心がボックス右端（左半分の弧）＋テキストやや右寄り */
.index-flow__step--02 .index-flow__badge,
.index-flow__step--04 .index-flow__badge {
    padding-left: clamp(28px, calc(44 * 100vw / 1440), 44px);
}

.index-flow__step--02 .index-flow__badge::before,
.index-flow__step--04 .index-flow__badge::before {
    left: 0;
    transform: scaleX(-1);
}

.index-flow__badge-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, calc(24 * 100vw / 1440), 24px);
}

.index-flow__badge-num {
    margin-top: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(34px, calc(48 * 100vw / 1440), 48px);
}

.index-flow__body {
    flex-grow: 1;
    padding-top: clamp(10px, calc(24 * 100vw / 1440), 24px);
}

.index-flow__step-title {
    padding-bottom: 14px;
    border-bottom: 2px solid var(--step-color);
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(20px, calc(28 * 100vw / 1440), 28px);
    line-height: 1;
    letter-spacing: 0.04em;
    color: #161616;
}

.index-flow__step-text {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

/* ステップ間の下向き矢印（本文カラムの中央に配置） */
.index-flow__arrow {
    width: clamp(140px, calc(240 * 100vw / 1440), 240px);
    height: clamp(20px, calc(32 * 100vw / 1440), 32px);
    margin: 0 auto;
    transform: translateX(calc((clamp(60px, calc(104 * 100vw / 1440), 104px) + clamp(24px, calc(50 * 100vw / 1440), 50px)) / 2));
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: var(--color-green-pale);
}

/* SP：横並びレイアウトを維持しつつ縮小（円は直径134px・見える幅48px） */
@media screen and (max-width: 767px) {
    .index-flow {
        padding: 40px 16px;
    }

    .index-flow__lead {
        font-size: 16px;
    }

    .index-flow__card {
        padding: 40px 16px;
    }

    .index-flow__step {
        gap: 20px;
    }

    .index-flow__badge {
        width: 50px;
        aspect-ratio: auto;
        height: 137px;
    }

    /* SPは提供SVGの弧をマスクにしてステップカラーで塗る */
    .index-flow__badge::before {
        width: 100%;
        height: 100%;
        left: 0;
        border-radius: 0;
        background: var(--step-color);
        -webkit-mask: url(../img/common/icon_step_arc.svg) no-repeat center center / contain;
        mask: url(../img/common/icon_step_arc.svg) no-repeat center center / contain;
    }

    .index-flow__step--02 .index-flow__badge::before,
    .index-flow__step--04 .index-flow__badge::before {
        left: 0;
        right: auto;
    }

    /* 弧とテキストの間に12pxの余白 */
    .index-flow__step--01 .index-flow__badge,
    .index-flow__step--03 .index-flow__badge,
    .index-flow__step--05 .index-flow__badge {
        padding-right: 12px;
    }

    .index-flow__step--02 .index-flow__badge,
    .index-flow__step--04 .index-flow__badge {
        padding-left: 12px;
    }

    .index-flow__badge-label {
        font-size: 14px;
    }

    .index-flow__badge-num {
        margin-top: 4px;
        font-size: 28px;
    }

    .index-flow__body {
        padding-top: 0;
    }

    .index-flow__step-title {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .index-flow__step-text {
        margin-top: 12px;
        font-size: 16px;
    }

    .index-flow__arrow {
        width: 200px;
        height: 24px;
        margin: 22px auto;
        transform: translateX(34px);
    }
}




/* price */
.index-price {
    padding: clamp(50px, calc(80 * 100vw / 1440), 80px) 20px;
}

.index-price__inner {
    max-width: 880px;
    margin: 0 auto;
}

.index-price__list {
    margin-top: clamp(24px, calc(51 * 100vw / 1440), 51px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px clamp(40px, calc(80 * 100vw / 1440), 80px);
}

/* カード上部の円形バンプ */
.index-price__item {
    position: relative;
    padding-top: 40px;
}

.index-price__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #F1FFF1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.index-price__icon {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 47px;
    object-fit: contain;
}

.index-price__card {
    position: relative;
    z-index: 1;
    min-height: 229px;
    background-color: #F1FFF1;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 31px 30px 28px;
}

.index-price__item-title {
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #161616;
}

/* タイトル下の短いライン */
.index-price__item-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    margin: 8px auto 0;
    background-color: var(--color-green-dark);
}

.index-price__item-text {
    margin-top: 20px;
    font-family: var(--font-hiragino);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

/* SP */
@media screen and (max-width: 767px) {
    .index-price {
        padding: 40px 28px;
    }

    .index-price__list {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 32px;
    }

    .index-price__card {
        min-height: 0;
        padding: 31px 20px 24px;
    }

    .index-price__item-text {
        margin-top: 16px;
        font-size: 16px;
    }
}




/* voice */
.index-voice {
    background-color: #F1FFF1;
    padding: clamp(50px, calc(80 * 100vw / 1440), 80px) 20px;
}

.index-voice__inner {
    max-width: 1160px;
    margin: 0 auto;
}

/* < > の山括弧 */
.index-voice__bracket {
    font-weight: 500;
    font-size: clamp(28px, calc(48 * 100vw / 1440), 48px);
}

.index-voice__lead {
    margin-top: clamp(24px, calc(35 * 100vw / 1440), 35px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #161616;
}

.index-voice__list {
    margin-top: clamp(20px, calc(32 * 100vw / 1440), 32px);
    display: flex;
    justify-content: center;
    gap: clamp(20px, calc(40 * 100vw / 1440), 40px);
}

.index-voice__item {
    width: 360px;
    flex-shrink: 1;
}

/* 01 02 03 の番号（カードに少し重なる） */
.index-voice__num {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(30px, calc(40 * 100vw / 1440), 40px);
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: -20px;
}

.index-voice__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 24px 30px 30px;
    height: calc(100% - 20px);
}

.index-voice__name {
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(17px, calc(20 * 100vw / 1440), 20px);
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #161616;
}

/* 名前下のライン */
.index-voice__name::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    margin: 6px auto 0;
    background: linear-gradient(90deg, var(--color-green-dark) 0%, var(--color-green-light) 100%);
}

.index-voice__text {
    margin-top: 10px;
    font-family: var(--font-hiragino);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #161616;
}

/* SP */
@media screen and (max-width: 767px) {
    .index-voice {
        padding: 40px 16px;
    }

    .index-voice__lead {
        font-size: 16px;
    }

    .index-voice__list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .index-voice__item {
        width: 100%;
        max-width: 360px;
    }

    .index-voice__num {
        font-size: 40px;
    }

    .index-voice__name {
        font-size: 20px;
    }

    .index-voice__text {
        font-size: 15px;
    }
}




/* faq */
.index-faq {
    padding: clamp(50px, calc(80 * 100vw / 1440), 80px) 20px;
}

.index-faq__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.index-faq__list {
    margin-top: clamp(24px, calc(50 * 100vw / 1440), 50px);
}

.index-faq__item {
    padding: 30px 0 24px;
}

.index-faq__item + .index-faq__item {
    border-top: 1px solid #DDD;
}

.index-faq__q {
    position: relative;
    min-height: 28px;
    padding-left: 59px;
    display: flex;
    align-items: center;
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(17px, calc(20 * 100vw / 1440), 20px);
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: #202020;
}

.index-faq__q-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-green-dark) 0%, var(--color-green-light) 100%);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #fff;
}

.index-faq__a {
    position: relative;
    margin-top: 22px;
    padding-left: 59px;
    font-family: var(--font-hiragino);
    font-weight: 500;
    font-size: 15px;
    line-height: calc(32 / 15);
    letter-spacing: 0.04em;
    color: #444;
}

/* A：緑枠の四角、文字は緑グラデーション */
.index-faq__a-icon {
    position: absolute;
    top: 2px;
    left: 15px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-green-dark);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* SP */
@media screen and (max-width: 767px) {
    .index-faq {
        padding: 40px 27px;
    }

    .index-faq__list {
        margin-top: 30px;
    }

    .index-faq__item {
        padding: 24px 0 20px;
    }

    .index-faq__q {
        padding-left: 38px;
        font-size: 18px;
    }

    .index-faq__q-icon {
        left: 0;
    }

    .index-faq__a {
        margin-top: 16px;
        padding-left: 38px;
        font-size: 15px;
        line-height: 1.65;
    }

    .index-faq__a-icon {
        left: 0;
    }
}




/*==================================================
# CTA（共通）
==================================================*/
.cta {
    margin-top: clamp(50px, calc(80 * 100vw / 1440), 80px);
    background: var(--color-green-dark) url(../img/top/index_cta_bg.jpg) no-repeat center center / cover;
    padding: clamp(50px, calc(80 * 100vw / 1440), 80px) 20px clamp(56px, calc(88 * 100vw / 1440), 88px);
}

.cta__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.cta__title {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(22px, calc(40 * 100vw / 1440), 40px);
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: #fff;
}

/* 両脇の ＼＼ ／／ 装飾 */
.cta__title--slash::before,
.cta__title--slash::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(22px, calc(39 * 100vw / 1440), 39px);
    aspect-ratio: 39 / 38;
    background: url(../img/common/icon_slash.svg) no-repeat center center / contain;
}

.cta__title--slash::before {
    left: clamp(-70px, calc(-70 * 100vw / 1440), -40px);
}

.cta__title--slash::after {
    right: clamp(-70px, calc(-70 * 100vw / 1440), -40px);
    transform: translateY(-50%) scaleX(-1);
}

.cta__title--sm {
    font-size: clamp(18px, calc(32 * 100vw / 1440), 32px);
}

/* 見出し内の黄色強調 */
.cta__title-em {
    color: #FBFF00;
    font-weight: 700;
}

.cta__lead {
    margin-top: clamp(14px, calc(20 * 100vw / 1440), 20px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #fff;
}

.cta__button-wrapper {
    margin-top: clamp(16px, calc(22 * 100vw / 1440), 22px);
}

/* SP */
@media screen and (max-width: 767px) {
    .cta {
        margin-top: 40px;
        background-image: url(../img/top/index_cta_bg_sp.jpg);
        padding: 40px 20px;
    }

    .cta__title {
        font-size: 24px;
        line-height: 1.4;
    }

    .cta__title--sm {
        font-size: 20px;
    }

    /* SPはスラッシュ画像を出し分け */
    .cta__title--slash::before,
    .cta__title--slash::after {
        background-image: url(../img/common/icon_slash_sp.svg);
        aspect-ratio: 13 / 28;
    }

    .cta__title--slash::before {
        left: -32px;
        width: 24px;
    }

    .cta__title--slash::after {
        right: -32px;
        width: 24px;
    }

    .cta__lead {
        font-size: 16px;
        letter-spacing: 0;
    }

    /* 料金下CTA（小見出し版）のリードは15px */
    .cta__title--sm + .cta__lead {
        font-size: 15px;
    }

    /* 料金下CTAはスラッシュを見出しと下揃えに */
    .cta__title--sm.cta__title--slash::before {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .cta__title--sm.cta__title--slash::after {
        top: auto;
        bottom: 0;
        transform: scaleX(-1);
    }

    .cta__button-wrapper {
        margin-top: 24px;
    }
}




/*==================================================
# 最終CTA（商材診断）
==================================================*/
.index-cta {
    margin-top: clamp(50px, calc(80 * 100vw / 1440), 80px);
    background: var(--color-green-dark) url(../img/top/index_cta02_bg.jpg) no-repeat center center / cover;
    padding: clamp(50px, calc(80 * 100vw / 1440), 80px) 20px clamp(56px, calc(88 * 100vw / 1440), 88px);
}

.index-cta__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.index-cta__title {
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(22px, calc(40 * 100vw / 1440), 40px);
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: #fff;
}

.index-cta__title-line {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0 4px 4px;
    border-bottom: 2px solid #fff;
    font-weight: 700;
}

.index-cta__title-line + .index-cta__title-line {
    margin-top: 8px;
}

.index-cta__title-seg {
    font-weight: 700;
}

.index-cta__title-em {
    font-size: clamp(26px, calc(48 * 100vw / 1440), 48px);
    font-weight: 700;
    color: #FBFF00;
}

.index-cta__lead {
    margin-top: clamp(20px, calc(32 * 100vw / 1440), 32px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #fff;
    letter-spacing: 0;
}

/* 診断に必要な情報ボックス */
.index-cta__box {
    max-width: 856px;
    margin: clamp(24px, calc(40 * 100vw / 1440), 40px) auto 0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    padding: 30px 40px 28px;
}

.index-cta__box-title {
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 700;
    font-size: clamp(18px, calc(20 * 100vw / 1440), 20px);
    line-height: 1;
    letter-spacing: 0.04em;
    color: #202020;
}

.index-cta__box-title::after {
    content: "";
    display: block;
    width: min(720px, 100%);
    height: 2px;
    margin: 16px auto 0;
    background-color: var(--color-green-dark);
}

.index-cta__box-list {
    margin-top: 8px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    justify-content: center;
    column-gap: clamp(30px, calc(60 * 100vw / 1440), 60px);
}

.index-cta__box-item {
    position: relative;
    padding-left: 24px;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(18 * 100vw / 1440), 18px);
    line-height: 2.4;
    letter-spacing: 0.04em;
    color: #161616;
}

.index-cta__box-item::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-green-dark);
    font-weight: 600;
}

.index-cta__box-note {
    margin-top: 10px;
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 500;
    font-size: clamp(13px, calc(16 * 100vw / 1440), 16px);
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #202020;
}

.index-cta__catch {
    margin-top: clamp(20px, calc(28 * 100vw / 1440), 28px);
    text-align: center;
    font-family: var(--font-hiragino);
    font-weight: 600;
    font-size: clamp(15px, calc(24 * 100vw / 1440), 24px);
    line-height: 1.6;
    color: #fff;
}

.index-cta__catch-em {
    font-weight: 700;
    color: #FBFF00;
}

.index-cta__button-wrapper {
    margin-top: clamp(20px, calc(27 * 100vw / 1440), 27px);
}

/* SP */
@media screen and (max-width: 767px) {
    .index-cta {
        margin-top: 0px;
        background-image: url(../img/top/index_cta02_bg_sp.jpg);
        padding: 40px 26px;
    }

    .index-cta__title {
        font-size: 24px;
    }

    /* 1行目はSPで2行に分割し、それぞれに下線を付ける */
    .index-cta__title-line--seg {
        border-bottom: none;
        padding-bottom: 0;
    }

    .index-cta__title-seg {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding: 0 4px 4px;
        border-bottom: 2px solid #fff;
    }

    .index-cta__title-seg + .index-cta__title-seg {
        margin-top: 8px;
    }

    .index-cta__title-em {
        font-size: 28px;
    }

    .index-cta__lead {
        font-size: 15px;
    }

    .index-cta__box {
        margin-top: 28px;
        padding: 24px;
    }

    .index-cta__box-title::after {
        margin-top: 14px;
    }

    .index-cta__box-list {
        grid-auto-flow: row;
        grid-template-rows: none;
        margin-top: 14px;
        width: fit-content;
        margin-inline: auto;
    }

    .index-cta__box-item {
        font-size: 14px;
        line-height: 2;
    }

    .index-cta__box-note {
        font-size: 16px;
        text-align: left;
    }

    .index-cta__catch {
        font-size: 18px;
        text-align: left;
    }

    .index-cta__button-wrapper {
        margin-top: 32px;
    }
}




/*==================================================
# リンクエリア
==================================================*/
.index-link-area {
    padding: 50px 0;
    background: #F8F8F8;
}

.index-link-area__inner {
    padding: 0 30px;
    max-width: 1010px;
    margin: 0 auto;
}

.index-link-area__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px calc(142 / 950 * 100%);
}

.index-link-area__button-wrapper {
    width: calc(404 / 950 * 100%);
}

.index-link-area__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 60px;
    margin: 0 auto;
    border: 1px solid var(--link-color);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, color-mix(in srgb, var(--link-color) 50%, transparent) 100%);
    box-shadow: 4px 4px 0 var(--link-color), 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease 0s;
}

/* 記者発表：青 */
.index-link-area__button--press {
    --link-color: #6FA8DC;
}

/* セミナー情報：ピンク */
.index-link-area__button--seminar {
    --link-color: #FFBBDD;
}

.index-link-area__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../img/common/icon_external.svg) no-repeat center /contain;
}

.index-link-area__button:hover {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--link-color), 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.index-link-area__button-text {
    color: #1B1B1B;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 4.8px;
}

@media screen and (max-width: 767px) {
    .index-link-area {
        padding: 40px 0;
    }

    .index-link-area__inner {
        padding: 0 26px;
    }

    .index-link-area__column {
        gap: 28px;
    }

    .index-link-area__button-wrapper {
        width: 100%;
    }

    .index-link-area__button {
        height: 56px;
    }

    .index-link-area__button-text {
        font-size: 20px;
        letter-spacing: 0.2em;
    }
}




/*==================================================
# フッター
==================================================*/
.footer {
    background-color: var(--color-footer-bg);
    padding: 60px 0 16px;
}

.footer__inner {
    padding: 0 30px;
}

.footer__sns-list {
    display: flex;
    justify-content: center;
    gap: 38px;
}

.footer__sns-link {
    display: block;
    transition: all 0.3s ease 0s;
}

.footer__sns-link:hover {
    opacity: 0.7;
}

.footer__link {
    margin-top: 60px;
    display: block;
    width: fit-content;
    margin-inline: auto;
    padding: 0 10px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
    transition: all 0.3s ease 0s;
}

.footer__link:hover {
    opacity: 0.7;
}

.footer__copy {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 50px 0 12px;
    }

    .footer__inner {
        padding: 0 13px;
    }

    .footer__sns-list {
        gap: 38px;
    }

    .footer__link {
        margin-top: 50px;
        font-size: 20px;
    }

    .footer__copy {
        margin-top: 16px;
        font-size: 12px;
    }
}
