/* ==================================
   CSS変数（色・共通設定）
   後で色を変える場合はここだけ編集
   ================================== */

:root {
    /* ===== カラー（仮組み：色コード確定後にここを変更） ===== */
    --color-primary: #1a7e9d;
    /* メインティール */
    --color-primary-bright: #31b4bd;
    /* 明るいティール（FAQバー等） */
    --color-teal-dark: #16667e;
    /* 濃いティール（フッター・ボタン・FVラベル・PDCAバナー） */
    --color-primary-deep: #015474;
    /* 最も濃いティール（実績セクション等） */
    --color-primary-light: #5ECECE;
    /* 薄めティール */
    --color-accent: #ffdc4d;
    /* 黄色（plan-label・pdca-badge・CTAボタン） */
    --color-accent-dark: #deb718;
    /* 濃いゴールド（FV/CTAキャッチ文字・ボーダー） */
    --color-accent-bright: #fff600;
    /* 明るい黄色（テキストハイライト・導線ボックス） */
    --color-stat-num: #da0000;
    /* 赤（金額・注意テキスト） */
    --color-bg-main: #FFFFFF;
    /* 基本背景（白） */
    --color-bg-sub: #F0FAFA;
    /* サブ背景（薄いティール） */
    --color-bg-lightblue: #dcedf2;
    /* 水色背景（FV・各セクション共通） */
    --color-bg-dark: #0D1F1F;
    /* FV・フッター濃色背景 */
    --color-bg-gray: #F5F7FA;
    /* グレー背景 */
    --color-text-main: #1A1A1A;
    /* メインテキスト */
    --color-text-sub: #595959;
    /* サブテキスト */
    --color-text-light: #888888;
    /* キャプション等 */
    --color-text-white: #FFFFFF;
    /* 白テキスト */
    --color-border: #C8E6E6;
    /* ボーダー */
    --color-plan-standard: #1A5F6E;
    /* スタンダードプランヘッダー */
    --color-plan-premium: #1A2A3A;
    /* プレミアムプランヘッダー */
    --color-recommend: #ed7160;
    /* 赤系（おすすめバッジ・強調テキスト・アンダーライン） */
    /* ===== レイアウト ===== */
    --container-width: 1200px;
    --header-height: 80px;
}


/* ==================================
   リセット・グローバル
   ================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: noto-sans-cjk-jp, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 400;
    color: var(--color-text-main);
    line-height: 1.8;
    background: var(--color-bg-main);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}


/* ==================================
   共通レイアウト
   ================================== */

.sect-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}


/* ==================================
   共通セクションヘッダー
   ================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1rem;
    color: var(--color-text-sub);
    line-height: 1.9;
}


/* ==================================
   共通ボタン
   ================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-text-white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.08em;
    padding: 0 48px;
    height: 64px;
    box-shadow: 0 4px 14px rgba(26, 111, 196, 0.3);
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}


/* ==================================
   共通アニメーション
   ================================== */

