/* CSS Variables */
:root {
    /* Colors - Primary */
    --color-primary: #3689BF;
    --color-primary-dark: #1e3f6b;
    --color-primary-light: #3367a3;

    /* Colors - Text */
    --color-text-main: #444444;
    --color-text-dark: #121212;
    --color-text-light: #9aa4b7;
    --color-text-footer-link: #dfe9f2;

    /* Colors - Background */
    --color-bg-white: #ffffff;
    --color-bg-gray: #f4f6fb;
    --color-bg-dark: #333333;
    --color-bg-light-blue: #f8fbff;

    /* Colors - Accent */
    --color-gold: #E1AD01;
    --color-gold-light: #e5b73b;
    --color-gold-dark: #a48b2f;
    --color-gold-text: #d59b25;
    --color-gold-bright: #e0a31f;
    --color-highlight-yellow: #ffeeb2;
    --color-highlight-pale: #F7EFC8;
    --color-accent-yellow: #ffe06a;
    --color-line-yellow: #FBFD00;
    --color-line-green: #25c36b;
    --color-line-green-dark: #19b955;

    /* Colors - UI */
    --color-border-light: #eeeeee;
    --color-border-faq: #eef1f7;
    --color-divider-dots: #dde4f2;
    --color-badge-gray: #aeb7c7;
    --color-avatar-bg: #f0f5ff;
    --color-voice-text: #e3edf9;
    --color-bullet-yellow: #ffd94a;

    /* Border Radius */
    --radius-card: 20px;
    --radius-card-sm: 16px;
    --radius-pill: 9999px;
    --radius-medium: 12px;
    --radius-small: 8px;
    --radius-xs: 4px;
    --radius-tiny: 2px;

    /* Shadows */
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-deep: 0 12px 32px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-cta-icon: 0 10px 26px rgba(0, 0, 0, 0.15);
    --shadow-cta-banner: 0 12px 30px rgba(0, 0, 0, 0.18);
    --shadow-cta-arrow: 0 4px 12px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-xxl: 80px;

    /* Gradients */
    --gradient-line: linear-gradient(90deg, #25c36b 0%, #19b955 100%);
    --gradient-gold: linear-gradient(135deg, #F0CE6D 0%, #E1AD01 100%);
    --gradient-cta-blue: linear-gradient(to bottom right, #D2E8FD 0%, #439CD0 100%);

    /* Breakpoints (for reference in comments) */
    --breakpoint-tb: 1199px;
    --breakpoint-sp: 767px;

    /* Max Width */
    --max-width-wrapper: 1440px;
    --max-width-container: 1240px;

    /* Fonts */
    --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    --font-english: "Figtree", "Noto Sans JP", sans-serif;

    /* Section Headers */
    --section-title-size-large: 56px;
    --section-title-size: 40px;
    --section-title-size-small: 24px;
    --section-title-weight: 700;
    --section-subtitle-size: 16px;
    --section-subtitle-letter-spacing: 0.12em;
}

/* Base */
body {
    font-family: var(--font-base);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-voices__subtitle,
.section-flow__label-en,
.flow-step__badge-label,
.section-faq__label-en,
.site-footer__copy {
    font-family: var(--font-english);
}

.section-label-en {
    font-family: var(--font-english);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-block;
}

.site-wrapper {
    max-width: var(--max-width-wrapper);
    width: 100%;
    background-color: var(--color-bg-white);
}

.l-container {
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =========================
   Header
   ========================= */

.site-header {
    background-color: var(--color-bg-white);
}

.site-header--light {
    background-color: var(--color-bg-light-blue);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 48px;
}

/* Brand */
.site-header__brand {
    display: flex;
    align-items: center;
}

.site-header__brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.site-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-header__nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header__nav-link {
    color: var(--color-text-main);
    font-size: 16px;
    white-space: nowrap;
    font-weight: 700;
}

.site-header__nav-link:visited {
    color: var(--color-text-main);
}

.site-header__nav-link:hover {
    color: #3887C0;
    text-decoration: none;
}

.site-header__nav-link:active {
    color: var(--color-text-main);
}

.site-header__nav-link:focus {
    outline: none;
}

.site-header__nav-link:focus-visible {
    color: var(--color-text-main);
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 2px;
}

.site-header__nav-link--current {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-header__cta-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* =========================
   First View Section
   ========================= */

.fv {
    background-image: url('../img/FV_pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: clamp(520px, 43.75vw, 640px);
    display: flex;
}

.fv__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 64px 64px 80px;
    min-height: inherit;
    width: 100%;
}

.fv__content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    flex: 0 0 auto;
    max-width: 600px;
}

.fv__message-card {
    padding: 0 0 0 32px;
}

/* 見出し */
.fv__title {
    font-size: 48px;
    line-height: 1.7;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.14em;
}

.fv__title-block {
    display: inline-block;
    padding-inline: 6px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-radius: var(--radius-xs);
    line-height: 1.4;
    white-space: nowrap;
}

/* リード文 */
.fv__lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-dark);
    padding-left: var(--spacing-xs);
}

/* CTA ブロック */
.fv-cta {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 560px;
    text-decoration: none;
    color: var(--color-bg-white);
}

/* 左上の丸い LINE アイコン */
.fv-cta__line-icon {
    position: absolute;
    left: 0;
    top: var(--spacing-xs);
    transform: translate(-25%, -25%);
    width: 96px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-pill);
    background-color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cta-icon);
    z-index: 2;
    transition: opacity 0.2s ease;
}

/* 吹き出しのしっぽ（右下の三角形） */
.fv-cta__line-icon::after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 0 12px;
    border-color: transparent transparent transparent var(--color-bg-white);
}

.fv-cta__line-icon-image {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* 緑のバナー */
.fv-cta__content {
    flex: 1 1 auto;
    padding: var(--spacing-xs) 44px var(--spacing-xs) 64px;
    border-radius: var(--radius-pill);
    background: var(--gradient-line);
    box-shadow: var(--shadow-cta-banner);
    text-align: center;
    transition: opacity 0.5s ease;
}

.fv-cta:hover .fv-cta__content,
.fv-cta:focus-visible .fv-cta__content {
    opacity: 0.7;
}

.fv-cta:hover .fv-cta__line-icon,
.fv-cta:focus-visible .fv-cta__line-icon {
    opacity: 0.7;
}

.fv-cta__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-line-yellow);
    margin-bottom: -16px;
    text-align: center;
    position: relative;
    left: -156px;
}

.fv-cta__label::before,
.fv-cta__label::after {
    font-size: 11px;
    color: var(--color-line-yellow);
    font-weight: 400;
}

.fv-cta__label::before {
    content: "＼ ";
}

.fv-cta__label::after {
    content: " ／";
}

.fv-cta__main {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.fv-cta__main-em {
    font-size: 44px;
    color: var(--color-line-yellow);
    font-weight: 700;
}

/* 点線の区切り */
.fv-cta__divider {
    width: 100%;
    height: 0;
    border-top: 4px dotted rgba(255, 255, 255, 0.9);
    margin: 4px 0 6px;
}

.fv-cta__sub {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.fv-cta__icon-and {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    color: var(--color-line-green);
    font-size: 14px;
    font-weight: 700;
    vertical-align: 1px;
}

/* 右端の矢印 */
.fv-cta__arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-pill);
    background-color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cta-arrow);
}

.fv-cta__arrow-icon {
    width: 14px;
    height: 14px;
    display: block;
}

/* CTAセクション用の大きいバージョン */
.fv-cta.fv-cta--large {
    width: 46%;
}

.fv-cta--large .fv-cta__divider {
    width: 100%;
}

/* =========================
   こんな不安が原因では？ セクション
   ========================= */

   .section-anxiety {
    background-color: var(--color-bg-gray);
    padding: 72px var(--spacing-lg) 88px;
    position: relative;
}

