/* ========================================
   リセット & ベーススタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

/* ========================================
   タイポグラフィ
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 1rem;
}

.section-title i {
    color: #0066cc;
    margin-right: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00aaff);
    border-radius: 2px;
}

/* ========================================
   ボタンスタイル
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc, #0088ff);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0055aa, #0077ee);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-course {
    width: 100%;
    margin-top: auto;
    background: #f5f5f5;
    color: #333;
    font-weight: 700;
}

.btn-course:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-course.btn-primary {
    background: linear-gradient(135deg, #0066cc, #0088ff);
    color: #ffffff;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a5c 50%, #2a4a6c 100%);
    overflow: hidden;
    padding: 2rem 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 170, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10, 31, 68, 0.85) 0%, rgba(26, 58, 92, 0.85) 50%, rgba(42, 74, 108, 0.85) 100%),
        linear-gradient(45deg, transparent 30%, rgba(0, 102, 204, 0.1) 50%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.25), rgba(0, 102, 204, 0.25));
    backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.hero-badge i {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-shadow: 
        0 2px 8px rgba(0, 102, 204, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2);
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    animation: shine 3s ease-in-out infinite;
}

.hero-target {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    animation: none;
}

@keyframes shine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-shadow: 
        0 2px 8px rgba(0, 102, 204, 0.4),
        0 0 30px rgba(255, 255, 255, 0.15);
    letter-spacing: 0.05em;
    color: #ffffff;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-item i {
    font-size: 1.1rem;
    color: #00aaff;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.6;
    z-index: 3;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   講座イメージセクション
   ======================================== */
.course-image-section {
    padding: 4rem 0;
    background: #ffffff;
}

