@charset "UTF-8";

/* ==================================== */
/* 0. 変数定義 & リセット */
/* ==================================== */
:root {
    --primary: #b08d6e;
    --primary-light: #c9a88a;
    --primary-dark: #967558;
    --accent: #c4956c;
    --accent-dark: #a87d5a;
    --campaign: #d4a574;
    --alert: #c97070;
    --gold: #d4a855;

    --text: #4a3f35;
    --text-light: #7a6e62;
    --text-muted: #b0a598;

    --bg: #faf8f5;
    --bg-alt: #f5f0eb;
    --white: #ffffff;
    --border: #e8e0d8;

    --font-en: 'Montserrat', sans-serif;
    --font-jp: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-full: 50px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);

    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition: all 0.3s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-jp);
    color: var(--text);
    line-height: 1.8;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    padding-top: 72px;
}

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }

/* ==================================== */
/* 1. ボタン */
/* ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-jp);
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 8px;
    line-height: 1.4;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 20px 48px; font-size: 18px; }
.btn-block { display: flex; max-width: 400px; margin-left: auto; margin-right: auto; }
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(176,141,110,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(176,141,110,0.4); color: #fff; }
.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(196,149,108,0.3);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,149,108,0.4); color: #fff; }
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: #fff; color: var(--text); }

/* ==================================== */
/* 2. ヘッダー */
/* ==================================== */
.page-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 24px;
    transition: var(--transition);
}
.page-header.scrolled { box-shadow: var(--shadow-sm); height: 64px; }

.header-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--primary);
    letter-spacing: -0.5px;
}

.desktop-nav { display: flex; gap: 24px; align-items: center; }
.desktop-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 13px;
    padding: 6px 0;
    position: relative;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.desktop-nav a:hover::after { width: 100%; }
.desktop-nav a:hover { color: var(--primary); }
.desktop-nav .nav-monitor { color: var(--alert); font-weight: 700; }
.header-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(196,149,108,0.3);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(196,149,108,0.4); }
.header-cta::after { display: none; }

.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    position: relative;
    z-index: 2000;
}
.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger-menu span:nth-child(1) { top: 0; }
.hamburger-menu span:nth-child(2) { top: 10px; }
.hamburger-menu span:nth-child(3) { top: 20px; }
.hamburger-menu.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mobile-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav.active { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-size: 18px; font-weight: 700; color: var(--text); padding: 10px 20px; }
.mobile-nav .nav-monitor { color: var(--alert); }

/* ==================================== */
/* 3. ヒーロー */
/* ==================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -72px;
    padding-top: 72px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    max-width: 800px;
}
.hero-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
    color: #fff;
    animation: fadeInUp 0.8s 0.2s both;
}
.hero-heading {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s 0.4s both;
}
.hero-sub {
    font-size: clamp(14px, 2.5vw, 18px);
    opacity: 0.9;
    margin-bottom: 32px;
    color: #fff;
    animation: fadeInUp 0.8s 0.6s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s 0.8s both;
}
.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    opacity: 0.7;
    animation: fadeInUp 0.8s 1s both;
}
.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-trust span::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================================== */
/* 4. キャンペーン */
/* ==================================== */
.campaign-section {
    padding: 0 20px;
    margin: 20px auto 0;
    max-width: 720px;
    position: relative;
    z-index: 2;
}
.campaign-card {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px 32px 36px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.campaign-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--alert);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 24px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(201,112,112,0.3);
}
.campaign-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.5;
}
.campaign-title::after { display: none; }
.campaign-free {
    color: var(--alert);
    font-size: 28px;
    position: relative;
}
.campaign-free::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0;
    width: 100%; height: 4px;
    background: rgba(201,112,112,0.15);
    border-radius: 2px;
}
.campaign-sub {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}
.campaign-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 20px;
    text-align: left;
}
.campaign-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.cp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
}
.campaign-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==================================== */
/* 5. 実績数字 */
/* ==================================== */
.stats-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.stat-number {
    display: block;
    font-family: var(--font-en);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}