@keyframes float-circle {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.js-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.js-fade-group>.js-fade-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-group.is-visible>.js-fade-item {
    opacity: 1;
    transform: translateY(0);
}

.js-fade-group.is-visible>.js-fade-item:nth-child(1) {
    transition-delay: 0.00s;
}

.js-fade-group.is-visible>.js-fade-item:nth-child(2) {
    transition-delay: 0.12s;
}

.js-fade-group.is-visible>.js-fade-item:nth-child(3) {
    transition-delay: 0.24s;
}

.js-fade-group.is-visible>.js-fade-item:nth-child(4) {
    transition-delay: 0.36s;
}

.js-fade-group.is-visible>.js-fade-item:nth-child(5) {
    transition-delay: 0.48s;
}


/* ==================================
   スマホ誘導モーダル
   ================================== */

.sp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-modal-overlay.is-hidden {
    display: none;
}

.sp-modal {
    background: #015474;
    border-radius: 16px;
    padding: 48px 32px 40px;
    width: 340px;
    text-align: center;
    position: relative;
    color: var(--color-text-white);
}

.sp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.sp-modal-close img {
    width: 32px;
    height: 32px;
}

.sp-modal-heading {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sp-modal-phone-link {
    display: block;
    margin-bottom: 20px;
}

.sp-modal-phone-link img {
    width: 160px;
    height: auto;
    margin: 0 auto;
}

.sp-modal-sub {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sp-modal-btn {
    display: inline-block;
    background: #c00000;
    color: var(--color-text-white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 8px 40px;
    transition: opacity 0.2s;
}

.sp-modal-btn:hover {
    opacity: 0.85;
}


/* モーダル表示中はbodyスクロール無効 */

body.modal-open {
    overflow: hidden;
}


/* ==================================
   ヘッダー
   ================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--color-bg-main);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 38px;
    width: auto;
}

.header-nav {
    flex: 1;
}

.header-nav ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--color-primary);
}

.header-cta-wrap {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-teal-dark);
    color: var(--color-text-white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 0 20px;
    height: 44px;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-header-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.header-sp-link {
    font-size: 0.9rem;
    color: var(--color-primary);
    white-space: nowrap;
    transition: color 0.2s;
    border-bottom: 1px solid var(--color-primary);
    margin-top: -5px;
}

.header-sp-link:hover {
    color: var(--color-primary);
}

.header-sp-link img {
    display: inline;
    margin-bottom: -10px;
}


/* ==================================
   FV
   ================================== */

.sect-fv {
    background: var(--color-bg-lightblue);
    padding-top: var(--header-height);
    text-align: center;
    overflow: hidden;
    background-image: url('../img/fv/fv-back.png');
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 40px;
}

.fv-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 64px 40px 0;
}

.fv-catch {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    letter-spacing: 0.05em;
}

.fv-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.fv-sub {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 48px;
    font-weight: 700;
}


/* スマホ5台横並び */


/* FVカルーセル */

.fv-carousel-wrap {
    overflow: hidden;
    width: 100%;
    margin-bottom: 100px;
}

.fv-carousel-track {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    width: max-content;
    animation: marquee-left 32s linear infinite;
}

.fv-carousel-img {
    height: auto;
    width: auto;
    flex-shrink: 0;
    display: block;
}


/* 統計サークル（画像） */

.fv-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.fv-stat img {
    width: 180px;
    height: auto;
    margin-bottom: -40px;
    animation: float-circle 3s ease-in-out infinite;
}

.fv-stat:nth-child(2) img {
    animation-delay: 0.6s;
}

.fv-stat:nth-child(3) img {
    animation-delay: 1.2s;
}


/* FV下部ラベル */

.fv-bottom-label {
    color: var(--color-text-white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    padding-top: 24px;
    margin-top: 0;
    letter-spacing: 0.05em;
}


/* ==================================
   スワイプLPってなに？
   ================================== */

.sect-about {
    position: relative;
    /* 追加 */
    overflow: hidden;
    /* 追加 */
    background: var(--color-bg-main);
    padding: 80px 0 170px;
    /* 下だけ拡張：80px 0 → 80px 0 170px */
    text-align: center;
}


/* 下の湾曲（薄い水色のアーク） */

.sect-about::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -85px;
    /* height の半分（170 ÷ 2） */
    width: 120%;
    height: 170px;
    background: var(--color-bg-lightblue);
    border-radius: 50% 50% 0 0;
    z-index: 0;
}


/* コンテンツを円弧より前面に */

.sect-about .sect-inner {
    position: relative;
    z-index: 1;
}

.about-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.about-desc {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.9;
    margin-bottom: 56px;
    font-weight: 500;
}

.about-phones {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.about-phone-item {
    text-align: center;
}

.about-phone-item img {
    width: 300px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 24px;
}

.about-phone-label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.phone-mock {
    position: relative;
    width: 280px;
    /* 表示幅はお好みで */
    aspect-ratio: 706 / 1523;
    /* ★新しいフレーム画像の比率に変更 */
    margin: 0 auto;
}


/* 画面領域：解析で出たinsetに合わせる */

.phone-screen {
    position: absolute;
    /* ★画面窓に合わせて inset を更新 */
    top: 1.51%;
    left: 3.97%;
    right: 4.11%;
    bottom: 1.51%;
    overflow: hidden;
    border-radius: 7% / 3%;
    /* 任意（フレームが角を隠すのでほぼ見えません）*/
    background: #000;
    z-index: 1;
}


/* フレームを最前面に重ねる（透明な画面部分から中身が見える）*/

.phone-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}


/* 横スワイプ：3パネル */

.phone-track--x {
    display: flex;
    width: 300%;
    /* 4枚→3枚 */
    height: 100%;
    animation: phone-x 8s infinite;
}

.phone-track--x .phone-slide {
    flex: none;
    width: 33.3333%;
    /* 25%→33.3333% */
    height: 100%;
    object-fit: cover;
}


/* 横スワイプ：3パネル */

.phone-track--y {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* = 画面ぴったり */
    animation: phone-y 8s infinite;
}


/* 各スライドを画面サイズで絶対配置 */

.phone-track--y .phone-slide {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    /* 1枚＝画面ちょうど */
    object-fit: cover;
    display: block;
}


/* 1枚ずつ画面1個分ずらして縦に並べる */

.phone-track--y .phone-slide:nth-child(1) {
    top: 0%;
}

.phone-track--y .phone-slide:nth-child(2) {
    top: 100%;
}

.phone-track--y .phone-slide:nth-child(3) {
    top: 200%;
}

@keyframes phone-y {
    0%,
    30% {
        transform: translateY(0);
    }
    37%,
    63% {
        transform: translateY(-100%);
    }
    70%,
    100% {
        transform: translateY(-200%);
    }
}


/* 縦スワイプ：3パネル */

.phone-track--y {
    position: absolute;
    /* .phone-screen にぴったり重ねる */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: phone-y 8s infinite;
}

.phone-track--y .phone-slide {
    display: block;
    /* ブロックで縦に積む */
    width: 100%;
    height: 100%;
    /* = 画面1枚分（トラック＝画面なので確実に解決）*/
    object-fit: cover;
}


/* 移動量も3パネル用に（-25/-50/-75 → -33.3333/-66.6666）*/

@keyframes phone-x {
    0%,
    30% {
        transform: translateX(0);
    }
    37%,
    63% {
        transform: translateX(-33.3333%);
    }
    70%,
    100% {
        transform: translateX(-66.6666%);
    }
}


/* ==================================
   縦長LPの問題 → 導線がないだけ
   ================================== */

.sect-problem {
    background: var(--color-bg-lightblue);
    padding: 72px 0 80px;
    text-align: center;
}

.problem-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}


/* インラインハイライト（黄色マーカー） */

.text-highlight {
    background: var(--color-accent-bright);
    padding: 0 6px;
    border-radius: 2px;
}

.about-problem-text {
    font-size: 1.4rem;
    color: var(--color-primary);
    line-height: 2;
    margin-bottom: 16px;
    font-weight: 700;
}


/* 「スワイプLPです！」黄色バナー */

.about-swipe-banner {
    display: inline-block;
    background: var(--color-accent-bright);
    color: var(--color-primary);
    font-size: 3rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.about-condition-text {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.about-condition-strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 40px;
}


/* 試みリスト（白カード） */

.about-try-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.about-try-item {
    background: var(--color-bg-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 16px 28px;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a6a6a;
}

.about-try-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}


/* 「結果がでなかった」グレーボックス */

.about-failed-box {
    background: #d6d6d6;
    padding: 10px 20px;
    font-size: 1.4rem;
    color: #6a6a6a;
    margin-bottom: 32px;
    display: inline-block;
    font-weight: 700;
}


/* 原因テキスト */

.about-cause-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.about-cause-text span {
    color: #595959;
}

.about-cause-sub {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 32px;
}


/* 「導線」黄色ボックス */

.about-dosen-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-accent-bright);
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.about-dosen-box span {
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.05;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
}


/* 「がないだけ」 */

.about-nai-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.about-wire-img {
    margin: 0 auto;
    width: 184px;
    height: 184px;
    object-fit: contain;
}


/* ==================================
   今までのLPをスマホで迷わず読める形へ
   ================================== */

.sect-feature {
    position: relative;
    /* 追加：擬似要素の基準にする */
    overflow: hidden;
    /* 追加：はみ出した円弧を切り取る */
    background: var(--color-bg-main);
    padding: 160px 0;
    /* 100px → 160px：カーブ分の余白を確保 */
}


/* 上下の湾曲（薄い水色のアーク） */

.sect-feature::before,
.sect-feature::after {
    content: "";
    position: absolute;
    left: -10%;
    width: 120%;
    height: 170px;
    background: var(--color-bg-lightblue);
    z-index: 0;
}

.sect-feature::before {
    /* 上のカーブ */
    top: -60px;
    border-radius: 0 0 50% 50%;
}

.sect-feature::after {
    /* 下のカーブ */
    bottom: -60px;
    border-radius: 50% 50% 0 0;
}

.feature-content {
    position: relative;
    /* 追加 */
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-text {
    flex: 1;
    text-align: center;
}

.feature-pre {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text-sub);
    margin-bottom: 12px;
}

.feature-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.45;
    margin-bottom: 24px;
}

.feature-sub {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.8;
}

.feature-phone {
    flex-shrink: 0;
    width: 320px;
}

.feature-phone img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}