.section-anxiety__inner {
    text-align: center;
}

/* 上段テキストブロック */
.section-anxiety__label {
    display: inline-block;
    padding: 6px 20px;
    margin-bottom: var(--spacing-sm);
    background-color: var(--color-bg-white);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-main);
    border-radius: 5px;
}

.section-anxiety__label-em {
    margin-left: 4px;
    color: var(--color-primary);
}

.section-anxiety__title {
    font-size: var(--section-title-size-large);
    line-height: 1.6;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: 7px;
}

.section-anxiety__title-em {
    color: var(--color-primary);
}

.section-anxiety__title-sub {
    font-size: 36px;
}

.section-anxiety__divider {
    width: clamp(730px, 74vw, 932px);
    height: 3px;
    margin: 0 auto 40px;
    border-radius: var(--radius-pill);
    background-color: var(--color-primary);
}

/* カードエリア */
.section-anxiety__cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 88px;
    max-width: 1240px;
    margin-inline: auto;
}

/* カード本体 */
.section-anxiety-card {
    position: relative;
    flex: 1 1 0;
    max-width: 398px;
    border-radius: var(--radius-card);
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

/* お悩みバッジ（上に飛び出しているピル） */
.section-anxiety-card__badge {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px var(--spacing-lg);
    border-radius: var(--radius-pill);
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    font-size: 18px;
    font-weight: 600;
}

.section-anxiety-card__badge-num {
    color: var(--color-accent-yellow);
    font-weight: 700;
}

/* カード上部（タイトル＋背景イラスト） */
.section-anxiety-card__body {
    padding: 40px 24px 24px;
    min-height: 304px;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    border-radius: 24px 24px 0 0;
}

/* 各カードの背景画像 */
.section-anxiety-card__body--01 {
    background-image: url('../img/problems01.svg');
}

.section-anxiety-card__body--02 {
    background-image: url('../img/problems02.svg');
    background-size: 80%;
}

.section-anxiety-card__body--03 {
    background-image: url('../img/problems03.svg');
    background-size: 66%;
    background-position: center 84px;
}

.section-anxiety-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* カード下部（青背景の説明文） */
.section-anxiety-card__footer {
    padding: 18px var(--spacing-md) 22px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    border-radius: 0 0 var(--spacing-md) var(--spacing-md);
    flex-grow: 1;
}

/* =========================
   失業保険を受給できます セクション
   ========================= */

   .section-insurance {
    background-color: var(--color-bg-white);
    padding: 88px var(--spacing-lg) 96px;
}

.section-insurance__inner {
    text-align: center;
}

/* 上段見出し */
.section-insurance__label {
    position: relative;
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-pill);
    background-color: var(--color-gold);
    color: var(--color-bg-white);
    font-size: 28px;
    font-weight: 700;
}

.section-insurance__label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: var(--color-gold) transparent transparent transparent;
}

.section-insurance__title {
    font-size: var(--section-title-size-large);
    line-height: 1.6;
    font-weight: 700;
    color: var(--color-text-main);
}

.section-insurance__title-main {
    letter-spacing: 9px;
}

.section-insurance__title-small {
    font-size: 48px;
}

.section-insurance__title-highlight {
    color: var(--color-gold-light);
    letter-spacing: 9px;
}

.section-insurance__divider {
    width: 52%;
    height: 4px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-pill);
    background-color: var(--color-gold-light);
}

/* 下段2カラム */
.section-insurance__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    text-align: left;
    padding: 0 clamp(48px, 10.5vw, 150px) 0 clamp(64px, 12.5vw, 180px);
}

/* 左テキスト */
.section-insurance__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 0;
    max-width: 620px;
}

.section-insurance__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 40px;
    border-radius: var(--radius-card) var(--radius-card) 0px var(--radius-card);
    background-color: var(--color-gold);
    color: var(--color-bg-white);
    font-size: 20px;
    font-weight: 700;
}

.section-insurance__paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-main);
    letter-spacing: 1px;
}

.section-insurance__highlight {
    background-color: var(--color-highlight-yellow);
    padding: 2px 4px;
    border-radius: var(--radius-tiny);
    font-weight: 700;
}

/* 右ビジュアル */
.section-insurance__visual {
    flex: 0 0 360px;
    max-width: 380px;
}

.section-insurance__visual-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* section-anxiety 下に配置される逆三角 */
.section-anxiety::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -57px;
    transform: translateX(-50%);

    width: 260px;
    aspect-ratio: 26 / 9;

    background-image: url('../img/divider_img.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    z-index: 1;
}

/* =========================
   LINE 無料診断 CTA セクション
   ========================= */

   .section-linecta {
    padding: 48px var(--spacing-lg) 16px;
    background: var(--gradient-cta-blue);
    color: var(--color-bg-white);
}

.section-linecta__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

/* 下の説明テキスト */
.section-linecta__note {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 700;
}

.section-linecta__note-text--sp {
    display: none;
}

/* =========================
   受給申請サポート セクション
   ========================= */

.section-support {
    background-color: var(--color-bg-gray);
    padding: 72px var(--spacing-lg) 160px;
    position: relative;
}

.section-support__inner {
    position: relative;
}

/* 上段ヘッダー部分 */
.section-support__head {
    position: relative;
    margin-bottom: 40px;
}

.section-support__head-inner {
    text-align: center;
}

.section-support__eyebrow {
    font-size: 32px;
    color: #333;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.section-support__title {
    font-size: var(--section-title-size);
    line-height: 1.7;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-text-main);
    position: relative;
    z-index: 10;
}

.section-support__title-em {
    font-size: 48px;
    letter-spacing: 2px;
    color: var(--color-primary);
    background: linear-gradient(transparent 70%, var(--color-highlight-yellow) 70%);
}

.section-support__title-bracket {
    font-size: 40px;
    color: var(--color-primary);
    vertical-align: top;
}

.section-support__title-bracket--close {
    vertical-align: baseline;
}

.section-support__title-small {
    font-size: 32px;
    display: inline-block;
    transform: translateX(-7px);
}

.section-support__title-dots {
    position: relative;
    display: inline-block;
}

.section-support__title-dots::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: radial-gradient(circle, #3689BF 2px, transparent 2px);
    background-size: 25% 100%;
    background-repeat: repeat-x;
    background-position: 0 center;
}

/* 両サイドのイラスト */
.section-support__illust {
    position: absolute;
    top: 32px;
    width: 140px;
    aspect-ratio: 3 / 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.section-support__illust--left {
    left: clamp(1rem, -20.25rem + 28.33vw, 5.25rem);
}

.section-support__illust--right {
    right: clamp(1rem, -20.25rem + 28.33vw, 5.25rem);
}

.section-support__illust-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* カード全体ラッパー */
.section-support__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1240px;
    margin-inline: auto;
}

/* 各行 */
.section-support__cards-row {
    display: flex;
    gap: 32px;
}

.section-support__cards-row--top {
    justify-content: center;
}

.section-support__cards-row--bottom {
    justify-content: center;
}

/* =========================
   安心の全額返金保証バナー
   ========================= */

.guarantee-banner {
    position: relative;
    margin-top: -60px;
    margin-bottom: 0;
    z-index: 2;
}

.guarantee-banner__content {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 900 / 268;

    background-image: url("../img/guarantee_img_pc.png");
    background-size: cover;
    background-position: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px;
}

.guarantee-banner__header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-banner__title-wrapper {
    text-align: center;
    padding-bottom: 24px;
}