.stat-number small {
    font-size: 16px;
    font-weight: 700;
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ==================================== */
/* 6. セクション共通 */
/* ==================================== */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header { text-align: center; margin-bottom: 48px; }
.section-en {
    display: block;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 12px;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-desc {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ==================================== */
/* 7. 成功事例 */
/* ==================================== */
/* Swiper スライダー版レイアウト */
.cases-swiper {
    padding-bottom: 50px;
}
.cases-swiper .swiper-slide {
    height: auto;
}
.cases-swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}
.cases-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}
.cases-swiper .swiper-button-prev,
.cases-swiper .swiper-button-next {
    color: var(--primary);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.cases-swiper .swiper-button-prev::after,
.cases-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

/* レガシー grid（未使用だが互換用） */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.case-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-card--hidden { display: none; }
.cases-grid.show-all .case-card--hidden { display: block; }
.cases-more { text-align: center; margin-top: 32px; }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    cursor: pointer;
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 48px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.case-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    z-index: 1;
}
.case-images { display: flex; gap: 2px; }
.case-img { flex: 1; position: relative; }
.case-img--single { flex: 1; }
.case-img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.img-label {
    position: absolute;
    bottom: 8px; left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
}
.img-label--after { background: var(--primary); }
.case-body { padding: 20px; }
.case-body h3 { font-size: 16px; color: var(--primary); margin-bottom: 4px; }
.case-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.case-body p { font-size: 14px; color: var(--text-light); margin-bottom: 8px; }
.case-voice {
    font-size: 14px;
    font-style: italic;
    color: var(--primary);
    background: #f5efe8;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    margin-bottom: 0;
}

/* ==================================== */
/* 8. 選ばれる理由 */
/* ==================================== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.reason-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reason-icon {
    width: 56px; height: 56px;
    background: #f5efe8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}
.reason-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--text); }
.reason-card p { font-size: 14px; color: var(--text-light); margin-bottom: 0; }
.reason-card strong { color: var(--primary); }

/* ==================================== */
/* 9. 体験の流れ */
/* ==================================== */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.flow-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}
.flow-item:nth-child(even) { flex-direction: row-reverse; }
.flow-num {
    position: absolute;
    top: -12px; left: 24px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 900;
    background: var(--primary);
    color: #fff;
    padding: 2px 12px;
    border-radius: var(--radius-full);
}
.flow-item img {
    width: 40%;
    max-width: 240px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.flow-text { flex: 1; }
.flow-text h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.flow-text p { font-size: 14px; color: var(--text-light); margin-bottom: 0; }

/* ==================================== */
/* 10. 料金 */
/* ==================================== */
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.price-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--popular { border: 2px solid var(--primary); }
.price-card--popular .price-card__header { background: var(--primary); }
.price-card__header {
    background: var(--text);
    color: #fff;
    padding: 16px 20px;
    text-align: center;
}
.price-card__header--trial { background: var(--primary-light); }
.price-card__header h3 { color: #fff; font-size: 16px; margin-bottom: 0; }
.price-card__tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 4px;
}
.price-card__body { padding: 24px 20px; text-align: center; }
.price-card__duration { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.price-card__price {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
}
.price-card__price small { font-size: 13px; font-weight: 500; color: var(--text-light); }
.price-card__per { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }
.price-card__note {
    font-size: 13px;
    color: var(--alert);
    font-weight: 700;
    margin-bottom: 0;
}

/* ペアプラン */
.price-pair {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 40px;
}
.price-pair__title { font-size: 17px; text-align: center; margin-bottom: 20px; color: var(--text); }
.price-pair__title::after { display: none; }
.price-pair__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-pair__item {
    text-align: center;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}
.price-pair__name { display: block; font-weight: 700; font-size: 14px; color: var(--primary); margin-bottom: 4px; }
.price-pair__amount { display: block; font-family: var(--font-en); font-size: 22px; font-weight: 900; color: var(--text); }
.price-pair__detail { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* 競合比較 */
.price-compare {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.price-compare__title { font-size: 17px; text-align: center; margin-bottom: 20px; color: var(--text); }
.price-compare__title::after { display: none; }
.price-compare__table-wrap { overflow-x: auto; }
.price-compare__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-compare__table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
}
.price-compare__table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}
.price-compare__highlight td {
    background: #f5efe8;
    color: var(--primary);
    font-weight: 700;
}

/* ==================================== */
/* 11. モニター */
/* ==================================== */
.monitor-banner-section {
    padding: 0 20px;
    max-width: 720px;
    margin: 0 auto;
}
.monitor-card {
    display: block;
    background: #fff5eb;
    border: 2px solid var(--campaign);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.monitor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #fff8f0; }
.monitor-card__badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--alert);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
}
.monitor-card h3 { font-size: 20px; color: var(--alert); margin-bottom: 8px; }
.monitor-card p { font-size: 15px; color: var(--text); margin-bottom: 12px; }
.monitor-card__link {
    display: inline-block;
    background: var(--alert);
    color: #fff;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
}

/* ==================================== */
/* 12. トレーナー */
/* ==================================== */
.trainer {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.trainer__photo { flex-shrink: 0; }
.trainer__photo img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-alt);
}
.trainer__info { flex: 1; }
.trainer__info h3 { font-size: 22px; margin-bottom: 12px; }
.trainer__motto {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.8;
}
.trainer__career {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.trainer__career li {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}
.trainer__career li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.trainer-video, .video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 32px 0;
}
.trainer-video iframe, .video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ==================================== */
/* 13. インタビュー */
/* ==================================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.tab-button {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-jp);
    transition: var(--transition);
    color: var(--text-light);
}
.tab-button.active, .tab-button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.interview-content {
    display: none;
    animation: fadeIn 0.4s ease;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.interview-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.interview h3 { font-size: 18px; color: var(--text); margin-bottom: 16px; }
.interview-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.profile-box {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
}
.profile-box p { margin-bottom: 0; color: var(--text); }
.question {
    font-weight: 700;
    color: var(--primary);
    margin-top: 16px;
}
.full-text {
    display: none;
    margin-top: 16px;
    background: var(--bg);
    padding: 20px;
    border-radius: var(--radius-sm);
}
.read-more {
    background: none;
    border: none;
    color: var(--primary-light);
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--primary-light);
    font-family: var(--font-jp);
}

/* インタビュー Swiper スライダー */
.interview-swiper {
    padding-bottom: 50px;
}
.interview-swiper .swiper-slide {
    height: auto;
}
.interview-swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}
.interview-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}
.interview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.interview-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.interview-card__body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.interview-card__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.interview-card__name {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
}
.interview-card__meta {
    font-size: 13px;
    color: var(--text-muted);
}
.interview-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}
.interview-card__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}
.interview-card__qa {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.interview-card__q {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 8px;
}
.interview-card__a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}
.interview-card__recommend {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: #f5efe8;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.interview-card__more {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s;
}
.interview-card__more:hover {
    background: var(--accent);
    color: var(--white);
}
.interview-card { cursor: pointer; }

