/* =============================================
   グローバルスタイル
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #1e3a8a; /* ネイビー */
    --primary-light: #3b82f6; /* ライトブルー */
    --accent-color: #fb7185; /* サーモンピンク */
    --accent-hover: #f43f5e;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    
    /* タイポグラフィ */
    --font-main: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    --line-height-base: 1.8;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: var(--line-height-base);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   ヘッダー
   ============================================= */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 45px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 900;
    line-height: 1.3;
    white-space: nowrap;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.cta-button-header {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-button-header:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* =============================================
   ヒーローセクション
   ============================================= */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-button-primary {
    background: var(--accent-color);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.3);
}

.cta-button-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.4);
}

.cta-button-secondary {
    background: white;
    color: var(--primary-color);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* =============================================
   開講記念イベント
   ============================================= */
.event-announcement {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    position: relative;
    overflow: hidden;
}

.event-announcement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.event-badge {
    text-align: center;
    margin-bottom: 16px;
}

.event-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.event-title {
    text-align: center;
    margin-bottom: 16px;
}

.event-title-main {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.event-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 500;
}

.event-schedule {
    max-width: 900px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.event-date-group {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.event-date-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-color);
}

.event-date-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.event-sessions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-session {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.event-session:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.session-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 90px;
}

.session-time i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.session-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.session-grade {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
}

.session-content {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.session-capacity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.session-capacity i {
    color: var(--success-color);
}

.event-cta {
    text-align: center;
}

.event-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.4);
    transition: all 0.3s;
    margin-bottom: 16px;
}

.event-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(251, 113, 133, 0.5);
}

.event-button i {
    font-size: 1.5rem;
}

.event-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 700;
}

/* =============================================
   共感ブロック
   ============================================= */
.empathy {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 16px;
}

.title-nowrap {
    display: inline-block;
    white-space: nowrap;
}

.section-title-large {
    font-size: 2.2rem;
}

.section-subtitle-multi {
    line-height: 2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

.results-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.empathy-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.empathy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.empathy-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.empathy-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.5;
}

.empathy-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.empathy-solution {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 6px solid #f59e0b;
}

.empathy-solution-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.9;
}

.empathy-solution-text strong {
    color: #d97706;
    font-weight: 900;
}

/* =============================================
   講座紹介ブロック
   ============================================= */
.course {
    padding: 80px 0;
    background: var(--bg-light);
}

.course-features {
    margin-bottom: 60px;
}