/* ==================================
   SNS・ECモールの例示
   ================================== */

.sect-sns {
    background: var(--color-bg-lightblue);
    padding: 80px 0 100px;
    text-align: center;
}

.sns-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.8;
    margin-bottom: 56px;
}

.sns-phones {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-end;
}

.sns-phone-item {
    position: relative;
    display: inline-block;
}

.sns-item-img {
    width: 180px;
    height: auto;
    display: block;
}

.sns-swipe-overlay {
    position: absolute;
    top: 42%;
    left: 50%;
    width: 55%;
    pointer-events: none;
}


/* 右→左 */

@keyframes swipe-yoko {
    0% {
        transform: translate(calc(-50% + 16px), -50%);
        opacity: 1;
    }
    70% {
        transform: translate(calc(-50% - 16px), -50%);
        opacity: 1;
    }
    85% {
        transform: translate(calc(-50% - 20px), -50%);
        opacity: 0;
    }
    86% {
        transform: translate(calc(-50% + 20px), -50%);
        opacity: 0;
    }
    100% {
        transform: translate(calc(-50% + 16px), -50%);
        opacity: 1;
    }
}


/* 下→上 */

@keyframes swipe-tate {
    0% {
        transform: translate(-50%, calc(-50% + 16px));
        opacity: 1;
    }
    70% {
        transform: translate(-50%, calc(-50% - 16px));
        opacity: 1;
    }
    85% {
        transform: translate(-50%, calc(-50% - 20px));
        opacity: 0;
    }
    86% {
        transform: translate(-50%, calc(-50% + 20px));
        opacity: 0;
    }
    100% {
        transform: translate(-50%, calc(-50% + 16px));
        opacity: 1;
    }
}

