@charset "UTF-8";

/* ==================================== */
/* 0. 変数定義 & リセット */
/* ==================================== */
:root {
    /* カラーパレット */
    --primary-color: #0066cc;       /* 知的な青 */
    --primary-gradient: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    --accent-color: #06C755;        /* LINE緑 */
    --accent-gradient: linear-gradient(135deg, #06C755 0%, #05b34c 100%);
    --campaign-color: #ffb300;      /* キャンペーンのゴールド系 */
    --alert-red: #d32f2f;           /* 強調・注意色（追加） */
    
    --text-main: #333333;
    --text-sub: #666666;
    
    --bg-body: #f9fbfd;             /* ほんのり青みがかった白 */
    --bg-white: #ffffff;
    --bg-gray: #eff2f5;
    
    /* フォント */
    --font-en: 'Montserrat', sans-serif;
    --font-jp: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

    /* 形状・エフェクト */
    --border-radius: 16px;          /* 柔らかい角丸 */
    --border-radius-sm: 8px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12); /* 追加 */
    --shadow-hover: 0 15px 35px rgba(0, 102, 204, 0.15); /* 青みがかった影 */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-jp);
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt"; /* 日本語の文字詰め */
    padding-top: 70px; /* ヘッダー固定分の余白 */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: var(--border-radius-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

/* ==================================== */
/* 1. 共通レイアウト & タイポグラフィ */
/* ==================================== */
.container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 20px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.section {
    padding: 80px 0; /* セクション間の余白 */
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

h2 {
    font-size: 28px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* セクションタイトル（英語サブタイトル付き） */
h2.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

h2.section-title .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--font-en);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-sub);
}

/* 強調テキスト（蛍光ペン風） */
.highlight-pink, .highlight {
    background: linear-gradient(transparent 60%, #ffe0e0 60%);
    font-weight: 700;
    color: var(--text-main);
    padding: 0 4px;
}

/* ==================================== */
/* 2. ヘッダー & ナビゲーション */
/* ==================================== */
.page-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px); /* すりガラス効果 */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 0 30px;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* スクロール後のヘッダー変化 */
.page-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 60px; /* 少し細くする */
}

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

.page-header .logo {
    font-size: 22px;
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.page-header .desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.page-header .desktop-nav a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
}

.page-header .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.page-header .desktop-nav a:hover::after {
    width: 100%;
}

/* モニター募集の強調 */
.desktop-nav .nav-monitor {
    color: var(--alert-red) !important;
    font-weight: 700;
}
.desktop-nav .nav-monitor:hover {
    opacity: 0.8;
}

/* ヘッダーCTAボタン */
.page-header .header-cta {
    background: var(--accent-gradient);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 195, 0, 0.3);
}

.page-header .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 195, 0, 0.4);
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 2000;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-menu span:nth-child(1) { top: 0; }
.hamburger-menu span:nth-child(2) { top: 11px; }
.hamburger-menu span:nth-child(3) { top: 22px; }

.hamburger-menu.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { top: 11px; 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-main);
    padding: 10px 20px;
}

.mobile-nav .nav-monitor {
    color: var(--alert-red);
    font-weight: 700;
    background: #fff5f5;
    border-radius: 50px;
    padding: 10px 30px;
}

/* ==================================== */
/* 3. ヒーローセクション & トップビュー (Index) */
/* ==================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(0.7);
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    color: #fff;
    text-align: center;
    font-size: clamp(20px, 4vw, 36px);
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    line-height: 1.6;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* ==================================== */
/* 4. モニターページ専用スタイル (NEW) */
/* ==================================== */

/* モニターヒーロー */
.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: -70px; /* ヘッダー分上げる */
    padding-top: 70px;
}

.monitor-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 背景画像をCSSで指定 */
    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;
    background-attachment: fixed; /* パララックス風 */
}

.monitor-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--alert-red);
    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;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.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-main);
}

/* モニター特徴 (Icon Grid) */
.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(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--bg-gray);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 0;
}

/* 応募条件リスト */
.monitor-conditions {
    background: var(--bg-gray);
}

.conditions-box {
    background: #fff;
    padding: 50px;
    border-radius: var(--border-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 #f0f0f0;
    padding-bottom: 20px;
}

.condition-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.check-icon {
    background: var(--accent-gradient);
    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-main);
}

.condition-list span {
    font-size: 14px;
    color: var(--text-sub);
}

.condition-note {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 0;
}

/* モニター価格セクション */
.monitor-price-section {
    background: #fff;
    text-align: center;
}