.guarantee-banner__title-top {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(to bottom, #E9DA7D 0%, #E8C25F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-banner__title-main {
    font-size: 48px;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(to bottom, #E9DA7D 0%, #E8C25F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-banner__text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
    color: var(--color-bg-white);
    text-align: center;
    margin: 0;
}


/* カード本体 */
.support-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 0;
    max-width: 32%;
    border-radius: var(--radius-card);
    background-color: var(--color-bg-white);
    padding: 20px var(--spacing-md) 32px;
    text-align: left;
    position: relative;
}

/* 上部バッジ */
.support-card__badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 24px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-card) var(--radius-card) 0px var(--radius-card);
}


/* アイコン */
.support-card__icon {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    aspect-ratio: 1 / 1;
}

.support-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* タイトル・本文 */
.support-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.support-card__text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.7px;
    color: var(--color-text-main);
}

/* 強調ハイライト */
.support-card__highlight {
    background-color: var(--color-highlight-pale);
    padding: 2px 4px;
    border-radius: var(--radius-tiny);
    font-weight: 700;
}

/* =========================
   料金について セクション
   ========================= */

.section-price {
    background-color: var(--color-bg-white);
    padding: 56px 0 96px;
    position: relative;
    z-index: 1;
    scroll-margin-top: 320px;
}

.section-price__inner {
    display: flex;
    justify-content: center;
}

.section-price__image-wrapper {
    width: 80%;
    max-width: 1000px;
    margin-inline: auto;
    box-shadow: var(--shadow-strong);
}

/* 料金カード */
.pricing-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1028 / 382;
    background-image: url('../img/pricing_img_pc.png');
    background-size: cover;
    background-position: center;
    padding-top: 40px;
}

/* 上部リボン */
.pricing-card__ribbon-top {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card__ribbon-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-bg-white);
}

/* コンテンツエリア */
.pricing-card__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 48px 32px;
    z-index: 0;
}

/* 左側リボン */
.pricing-card__ribbon-left {
    position: absolute;
    top: 44%;
    left: clamp(3.438rem, 1.875rem + 2.08vw, 3.75rem);
    width: 80px;
    height: 120px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pricing-card__ribbon-left-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-bg-white);
    position: relative;
    z-index: 2;
}

/* 価格ボックス */
.pricing-card__price-box {
    position: absolute;
    left: 180px;
    top: 56%;
    transform: translateY(-50%);
}

.pricing-card__price {
    margin: 0;
    font-weight: 700;
    color: #11355A;
    line-height: 1.2;
    display: inline-block;
    position: relative;
}

.pricing-card__price::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 20px;
    background-color: #F6E7B0;
    transform: skewX(-10deg);
    z-index: -1;
}

.pricing-card__price-amount {
    font-size: 64px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.pricing-card__price-unit {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.pricing-card__price-tax {
    font-size: 24px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* 説明文エリア */
.pricing-card__description {
    position: static;
    margin-left: auto;
    max-width: 480px;
}

.pricing-card__text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 0;
    padding-right: 56px;
}

.pricing-card__text--emphasis {
    color: #B8935A;
    font-weight: 700;
    font-size: 24px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* =========================
   受給実績とお客様の声 セクション
   ========================= */

   .section-voices {
    background-color: var(--color-bg-gray);
    padding: 80px 48px 0;
}

.section-voices__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

/* 上下の青ライン */
.section-voices__divider {
    width: 80px;
    height: 3px;
    margin-inline: auto;
    background-color: var(--color-primary);
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.section-voices__divider--bottom {
    margin-top: 40px;
}

/* ヘッダー部分 */
.section-voices__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 見出し */
.section-voices__title {
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    color: var(--color-text-main);
    letter-spacing: 1px;
}

.section-voices__title-to {
    font-size: 32px;
}

.section-voices__subtitle {
    font-size: var(--section-subtitle-size);
    letter-spacing: var(--section-subtitle-letter-spacing);
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* カード2カラムグリッド */
.section-voices__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 32px;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 40px;
}

/* カード本体 */
.voices-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-card);
    border: 2px solid var(--color-primary);
    overflow: visible;
    max-width: 484px;
}

/* 上部バッジ「受給金額」 */
.gold-label {
    position: relative;
    width: 110px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-small) 80px 80px 0;
    margin-left: -42px;
    z-index: 1;
    flex-shrink: 0;
}

.gold-label__text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-white);
    font-size: 16px;
    font-weight: 700;
}

.gold-label__fold {
    position: absolute;
    left: 12px;
    top: 100%;
    width: 12px;
    height: 12px;
    background: var(--color-gold-dark);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: scaleX(-1);
    transform-origin: 0 0;
}

/* 上段メイン部分 */
.voices-card__main {
    padding: 16px 28px 24px;
    position: relative;
}

.voices-card__main::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 18px;
    height: 10px;
    background: var(--color-bg-white);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* 金額行＋点線 */
.voices-card__amount-row {
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 8px;
    align-items: center;
}

.voices-card__amount-row .gold-label {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: start;
}

.voices-card__amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold-text);
    line-height: 1;
    grid-column: 2 / 3;
    justify-self: center;
}

.voices-card__amount-number {
    font-size: 56px;
    margin-right: 4px;
    color: var(--color-gold-bright);
}

.voices-card__amount-unit {
    font-size: 20px;
}

.voices-card__amount-divider {
    grid-column: 1 / -1;
    margin-top: 0;
    border-top: 2px dotted var(--color-divider-dots);
}

/* 本文 */
.voices-card__body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-main);
    text-align: left;
    letter-spacing: 0.4px;
}

/* 青＋下線の強調リンク風テキスト */
.voices-card__link {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}

/* 下段：青い帯エリア */
.voices-card__bottom {
    margin-top: auto;
    padding: 10px 60px 10px 40px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 0 0 var(--radius-card-sm) var(--radius-card-sm);
}

/* プロフィール側 */
.voices-card__profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.voices-card__avatar {
    width: 48px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--color-avatar-bg);
    overflow: visible;
    position: relative;
    left: -10px;
}

.voices-card__avatar img {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.15);
    z-index: 1;
}

.voices-card__profile-text {
    font-size: 14px;
    color: var(--color-voice-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ポイント側（2行） */
.voices-card__points {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
    text-align: left;
}

.voices-card__point {
    display: flex;
    align-items: center;
    gap: 6px;
}

.voices-card__point-bullet {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-image: url('../img/checkmark.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.voices-card__point-text {
    line-height: 1.6;
}

/* =========================
   受給までの流れ セクション
   ========================= */

   .section-flow {
    background-color: var(--color-bg-gray);
    padding: 40px 48px 0px;
}

.section-flow__inner {
    position: relative;
}

/* ヘッダー：タイトルはコンテナ中央、イラストは右上に飾りとして配置 */
.section-flow__head {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.section-flow__titles {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 72px;
    gap: 16px;
}

.section-flow__title {
    font-size: 30px;
    font-weight: var(--section-title-weight);
    line-height: 1;
    color: var(--color-text-main);
}

.section-flow__title-main {
    font-size: var(--section-title-size-large);
    color: var(--color-primary);
    letter-spacing: 0.06em;
}

.section-flow__title-sub {
    font-size: var(--section-title-size);
    color: var(--color-text-main);
    letter-spacing: 0.06em;
    display: inline-block;
    transform: translateX(-5px);
}

.section-flow__label-en {
    font-size: var(--section-subtitle-size);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* 右上イラスト（decorative） */
.section-flow__illust {
    position: absolute;
    right: clamp(3.25rem, -33rem + 48.33vw, 10.5rem);
    top: 70px;
    width: 320px;
    max-width: 360px;
    pointer-events: none;
}

.section-flow__illust-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    bottom: -80px;
}

/* フローリスト全体 */
.section-flow__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 各ステップカード */
.flow-step__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-card);
    background-color: var(--color-bg-white);
}

/* STEPバッジ（カード左上に"半分食い込む"） */
.flow-step__badge {
    position: absolute;
    left: -16px;
    top: -16px;
    width: 104px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-white);
    font-weight: 700;
}

.flow-step__badge::after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 12px;
    width: 0;
    height: 0;
    border-style: solid;    
    border-width: 10px 8px 0 8px;
    border-color: var(--color-primary) transparent transparent transparent;
    transform: rotate(66deg);
}