.sns-swipe-overlay--yoko {
    animation: swipe-yoko 2s ease-in-out infinite;
}

.sns-swipe-overlay--tate {
    animation: swipe-tate 2s ease-in-out infinite;
}


/* ==================================
   動画ウィジェット（固定・右上）
   ================================== */

.video-widget {
    position: fixed;
    bottom: 50px;
    right: 0;
    z-index: 90;
    display: block;
    transition: opacity 0.2s;
}

.video-widget:hover {
    opacity: 0.85;
}

.video-widget img {
    display: block;
    height: auto;
    width: auto;
}


/* ==================================
   3つの理由
   ================================== */

.sect-reasons {
    padding: 100px 0;
    background: var(--color-bg-main);
}

.reasons-header {
    text-align: center;
    margin-bottom: 64px;
}

.reasons-pre {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text-sub);
}

.reasons-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.reasons-num-big {
    font-size: 3rem;
    font-style: normal;
    vertical-align: middle;
    color: var(--color-primary);
}


/* カード共通 */

.reason-card {
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    padding: 56px 48px 48px;
    position: relative;
    margin-top: 48px;
    margin-bottom: 120px;
}

.reason-card+.reason-card {
    margin-top: 56px;
}

.reason-card-badge {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--color-bg-main);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.reason-card-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.55;
}

.reason-card-text {
    font-size: 1.3rem;
    color: var(--color-text-sub);
    line-height: 2;
    margin-bottom: 40px;
    font-weight: 700;
}


/* カード1: スマホ3台 */


/* カード共通画像（1枚完結タイプ） */

.reason-card-img {
    width: 100%;
    height: auto;
    display: block;
}

.reason-arrow {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
}


/* カード2: スマホ左・注釈右 */

.r2-media {
    display: flex;
    align-items: center;
    gap: 60px;
}

.r2-phone-img {
    width: 40%;
    flex-shrink: 0;
    height: auto;
}

.r2-note {
    font-size: 1.3rem;
    color: var(--color-text-sub);
    line-height: 1.9;
    font-weight: 700;
}


/* カード3: 改善フロー（1枚画像） */

.r3-kaizen-img {
    width: 100%;
    height: auto;
}

.reason-card-last {
    margin-bottom: 0;
}


/* ==================================
   導入実績
   ================================== */

.sect-results {
    background: var(--color-bg-lightblue);
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
    position: relative;
    /* 追加：円弧の位置基準 */
}


/* ① 白いベース：最下部を白にして下の白セクションへ繋ぐ */

.sect-results::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: var(--color-bg-main);
    /* 白 */
    z-index: 1;
}


/* ② 水色のふくらみ：中央を下にえぐって凹ませる */

.sect-results::before {
    content: "";
    position: absolute;
    left: -10%;
    bottom: 80px;
    width: 120%;
    height: 140px;
    background: var(--color-bg-lightblue);
    /* 水色 */
    border-radius: 0 0 50% 50%;
    /* 下方向に膨らむ */
    z-index: 2;
}

.results-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary-deep);
    margin-bottom: 12px;
}

.results-sub {
    font-size: 1.2rem;
    color: var(--color-primary-deep);
    margin-bottom: 48px;
    font-weight: 700;
}


/* マーキー */

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.results-marquee-wrap {
    overflow: hidden;
    width: 100%;
    margin-bottom: 16px;
}

.results-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-left 60s linear infinite;
}