.pricing-card {
    background: #fff;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 0;
    max-width: 650px;
    margin: 0 auto 50px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-header {
    background: var(--primary-color);
    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: #888;
    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-color);
    animation: bounceRight 1.5s infinite;
}

.new-price-area {
    text-align: center;
    position: relative;
}

.new-price-area .label {
    display: inline-block;
    background: var(--campaign-color);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-wrapper {
    color: var(--alert-red);
    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-main);
    font-weight: 500;
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--alert-red);
    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: #f9f9f9;
    padding: 10px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #eee;
}

/* 流れ (Flow) */
.monitor-flow {
    background: var(--bg-body);
}

.flow-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: var(--border-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-gray);
    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-color);
}

.flow-step p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-sub);
}

/* ==================================== */
/* 5. コンテンツパーツ & カード (Index用) */
/* ==================================== */

/* 導入文などのテキストエリア */
.info-container, .achievement-description {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.achievement-description strong {
    color: var(--primary-color);
    font-size: 1.1em;
    background: linear-gradient(transparent 70%, #d1e7ff 70%);
}

/* バナーリンク */
.monitor-banner-link {
    display: block;
    background: #fff3e0;
    border: 3px solid #ff9800;
    border-radius: 12px;
    padding: 30px 20px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.monitor-banner-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #fff8e1;
}

/* 成功事例 (Before/After) */
.success-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.case-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-gray);
    padding-bottom: 10px;
}

.before-after {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ba-image-container {
    flex: 1;
    position: relative;
}

.ba-image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.ba-image-container .label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.case-study-result {
    background: var(--bg-gray);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

/* 体験の流れ (Steps) */
.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step img {
    width: 40%;
    max-width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-text {
    flex: 1;
    text-align: left;
}

.step-text h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-text h3::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 8px;
}

/* 料金表 (Pricing) */
.pricing-section {
    background: #f4f8fb;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.pricing-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 2;
}

.pricing-description strong {
    color: #0066cc;
    background: linear-gradient(transparent 70%, #b3d7ff 70%);
}

.pricing-container {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.pricing-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin: 0 auto;
}

.pricing-table th {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    padding: 0 15px 10px;
    text-align: center;
    border: none;
    background: transparent;
}

.pricing-table tbody tr {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.pricing-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
}

.pricing-table td {
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
    color: #333;
    border: none;
}

.pricing-table td:first-child {
    font-weight: 700;
    color: #0066cc;
    border-radius: 8px 0 0 8px;
    text-align: left;
    padding-left: 30px;
    font-size: 16px;
}

.pricing-table td:last-child {
    border-radius: 0 8px 8px 0;
    color: #666;
    font-size: 14px;
}

.pricing-table td:nth-child(3) {
    font-weight: 700;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

/* キャンペーン行 */
.pricing-table tr.campaign-plan {
    position: relative;
    background: #fffbf5;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
}

.pricing-table tr.campaign-plan td {
    border-top: 2px solid #ffb300;
    border-bottom: 2px solid #ffb300;
    color: #333;
}

.pricing-table tr.campaign-plan td:first-child {
    border-left: 2px solid #ffb300;
    position: relative;
    color: #d32f2f;
}

.pricing-table tr.campaign-plan td:first-child::before {
    content: 'RECOMMEND';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #d32f2f;
    color: #fff;
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-table tr.campaign-plan td:last-child {
    border-right: 2px solid #ffb300;
}

.pricing-table .campaign-price {
    color: #d32f2f;
    font-size: 22px;
    font-weight: 900;
}

/* 体験トレーニング行 */
.pricing-table tr.trial-training td {
    background: #e3f2fd;
    border-color: #0066cc;
}

.pricing-table tr.trial-training td:first-child::before {
    content: 'FIRST TIME';
    background: #0066cc;
}

.scroll-indicator {
    display: none;
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ==================================== */
/* 5.5 共通LINE予約ボタン (修正ポイント) */
/* ==================================== */
.apply-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 195, 0, 0.3);
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 195, 0, 0.4);
    color: white;
}

/* ==================================== */
/* 6. トレーナー紹介 & インタビュー */
/* ==================================== */
.trainer-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    align-items: center;
}

.trainer-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--bg-gray);
}

.trainer-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.trainer-video, .trial-video, .video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 30px 0;
}

.trainer-video iframe, .trial-video iframe, .video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* インタビュータブ */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-sub);
}