.flow-step__badge-label {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #E7E8EC;
}

.flow-step__badge-num {
    font-size: 40px;
    color: #FFD94A;
    line-height: 0.8;
}

/* カード中身（テキスト＋画像） */
.flow-step__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 56px;
    width: 100%;
    padding-left: 88px;
}

.flow-step__texts {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* タイトル＋下線 */
.flow-step__heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flow-step__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.flow-step__underline {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    margin-left: auto;
}

/* 説明文 */
.flow-step__description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-main);
    padding-right: 94px;
    padding-top: 8px;
}

/* STEP05のみ */
.flow-step:nth-child(5) .flow-step__description {
    padding-right: 56px;
}

/* 右側画像 */
.flow-step__visual {
    flex: 0 0 300px;
    max-width: 300px;
}

.flow-step__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================
   よくある質問 セクション
   ========================= */

   .section-faq {
    background-color: var(--color-bg-gray);
    padding: 80px 48px 96px;
}

.section-faq__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
}

/* 見出し */
.section-faq__title {
    font-size: var(--section-title-size);
    font-weight: var(--section-title-weight);
    color: var(--color-text-main);
}

.section-faq__label-en {
    margin-bottom: 24px;
    font-size: var(--section-subtitle-size);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* リスト全体 */
.section-faq__list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* 各FAQアイテム */
.faq-item {
    width: 100%;
}

/* 各アイテムの外枠 */
.faq-item__box {
    width: 100%;
    border-radius: var(--radius-card);
    background-color: var(--color-bg-white);
    text-align: left;
    overflow: hidden;
}

/* 行共通 */
.faq-item__row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px var(--spacing-lg);
}

/* 質問行 */
.faq-item__row--question {
    padding-right: var(--spacing-md);
}

/* 回答行 */
.faq-item__row--answer {
    display: flex;
    border-top: 0px solid transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease-in, opacity 0.4s ease-in, transform 0.4s ease-in, padding 0.4s ease-in, border-top-color 0.4s ease-in, border-top-width 0.4s ease-in;
}

/* 開いている状態の回答 */
.faq-item--active .faq-item__row--answer {
    border-top: 1px solid var(--color-border-faq);
    padding: 18px var(--spacing-lg);
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, transform 0.4s ease-out, padding 0.4s ease-out, border-top-color 0.4s ease-out, border-top-width 0.4s ease-out;
}

/* Q/A バッジ共通 */
.faq-item__badge {
    flex: 0 0 40px;
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #3989BC;
}

/* Q バッジ */
.faq-item__badge--q {
    background-color: var(--color-primary);
    font-size: 24px;
}

.faq-item__badge-icon {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* A バッジ */
.faq-item__badge--a {
    background-color: #F3F4F6;
}

/* 質問テキスト */
.faq-item__question {
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 600;
    color: #3489C2;
}

/* 回答テキスト */
.faq-item__answer {
    flex: 1 1 auto;
    font-size: 13px;
    line-height: 1.9;
    color: var(--color-text-main);
}

/* 右端のトグルボタン（SVG矢印） */
.faq-item__toggle {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.faq-item__icon {
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.4s ease-out;
}

/* 開いている状態の矢印（180度回転） */
.faq-item--active .faq-item__icon {
    transform: rotate(180deg);
}

/* =========================
   特定商取引法に基づく表記 セクション
   ========================= */

   .section-legal {
    background-color: var(--color-bg-white);
    padding: 80px var(--spacing-lg) 104px;
}

.section-legal__inner {
    max-width: 1000px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-legal__title {
    text-align: center;
    font-size: var(--section-title-size-small);
    font-weight: 700;
    color: var(--color-text-main);
}

/* 一覧（2カラムの定義リスト） */
.section-legal__list {
    border-top: 1px solid var(--color-border-light);
}

/* 各行を grid で2カラムに */
.section-legal__row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border-light);
}

/* 左側ラベル */
.section-legal__term {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main);
}

/* 右側値 */
.section-legal__desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-main);
}

/* =========================
   Footer
   ========================= */

   .site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-bg-white);
    padding: 40px 48px var(--spacing-lg);
    font-size: 13px;
}

.site-footer__inner {
    max-width: var(--max-width-container);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 132px;
}

/* 上段ロゴ */
.site-footer__top {
    display: flex;
    justify-content: flex-start;
}

.site-footer__brand {
    display: block;
}

.site-footer__logo {
    height: 32px;
    width: auto;
}

/* 下段：左リンク／右コピーライト */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ナビ（運営会社 / プライバシー） */
.site-footer__nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.site-footer__nav-link {
    color: var(--color-bg-white);
    font-size: 14px;
    text-decoration: none;
}

.site-footer__nav-link:first-child:hover,
.site-footer__nav-link:first-child:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer__nav-link--current {
    color: var(--color-text-footer-link);
    font-weight: 600;
    pointer-events: none;
    cursor: default;
}

/* コピーライト */
.site-footer__copy {
    font-size: 14px;
    white-space: nowrap;
    opacity: 0.9;
}

/* =========================
   TB版対応（768px〜1199px）
   ========================= */