.course-feature {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.course-feature:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.feature-nowrap {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-nowrap {
        white-space: normal;
    }
}

.feature-content h3 i {
    color: var(--accent-color);
    margin-right: 8px;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.course-flow {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.flow-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-step {
    flex: 1;
    text-align: center;
}

.step-number {
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

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

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.flow-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0 16px;
}

/* 講座詳細リンクボタン */
.course-detail-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.detail-link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    padding: 20px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border: 3px solid var(--primary-color);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detail-link-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.detail-link-button i:first-child {
    font-size: 1.3rem;
}

.detail-link-button i:last-child {
    font-size: 1rem;
    margin-left: auto;
}

/* =============================================
   実績ブロック
   ============================================= */
.results {
    padding: 80px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.result-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.result-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.result-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.result-voice {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 12px;
    font-style: italic;
}

.result-grade {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.student-voices {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
}

.voices-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.voice-bubbles {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.voice-bubble {
    padding: 24px 32px;
    border-radius: 20px;
    position: relative;
}

.voice-left {
    background: white;
    align-self: flex-start;
    max-width: 70%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.voice-right {
    background: #e0f2fe;
    align-self: flex-end;
    max-width: 70%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.voice-bubble p {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.7;
}

.voice-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* =============================================
   講座紹介動画
   ============================================= */
.video {
    padding: 80px 0;
    background: white;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* =============================================
   講師紹介ブロック
   ============================================= */
.teacher {
    padding: 80px 0;
    background: var(--bg-light);
}

.teacher-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.teacher-image {
    position: relative;
}

.teacher-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.teacher-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.teacher-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 4px;
}

.teacher-credential {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.teacher-description p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.teacher-description strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.teacher-social {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

.supervisor {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.supervisor-title {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.supervisor-profile-with-image {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    align-items: center;
}

.supervisor-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.supervisor-content {
    text-align: left;
}

.supervisor-profile {
    text-align: center;
}

.supervisor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.supervisor-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 16px;
}

.supervisor-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.supervisor-message {
    margin-top: 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.message-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.message-content h4 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 16px;
    line-height: 1.6;
}

.message-content p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content strong {
    color: var(--accent-color);
    font-weight: 900;
}

.message-emphasis {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 3px solid var(--accent-color);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 24px;
}

/* =============================================
   料金・スケジュール
   ============================================= */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-table {
    overflow-x: auto;
    margin-bottom: 48px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
    background: var(--primary-color);
    color: white;
}

.pricing-table th {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.pricing-table td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.price-cell {
    font-weight: 700;
}

.price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 900;
}

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

.capacity {
    background: var(--success-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-compact {
    background: var(--bg-light);
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 2px solid var(--border-color);
}

.pricing-compact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-compact-item.highlight-compact {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    margin: 8px -32px -24px -32px;
    padding: 16px 32px;
    border-radius: 0 0 10px 10px;
    border-bottom: none;
}

.compact-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.compact-price-highlight {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-color);
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-detail-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.pricing-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-detail-card.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.pricing-detail-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-detail-card h3 i {
    color: var(--accent-color);
    margin-right: 8px;
}

.detail-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.detail-price-small {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-detail-small h3 {
    font-size: 1rem;
}

.detail-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tax-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.member-note {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 700;
    display: inline-block;
    margin-top: 4px;
}

.pricing-note {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note i {
    color: var(--primary-color);
}

/* =============================================
   安心・信頼セクション
   ============================================= */
.trust {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.trust-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #34d399 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.trust-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question > i:first-child {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-toggle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px 64px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* =============================================
   CTA（強調）
   ============================================= */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons-large {
    margin-bottom: 32px;
}

.cta-button-primary-large {
    background: var(--accent-color);
    color: white;
    padding: 24px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button-primary-large:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary-large {
    background: white;
    color: var(--primary-color);
    padding: 24px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s;
    margin-left: 16px;
}

.cta-button-secondary-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.cta-feature i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* =============================================
   お問い合わせ方法
   ============================================= */
.contact-methods {
    padding: 60px 0;
    background: white;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option-single {
    max-width: 400px;
    margin: 0 auto;
}

.contact-option {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.contact-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-option i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.contact-option h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-option p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* =============================================
   フッター
   ============================================= */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.footer-logo-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* =============================================
   レスポンシブデザイン
   ============================================= */
.sp-only {
    display: none;
}

.table-scroll-note {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    
    .table-scroll-note.sp-only {
        display: block;
    }
    
    .header-nav {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .empathy-grid {
        grid-template-columns: 1fr;
    }
    
    .event-title-main {
        font-size: 2rem;
    }
    
    .event-schedule {
        grid-template-columns: 1fr;
    }
    
    .event-session {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .session-time {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .event-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .course-feature {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-number {
        margin: 0 auto;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 16px 0;
    }
    
    .course-detail-links {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .detail-link-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .teacher-profile {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .supervisor-profile-with-image {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .supervisor-content {
        text-align: center;
    }
    
    .supervisor-message {
        padding: 24px;
    }
    
    .message-title {
        font-size: 1.3rem;
    }
    
    .message-content h4 {
        font-size: 1.15rem;
    }
    
    .message-content p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title-large {
        font-size: 1.5rem;
    }
    
    .title-nowrap {
        white-space: normal;
        word-break: keep-all;
        line-height: 1.5;
    }
    
    .voice-left,
    .voice-right {
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-button-secondary-large {
        margin-left: 0;
        margin-top: 16px;
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-table {
        font-size: 0.75rem;
        overflow-x: auto;
    }
    
    .pricing-table table {
        min-width: 800px;
    }
    
    .price-monthly {
        font-size: 1rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 5px;
        font-size: 0.7rem;
    }
    
    .pricing-table .price {
        font-size: 1.1rem;
    }
    
    .pricing-table .capacity {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .pricing-table thead th {
        font-size: 0.65rem;
        padding: 12px 5px;
    }
    
    .pricing-compact {
        padding: 16px 20px;
    }
    
    .pricing-compact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .pricing-compact-item.highlight-compact {
        margin: 8px -20px -16px -20px;
        padding: 12px 20px;
    }
    
    .compact-label {
        font-size: 0.9rem;
    }
    
    .compact-price {
        font-size: 1rem;
    }
    
    .compact-price-highlight {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 8px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-main {
        font-size: 0.95rem;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-logo-text {
        font-size: 0.95rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .cta-button-primary-large,
    .cta-button-secondary-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .teacher-social {
        text-align: center;
    }
    
    .social-link {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title-large {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .supervisor-image img {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .event-title-main {
        font-size: 1.6rem;
    }
    
    .event-label {
        font-size: 0.95rem;
        padding: 6px 18px;
    }
    
    .event-date-header {
        font-size: 1.1rem;
    }
    
    .event-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .message-title {
        font-size: 1.1rem;
    }
    
    .message-content h4 {
        font-size: 1.05rem;
    }
    
    .message-content p {
        font-size: 0.9rem;
    }
    
    .message-emphasis {
        font-size: 0.95rem;
        padding: 16px;
    }
    
    /* 詳細ページ - 480px以下 */
    .page-title {
        font-size: 1.3rem;
        padding: 0 16px;
    }
    
    .page-subtitle {
        font-size: 0.85rem;
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 1.4rem;
        padding: 0 16px;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }
    
    .detail-content p {
        font-size: 0.9rem;
    }
    
    .purpose-card {
        padding: 20px 16px;
    }
    
    .purpose-icon {
        font-size: 1.8rem;
    }
    
    .purpose-card p {
        font-size: 0.85rem;
    }
    
    .schedule-table table {
        min-width: 550px;
        font-size: 0.8rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 10px 6px;
        font-size: 0.75rem;
    }
    
    .timeline-item {
        padding: 16px;
    }
    
    .timeline-badge {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
    
    .timeline-content h4 {
        font-size: 0.95rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
    
    .format-card {
        padding: 20px 16px;
    }
    
    .format-card i {
        font-size: 1.8rem;
    }
    
    .format-card h3 {
        font-size: 0.95rem;
    }
    
    .format-card p {
        font-size: 0.8rem;
    }
    
    .price-main {
        padding: 20px 16px;
    }
    
    .pricing-summary {
        padding: 20px 16px;
    }
    
    .summary-title {
        font-size: 0.9rem;
    }
    
    .price-large {
        font-size: 1.5rem;
    }
    
    .price-note-inline {
        font-size: 0.9rem;
    }
    
    .summary-breakdown {
        font-size: 0.85rem;
    }
    
    .pricing-table-clean th,
    .pricing-table-clean td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .pricing-table-clean .price-column {
        font-size: 0.95rem;
    }
    
    .pricing-table-clean .total-row .price-column {
        font-size: 1.05rem;
    }
    
    .additional-item {
        padding: 14px;
        gap: 12px;
    }
    
    .additional-item i {
        font-size: 1.2rem;
    }
    
    .additional-content strong {
        font-size: 0.9rem;
    }
    
    .additional-content span {
        font-size: 0.75rem;
    }
    
    .price-value {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .price-tax {
        font-size: 0.85rem;
    }
    
    .price-item.highlight .price-value {
        font-size: 1.15rem !important;
    }
    
    .price-item.highlight .price-tax {
        font-size: 0.9rem !important;
    }
    
    .curriculum-table table {
        min-width: 450px;
        font-size: 0.8rem;
    }
    
    .curriculum-table th,
    .curriculum-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .detail-cta .cta-title {
        font-size: 1.5rem;
    }
    
    .detail-cta .cta-description {
        font-size: 0.9rem;
    }
    
    .detail-cta .cta-button-primary-large,
    .detail-cta .cta-button-secondary-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* =============================================
   アニメーション
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.empathy-card,
.course-feature,
.result-card,
.trust-card {
    animation: fadeInUp 0.6s ease-out;
}

/* =============================================
   モバイルメニュー
   ============================================= */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-nav.mobile-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        z-index: 999;
        gap: 12px;
    }
    
    .header-nav.mobile-nav.active {
        display: flex;
    }
    
    .header-nav.mobile-nav .nav-link {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .header-nav.mobile-nav .cta-button-header {
        margin-top: 8px;
        text-align: center;
    }
}

/* =============================================
   Back to Topボタン
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(251, 113, 133, 0.4);
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.5);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    /* 詳細ページ - ヒーローセクション */
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-badge {
        font-size: 0.85rem;
        padding: 5px 16px;
    }
    
    .page-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    /* 詳細ページ - セクション */
    .detail-section {
        padding: 40px 0;
    }
    
    .detail-content {
        padding: 0 16px;
    }
    
    .detail-content p {
        font-size: 0.95rem;
    }
    
    .highlight-text {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    /* 目的グリッド */
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .purpose-card {
        padding: 24px 20px;
    }
    
    .purpose-icon {
        font-size: 2rem;
    }
    
    .purpose-card p {
        font-size: 0.9rem;
    }
    
    /* 対象リスト */
    .target-list {
        padding: 0 16px;
    }
    
    .target-item {
        padding: 12px;
        gap: 12px;
    }
    
    .target-item i {
        font-size: 1.2rem;
    }
    
    .target-item span {
        font-size: 0.9rem;
    }
    
    /* スケジュール表 */
    .schedule-table {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .schedule-table table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .schedule-table .capacity {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    /* サブセクションタイトル */
    .subsection-title {
        font-size: 1.2rem;
        padding: 0 16px;
    }
    
    /* タイムライン */
    .flow-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .timeline-item {
        padding: 20px;
    }
    
    .timeline-badge {
        padding: 6px 14px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* 授業ノート */
    .lesson-notes {
        padding: 20px 16px;
        margin: 0 16px;
    }
    
    .lesson-notes p {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .lesson-notes i {
        font-size: 1rem;
    }
    
    /* 形式グリッド */
    .format-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .format-card {
        padding: 24px 20px;
    }
    
    .format-card i {
        font-size: 2rem;
    }
    
    .format-card h3 {
        font-size: 1rem;
    }
    
    .format-card p {
        font-size: 0.85rem;
    }
    
    /* 料金詳細 */
    .pricing-detail {
        padding: 0 16px;
    }
    
    .pricing-summary {
        padding: 24px 20px;
    }
    
    .summary-title {
        font-size: 1rem;
    }
    
    .price-large {
        font-size: 1.6rem;
    }
    
    .price-note-inline {
        font-size: 1rem;
    }
    
    .summary-breakdown {
        font-size: 0.9rem;
    }
    
    .pricing-table-clean {
        overflow-x: auto;
    }
    
    .pricing-table-clean th,
    .pricing-table-clean td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .pricing-table-clean .price-column {
        font-size: 1rem;
    }
    
    .pricing-table-clean .total-row .price-column {
        font-size: 1.15rem;
    }
    
    .pricing-additional {
        grid-template-columns: 1fr;
    }
    
    .additional-item {
        padding: 16px;
    }
    
    .additional-item i {
        font-size: 1.3rem;
    }
    
    .additional-content strong {
        font-size: 0.95rem;
    }
    
    .additional-content span {
        font-size: 0.8rem;
    }
    
    .price-main {
        padding: 24px 20px;
    }
    
    .price-item {
        padding: 16px 0;
    }
    
    .price-item.highlight {
        padding: 16px;
        margin-top: 12px;
    }
    
    .price-label {
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .price-value strong {
        display: inline;
    }
    
    .price-tax {
        font-size: 0.9rem;
    }
    
    .price-note {
        font-size: 0.8rem;
    }
    
    .price-item.highlight .price-value {
        font-size: 1.2rem !important;
    }
    
    .price-item.highlight .price-tax {
        font-size: 0.95rem !important;
    }
    
    /* フィードバックリスト */
    .feedback-list {
        padding: 0 16px;
    }
    
    .feedback-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        gap: 12px;
    }
    
    .feedback-item i {
        font-size: 1.5rem;
    }
    
    .feedback-item h3 {
        font-size: 1.05rem;
    }
    
    .feedback-item p {
        font-size: 0.85rem;
    }
    
    /* スケジュール情報 */
    .schedule-info {
        padding: 0 16px;
    }
    
    .schedule-dates {
        font-size: 1rem;
        padding: 12px;
    }
    
    /* カリキュラム表 */
    .curriculum-table {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .curriculum-table table {
        min-width: 500px;
        font-size: 0.85rem;
    }
    
    .curriculum-table th,
    .curriculum-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    /* 募集情報 */
    .recruitment-info {
        padding: 0 16px;
    }
    
    .recruitment-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        gap: 12px;
    }
    
    .recruitment-item i {
        font-size: 1.5rem;
    }
    
    .recruitment-item h3 {
        font-size: 1.05rem;
    }
    
    .recruitment-item p {
        font-size: 0.85rem;
    }
    
    /* 詳細ページCTA */
    .detail-cta {
        padding: 60px 0;
    }
    
    .detail-cta .cta-title {
        font-size: 1.8rem;
        padding: 0 16px;
    }
    
    .detail-cta .cta-description {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .detail-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
    }
    
    .detail-cta .cta-button-primary-large,
    .detail-cta .cta-button-secondary-large {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .detail-cta .cta-note {
        padding: 0 16px;
    }
}

/* =============================================
   詳細ページ用スタイル
   ============================================= */
.logo a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
}

.page-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.page-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-section {
    padding: 60px 0;
}

.detail-section.bg-light {
    background: var(--bg-light);
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.detail-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.highlight-text {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    font-weight: 700;
    margin-top: 24px;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.purpose-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.purpose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.purpose-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.purpose-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.target-list {
    max-width: 800px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.target-item i {
    color: var(--success-color);
    font-size: 1.5rem;
}

.target-item span {
    font-size: 1rem;
    color: var(--text-primary);
}

.schedule-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.schedule-table table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
}

.schedule-table th {
    background: var(--primary-color);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 700;
}

.schedule-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table tbody tr:hover {
    background: var(--bg-light);
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.flow-timeline {
    max-width: 900px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.timeline-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin: 0 auto 16px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.lesson-notes {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.lesson-notes p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.lesson-notes p:last-child {
    margin-bottom: 0;
}

.lesson-notes i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.format-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.format-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.format-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.format-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-detail {
    max-width: 900px;
    margin: 0 auto;
}

/* 料金サマリー */
.pricing-summary {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
    border: 3px solid var(--primary-color);
}

.summary-main {
    max-width: 500px;
    margin: 0 auto;
}

.summary-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 12px;
}

.summary-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-note-inline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-breakdown {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* クリーンな料金表 */
.pricing-table-clean {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.pricing-table-clean table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table-clean thead {
    background: var(--primary-color);
    color: white;
}

.pricing-table-clean th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-table-clean td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-table-clean tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table-clean .price-column {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.pricing-table-clean .note-column {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-table-clean .total-row {
    background: var(--bg-light);
}

.pricing-table-clean .total-row td {
    padding: 20px 16px;
    font-size: 1.05rem;
}

.pricing-table-clean .total-row .price-column {
    font-size: 1.3rem;
}

/* 追加情報 */
.pricing-additional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.additional-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.additional-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.additional-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.additional-content strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.additional-content span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.price-main {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-item {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 2px solid var(--border-color);
}

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

.price-item.highlight {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
    border: 2px solid var(--primary-color);
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.price-value {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.price-tax {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: block;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.feedback-list {
    max-width: 800px;
    margin: 0 auto;
}

.feedback-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feedback-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feedback-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feedback-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.schedule-info {
    text-align: center;
    margin-bottom: 32px;
}

.schedule-dates {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    display: inline-block;
}

.curriculum-table {
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-table table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
}

.curriculum-table th {
    background: var(--accent-color);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 700;
}

.curriculum-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.recruitment-info {
    max-width: 700px;
    margin: 0 auto;
}

.recruitment-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.recruitment-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.recruitment-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.recruitment-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.detail-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    text-align: center;
    color: white;
}

.detail-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* =============================================
   スクロールバー
   ============================================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}