.tab-button.active, .tab-button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.interview-content {
    display: none;
    animation: fadeIn 0.5s ease;
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.interview-content.active {
    display: block;
}

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

.full-text {
    display: none; /* JSで制御 */
    margin-top: 20px;
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.read-more {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    display: inline-block;
    border-bottom: 1px solid var(--primary-color);
}

/* ==================================== */
/* 7. FAQ & アクセス */
/* ==================================== */
.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-sub);
    border-top: 1px solid #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* ==================================== */
/* 7.5 Index下部セクション修正 (幅揃え) */
/* ==================================== */
.trial-section,
.access-videos {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.video-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-caption {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

/* ==================================== */
/* 8. フッター & ポップアップ */
/* ==================================== */
.page-footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 60px 20px;
    margin-top: 80px;
    text-align: center;
}

.footer-nav a {
    color: #ccc;
    margin: 0 10px;
    font-size: 14px;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-nav .nav-monitor {
    color: #ffea00 !important;
    font-weight: 700;
    background: none;
    padding: 0;
}

/* フローティングバナー */
.floating-campaign-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px); /* 初期位置は下 */
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--campaign-color);
    color: var(--text-main);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideUpBanner 0.8s 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideUpBanner {
    to { transform: translateX(-50%) translateY(0); }
}

.floating-campaign-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.floating-campaign-banner .price {
    color: #d32f2f;
    font-size: 24px;
    font-weight: 900;
}

.floating-campaign-banner .banner-button {
    background: var(--accent-gradient);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 195, 0, 0.3);
}

.close-banner {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    margin-left: 10px;
}

/* モーダル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.visible .modal-content {
    transform: scale(1);
}

.modal-button {
    display: inline-block;
    background: var(--accent-gradient);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 195, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    color: #666;
}

/* ==================================== */
/* 9. JavaScript用アニメーション定義 */
/* ==================================== */

/* --- フェードインアニメーション用 --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* 順番に表示させるための遅延設定（任意） */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ==================================== */
/* 10. レスポンシブ対応 (Mobile) */
/* ==================================== */
@media (max-width: 768px) {
    /* コンテナ調整 */
    .container {
        padding: 40px 15px;
    }
    
    /* ヘッダー */
    .page-header {
        padding: 0 20px;
    }
    .page-header .desktop-nav, 
    .page-header .header-cta {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    
    /* ヒーロー */
    .hero-section {
        height: 50vh;
    }
    .text-overlay {
        width: 95%;
    }
    
    /* ステップ */
    .step, .step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    .step img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    .step-text {
        text-align: left;
    }
    
    /* トレーナー */
    .trainer-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .trainer-info {
        text-align: center;
    }
    
    /* バナー */
    .floating-campaign-banner {
        flex-direction: column;
        bottom: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 20px;
    }
    .floating-campaign-banner .banner-content {
        gap: 10px;
    }
    .close-banner {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    /* 事例（Before/After） */
    .before-after {
        flex-direction: column;
    }
    .ba-image-container img {
        height: auto;
    }
    
    /* 料金表スクロールヒント */
    .scroll-indicator {
        display: block;
        text-align: right;
        font-size: 12px;
        color: #888;
        margin-bottom: 5px;
    }
    
    .pricing-table td { padding: 15px 10px; font-size: 14px; }
    .pricing-table td:first-child { padding-left: 15px; font-size: 14px; }
    
    /* モニターページレスポンシブ */
    .monitor-hero {
        height: 70vh;
        margin-top: -60px;
        padding-top: 60px;
    }

    .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;
    }
    
    /* 共通見出し */
    h2.section-title {
        font-size: 24px;
    }
}

/* ==================================== */
/* 11. 動画一覧ページ (Movie) 専用スタイル */
/* ==================================== */

/* 動画ページ用ヒーローセクション */
.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, #0066cc 0%, #004a94 100%);
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
    margin-top: -70px;
    padding-top: 70px;
}

.movie-hero h1 {
    font-family: var(--font-en);
    font-size: clamp(24px, 5vw, 48px);
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.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(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-frame-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    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: #e3f2fd;
    color: var(--primary-color);
    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;
    min-height: 1.5em; /* タイトル高さを揃える */
    color: var(--text-main);
}

.video-card p {
    font-size: 14px;
    color: var(--text-sub);
    margin-bottom: 0;
    line-height: 1.8;
}

/* 動画ページ下部CTAエリア */
.cta-section-wrapper {
    background-color: var(--bg-gray);
    padding: 80px 20px;
    text-align: center;
    margin-top: 80px;
}

/* スマホ用調整 */
@media (max-width: 768px) {
    .movie-hero {
        height: 30vh;
        min-height: 250px;
    }
    
    .video-grid {
        gap: 30px;
    }
}