@media (max-width: 1199px) {
    /* Header */
    .site-header__inner {
        padding: 12px 20px;
    }

    .site-header__brand-logo {
        height: clamp(24px, 3.5vw, 32px);
    }

    .site-header__nav-list {
        gap: clamp(12px, 2vw, 16px);
    }

    .site-header__nav-link {
        font-size: clamp(12px, 1.5vw, 14px);
    }

    .site-header__cta-icon {
        width: clamp(32px, 4.5vw, 40px);
        height: clamp(32px, 4.5vw, 40px);
    }

    /* FV */
    .fv__inner {
        padding: clamp(48px, 5.33vw, 64px) clamp(48px, 5.33vw, 64px) clamp(64px, 6.67vw, 80px);
    }

    .fv__content {
        max-width: clamp(360px, 46.67vw, 560px);
        gap: clamp(24px, 3.33vw, 40px);
    }

    .fv__title {
        font-size: clamp(24px, 3.33vw, 40px);
    }

    .fv__lead {
        font-size: clamp(12px, 1.33vw, 16px);
    }

    .fv-cta {
        max-width: 100%;
    }

    .fv-cta__main {
        font-size: clamp(16px, 2vw, 24px);
    }

    .fv-cta__main-em {
        font-size: clamp(24px, 3.33vw, 40px);
    }

    .fv-cta__sub {
        font-size: clamp(11px, 1.33vw, 16px);
    }

    .fv-cta__label {
        font-size: 14px;
        margin-bottom: -8px;
        left: clamp(-156px, calc(-11.5vw), -88px);
    }

    .fv-cta__line-icon {
        width: 80px;
    }

    .fv-cta__icon-and {
        width: 16px;
        height: 16px;
        font-size: 12px;
    }

    .section-insurance__tag {
        font-size: clamp(1.25rem, 0.805rem + 0.93vw, 1.5rem);
    }

    .section-insurance__paragraph {
        font-size: clamp(1rem, 0.109rem + 1.86vw, 1.5rem);
    }

    /* Section Anxiety */
    .section-anxiety {
        padding: 56px 24px 72px;
    }

    .section-anxiety__label {
        font-size: clamp(20px, 2vw, 24px);
    }

    .section-anxiety__title {
        font-size: clamp(36px, 3.6vw, 52px);
        letter-spacing: 6px;
    }

    .section-anxiety__divider {
        width: clamp(352px, calc(102.72vw - 58.87px), 730px);
    }

    .section-anxiety__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .section-anxiety-card {
        max-width: none;
    }

    .section-anxiety-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin-inline: auto;
    }

    .section-anxiety-card__title {
        font-size: clamp(16px, 1.67vw, 20px);
    }

    .section-anxiety-card__footer {
        font-size: 14px;
    }

    .section-anxiety-card__badge {
        padding: 6px clamp(2rem, -1.564rem + 7.42vw, 4rem);
    }

    /* カード高さをPC比率で揃える */
    .section-anxiety-card__body {
        aspect-ratio: 398 / 304;
        min-height: auto;
    }

    /* Section Insurance */
    .section-insurance {
        padding: clamp(72px, 7.5vw, 90px) clamp(24px, 2.67vw, 32px) clamp(80px, 8vw, 96px);
    }

    .section-insurance__visual {
        flex: 0 0 auto;
        width: clamp(320px, 44.3vw, 360px);
        max-width: clamp(320px, 44.3vw, 360px);
    }

    .section-insurance__visual-image {
        width: 100%;
        height: auto;
    }

    .section-insurance__label {
        font-size: clamp(26px, 2.67vw, 32px);
    }

    .section-insurance__content {
        flex-direction: column;
        gap: clamp(32px, 3.33vw, 40px);
        padding: 0 20px;
    }

    .section-insurance__text {
        max-width: 100%;
    }

    .section-insurance__visual {
        flex: 0 0 auto;
        width: clamp(320px, 44.3vw, 360px);
        max-width: clamp(320px, 44.3vw, 360px);
        margin-inline: auto;
    }

    .section-insurance__title {
        font-size: clamp(48px, 5.33vw, 64px);
    }

    .section-insurance__title-small {
        font-size: clamp(36px, 4vw, 48px);
    }

    /* Section LINE CTA */
    .section-linecta {
        padding: 40px 24px 24px;
    }

    .section-linecta__note {
        font-size: 12px;
    }

    .section-linecta__note-text--pc {
        display: none;
    }

    .section-linecta__note-text--sp {
        display: block;
        font-size: clamp(0.75rem, 0.305rem + 0.93vw, 1rem);
    }

    .fv-cta.fv-cta--large {
        width: clamp(400px, 60vw, 600px);
    }

    /* Section Support */
    .section-support {
        padding: 56px 56px 120px;
    }

    /* 両サイドのイラストの位置調整 */
    .section-support__illust {
        width: 100px;
        top: -32px;
    }

    .section-support__illust--left {
        left: 24px;
        top: clamp(1rem, -3.455rem + 9.28vw, 3.5rem);
    }

    .section-support__illust--right {
        right: clamp(0.25rem, -1.977rem + 4.64vw, 1.5rem);
        top: clamp(1rem, -3.455rem + 9.28vw, 3.5rem);
    }

    .section-support__head {
        margin-bottom: 32px;
    }

    .section-support__eyebrow {
        font-size: clamp(18px, 2vw, 24px);
    }

    .section-support__title {
        font-size: clamp(1.375rem, -0.63rem + 4.18vw, 2.5rem);
    }

    .section-support__title-em {
        font-size: clamp(1.625rem, -0.825rem + 5.1vw, 3rem);
    }

    .section-support__title-bracket {
        font-size: clamp(26px, 3vw, 32px);
    }

    .section-support__title-small {
        font-size: clamp(1.125rem, 0.457rem + 1.39vw, 1.5rem);
    }

    /* カードを縦並びに */
    .section-support__cards {
        gap: 24px;
    }

    .section-support__cards-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .support-card {
        max-width: 100%;
        width: 100%;
    }

    /* バナーの調整 */
    .guarantee-banner {
        margin-top: -40px;
    }

    .guarantee-banner__content {
        width: clamp(700px, calc(46.3vw + 344px), 900px);
    }

    /* Section Price */
    .section-price {
        padding: 40px 0 72px;
        scroll-margin-top: 280px;
    }

    .section-price__image-wrapper {
        width: clamp(700px, calc(46.3vw + 344px), 900px);
    }

    .pricing-card {
        padding-top: 32px;
    }

    .pricing-card__price-box {
        left: clamp(7.625rem, 2.948rem + 9.74vw, 10.25rem);
    }

    .pricing-card__ribbon-text {
        font-size: clamp(1.25rem, 1.027rem + 0.46vw, 1.375rem);
    }

    .pricing-card__price-amount {
        font-size: clamp(3rem, 2.109rem + 1.86vw, 3.5rem);
    }

    .pricing-card__price-unit {
        font-size: clamp(1.25rem, 0.805rem + 0.93vw, 1.5rem);
    }

    .pricing-card__price-tax {
        font-size: clamp(1.25rem, 0.805rem + 0.93vw, 1.5rem);
    }

    .pricing-card__text {
        font-size: clamp(0.875rem, 0.652rem + 0.46vw, 1rem);
        padding: 0;
    }

    .pricing-card__text--emphasis {
        font-size: clamp(1.125rem, 0.345rem + 1.62vw, 1.563rem);
    }

    /* Section Voices */
    .section-voices {
        padding: 64px 56px 32px;
    }

    .section-voices__inner {
        gap: 32px;
    }

    .section-voices__title {
        font-size: clamp(1.875rem, 0.761rem + 2.32vw, 2.5rem);
    }

    .section-voices__title-to {
        font-size: clamp(1.5rem, 0.609rem + 1.86vw, 2rem);
    }

    .voices-card {
        max-width: 1000px;
    }

    .section-voices__divider--bottom {
        margin-top: 32px;
    }

    /* カードを1カラムに */
    .section-voices__cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* カード内部の調整 */
    .voices-card__amount-number {
        font-size: 48px;
    }

    .voices-card__amount-unit {
        font-size: clamp(16px, 1.67vw, 18px);
    }

    .voices-card__body {
        font-size: 13px;
    }

    /* Section Flow */
    .section-flow {
        padding: 0px 56px;
    }

    .section-flow__title {
        font-size: clamp(22px, 2.5vw, 28px);
    }

    .section-flow__title-main {
        font-size: clamp(28px, 3.33vw, 36px);
    }

    .section-flow__title-sub {
        font-size: clamp(20px, 2.17vw, 24px);
    }

    /* 右上イラストを小さく */
    .section-flow__illust {
        width: 200px;
        top: clamp(4.875rem, 3.873rem + 2.09vw, 5.438rem);
        right: clamp(0rem, -4.677rem + 9.74vw, 2.625rem);
    }

    /* フローステップカードを縦並びに */
    .section-flow__list {
        gap: 24px;
    }

    .flow-step__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px 24px 24px;
    }

    .flow-step__body {
        flex-direction: column;
        gap: 24px;
        padding: 0 32px;
    }

    .flow-step__title {
        font-size: 24px;
        padding-left: 56px;
    }

    .flow-step__description {
        font-size: 14px;
        padding: 0;
    }

    .flow-step__description br:first-of-type {
        display: none;
    }

    /* 画像部分 */
    .flow-step__visual {
        width: 100%;
        max-width: 100%;
    }

    .section-flow__titles{
        margin-bottom: 48px;
    }

    /* Section FAQ */
    .section-faq {
        padding: 64px 56px 72px;
    }

    .section-faq__title {
        font-size: clamp(26px, 2.67vw, 32px);
    }

    .section-faq__list {
        max-width: 100%;
    }

    .faq-item__row {
        gap: 16px;
        padding: 16px 24px;
    }

    .faq-item__row--question {
        padding-right: 16px;
    }

    /* 閉じてる状態のpadding: 0を維持 */
    .faq-item__row--answer {
        padding: 0;
    }

    /* 開いている状態の回答 */
    .faq-item--active .faq-item__row--answer {
        padding: 16px 24px;
    }

    .faq-item__badge {
        flex: 0 0 32px;
        width: 32px;
        font-size: 14px;
    }

    /* Section Legal */
    .section-legal {
        padding: 64px 56px 80px;
    }

    .section-legal__inner {
        max-width: 100%;
        gap: 32px;
    }

    .section-legal__title {
        font-size: clamp(1.25rem, 0.805rem + 0.93vw, 1.5rem);
    }

    /* 2カラム → 1カラムに */
    .section-legal__row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }

    .section-legal__term {
        font-size: clamp(0.75rem, 0.305rem + 0.93vw, 1rem);
    }

    .section-legal__desc {
        font-size: clamp(0.75rem, 0.305rem + 0.93vw, 1rem);
    }

    /* Site Footer */
    .site-footer {
        padding: 32px 24px 40px;
    }

    .site-footer__inner {
        gap: 80px;
    }

    .site-footer__top {
        justify-content: center;
    }

    .site-footer__logo {
        height: 32px;
    }

    /* 下段を縦並びに */
    .site-footer__bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .site-footer__nav {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 48px;
    }

    .site-footer__nav-link {
        font-size: clamp(0.75rem, 0.305rem + 0.93vw, 1rem);
    }

    .site-footer__copy {
        font-size: clamp(0.75rem, 0.305rem + 0.93vw, 1rem);
    }

    .section-insurance__divider {
        width: 85%;
    }

    .guarantee-banner__text {
        font-size: 15px;
    }

    .pricing-card__ribbon-top {
        top: clamp(1.375rem, 0.261rem + 2.32vw, 2rem);
    }

    .pricing-card__ribbon-left {
        left: clamp(1.938rem, -0.067rem + 4.18vw, 3.063rem);
    }

    .pricing-card__ribbon-left-text {
        font-size: clamp(1rem, 0.777rem + 0.46vw, 1.125rem);
    }

    .flow-step__texts {
        width: 100%;
        gap: 24px;
    }

    .flow-step__underline {
        width: 100%;
        max-width: clamp(30.594rem, -7.55rem + 79.47vw, 52rem);
        margin-left: auto;
    }
}