.results-marquee-track--reverse {
    animation-name: marquee-right;
}

.results-phone {
    width: 160px;
    height: auto;
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}


/* 統計サークル（画像） */

.results-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 48px 0 0;
    position: relative;
    /* 追加 */
    z-index: 3;
    margin-bottom: -50px;
}

.results-stat img {
    width: 200px;
    height: auto;
    animation: float-circle 3s ease-in-out infinite;
}

.results-stat:nth-child(2) img {
    animation-delay: 0.6s;
}

.results-stat:nth-child(3) img {
    animation-delay: 1.2s;
}


/* ==================================
   丸投げOKセクション
   ================================== */

.sect-proposal {
    background: var(--color-bg-main);
    padding: 100px 0 170px;
    /* 下を拡張：120 → 170 */
    text-align: center;
    position: relative;
    overflow: hidden;
    /* 追加 */
}


/* 境界A：下に水色の凸アーク */

.sect-proposal::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -85px;
    width: 120%;
    height: 170px;
    background: var(--color-bg-lightblue);
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.sect-proposal .sect-inner {
    position: relative;
    z-index: 1;
    /* コンテンツをアークより前面に */
}

.proposal-pre {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.proposal-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 64px;
    line-height: 1.45;
}

.proposal-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: left;
}

.proposal-item {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 48px;
}

.proposal-item:last-child {
    border-bottom: none;
}

.proposal-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.proposal-num {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
}

.proposal-banner {
    background: var(--color-primary);
    color: var(--color-text-white);
    font-size: 2rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 4px;
    flex: 1;
    text-align: center;
}

.proposal-emphasis {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-recommend);
    margin-bottom: 10px;
    line-height: 1.7;
}

.proposal-text {
    font-size: 1.3rem;
    color: var(--color-primary);
    line-height: 2;
}


/* ==================================
   求人媒体 vs 自社採用LP
   ================================== */

.sect-media-compare {
    background: var(--color-bg-lightblue);
    padding: 80px 0 170px;
    /* 下を拡張：80px 0 → 80px 0 170px */
    text-align: center;
    position: relative;
    overflow: hidden;
    /* 追加 */
}


/* 境界B：下に白の凸アーク */

.sect-media-compare::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -85px;
    width: 120%;
    height: 170px;
    background: var(--color-bg-main);
    /* 白 */
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.sect-media-compare .sect-inner {
    position: relative;
    z-index: 1;
}

.media-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 50px;
}

.media-heading span {
    border-bottom: 5px solid var(--color-recommend);
}


/* 2カラムカード */

.media-cards {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}


/* 左: コスト比較 */

.media-card--cost {
    flex: 1;
    background: var(--color-bg-main);
    padding: 40px 36px;
    text-align: left;
}

.cost-list {
    margin-bottom: 24px;
}

.cost-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.cost-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.cost-name span {
    color: var(--color-primary);
}

.cost-note {
    font-size: 1rem;
    color: var(--color-primary);
}

.cost-badge {
    display: block;
    background: var(--color-recommend);
    color: var(--color-text-white);
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-align: center;
}

.cost-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.cost-total span {
    font-size: 1.5rem;
    color: var(--color-stat-num);
}


/* 右: me-mo */

.media-card--memo {
    flex: 1;
    background: var(--color-primary);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.memo-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.memo-circles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.memo-circle-row {
    display: flex;
    gap: 12px;
}

.memo-circle-img {
    width: 140px;
    height: auto;
}

.memo-catch {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.6;
    text-align: center;
}

.memo-catch span {
    font-size: 2.5rem;
    color: var(--color-text-white);
}


/* 締め文 */

.media-closing {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.9;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}


/* ==================================
   料金プラン
   ================================== */

.sect-price {
    padding: 0 0 140px;
    /* 余白 = 140 − 115 = 25px に絞る */
    background: var(--color-bg-main);
    position: relative;
    overflow: hidden;
}


/* price（白）↓ option（水色）：下に水色の凸アーク */

.sect-price::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -115px;
    /* ★ height の半分（230 ÷ 2）に必ず合わせる */
    width: 120%;
    height: 230px;
    /* 深さ = 115px */
    background: var(--color-bg-lightblue);
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.sect-price .sect-inner {
    position: relative;
    z-index: 1;
}

.price-header {
    text-align: center;
    margin-bottom: 56px;
}

.price-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.price-logo {
    height: 40px;
    width: auto;
}

.price-sub1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-sub2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.price-note {
    font-size: 1rem;
    color: var(--color-primary);
}

.price-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 32px;
}


/* 列ラッパー（吹き出し＋カードを縦に） */

.plan-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 吹き出しを中央に */
}