.course-image-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.course-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.course-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: linear-gradient(135deg, #2a4a6a, #3a5a7a);
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.image-caption i {
    font-size: 1.5rem;
    color: #00aaff;
    flex-shrink: 0;
}

.image-caption p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* ========================================
   イントロセクション
   ======================================== */
.intro {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

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

.intro-lead {
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 500;
}

.intro-lead strong {
    color: #0066cc;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-text strong {
    color: #0066cc;
    font-weight: 700;
}

.intro-highlight {
    background: linear-gradient(135deg, #f0f7ff, #e6f2ff);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border-left: 5px solid #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.highlight-question {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.highlight-answer {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    text-align: center;
    margin: 0;
}

.highlight-answer strong {
    color: #0066cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.intro-future {
    background: linear-gradient(135deg, #fff9e6, #fff4d6);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 2px solid #ffa500;
}

.future-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.future-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.future-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.future-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
}

.future-item i {
    font-size: 1.5rem;
    color: #0066cc;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.future-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.future-item strong {
    display: block;
    font-size: 1.15rem;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.future-detail {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.intro-differentiation {
    background: linear-gradient(135deg, #fff0f0, #ffe6e6);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border: 2px solid #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.15);
}

.diff-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c92a2a;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.diff-title i {
    font-size: 1.75rem;
}

.diff-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.diff-other,
.diff-ours {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

.diff-other {
    border: 2px solid #dee2e6;
}

.diff-other h4 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.diff-other h4 i {
    color: #999;
}

.diff-other ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-other li {
    padding: 0.75rem 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.diff-other li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #999;
    font-weight: 700;
}

.diff-ours {
    border: 3px solid #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.diff-ours h4 {
    font-size: 1.2rem;
    color: #0066cc;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.diff-ours h4 i {
    color: #0066cc;
}

.diff-ours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-ours li {
    padding: 0.75rem 0;
    color: #1a1a1a;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.diff-ours li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.1rem;
}

.diff-ours li strong {
    color: #0066cc;
    font-weight: 700;
}

/* ========================================
   ゴールセクション
   ======================================== */
.goals {
    padding: 6rem 0;
    background: #ffffff;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.goal-card {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.goal-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.goal-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.goal-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.goals-message {
    text-align: center;
    margin-top: 3rem;
}

.emphasis-text {
    font-size: 1.25rem;
    line-height: 2;
    color: #1a1a1a;
    font-weight: 500;
}

.emphasis-text strong {
    color: #0066cc;
    font-weight: 700;
}

/* ========================================
   ターゲットセクション
   ======================================== */
.target {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.15);
}

.target-item i {
    font-size: 1.5rem;
    color: #0066cc;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.target-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.target-message {
    margin-top: 3rem;
    text-align: center;
}

.highlight-box {
    background: linear-gradient(135deg, #0066cc, #0088ff);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    font-size: 1.15rem;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.highlight-box strong {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   カリキュラムセクション
   ======================================== */
.curriculum {
    padding: 6rem 0;
    background: #ffffff;
}

.curriculum-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0066cc, #00aaff);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    z-index: 1;
}

.timeline-marker span {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
}

.timeline-content {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.timeline-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   講座風景セクション
   ======================================== */
.lecture-scene {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.scene-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.scene-image {
    flex: 1;
    min-width: 0;
}

.scene-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.scene-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
}

.scene-text {
    flex: 1;
    min-width: 0;
}

.scene-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.scene-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.scene-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.scene-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

/* ========================================
   事業計画全体像セクション
   ======================================== */
.plan-overview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.overview-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    color: #333;
    margin-bottom: 4rem;
}

.overview-intro strong {
    color: #0066cc;
    font-weight: 700;
}

.plan-steps {
    max-width: 900px;
    margin: 0 auto 5rem;
    display: grid;
    gap: 1.5rem;
}

.plan-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
}

.plan-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* 経営と登山のたとえ */
.mountain-analogy {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.1);
    border: 2px solid #e0e6ed;
}

.analogy-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.analogy-title i {
    font-size: 1.75rem;
    color: #00aaff;
}

.why-plan-needed {
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    border: 2px solid #ffd700;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.why-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.why-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1rem;
}

.why-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
    margin: 0;
}

.why-content strong {
    color: #d35400;
    font-weight: 700;
}

.analogy-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.analogy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.analogy-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
    text-align: center;
}

.analogy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.analogy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.analogy-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.analogy-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.mountain-text {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 8px;
}

.business-text {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   コースセクション
   ======================================== */
.courses {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.courses-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1.5rem;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
}

.course-featured {
    border-color: #0066cc;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
}

.course-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
}

.course-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.course-name {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.course-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.course-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #0066cc;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.price-tax {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.course-goal,
.course-support {
    margin-bottom: 2rem;
}

.course-goal h4,
.course-support h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-goal h4 i,
.course-support h4 i {
    color: #0066cc;
}

.course-goal p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.course-support ul {
    list-style: none;
}

.course-support li {
    padding: 0.75rem 0;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.course-support li i {
    color: #0066cc;
    margin-top: 0.25rem;
}

.course-capacity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f0f7ff, #e6f2ff);
    border-radius: 30px;
    border: 2px solid #0066cc;
}

.course-capacity i {
    font-size: 1.2rem;
    color: #0066cc;
}

.capacity-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0066cc;
}

.capacity-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0066cc;
}

.course-merit {
    background: linear-gradient(135deg, #fff9e6, #fff4d6);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffa500;
}

.course-merit p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.course-merit i {
    color: #ffa500;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.course-merit strong {
    color: #1a1a1a;
    font-weight: 700;
}

.course-description {
    background: linear-gradient(135deg, #f0f9ff, #e6f3ff);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #0066cc;
}

.description-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description-label i {
    font-size: 1rem;
}

.description-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.description-text strong {
    color: #0066cc;
    font-weight: 700;
}

.courses-common {
    background: linear-gradient(135deg, #f8f9fc, #e8f0f8);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.courses-common h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.courses-common h4 i {
    color: #0066cc;
}

.common-items {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.common-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.common-item i {
    color: #0066cc;
}

.common-note {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 1.5rem;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.common-note i {
    color: #0066cc;
    font-size: 1rem;
}

/* ========================================
   講師セクション
   ======================================== */
.instructor {
    padding: 6rem 0;
    background: #ffffff;
}

.instructor-card {
    display: flex;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.instructor-image {
    flex-shrink: 0;
}

.instructor-placeholder {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.instructor-placeholder i {
    font-size: 4rem;
    color: #ffffff;
}

.instructor-photo {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 100% 20%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.3);
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.instructor-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.instructor-quote {
    background: rgba(0, 102, 204, 0.05);
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    margin: 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #0066cc;
    font-weight: 600;
    font-style: italic;
}

.instructor-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.instructor-bio {
    margin-top: 1.5rem;
}

.bio-origin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio-origin i {
    font-size: 1.1rem;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1rem;
}

.bio-text:last-child {
    margin-bottom: 0;
}

.bio-text strong {
    color: #0066cc;
    font-weight: 700;
}

.instructor-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 150px;
}

.highlight-item i {
    font-size: 2rem;
    color: #0066cc;
    flex-shrink: 0;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    font-size: 1.1rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.highlight-item span {
    font-size: 0.85rem;
    color: #666;
}

/* ========================================
   お客様の声セクション
   ======================================== */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.testimonial-icon {
    display: flex;
    justify-content: center;
}

.testimonial-icon i {
    font-size: 3rem;
    color: #0066cc;
    opacity: 0.8;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: #0066cc;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text strong {
    color: #0066cc;
    font-weight: 700;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.testimonial-rating i {
    font-size: 1.1rem;
    color: #ffa500;
}

/* ========================================
   開催概要セクション
   ======================================== */
.event-details {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e0e6ed;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.detail-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.detail-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ========================================
   講座日程セクション
   ======================================== */
.schedule-section {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.schedule-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.schedule-title i {
    font-size: 1.5rem;
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.schedule-table thead {
    background: linear-gradient(135deg, #0066cc, #0088ff);
    color: #ffffff;
}

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

.schedule-table tbody tr {
    border-bottom: 1px solid #e0e6ed;
    transition: background 0.3s ease;
}

.schedule-table tbody tr:hover {
    background: #f8f9fc;
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 1rem;
    color: #333;
}

.schedule-number {
    font-weight: 700;
    color: #0066cc;
    font-size: 1.1rem;
}

.schedule-date {
    font-size: 1.05rem;
}

.schedule-date strong {
    color: #1a1a1a;
    font-weight: 700;
}

.schedule-time {
    font-weight: 600;
    color: #0066cc;
}

.schedule-note {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-note i {
    color: #0066cc;
}

/* ========================================
   会場・定員情報セクション
   ======================================== */
.venue-info {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fc);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.venue-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.venue-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.venue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.venue-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.venue-content {
    flex: 1;
}

.venue-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.venue-address {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.venue-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.venue-map-link:hover {
    color: #ffed4e;
    transform: translateX(5px);
}

.venue-map-link i {
    font-size: 1rem;
}

.capacity-info {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.capacity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capacity-list li {
    font-size: 0.95rem;
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e6ed;
}

.capacity-list li:last-child {
    border-bottom: none;
}

.capacity-list li strong {
    color: #0066cc;
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.schedule-benefits {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.benefits-title i {
    font-size: 1.5rem;
    color: #ffa500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ========================================
   開催形式選択セクション
   ======================================== */
.format-selection {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.format-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.format-intro strong {
    color: #0066cc;
    font-weight: 700;
}

.format-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.format-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #e0e6ed;
    transition: all 0.3s ease;
    position: relative;
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 102, 204, 0.2);
    border-color: #0066cc;
}

.format-card-online {
    border-color: #00aaff;
}

.format-card-online:hover {
    border-color: #0066cc;
}

.format-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    letter-spacing: 0.05em;
}

.format-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e6ed;
}

.format-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.format-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.format-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.format-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.format-details {
    margin-bottom: 2rem;
}

.format-summary {
    padding: 1.5rem 0;
}

.format-summary p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.format-summary p:last-child {
    margin-bottom: 0;
}

.format-summary i {
    color: #0066cc;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.format-summary strong {
    color: #0066cc;
    font-weight: 700;
}

.format-merit-simple {
    font-size: 0.9rem !important;
    color: #666 !important;
    padding-left: 2rem;
}

.format-schedule-table {
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.format-schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.format-schedule-table thead {
    background: linear-gradient(135deg, #0066cc, #0088ff);
}

.format-schedule-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.format-schedule-table tbody tr {
    border-bottom: 1px solid #e0e6ed;
    transition: background 0.2s ease;
}

.format-schedule-table tbody tr:hover {
    background: #f8f9fc;
}

.format-schedule-table tbody tr:last-child {
    border-bottom: none;
}

.format-schedule-table td {
    padding: 1rem 0.75rem;
    text-align: center;
    font-size: 0.95rem;
    color: #333;
}

.format-schedule-table td:first-child {
    font-weight: 700;
    color: #0066cc;
}

.format-schedule-table td:nth-child(2) {
    font-weight: 600;
}

.format-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fc;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.format-detail-item:last-child {
    margin-bottom: 0;
}

.format-detail-item > i {
    font-size: 1.5rem;
    color: #0066cc;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.format-detail-item strong {
    display: block;
    font-size: 1rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.format-detail-item p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.day-label {
    font-size: 0.9rem;
    color: #666;
}

.format-merit {
    background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.format-merit h4 {
    font-size: 1.1rem;
    color: #0066cc;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.format-merit h4 i {
    color: #ffa500;
}

.format-merit ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-merit li {
    font-size: 0.95rem;
    color: #333;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.format-merit li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.1rem;
}

.format-note {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fff9e6;
    border-radius: 12px;
    border: 2px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    line-height: 1.7;
}

.format-note i {
    color: #ffa500;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.format-note strong {
    color: #0066cc;
    font-weight: 700;
}

/* ========================================
   日程詳細 - 形式別表示
   ======================================== */
.schedule-format-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.schedule-format-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #e0e6ed;
}

.schedule-format-online {
    border-color: #00aaff;
}

.schedule-format-hybrid {
    border-color: #0066cc;
    background: linear-gradient(to bottom, #ffffff, #f8f9fc);
}

.format-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e6ed;
}

.format-label i {
    font-size: 1.5rem;
}

.format-label-real {
    color: #0066cc;
}

.format-label-online {
    color: #0066cc;
}

.format-label-hybrid {
    color: #0066cc;
    background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
    padding: 1.25rem;
    border-radius: 12px 12px 0 0;
    margin: -2.5rem -2.5rem 2rem -2.5rem;
}

.schedule-format {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066cc;
}

.new-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #ffffff;
    padding: 0.35rem 0.9rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.05em;
}

.venue-info-inline {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e6ed;
}

.venue-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.venue-detail:last-child {
    margin-bottom: 0;
}

.venue-detail > i {
    font-size: 1.5rem;
    color: #0066cc;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.venue-detail strong {
    display: block;
    font-size: 1rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.venue-detail p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.venue-detail a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
}

.venue-detail a:hover {
    color: #00aaff;
    gap: 0.5rem;
}

.format-merit-box {
    margin-top: 2rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.format-merit-box h4 {
    font-size: 1.1rem;
    color: #0066cc;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.format-merit-box h4 i {
    color: #ffa500;
}

.format-merit-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-merit-box li {
    font-size: 0.95rem;
    color: #333;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.format-merit-box li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.1rem;
}

.event-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
    padding: 1.5rem 2rem;
    background: #fff9e6;
    border-radius: 12px;
    border: 2px solid #ffd700;
}

.event-intro strong {
    color: #0066cc;
    font-weight: 700;
}

.hybrid-badge {
    background: linear-gradient(135deg, #00aaff, #0066cc);
    color: #ffffff;
    padding: 0.35rem 0.9rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    letter-spacing: 0.05em;
}

/* ========================================
   受講までの流れセクション
   ======================================== */
.application-flow {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

.flow-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.flow-step-final {
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    border-color: #ffd700;
}

.flow-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.flow-step-final .flow-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.flow-content {
    flex: 1;
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.flow-icon i {
    font-size: 1.5rem;
    color: #0066cc;
}

.flow-step-final .flow-icon {
    background: rgba(255, 215, 0, 0.1);
}

.flow-step-final .flow-icon i {
    color: #ffa500;
}

.flow-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.flow-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.flow-arrow {
    text-align: center;
    margin: 1.5rem 0;
}

.flow-arrow i {
    font-size: 2rem;
    color: #0066cc;
    opacity: 0.3;
}

/* ========================================
   FAQセクション
   ======================================== */
.faq {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-question i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    font-weight: 900;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
    padding-top: 0.5rem;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 0;
}

.faq-answer i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    font-weight: 900;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    padding-top: 0.5rem;
}

/* ========================================
   コンタクトセクション
   ======================================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1f44, #1a3a5c);
    color: #ffffff;
}

.contact .section-title {
    color: #ffffff;
}

.contact .section-title::after {
    background: linear-gradient(90deg, #00aaff, #ffffff);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #00aaff;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.5rem;
    color: #00aaff;
    margin-top: 0.25rem;
}

.contact-method strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-method p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00aaff;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   クロージングセクション
   ======================================== */
.closing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0066cc, #0088ff);
    color: #ffffff;
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.closing-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.closing-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.closing .btn-primary {
    background: #ffffff;
    color: #0066cc;
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
}

.closing .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: #0a1f44;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   スクロールトップボタン
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #00aaff);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.scroll-top.visible {
    display: flex;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 1024px) {
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-highlights {
        justify-content: center;
    }
    
    .bio-origin {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.02em;
        text-shadow: 
            0 2px 8px rgba(0, 102, 204, 0.3),
            0 0 30px rgba(255, 215, 0, 0.2);
    }
    
    .hero-target {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        letter-spacing: 0.03em;
        text-shadow: 
            0 2px 8px rgba(0, 102, 204, 0.4),
            0 0 20px rgba(255, 255, 255, 0.15);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-info {
        gap: 1rem;
    }
    
    .course-image-section {
        padding: 2rem 0;
    }
    
    .course-image-wrapper {
        border-radius: 12px;
    }
    
    .image-caption {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .image-caption p {
        font-size: 0.9rem;
    }
    
    .scene-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .scene-text h3 {
        font-size: 1.3rem;
    }
    
    .scene-text p {
        font-size: 1rem;
    }
    
    .intro-highlight {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .highlight-question {
        font-size: 1.1rem;
    }
    
    .highlight-answer {
        font-size: 1rem;
    }
    
    .highlight-answer strong {
        font-size: 1.05rem;
    }
    
    .intro-future {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .future-title {
        font-size: 1.25rem;
    }
    
    .future-item {
        padding: 0.75rem;
    }
    
    .future-item i {
        font-size: 1.25rem;
    }
    
    .future-item p {
        font-size: 0.95rem;
    }
    
    .future-item strong {
        font-size: 1.05rem;
    }
    
    .future-detail {
        font-size: 0.9rem;
    }
    
    .intro-differentiation {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .diff-title {
        font-size: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .diff-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .diff-other,
    .diff-ours {
        padding: 1.5rem;
    }
    
    .diff-other h4,
    .diff-ours h4 {
        font-size: 1.1rem;
    }
    
    .diff-other li,
    .diff-ours li {
        font-size: 0.9rem;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
    }
    
    .timeline-marker span {
        font-size: 1.5rem;
    }
    
    .curriculum-timeline::before {
        left: 30px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-description {
        padding: 1.25rem;
    }
    
    .description-label {
        font-size: 0.9rem;
    }
    
    .description-text {
        font-size: 0.9rem;
    }
    
    .goals-grid,
    .target-grid,
    .details-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .schedule-section {
        padding: 2rem 1.5rem;
    }
    
    .schedule-title {
        font-size: 1.5rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .schedule-number {
        font-size: 1rem;
    }
    
    .schedule-date {
        font-size: 0.95rem;
    }
    
    .schedule-benefits {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 1.75rem;
    }
    
    .benefit-card h4 {
        font-size: 1.15rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .format-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .format-card {
        padding: 2rem 1.5rem;
    }
    
    .format-schedule-table {
        font-size: 0.9rem;
    }
    
    .format-schedule-table th {
        padding: 0.85rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .format-schedule-table td {
        padding: 0.85rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .format-badge {
        top: -12px;
        right: 20px;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .format-header h3 {
        font-size: 1.3rem;
    }
    
    .format-detail-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .format-detail-item > i {
        font-size: 1.25rem;
    }
    
    .format-summary {
        padding: 1.25rem 0;
    }
    
    .format-summary p {
        font-size: 0.95rem;
    }
    
    .format-merit {
        padding: 1.5rem;
    }
    
    .format-merit li {
        font-size: 0.9rem;
    }
    
    .format-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .schedule-format-tabs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schedule-format-section {
        padding: 2rem 1.5rem;
    }
    
    .format-label {
        font-size: 1.15rem;
        flex-wrap: wrap;
    }
    
    .format-label-hybrid {
        margin: -2rem -1.5rem 1.5rem -1.5rem;
        padding: 1rem;
    }
    
    .schedule-format {
        font-size: 0.85rem;
    }
    
    .format-label i {
        font-size: 1.25rem;
    }
    
    .new-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .venue-info-inline {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .venue-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .format-merit-box {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .format-merit-box h4 {
        font-size: 1rem;
    }
    
    .format-merit-box li {
        font-size: 0.9rem;
    }
    
    .event-intro {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hybrid-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .plan-steps {
        gap: 1rem;
    }
    
    .plan-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .mountain-analogy {
        padding: 2.5rem 1.5rem;
    }
    
    .why-plan-needed {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-icon i {
        font-size: 1.75rem;
    }
    
    .why-content h4 {
        font-size: 1.3rem;
    }
    
    .why-content p {
        font-size: 1rem;
    }
    
    .analogy-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .analogy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .analogy-item {
        padding: 1.5rem;
    }
    
    .analogy-icon {
        width: 70px;
        height: 70px;
    }
    
    .analogy-icon i {
        font-size: 1.75rem;
    }
    
    .analogy-item h4 {
        font-size: 1.2rem;
    }
    
    .mountain-text,
    .business-text {
        font-size: 0.9rem;
    }
    
    .flow-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .flow-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .flow-icon {
        margin: 0 auto 1rem;
    }
    
    .flow-content h3 {
        font-size: 1.2rem;
    }
    
    .flow-content p {
        font-size: 0.95rem;
    }
    
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .faq-question,
    .faq-answer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .faq-question i,
    .faq-answer i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-top: 0;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding-top: 0;
    }
    
    .venue-info {
        padding: 2rem 1.5rem;
    }
    
    .venue-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venue-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .venue-content h3 {
        font-size: 1.2rem;
    }
    
    .capacity-list li strong {
        min-width: 100px;
    }
    
    .closing-title {
        font-size: 1.75rem;
    }
    
    .closing-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-target {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .scene-content {
        gap: 2rem;
    }
    
    .scene-icon {
        width: 50px;
        height: 50px;
    }
    
    .scene-icon i {
        font-size: 1.5rem;
    }
    
    .scene-text h3 {
        font-size: 1.15rem;
    }
    
    .scene-text p {
        font-size: 0.95rem;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .timeline-marker span {
        font-size: 1.25rem;
    }
    
    .curriculum-timeline::before {
        left: 25px;
    }
    
    .instructor-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .instructor-placeholder i {
        font-size: 3rem;
    }
    
    .instructor-photo {
        width: 260px;
        height: 260px;
    }
    
    .instructor-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-item {
        min-width: 100%;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.05rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .mountain-analogy {
        padding: 2rem 1rem;
    }
    
    .why-plan-needed {
        padding: 1.5rem 1rem;
    }
    
    .why-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-icon i {
        font-size: 1.5rem;
    }
    
    .why-content h4 {
        font-size: 1.15rem;
    }
    
    .why-content p {
        font-size: 0.95rem;
    }
    
    .analogy-title {
        font-size: 1.3rem;
    }
    
    .analogy-item {
        padding: 1.25rem;
    }
    
    .analogy-icon {
        width: 60px;
        height: 60px;
    }
    
    .analogy-icon i {
        font-size: 1.5rem;
    }
    
    .analogy-item h4 {
        font-size: 1.1rem;
    }
    
    .format-cards {
        gap: 1.5rem;
    }
    
    .format-card {
        padding: 1.5rem 1.25rem;
    }
    
    .format-schedule-table {
        font-size: 0.8rem;
    }
    
    .format-schedule-table th {
        padding: 0.75rem 0.35rem;
        font-size: 0.8rem;
    }
    
    .format-schedule-table td {
        padding: 0.75rem 0.35rem;
        font-size: 0.8rem;
    }
    
    .format-schedule-table td:nth-child(2) {
        font-size: 0.75rem;
    }
    
    .format-badge {
        top: -10px;
        right: 15px;
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
    }
    
    .format-icon {
        width: 60px;
        height: 60px;
    }
    
    .format-icon i {
        font-size: 1.5rem;
    }
    
    .format-header h3 {
        font-size: 1.15rem;
    }
    
    .format-subtitle {
        font-size: 0.9rem;
    }
    
    .format-detail-item {
        padding: 0.85rem;
    }
    
    .format-detail-item strong {
        font-size: 0.95rem;
    }
    
    .format-detail-item p {
        font-size: 0.9rem;
    }
    
    .format-summary {
        padding: 1rem 0;
    }
    
    .format-summary p {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    
    .format-merit-simple {
        padding-left: 1.5rem !important;
        font-size: 0.85rem !important;
    }
    
    .format-merit {
        padding: 1.25rem;
    }
    
    .format-merit h4 {
        font-size: 1rem;
    }
    
    .format-merit li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
    
    .format-note {
        font-size: 0.9rem;
        padding: 0.85rem;
    }
    
    .schedule-format-section {
        padding: 1.5rem 1.25rem;
    }
    
    .format-label {
        font-size: 1.05rem;
    }
    
    .format-label-hybrid {
        margin: -1.5rem -1.25rem 1.25rem -1.25rem;
        padding: 0.85rem;
    }
    
    .schedule-format {
        font-size: 0.8rem;
    }
    
    .format-label i {
        font-size: 1.15rem;
    }
    
    .new-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.65rem;
    }
    
    .venue-detail strong {
        font-size: 0.95rem;
    }
    
    .venue-detail p {
        font-size: 0.85rem;
    }
    
    .format-merit-box {
        padding: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .format-merit-box h4 {
        font-size: 0.95rem;
    }
    
    .format-merit-box li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
    
    .event-intro {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hybrid-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.65rem;
    }
}