/* =========================
   SP版 メディアクエリ (767px以下)
   ========================= */

@media (max-width: 767px) {
    /* =========================
       Header
       ========================= */
    .site-header__inner {
        padding: 12px clamp(16px, 4vw, 20px);
        gap: 8px;
    }

    .site-header__brand-logo {
        height: clamp(22px, 6vw, 28px);
    }

    /* ナビゲーション - LINEアイコンのみ表示 */
    .site-header__nav {
        display: flex;
        gap: clamp(10px, 3vw, 14px);
        align-items: center;
    }

    .site-header__nav-list {
        display: none;
    }

    .site-header__nav-link {
        font-size: clamp(10px, 3vw, 12px);
        padding: 6px clamp(4px, 2vw, 8px);
        text-align: center;
        line-height: 1.3;
    }

    .site-header__cta {
        flex-shrink: 0;
        align-self: center;
    }

    .site-header__cta-icon {
        width: clamp(28px, 7vw, 32px);
        height: clamp(28px, 7vw, 32px);
    }

    /* =========================
       FV (First View)
       ========================= */
    .fv {
        background-image: url('../img/FV_sp.png');
        background-size: clamp(25rem, 100vw, 47.9375rem) auto;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: auto;
    }

    .fv__inner {
        padding: 40px 5% 24px;
        min-height: 196.5vw;
        justify-content: center;
        align-items: flex-start;
    }

    .fv__content {
        max-width: 100%;
        gap: clamp(20px, 5vw, 32px);
    }

    .fv__title {
        font-size: clamp(24px, calc(24px + 32 * ((100vw - 400px) / 367)), 56px);
        line-height: 1.6;
        letter-spacing: 0.07em;
        margin-bottom: 32px;
    }

    .fv__title-block {
        font-size: clamp(32px, calc(32px + 16 * ((100vw - 400px) / 367)), 48px);
    }

    .fv__lead {
        font-size: clamp(15px, calc(15px + 11 * ((100vw - 400px) / 367)), 26px);
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .fv__lead-break::after {
        content: "\A";
        white-space: pre;
    }

    /* FV CTA - SP版サイズ縮小 */
    .fv-cta {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
    }

    .fv-cta__line-icon {
        width: clamp(60px, 16vw, 72px);
        height: clamp(60px, 16vw, 72px);
        top: 4px;
        left: 8px;
    }

    .fv-cta__line-icon::after {
        bottom: 18px;
        right: -4px;
        border-width: clamp(10px, 2.5vw, 14px) 0 0 clamp(10px, 2.5vw, 14px);
    }

    .fv-cta__line-icon-image {
        width:  clamp(30px, 8vw, 40px);
        height:  clamp(30px, 8vw, 40px);
    }

    .fv-cta__icon-and {
        width: clamp(12px, 3vw, 18px);
        height: clamp(12px, 3vw, 18px);
        font-size: clamp(8px, 2vw, 12px);
    }

    .fv-cta__content {
        min-height: 108px;
        padding-top: 12px;
    }

    .fv-cta__label {
        font-size: clamp(12px, 3vw, 14px);
        margin-bottom: -8px;
        left: clamp(-96px, -22vw, -80px);
    }

    .fv-cta__label::before,
    .fv-cta__label::after {
        font-size: clamp(8px, 2vw, 10px);
    }

    .fv-cta__main {
        font-size: clamp(14px, 3.5vw, 17px);
    }

    .fv-cta__main-em {
        font-size: clamp(24px, 6vw, 30px);
    }

    .fv-cta__divider {
        margin: 8px auto;
        width: 100%;
    }

    .fv-cta__sub {
        font-size: clamp(12px, 3vw, 15px);
        letter-spacing: 0.5px;
    }

    /* =========================
       Section Anxiety
       ========================= */
    .section-anxiety {
        padding:  56px 5% 72px;
    }

    .section-anxiety__label {
        font-size: clamp(16px, calc(20px - 0.5vw), 18px);
        border-radius: 0px;
    }

    .section-anxiety__title {
        font-size: clamp(36px, calc(44px - 1vw), 40px);
        letter-spacing: 2px;
        line-height: 1;
    }

    .section-anxiety__title-em {
        font-size: clamp(2rem, 1.455rem + 2.18vw, 2.5rem);
        text-decoration: underline;
        text-decoration-color: var(--color-primary);
        text-decoration-thickness: 3px;
        text-underline-offset: 4px;
    }

    .section-anxiety__title-sub {
        font-size: clamp(1.5rem, 0.955rem + 2.18vw, 2rem);
    }

    /* SP版専用改行 */
    .sp-break {
        line-height: 1.5;
    }

    .sp-break::after {
        content: "\A";
        white-space: pre;
    }

    .section-anxiety__divider {
        display: none;
    }

    /* カードを1列に */
    .section-anxiety__cards {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, calc(32px + 16px * ((100vw - 400px) / 367)), 48px);
    }

    .section-anxiety-card {
        max-width: 100%;
        box-shadow: none;
    }

    .section-anxiety-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
        margin-inline: 0;
    }

    .section-anxiety-card__badge {
        padding: 4px clamp(2rem, -0.18rem + 8.72vw, 4rem);
        gap: 4px;
    }

    .section-anxiety-card__badge-label {
        font-size: clamp(14px, calc(14px + 2px * ((100vw - 400px) / 367)), 16px);
    }

    .section-anxiety-card__badge-num {
        font-size: clamp(18px, calc(18px + 4px * ((100vw - 400px) / 367)), 22px);
    }

    .section-anxiety-card__title {
        font-size: clamp(1rem, 0.455rem + 2.18vw, 1.5rem);
    }

    .section-anxiety-card__footer {
        font-size: clamp(1rem, 0.864rem + 0.54vw, 1.125rem);
        line-height: 1.75;
        letter-spacing: 0.07em;
        padding: 18px 24px 22px;
    }

    .section-anxiety-card__body {
        aspect-ratio: 398 / 316;
        min-height: auto;
    }

    .section-anxiety-card__body--03 {
        background-position: center clamp(5.5rem, 0.732rem + 19.07vw, 9.875rem);
    }

    /* Support バナー */
    .guarantee-banner {
        margin-top: 0;
    }

    .guarantee-banner__content {
        width: 88%;
        background-image: url("../img/guarantee_img_sp.png");
        aspect-ratio: 336 / 315;
        background-size: contain;
        padding: clamp(20px, 6vw, clamp(1.5rem, 0.41rem + 4.36vw, 2.5rem));
        text-align: left;
        gap: clamp(4px, 2vw, 12px);
        justify-content: flex-start;
    }

    .fv__message-card {
        padding: 0;
    }

    .section-anxiety::after {
        width: 160px;
        bottom: -35px;
    }

    /* =========================
       Section Insurance
       ========================= */
    .section-insurance {
        padding: 72px 5% 80px;
    }

    .section-insurance .section-insurance__label {
        font-size: clamp(1rem, 0.319rem + 2.72vw, 1.625rem);
        margin: clamp(4px, 1vw, 8px) 0 clamp(32px, 10vw, 40px) 0;
    }

    .section-insurance__title {
        font-size: clamp(32px, calc(32px + 8px * ((100vw - 400px) / 367)), 40px);
        line-height: 1.4;
        letter-spacing: 1px;
        margin-bottom: clamp(36px, 12vw, 56px);
    }

    .section-insurance__title-small {
        font-size: clamp(24px, calc(24px + 4px * ((100vw - 400px) / 367)), 28px);
        position: relative;
    }

    .section-insurance__title-small::after {
        content: "";
        position: absolute;
        bottom: -5px;
        right: 0;
        width: clamp(120px, 40vw, 168px);
        height: 3px;
        background-color: var(--color-gold);
    }

    .section-insurance__title-highlight {
        letter-spacing: 1px;
        position: relative;
    }

    .section-insurance__title-highlight::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-gold);
    }

    .section-insurance__title-main {
        letter-spacing: 1px;
    }

    .section-insurance__divider {
        display: none;
    }

    .section-insurance__content {
        gap: clamp(24px, 8vw, 32px);
        padding: 0;
    }

    .section-insurance__text {
        max-width: 100%;
    }

    .section-insurance__tag {
        font-size: clamp(14px, 3.5vw, 16px);
        padding: 8px 16px;
    }

    .section-insurance__paragraph {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.8;
    }

    .section-insurance__visual {
        max-width: 100%;
        margin-inline: auto;
        flex: 0 0 auto;
        width: min(100%, 300px);
    }

    /* =========================
       Section LINE CTA
       ========================= */
    .section-linecta {
        padding: 40px 5% 24px;
    }

    .section-linecta__note {
        font-size: clamp(12px, 3vw, 14px);
        gap: 0;
        line-height: 1.75;
    }

    .fv-cta.fv-cta--large {
        width: 100%;
        max-width: clamp(22.5rem, 12.963rem + 38.15vw, 31.25rem);
    }

    .fv-cta--large .fv-cta__divider {
        width: 80%;
        margin-inline: auto;
    }

    .fv-cta__arrow {
        width: clamp(1rem, 0.455rem + 2.18vw, 1.5rem);
    }

    .fv-cta__arrow-icon {
        width: 10px;
        height: 10px;
    }

    /* =========================
       Section Support
       ========================= */
    .section-support {
        padding: 56px 5% 120px;
    }

    .section-support__illust {
        width: clamp(5.5rem, 3.048rem + 9.81vw, 7.75rem);
        top: clamp(3.5rem, 1.32rem + 8.72vw, 5.5rem);
    }

    .section-support__illust--left {
        left: clamp(-1rem, -3.452rem + 9.81vw, 1.25rem);
    }

    .section-support__illust--right {
        display: none;
    }

    .section-support__head {
        margin-bottom: clamp(20px, 6vw, 28px);
    }

    .section-support__eyebrow {
        font-size: clamp(1.125rem, 0.716rem + 1.63vw, 1.5rem);
    }

    .section-support__title {
        font-size: clamp(1.5rem, 0.955rem + 2.18vw, 2rem);
        margin-top: clamp(-12px, -3vw, -14px);
        margin-bottom: clamp(20px, 7vw, 32px);
    }

    .section-support__title-em {
        font-size: clamp(1.75rem, 0.388rem + 5.45vw, 3rem);
    }

    .section-support__title-bracket {
        font-size: clamp(22px, 5.5vw, 28px);
    }

    .section-support__title-small {
        font-size: clamp(1.5rem, 0.955rem + 2.18vw, 2rem);
    }

    .section-support__cards {
        gap: clamp(20px, 6vw, 24px);
    }

    .section-support__cards-row {
        gap: clamp(20px, 6vw, 24px);
    }

    /* Support Card */
    .support-card {
        padding: 24px 20px;
    }

    .support-card__badge {
        font-size: 14px;
        padding: 4px 12px;
    }

    .support-card__icon {
        width: 48px;
        height: 48px;
    }

    .support-card__title {
        font-size: 18px;
    }

    .support-card__text {
        font-size: 15px;
        line-height: 1.75;
        letter-spacing: 1.5px;
    }

    .section-price {
        padding: clamp(100px, calc(24.5vw + 2px), 190px) 0 40px;
        scroll-margin-top: clamp(160px, 34vw, 220px);
    }

    .section-price__image-wrapper {
        width: 88%;
    }

    .pricing-card {
        padding-top: 0;
        background-image: url('../img/pricing_img_sp.png');
        aspect-ratio: 336 / 360;
    }

    .pricing-card__ribbon-top {
        top: 11.11%;
    }

    .pricing-card__ribbon-text {
        font-size: clamp(1.125rem, 0.171rem + 3.81vw, 2rem);
    }

    .pricing-card__ribbon-left-text {
        font-size: clamp(1rem, -0.09rem + 4.36vw, 2rem);
    }

    .pricing-card__content {
        padding: 16.67% 7.14% 6.67%;
    }

    .pricing-card__price-box {
        left: 50%;
        top: 41.67%;
        transform: translate(-30%, -50%);
    }

    .pricing-card__price-amount {
        font-size: 48px;
    }

    .pricing-card__price-unit {
        font-size: 20px;
    }

    .pricing-card__price-tax {
        font-size: 14px;
    }

    .pricing-card__description {
        right: 7.14%;
        max-width: 100%;
        margin-top: 41.67%;
    }

    .pricing-card__text {
        font-size: 12px;
        line-height: 1.8;
    }

    /* Section Voices */
    .section-voices {
        padding: 64px 5% 32px;
    }

    .section-voices__inner {
        gap: clamp(20px, 6vw, 28px);
    }

    .section-voices__title {
        font-size: clamp(24px, 6.5vw, 30px);
    }

    .section-voices__subtitle {
        font-size: clamp(14px, 3.8vw, 16px);
    }

    .section-voices__cards {
        gap: clamp(24px, 8vw, 32px);
    }

    .section-voices__divider--bottom {
        margin-top: clamp(20px, 6vw, 28px);
    }

    /* カードメイン部分 */
    .voices-card__main {
        padding: clamp(6px, 2vw, 10px) clamp(16px, 5vw, 24px) clamp(14px, 4vw, 20px);
    }

    .voices-card__amount-row {
        margin-bottom: clamp(8px, 3vw, 14px);
    }

    .voices-card__amount-number {
        font-size: clamp(34px, 9vw, 44px);
    }

    .voices-card__amount-unit {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .voices-card__body {
        font-size: clamp(14px, 3.8vw, 16px);
    }

    /* カードボトム部分 */
    .voices-card__bottom {
        padding: 8px 20px;
        align-items: center;
        gap: 12px;
    }

    .voices-card__avatar {
        width: clamp(36px, 10vw, 44px);
        position: relative;
        left: -10px;
    }

    .voices-card__profile {
        gap: 0;
    }

    .voices-card__profile-text {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .voices-card__points {
        font-size: 11px;
    }

    .voices-card__point-bullet {
        width: 14px;
        height: 14px;
    }

    .voices-card {
        max-width: 100%;
    }

    /* Section Flow */
    .section-flow {
        padding: 0px 5%;
    }

    .section-flow__titles {
        margin-bottom: clamp(24px, 8vw, 36px);
    }

    .section-flow__title-main {
        font-size: clamp(26px, 7vw, 34px);
    }

    .section-flow__title-sub {
        font-size: clamp(20px, 6vw, 26px);
    }

    .section-flow__label-en {
        font-size: clamp(13px, 3.8vw, 16px);
    }

    .section-flow__illust {
        display: none;
    }

    .section-flow__list {
        gap: clamp(28px, 9vw, 40px);
    }

    .flow-step__card {
        gap: clamp(16px, 5vw, 20px);
        padding: clamp(24px, 8vw, 32px) clamp(14px, 5vw, 18px);
    }

    .flow-step__badge {
        left: -6px;
        top: -6px;
        width: clamp(64px, 19vw, 72px);
    }

    .flow-step__badge::after {
        bottom: 8px;
        border-width: 8px 6px 0 6px;
    }

    .flow-step__badge-label {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .flow-step__badge-num {
        font-size: clamp(24px, 7vw, 30px);
    }

    .flow-step__body {
        gap: clamp(16px, 6vw, 22px);
        padding: 0 clamp(14px, 5vw, 20px);
    }

    .flow-step__texts {
        gap: clamp(8px, 3vw, 12px);
    }

    .flow-step__heading {
        gap: clamp(2px, 1vw, 6px);
    }

    .flow-step__title {
        font-size: clamp(16px, 4.5vw, 20px);
        padding-left: clamp(32px, 10vw, 48px);
    }

    .flow-step__underline { 
        width: clamp(15.438rem, -6.225rem + 86.65vw, 35.313rem);
        height: clamp(1px, 0.3vw, 2px);
        margin-left: auto;
        max-width: 100%;
    }

    .flow-step__description {
        font-size: clamp(13px, 3.8vw, 15px);
        padding: 0;
    }

    .flow-step:nth-child(5) .flow-step__description {
        padding: 0;
    }

    .flow-step__visual {
        flex: 0;
    }

    /* Section FAQ */
    .section-faq {
        padding: 40px 5% 48px;
    }

    .section-faq__inner {
        gap: clamp(1rem, 0.728rem + 1.09vw, 1.25rem);
    }

    .section-faq__title {
        font-size: clamp(20px, 5.8vw, 26px);
    }

    .section-faq__label-en {
        font-size: clamp(13px, 3.8vw, 16px);
        margin-bottom: clamp(12px, 4vw, 18px);
    }

    .section-faq__list {
        gap: clamp(8px, 3vw, 12px);
    }

    .faq-item__box {
        border-radius: clamp(12px, 4vw, 16px);
    }

    .faq-item__row {
        gap: clamp(10px, 3vw, 14px);
        padding: clamp(12px, 4vw, 16px) clamp(16px, 5vw, 22px);
    }

    .faq-item__row--question {
        padding-right: 12px;
    }

    /* 閉じてる状態のpadding: 0を維持 */
    .faq-item__row--answer {
        padding: 0;
    }

    /* 開いている状態の回答 */
    .faq-item--active .faq-item__row--answer {
        padding: 14px 20px;
    }

    .faq-item__badge {
        flex: 0 0 28px;
        width: 28px;
        font-size: clamp(11px, 3.2vw, 13px);
    }

    .faq-item__question {
        font-size: clamp(14px, 4vw, 16px);
        letter-spacing: 1.5px;
    }

    .faq-item__answer {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .faq-item__toggle {
        width: 28px;
    }

    .faq-item__icon {
        width: 16px;
        height: 16px;
    }

    /* Section Legal */
    .section-legal {
        padding: 40px 5% 56px;
    }

    .section-legal__inner {
        gap: clamp(16px, 6vw, 24px);
    }

    .section-legal__title {
        font-size: clamp(16px, 4.8vw, 20px);
    }

    .section-legal__row {
        gap: clamp(8px, 3vw, 12px);
        padding: clamp(14px, 5vw, 22px) 0;
    }

    .section-legal__term {
        font-size: clamp(13px, 3.8vw, 16px);
    }

    .section-legal__desc {
        font-size: clamp(13px, 3.8vw, 16px);
    }

    .gold-label {
        margin-left: -34px;
    }

    /* Site Footer */
    .site-footer {
        padding: 24px 5% 48px;
    }

    .site-footer__inner {
        gap: clamp(32px, 10vw, 56px);
    }

    .site-footer__logo {
        height: clamp(24px, 7vw, 30px);
    }

    .site-footer__bottom {
        gap: clamp(16px, 6vw, 24px);
    }

    .site-footer__nav {
        flex-direction: column;
        align-items: center;
        gap: clamp(6px, 3vw, 10px);
        margin-bottom: clamp(32px, 12vw, 48px);
    }

    .site-footer__nav-link {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .site-footer__copy {
        font-size: clamp(11px, 3vw, 13px);
    }

    .guarantee-banner__title-top {
        font-size: clamp(2rem, 0.365rem + 6.54vw, 3.5rem);
        letter-spacing: 2px;
    }

    .guarantee-banner__title-main {
        font-size: clamp(2rem, 0.365rem + 6.54vw, 3.5rem);
        letter-spacing: 2px;
    }

    .guarantee-banner__title-wrapper {
        padding: clamp(1rem, -0.771rem + 7.08vw, 2.625rem) 0 40px;
    }

    .guarantee-banner__text {
        font-size: clamp(0.925rem, 0.298rem + 2.51vw, 1.5rem);
        text-align: left;
    }

    .pricing-card__text--emphasis {
        font-size: clamp(1.125rem, -0.374rem + 5.99vw, 2.5rem);
    }

    .pricing-card__text {
        font-size: clamp(0.925rem, 0.298rem + 2.51vw, 1.5rem);
        padding: clamp(0rem, -5.45rem + 21.8vw, 5rem) 0 0 0;
        
    }

    .pricing-card__price-amount {
        font-size: clamp(2.5rem, -1.587rem + 16.35vw, 6.25rem);
    }

    .pricing-card__price-tax {
        font-size: 20px;
    }

    .pricing-card__ribbon-left {
        left: clamp(0.5rem, -2.225rem + 10.9vw, 3rem);
        top: 39%;
    }

    .section-voices__head {
        gap: 16px;
        margin-bottom: 32px;
    }

    .section-voices__title-to {
        font-size: 24px;
    }

    .gold-label__text {
        font-size: 14px;
    }

    .voices-card__point-text {
        font-size: 15px;
    }
}

/* =========================
   アクセシビリティ: アニメーション無効化
   ========================= */

@media (prefers-reduced-motion: reduce) {
    .faq-item__icon,
    .faq-item__row--answer {
        transition: none;
    }
}