.plan-col .price-plan {
    width: 100%;
    /* カードは列いっぱいに */
}


/* 吹き出し画像 */

.plan-bubble {
    display: block;
    height: 56px;
    /* ★3枚を同じ高さに → カード上端が揃う（幅は自動）*/
    width: auto;
    margin-bottom: -8px;
    /* 尾をカード上端に少し重ねる */
    position: relative;
    z-index: 1;
    /* カードの影より前面に */
}

.price-plan {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.plan-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 0;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.plan-label--accent {
    background: var(--color-accent);
    color: var(--color-recommend);
}

.plan-recommend-badge {
    background: var(--color-recommend);
    color: var(--color-text-white);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.plan-recommend-badge::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-recommend);
}

.plan-header {
    color: var(--color-text-white);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 20px 16px;
}

.plan-header--light {
    background: var(--color-primary);
}

.plan-header--standard {
    background: var(--color-plan-standard);
}

.plan-header--premium {
    background: var(--color-plan-premium);
}

.plan-body {
    background: var(--color-bg-main);
    padding: 24px 24px 32px;
    text-align: center;
}

.plan-price-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 6px;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
}

.plan-price-num span {
    font-size: 1.2rem;
}

.plan-price-sub {
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-bottom: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.plan-slides-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

.price-plan--standard .plan-slides-badge {
    background-color: var(--color-plan-standard);
}

.price-plan--premium .plan-slides-badge {
    background-color: var(--color-plan-premium);
}

.price-plan--standard .plan-price-num,
.price-plan--standard .plan-price-sub {
    color: var(--color-plan-standard)
}

.price-plan--premium .plan-price-num,
.price-plan--premium .plan-price-sub {
    color: var(--color-plan-premium)
}


/* ① ヘッダーを高く・大きく */

.plan-header--standard {
    background: var(--color-plan-standard);
    font-size: 1.5rem;
    /* 1.3rem → 1.5rem */
    padding: 30px 16px;
    /* 20px → 30px（縦を増やす）*/
}


/* ② 金額を大きく */

.price-plan--standard .plan-price-num {
    font-size: 2.8rem;
    /* 2.2rem → 2.8rem */
}


/* ③ 行間を広げて本体を縦に伸ばす */

.price-plan--standard .plan-feature-list li {
    padding: 12px 0;
    /* 9px → 12px */
}


/* ④ 上にもせり出させる（列ごと持ち上げる）*/

.price-plans .plan-col:nth-child(2) {
    margin-top: -24px;
}

.plan-feature-list {
    text-align: left;
}

.plan-feature-list li {
    font-size: 1em;
    color: var(--color-text-main);
    padding: 9px 0;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.plan-feature-list li:first-child {
    border-top: 1px solid var(--color-border);
}

.feat-yes {
    color: #ff0000;
    font-weight: 700;
}

.feat-no {
    color: var(--color-text-light);
}

.plan-feature-list small {
    color: #ff0000;
    font-size: 0.8rem;
}


/* リンクボタン */

.price-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.price-link-img {
    height: 48px;
    width: auto;
}


/* 安心保守パック */

.maintenance-pack {
    border: 2px solid var(--color-primary-bright);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 80px;
}

.maintenance-head {
    background: var(--color-primary-bright);
    color: var(--color-text-white);
    text-align: center;
    padding: 6px 20px;
}

.maintenance-head h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.maintenance-head p {
    font-size: 1.2rem;
    font-weight: 700;
}

.maintenance-body {
    padding: 28px 32px;
    display: flex;
    gap: 32px;
    align-items: center;
}

.maintenance-left {
    flex: 1;
}

.maintenance-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.maintenance-tag {
    background: var(--color-primary-bright);
    color: var(--color-text-white);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    height: 80px;
    border-radius: 6px;
    line-height: 1.4;
    place-content: center;
}

.maintenance-right {
    flex-shrink: 0;
    text-align: center;
}

.maintenance-specs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: center;
}

.maintenance-spec-img {
    width: 56px;
    height: auto;
}

.maintenance-price-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-bright);
    margin-bottom: 4px;
}

.maintenance-price {
    font-size: 1.5rem;
    color: var(--color-primary-bright);
    font-weight: 700;
}

.maintenance-price strong {
    font-size: 1.8rem;
    color: var(--color-primary-bright);
}

.maintenance-divider {
    border: none;
    border-top: 1px solid #1c7f9d;
    margin: 0 32px;
}

.maintenance-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    padding: 24px 32px;
}

.maintenance-checklist li {
    font-size: 1rem;
    color: var(--color-primary);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.maintenance-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}


/* ==================================
   オプション料金
   ================================== */