/* インタビューモーダル */
.interview-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.6);
    padding: 20px;
    overflow-y: auto;
}
.interview-modal.visible { display: flex; justify-content: center; align-items: flex-start; }
.interview-modal__content {
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 720px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    overflow: hidden;
}
.interview-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
}
.interview-modal__close:hover { background: var(--bg-light); }
.interview-modal__inner { padding: 0; }
.interview-modal__inner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.interview-modal__body-text { padding: 32px; }
.interview-modal__body-text .im-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.interview-modal__body-text .im-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}
.interview-modal__body-text .im-meta {
    font-size: 14px;
    color: var(--text-light);
}
.interview-modal__body-text .im-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}
.interview-modal__body-text .im-intro {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}
.interview-modal__body-text .im-qa { margin-bottom: 20px; }
.interview-modal__body-text .im-q {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    padding-left: 8px;
    border-left: 3px solid var(--primary);
}
.interview-modal__body-text .im-a {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.interview-modal__body-text .im-recommend {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: #f5efe8;
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 767px) {
    .interview-modal__inner img { height: 200px; }
    .interview-modal__body-text { padding: 20px; }
    .interview-modal__body-text .im-title { font-size: 17px; }
}

/* ==================================== */
/* 14. FAQ */
/* ==================================== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 48px 18px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    list-style: none;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--primary);
    font-size: 20px;
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--text-light);
    border-top: 1px solid var(--border);
}

/* ==================================== */
/* 15. アクセス */
/* ==================================== */
.access-info {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}
.access-address { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.access-routes { list-style: none; }
.access-routes li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 16px;
    position: relative;
}
.access-routes li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.access-map iframe {
    width: 100%;
    height: 360px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.access-videos { margin-top: 40px; }
.access-videos__title { font-size: 17px; text-align: center; margin-bottom: 20px; }
.access-videos__title::after { display: none; }
.access-videos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.access-videos__item p { text-align: center; font-size: 14px; font-weight: 700; margin-top: 8px; color: var(--text); }

/* ==================================== */
/* 16. 最終CTA */
/* ==================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.final-cta__inner { max-width: 600px; margin: 0 auto; }
.final-cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #fff;
}
.final-cta h2::after { display: none; }
.final-cta p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.final-cta__note { font-size: 13px; opacity: 0.7; margin-top: 16px; margin-bottom: 0; }

/* ==================================== */
/* 17. フッター */
/* ==================================== */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 20px 40px;
}
.site-footer__inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}
.site-footer__logo {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}
.site-footer__address {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    margin-bottom: 24px;
}
.site-footer__nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.site-footer__nav a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.site-footer__nav a:hover { color: #fff; }
.site-footer__sns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.site-footer__sns a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}
.site-footer__sns a:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.site-footer__copy { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 0; }