.sect-option {
    background: var(--color-bg-lightblue);
    padding-bottom: 100px;
    text-align: center;
}

.option-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 48px;
}


/* オプショングリッド */

.option-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.option-item {
    background: var(--color-bg-main);
    border-radius: 2px;
    padding: 5px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* ★追加：上下中央 */
    gap: 3px;
    text-align: center;
    align-items: center;
}

.option-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.option-note {
    font-size: 0.78rem;
    color: var(--color-primary);
    line-height: 1.5;
    font-weight: 500;
}

.option-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

.option-caution {
    font-size: 0.75rem;
    color: var(--color-stat-num);
    font-weight: 700;
}

.option-sub-note {
    font-size: 0.56rem;
    color: var(--color-primary);
    line-height: 1.5;
    font-weight: 500;
}


/* PDCAバナー */

.pdca-wrap {
    background-color: #FFF;
    border-radius: 12px;
    padding-bottom: 40px;
}

.pdca-banner {
    background: var(--color-teal-dark);
    border-radius: 12px 12px 0 0;
    padding: 10px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.pdca-banner-text {
    text-align: left;
}

.pdca-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-white);
}

.pdca-price {
    font-size: 1.1rem;
    color: var(--color-text-white);
}

.pdca-price strong {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
}

.pdca-badge {
    position: absolute;
    top: -24px;
    right: 25%;
    width: 90px;
    height: auto;
}


/* PDCA説明 */

.pdca-desc-area {
    text-align: left;
    margin-bottom: 32px;
    padding: 0 40px;
}

.pdca-desc {
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.9;
    margin-bottom: 4px;
    font-weight: 700;
}

.pdca-kaizen-img {
    width: 100%;
    height: auto;
    padding: 40px;
}


/* ==================================
   導入の流れ
   ================================== */

.sect-flow {
    padding: 80px 0 100px 0 100px;
    background: var(--color-bg-main);
}

.flow-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 48px;
}

.flow-row {
    margin-bottom: 48px;
}

.flow-arrow-img {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    display: block;
    border-radius: 4px;
}

.flow-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.flow-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.flow-step-text {
    font-size: 0.9rem;
    color: var(--color-primary);
    line-height: 1.85;
    font-weight: 500;
}


/* ==================================
   よくある質問
   ================================== */

.sect-faq {
    padding: 80px 0 100px;
    background: var(--color-bg-main);
}

.faq-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    margin-bottom: 24px;
}


/* Q バー */

.faq-q-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-primary-bright);
    color: var(--color-text-white);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 50px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.faq-q-label {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 700;
}


/* A 行 */

.faq-a-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 12px 0 32px;
}

.faq-a-label {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #848484;
    line-height: 1.7;
}

.faq-a-text {
    font-size: 1rem;
    color: #3e3e3e;
    line-height: 1.85;
    margin-top: 6px;
}


/* ==================================
   サポートセクション
   ================================== */

.sect-support {
    background: var(--color-bg-main);
    padding: 60px 0 120px;
    position: relative;
}

.support-card {
    background: var(--color-bg-lightblue);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.support-illust {
    flex-shrink: 0;
    width: 200px;
}

.support-illust img {
    width: 100%;
    height: auto;
}

.support-text {
    flex: 1;
}

.support-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.support-body {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.9;
    margin-bottom: 8px;
    font-weight: 700;
}

.support-note {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.7;
    font-weight: 700;
}


/* ==================================
   CTA
   ================================== */

.sect-cta {
    background: var(--color-bg-lightblue);
    padding: 130px 0 80px;
    /* 上を拡張：80 → 130（凹みの分、本文を下げる）*/
    text-align: center;
    position: relative;
    /* 追加 */
    overflow: hidden;
    /* 追加 */
}


/* support（白）↓ cta（水色）：上が凹む（白が中央で下に垂れる）*/

.sect-cta::before {
    content: "";
    position: absolute;
    left: -10%;
    top: -100px;
    /* ★ height の半分のマイナス（200 ÷ 2）*/
    width: 120%;
    height: 200px;
    /* 凹みの深さ = 100px */
    background: var(--color-bg-main);
    /* 白 */
    border-radius: 0 0 50% 50%;
    /* 下向きに膨らむ＝中央が垂れる */
    z-index: 0;
}

.sect-cta .sect-inner {
    position: relative;
    z-index: 1;
    /* 本文をアークより前面に */
}

.cta-catch {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin-bottom: 16px;
}

.cta-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.cta-sub {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 700;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border: 3px solid var(--color-teal-dark);
    color: var(--color-teal-dark);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 0 80px;
    height: 72px;
    letter-spacing: 0.1em;
    transition: opacity 0.2s, transform 0.2s;
    margin-bottom: 48px;
}

.btn-cta:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.cta-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 500;
    font-weight: 700;
}