/* ==================================== */
/* 18. ポップアップ */
/* ==================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.visible { opacity: 1; pointer-events: auto; }
.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 440px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s;
}
.modal-overlay.visible .modal-content { transform: scale(1); }
.modal-content h3 { font-size: 22px; margin-bottom: 12px; color: var(--text); }
.modal-content p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.close-modal {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--bg);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================================== */
/* 19. フェードアニメーション */
/* ==================================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ==================================== */
/* 20. Google口コミ */
/* ==================================== */
/* Google口コミカード */
.google-reviews { max-width: 900px; margin: 0 auto; }
.google-reviews__summary {
    display: flex; align-items: center; justify-content: center; gap: 30px;
    background: #fff; border: 2px solid #e8e8e8; border-radius: var(--radius);
    padding: 25px 30px; margin-bottom: 30px;
}
.google-reviews__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); font-size: 15px; }
.google-reviews__rating { display: flex; align-items: center; gap: 10px; }
.google-reviews__score { font-family: var(--font-en); font-size: 36px; font-weight: 700; color: var(--text); }
.google-reviews__stars { color: #FBBC05; font-size: 22px; letter-spacing: 2px; }
.google-reviews__count { font-size: 14px; color: var(--text-muted); }
.google-reviews__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px;
}
.google-review-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.google-review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.google-review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.google-review-card__avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.google-review-card__name { font-weight: 700; font-size: 14px; color: var(--text); }
.google-review-card__date { font-size: 12px; color: var(--text-muted); }
.google-review-card__stars { margin-left: auto; color: #FBBC05; font-size: 14px; letter-spacing: 1px; }
.google-review-card__text { font-size: 14px; line-height: 1.8; color: var(--text-light); margin-bottom: 0; }
.google-reviews__more {
    display: block; text-align: center; color: var(--primary); font-weight: 700;
    font-size: 15px; text-decoration: none; padding: 12px; border: 2px solid var(--primary);
    border-radius: var(--radius-full); transition: var(--transition);
}
.google-reviews__more:hover { background: var(--primary); color: #fff; }
.google-review-card--hidden { display: none; }
.google-review-card--hidden.google-review-card--shown { display: block; }
.google-reviews__toggle {
    display: block; width: 100%; max-width: 400px; margin: 0 auto 20px; padding: 14px 30px;
    background: #fff; color: var(--primary); font-size: 15px; font-weight: 700;
    border: 2px solid var(--primary); border-radius: var(--radius-full); cursor: pointer;
    transition: var(--transition);
}
.google-reviews__toggle:hover { background: var(--primary); color: #fff; }

@media screen and (max-width: 768px) {
    .google-reviews__summary { flex-direction: column; gap: 15px; padding: 20px; }
    .google-reviews__grid { grid-template-columns: 1fr; }
}

/* ==================================== */
/* 21. モニターページ専用 */
/* ==================================== */
.monitor-hero {
    position: relative;
    width: 100%; height: 80vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; overflow: hidden;
    margin-top: -72px; padding-top: 72px;
}
.monitor-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-image.jpg') center/cover no-repeat;
    z-index: -1;
}
.monitor-hero-content { max-width: 800px; padding: 0 20px; }
.hero-badge {
    display: inline-block; background: var(--alert); color: #fff;
    font-size: 14px; font-weight: 700; padding: 6px 16px;
    border-radius: 30px; margin-bottom: 20px; letter-spacing: 0.1em;
}
.monitor-hero h1 { font-size: clamp(24px,5vw,48px); line-height: 1.3; margin-bottom: 20px; color: #fff; }
.hero-subtext { font-size: clamp(14px,2.5vw,18px); margin-bottom: 40px; opacity: 0.9; color: #fff; }
.hero-scroll-btn {
    display: inline-block; color: #fff; border: 1px solid rgba(255,255,255,0.6);
    padding: 12px 30px; border-radius: 50px; font-size: 14px; transition: var(--transition);
}
.hero-scroll-btn:hover { background: #fff; color: var(--text); }

.monitor-intro { background: #fff; }
.intro-text { text-align: center; max-width: 800px; margin: 0 auto 50px; font-size: 16px; line-height: 2; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card {
    background: #fff; border-radius: var(--radius); padding: 30px;
    box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-wrapper {
    width: 70px; height: 70px; background: #f5efe8; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: var(--primary);
}
.icon-wrapper svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 18px; margin-bottom: 15px; color: var(--primary); }
.feature-card p { font-size: 14px; color: var(--text-light); margin-bottom: 0; }

.monitor-conditions { background: var(--bg-alt); }
.conditions-box {
    background: #fff; padding: 50px; border-radius: var(--radius);
    max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-sm);
}
.condition-list { list-style: none; margin-bottom: 30px; }
.condition-list li {
    display: flex; align-items: flex-start; gap: 15px;
    margin-bottom: 25px; border-bottom: 1px solid var(--border); padding-bottom: 20px;
}
.condition-list li:last-child { border-bottom: none; padding-bottom: 0; }
.check-icon {
    background: var(--accent); color: #fff; width: 24px; height: 24px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0; margin-top: 2px;
}
.condition-list .text { display: flex; flex-direction: column; }
.condition-list strong { font-size: 18px; margin-bottom: 5px; color: var(--text); }
.condition-list span { font-size: 14px; color: var(--text-light); }
.condition-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 0; }

.monitor-price-section { background: #fff; text-align: center; }
.pricing-card {
    background: #fff; border: 3px solid var(--primary); border-radius: 20px;
    max-width: 650px; margin: 0 auto 50px; overflow: hidden;
    box-shadow: var(--shadow-lg); position: relative;
}
.pricing-header { background: var(--primary); color: #fff; padding: 20px; }
.pricing-header h3 { color: #fff; margin-bottom: 5px; font-size: 20px; }
.course-details { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 0; }
.price-comparison {
    padding: 40px 20px; display: flex; align-items: center;
    justify-content: center; gap: 20px; flex-wrap: wrap;
}
.old-price-area { text-align: center; }
.old-price-area .label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 5px; }
.old-price-area .price { font-size: 24px; color: #999; text-decoration: line-through; font-family: var(--font-en); font-weight: 700; }
.arrow-down { font-size: 24px; color: var(--primary); animation: bounceRight 1.5s infinite; }
@keyframes bounceRight { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.new-price-area { text-align: center; position: relative; }
.new-price-area .label {
    display: inline-block; background: var(--gold); color: #fff;
    font-size: 12px; padding: 4px 12px; border-radius: 20px; font-weight: 700; margin-bottom: 5px;
}
.price-wrapper { color: var(--alert); font-family: var(--font-en); line-height: 1; }
.price-wrapper .currency { font-size: 24px; font-weight: 700; }
.price-wrapper .amount { font-size: 56px; font-weight: 900; letter-spacing: -2px; }
.price-wrapper .tax { font-size: 14px; color: var(--text); font-weight: 500; }
.discount-badge {
    position: absolute; top: -20px; right: -20px; background: var(--alert); color: #fff;
    font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 4px;
    transform: rotate(15deg); box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.payment-methods { background: var(--bg); padding: 10px; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); }

.monitor-flow { background: var(--bg); }
.flow-container { display: flex; gap: 30px; flex-wrap: wrap; }
.flow-step {
    flex: 1; min-width: 280px; background: #fff; padding: 30px;
    border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative;
}
.step-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; border-bottom: 2px solid var(--bg-alt); padding-bottom: 15px; }
.step-num { font-size: 32px; font-family: var(--font-en); font-weight: 900; color: #e0e0e0; line-height: 1; }
.flow-step h3 { font-size: 18px; margin-bottom: 0; color: var(--primary); }
.flow-step p { font-size: 14px; margin-bottom: 0; color: var(--text-light); }

/* 共通ボタン */
.apply-button {
    display: inline-block; background: var(--accent); color: white;
    padding: 15px 30px; border-radius: 50px; font-weight: bold; text-decoration: none;
    margin-top: 20px; transition: var(--transition); box-shadow: 0 4px 10px rgba(196,149,108,0.3);
}
.apply-button:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(196,149,108,0.4); color: white; }
.pulse-animation { animation: pulseBtn 2s infinite; }
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(196,149,108,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(196,149,108,0); }
    100% { box-shadow: 0 0 0 0 rgba(196,149,108,0); }
}
.reassurance-text { font-size: 13px; color: var(--text-muted); margin-top: 15px; font-weight: bold; }
.campaign-btn { font-size: 20px; padding: 20px 40px; display: block; max-width: 400px; margin: 0 auto; }

/* ==================================== */
/* 22. 体験予約ページ */
/* ==================================== */
.res-container { max-width: 800px; margin-top: 40px; }
.res-header { text-align: center; margin-bottom: 40px; }
.res-form {
    background: var(--white); padding: 50px 40px;
    border-radius: var(--radius); box-shadow: var(--shadow-md); border: none;
}
.form-group { margin-bottom: 30px; }
.form-group label { display: flex; align-items: center; font-weight: 700; margin-bottom: 10px; color: var(--text); font-size: 15px; }
.required { background: var(--alert); color: #fff; font-size: 11px; padding: 4px 8px; border-radius: 4px; margin-left: 10px; line-height: 1; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font-jp); font-size: 16px;
    background-color: #fcfcfc; transition: var(--transition);
    -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; background-color: #fff; border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(176,141,110,0.1);
}
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; padding-right: 48px; cursor: pointer;
}
.datetime-group { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.date-input { position: relative; cursor: pointer; }
.date-input:not(.has-value) { color: transparent; }
.date-input:not(.has-value)::before { content: '日にちを選ぶ'; position: absolute; left: 16px; color: #999; pointer-events: none; }
.date-input:focus, .date-input.has-value { color: var(--text); }
.date-input:focus::before { display: none; }
.submit-btn {
    width: 100%; background: var(--accent); color: #fff; padding: 20px;
    border: none; border-radius: var(--radius-full); font-size: 18px; font-weight: 700;
    cursor: pointer; transition: var(--transition); box-shadow: 0 6px 15px rgba(196,149,108,0.2); margin-top: 20px;
}
.submit-btn:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(196,149,108,0.3); }
.submit-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
.res-success-msg {
    text-align: center; background: #f0fdf4; border: 2px solid var(--accent);
    padding: 50px 20px; border-radius: var(--radius); margin-bottom: 40px;
}
.res-success-msg h3 { color: var(--accent); font-size: 22px; }

/* ==================================== */
/* 23. 動画一覧ページ */
/* ==================================== */
.movie-hero {
    position: relative; width: 100%; height: 40vh; min-height: 300px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff; margin-bottom: 60px; text-align: center; margin-top: -72px; padding-top: 72px;
}
.movie-hero h1 { font-family: var(--font-en); font-size: clamp(24px,5vw,48px); margin-bottom: 10px; color: #fff; letter-spacing: 2px; }
.movie-hero p { color: rgba(255,255,255,0.9); font-size: 16px; margin: 0; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.video-card {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
    overflow: hidden; transition: var(--transition); border: 1px solid var(--border);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.video-frame-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; }
.video-frame-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-info { padding: 25px; }
.video-category { display: inline-block; background: #f5efe8; color: var(--primary); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }
.video-card h3 { font-size: 18px; margin-bottom: 15px; line-height: 1.5; color: var(--text); }
.video-card p { font-size: 14px; color: var(--text-light); margin-bottom: 0; }
.cta-section-wrapper { background-color: var(--bg-alt); padding: 80px 20px; text-align: center; margin-top: 80px; }

/* キャンペーン特別セクション（モニターページ等で使用） */
.campaign-special-section {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    padding: 60px 20px; margin-bottom: 40px;
}
.campaign-inner {
    max-width: 800px; margin: 0 auto; background: #fff;
    border: 3px solid var(--gold); border-radius: 20px; padding: 40px;
    box-shadow: 0 15px 35px rgba(243,156,18,0.15); text-align: center; position: relative;
}
.blink-icon { color: #fff; animation: blink 1s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.campaign-inner .campaign-title { margin-top: 20px; margin-bottom: 20px; border: none; padding-bottom: 0; }
.campaign-inner .campaign-title::after { display: none; }
.campaign-inner .campaign-title .small-text { font-size: 18px; color: var(--primary); }
.countdown-box {
    display: inline-block; background: var(--bg-alt); padding: 10px 25px;
    border-radius: 50px; font-weight: 700; color: var(--text); margin-bottom: 30px;
}
.countdown-number { color: var(--alert); font-size: 24px; font-family: var(--font-en); }
.campaign-offers { display: flex; gap: 20px; margin-bottom: 30px; }
.offer-box {
    flex: 1; background: #fdfdfd; border: 2px solid #eee;
    border-radius: 12px; padding: 25px 15px; position: relative; transition: transform 0.3s;
}
.offer-box:hover { transform: translateY(-3px); border-color: var(--gold); }
.offer-label {
    position: absolute; top: -12px; left: 20px; background: var(--gold);
    color: #fff; font-size: 12px; font-weight: bold; padding: 4px 15px; border-radius: 20px;
}
.offer-box h3 { font-size: 18px; color: var(--text); margin-bottom: 15px; }
.old-price { font-size: 14px; color: #999; text-decoration: line-through; }
.arrow { color: var(--alert); margin: 0 5px; }
.new-price { font-size: 28px; color: var(--alert); font-weight: 900; }
.highlight-price { font-size: 36px; }
.new-price .currency { font-size: 18px; }
.new-price .tax { font-size: 12px; color: var(--text-muted); font-weight: normal; }
.campaign-features {
    list-style: none; text-align: left; background: #fffafa;
    padding: 20px 30px; border-radius: 10px; margin-bottom: 30px;
}
.campaign-features li { font-weight: 700; color: var(--text); margin-bottom: 10px; display: flex; align-items: center; }
.campaign-features li:last-child { margin-bottom: 0; }
.check-mark { color: var(--accent); font-size: 20px; margin-right: 10px; font-weight: 900; }

/* ブログ用 highlight */
.highlight-pink, .highlight {
    background: linear-gradient(transparent 60%, #ffe0e0 60%);
    font-weight: 700; color: var(--text); padding: 0 4px;
}

/* ==================================== */
/* ★ レスポンシブ ★ */
/* ==================================== */
@media screen and (max-width: 768px) {
    body { padding-top: 64px; }

    /* ヘッダー */
    .page-header { height: 64px; padding: 0 16px; }
    .page-header.scrolled { height: 56px; }
    .desktop-nav { display: none; }
    .hamburger-menu { display: block; }

    /* ヒーロー */
    .hero { min-height: 75vh; margin-top: -64px; padding-top: 64px; }
    .hero-heading { font-size: clamp(28px, 7vw, 40px); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; gap: 8px; }

    /* キャンペーン */
    .campaign-section { margin-top: 20px; }
    .campaign-card { padding: 40px 20px 28px; }
    .campaign-title { font-size: 18px; }
    .campaign-free { font-size: 24px; }

    /* 数字 */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 32px; }

    /* セクション */
    .section { padding: 56px 0; }
    .section-title { font-size: 24px; }

    /* 成功事例 */
    .cases-grid { grid-template-columns: 1fr; }

    /* 選ばれる理由 */
    .reasons-grid { grid-template-columns: 1fr; }

    /* 体験の流れ */
    .flow-item, .flow-item:nth-child(even) { flex-direction: column; }
    .flow-item img { width: 100%; max-width: 100%; height: auto; }

    /* 料金 */
    .price-cards { grid-template-columns: repeat(2, 1fr); }
    .price-pair__grid { grid-template-columns: 1fr; }

    /* トレーナー */
    .trainer { flex-direction: column; text-align: center; padding: 32px 20px; }
    .trainer__photo img { width: 180px; height: 180px; }
    .trainer__info { text-align: center; }
    .trainer__career { align-items: center; }

    /* アクセス */
    .access-info { grid-template-columns: 1fr; }
    .access-videos__grid { grid-template-columns: 1fr; }

    /* 最終CTA */
    .final-cta { padding: 56px 20px; }
    .final-cta h2 { font-size: 22px; }

    /* フォーム */
    .res-form { padding: 30px 20px; }
    .datetime-group { grid-template-columns: 1fr; }

    /* モニターページ */
    .monitor-hero { height: 70vh; margin-top: -64px; padding-top: 64px; }
    .price-comparison { flex-direction: column; gap: 10px; }
    .arrow-down { transform: rotate(90deg); animation: none; margin: 10px 0; }
    .price-wrapper .amount { font-size: 42px; }
    .conditions-box { padding: 30px 20px; }
    .flow-container { flex-direction: column; }

    /* キャンペーン特別 */
    .campaign-special-section { padding: 40px 15px; }
    .campaign-inner { padding: 40px 15px 30px; }
    .campaign-inner .campaign-title { font-size: 22px; }
    .campaign-offers { flex-direction: column !important; gap: 20px !important; }
    .offer-box { width: 100% !important; }
    .campaign-features { padding: 15px; font-size: 14px; }
    .campaign-btn { font-size: 16px; padding: 18px 20px; width: 100%; }

    /* 動画 */
    .movie-hero { height: 30vh; min-height: 250px; margin-top: -64px; padding-top: 64px; }
}

@media screen and (max-width: 480px) {
    .price-cards { grid-template-columns: 1fr; }
    .stats-grid { gap: 8px; }
    .stat-item { padding: 16px 12px; }
    .stat-number { font-size: 28px; }
}

/* ==================================== */
/* フローティングCTA（スマホ固定バー） */
/* ==================================== */
.floating-cta {
    display: none;
}
@media (max-width: 768px) {
    .floating-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        gap: 8px;
        padding: 10px 12px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    }
    .floating-cta__btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 8px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        transition: var(--transition);
    }
    .floating-cta__btn--primary {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 3px 10px rgba(176,141,110,0.3);
    }
    .floating-cta__btn--primary:hover {
        background: var(--primary-dark);
    }
    .floating-cta__btn--line {
        background: #06C755;
        color: #fff;
        box-shadow: 0 3px 10px rgba(196,149,108,0.3);
    }
    .floating-cta__btn--line:hover {
        background: #05a647;
    }
    /* フローティングCTAの分、ページ下部に余白を確保 */
    body {
        padding-bottom: 80px;
    }
    /* Swiperの矢印はスマホでは非表示 */
    .cases-swiper .swiper-button-prev,
    .cases-swiper .swiper-button-next {
        display: none;
    }
}

/* ==================================== */
/* prefers-reduced-motion */
/* ==================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .fade-up { opacity: 1; transform: none; }
}