.cta-logo {
    height: 32px;
    width: auto;
}


/* ==================================
   フッター
   ================================== */

.site-footer {
    background: var(--color-teal-dark);
    padding: 24px 0;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-text-white);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}


/* ============================================================
   レスポンシブ対応（既存CSSの末尾に追記）
   ============================================================ */
/* スマホ：文字サイズを全体的に縮小（remベースなのでルートで一括調整） */
@media (max-width: 768px) {
  html { font-size: 81.25%; }   /* 16px → 約13px 相当（全体が約81%に）*/
}
@media (max-width: 480px) {
  html { font-size: 70%; }      /* 16px → 約12px 相当 */
}
@media (max-width: 768px) {

  /* ---- 全体：横はみ出し防止＆左右余白 ---- */
  body { overflow-x: hidden; }
  img { max-width: 100%; height: auto; }
  .sect-inner { padding-left: 20px; padding-right: 20px; }

  /* ---- ヘッダー：ナビは隠してロゴ＋CTAのみ（固定高さを崩さない）---- */
  .header-nav { display: none; }
  .header-inner { gap: 12px; }

  /* ---- FV ---- */
  .fv-stats { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .fv-stat img { width: 130px; }

  /* ---- About：2台のスマホを縦に ---- */
  .about-phones { flex-direction: column; align-items: center; gap: 48px; }
  .phone-mock { width: min(280px, 78vw); }
  .about-try-list { flex-wrap: wrap; justify-content: center; }

  /* ---- 特徴（テキスト＋スマホ）を縦に ---- */
  .feature-content { flex-direction: column; gap: 32px; text-align: center; }
  .feature-phone { width: min(320px, 78vw); margin: 0 auto; }

  /* ---- SNS事例 ---- */
  .sns-phones { flex-direction: column; align-items: center; gap: 32px; }

  /* ---- 理由（reason2のメディア横並び）---- */
  .r2-media { flex-direction: column; }
	.reason-card {
		padding: 15px;
		padding-top: 50px;
	}

  /* ---- 実績サークル（3つ）---- */
  .results-stats { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .results-stat img { width: 150px; }

  /* ---- 求人媒体 vs 自社LP：2カードを縦に ---- */
  .media-cards { flex-direction: column; }
  .memo-circles, .memo-circle-row { flex-wrap: wrap; justify-content: center; }
	.media-card {
		padding: 15px;
	}

  /* ---- 料金プラン：3列→1列 ---- */
  .price-plans { grid-template-columns: 1fr; gap: 40px; }
  .price-plans .plan-col:nth-child(2) { margin-top: 0; }  /* スタンダードのせり出し解除 */
  .price-heading { flex-direction: column; align-items: center; text-align: center; }
  .price-links { flex-direction: column; align-items: center; gap: 12px; }

  /* ---- 保守テーブル ---- */
  .maintenance-body { flex-direction: column; }
  .maintenance-tags { grid-template-columns: 1fr 1fr; }
  .maintenance-specs {align-items: center; }
  .maintenance-checklist { grid-template-columns: 1fr; }
  .maintenance-left {
		width: 100%;
	}

  /* ---- オプション：4列→2列 ---- */
  .option-grid { grid-template-columns: 1fr 1fr; }
  .pdca-banner { flex-direction: column; text-align: center; gap: 12px; }
	.pdca-badge {
		right: 0;
		width: 75px;
	}
	.pdca-kaizen-img {
		padding: 0 10px;
	}

  /* ---- 導入の流れ：3列→1列 ---- */
  .flow-steps-grid { grid-template-columns: 1fr; }

  /* ---- FAQ ---- */
  .faq-a-row { flex-direction: column; }

  /* ---- サポート ---- */
  .support-card { flex-direction: column; text-align: center; }
  .support-illust { width: 160px; margin: 0 auto; }

  /* ---- CTA・フッター ---- */
  .cta-brand { flex-direction: column; gap: 8px; }
  .footer-inner { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer-nav ul { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }

  /* ---- 固定の動画ウィジェットを小さく ---- */
  .video-widget { width: 120px; }
  .video-widget img { width: 100%; }

  /* ---- スマホ案内モーダル ---- */
  .sp-modal { width: min(340px, 90vw); }
}

/* スマホ（小）：細かい調整 */
@media (max-width: 480px) {
  .option-grid { grid-template-columns: 1fr; }     /* オプションも1列 */
  .maintenance-tags { grid-template-columns: 1fr; }
  .fv-stat img { width: 110px; }
}