/* ==========================================
   リセット & 基本設定
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* テキスト階層の定義 */
:root {
    /* TikTokカラースキーム */
    --primary-color: #ff0050;
    --secondary-color: #00f2ea;
    --accent-color: #fe2c55;
    --dark-bg: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --text-dark: #333333;
    
    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, #ff0050 0%, #fe2c55 100%);
    --gradient-secondary: linear-gradient(135deg, #00f2ea 0%, #69c9ff 100%);
    --gradient-hero: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    
    /* シャドウ */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 0, 80, 0.3);
    
    /* フォント */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    
    /* テキストサイズ階層 */
    --text-hero: 36px;        /* ヒーロータイトル（大） */
    --text-section: 28px;     /* セクションタイトル（大） */
    --text-subtitle: 18px;    /* サブタイトル（中） */
    --text-body: 15px;        /* 本文（小） */
    --text-small: 13px;       /* 小さいテキスト */
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    font-size: var(--text-body);
}

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

/* ==========================================
   ヘッダー / ヒーローセクション
   ========================================== */
.hero {
    background: var(--gradient-hero);
    color: var(--text-primary);
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 80, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
}

.hero-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-name {
    display: block;
    font-size: var(--text-hero);
    font-weight: 900;
    font-family: var(--font-accent);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: var(--text-subtitle);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle strong {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    margin-top: 8px;
}

.achievements {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.achievement-number {
    font-size: 22px;
    font-weight: 900;
    color: var(--secondary-color);
    font-family: var(--font-accent);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.achievement-label {
    font-size: var(--text-small);
    color: var(--text-secondary);
    font-weight: 400;
}

.organizer {
    font-size: var(--text-small);
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ==========================================
   CTAボタン
   ========================================== */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-secondary {
    display: none;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 242, 234, 0.3);
}

.cta-large {
    padding: 22px 48px;
    font-size: 18px;
    background: linear-gradient(135deg, #ff0000 0%, #ff4500 50%, #ff6600 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4), 0 0 40px rgba(255, 69, 0, 0.3);
    animation: flamePulse 2s ease-in-out infinite;
}

.cta-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    animation: flameShine 3s linear infinite;
}

.cta-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 0, 0.3) 0%, transparent 70%);
    animation: flameGlow 1.5s ease-in-out infinite alternate;
}

@keyframes flamePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4), 0 0 40px rgba(255, 69, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 40px rgba(255, 0, 0, 0.6), 0 0 60px rgba(255, 69, 0, 0.5), 0 0 80px rgba(255, 100, 0, 0.3);
    }
}

@keyframes flameShine {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

@keyframes flameGlow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.cta-large:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 50px rgba(255, 0, 0, 0.6), 0 0 70px rgba(255, 69, 0, 0.5), 0 0 100px rgba(255, 100, 0, 0.4);
}

.cta-button i {
    margin-right: 8px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
    position: relative;
}

.cta-large {
    position: relative;
}

.cta-large > * {
    position: relative;
    z-index: 1;
}

/* ==========================================
   セクション共通
   ========================================== */
.section {
    padding: 60px 20px;
}

/* セクションタイトル（大） */
.section-title {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: var(--font-accent);
    letter-spacing: -0.5px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title-main {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
}

.title-sub {
    font-size: 11px;
    font-weight: 400;
    color: #999999;
    font-family: var(--font-accent);
    letter-spacing: 0.5px;
}

/* サブタイトル（中） */
.section-subtitle {
    font-size: var(--text-subtitle);
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   カウンセリング動画セクション
   ========================================== */
.counseling-section {
    background-color: var(--light-gray);
    padding: 10px 10px 25px;
}

.counseling-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.flow-item {
    flex-shrink: 0;
}

.flow-icon {
    background: var(--gradient-primary);
    color: var(--text-primary);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-box {
    background: white;
    padding: 15px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 15px 8px;
}

.highlight-text {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.highlight-text strong {
    background: linear-gradient(transparent 60%, #ffff00 60%);
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 900;
    display: inline;
    margin-top: 0;
    padding: 2px 4px;
}

.feature-box {
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    color: var(--text-primary);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    margin-bottom: 10px;
}

.feature-list li {
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list i {
    color: #ffff00;
    font-size: 14px;
}

.feature-subtitle {
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
}

/* プレミアムハイライトボックス */
.highlight-box-premium {
    background: linear-gradient(135deg, #ff0050 0%, #ff4d7d 50%, #ff0050 100%);
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 0, 80, 0.4), 0 0 40px rgba(255, 0, 80, 0.2);
    margin: 15px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: premiumGlow 3s ease-in-out infinite;
}

.highlight-box-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: premiumShine 4s linear infinite;
}

@keyframes premiumGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 0, 80, 0.4), 0 0 40px rgba(255, 0, 80, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 0, 80, 0.6), 0 0 60px rgba(255, 0, 80, 0.4);
    }
}

@keyframes premiumShine {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

.highlight-icon {
    font-size: 24px;
    animation: iconRotate 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes iconRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
}

.highlight-text-premium {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    z-index: 2;
}

.highlight-line1 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.highlight-line2 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* プレミアムfeatureボックス */
.feature-box-premium {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    padding: 20px 15px;
    border-radius: 12px;
    margin: 15px 8px;
    box-shadow: 0 4px 20px rgba(255, 0, 80, 0.2);
    border: 3px solid #ff0050;
}

.feature-box-header {
    text-align: center;
    margin-bottom: 15px;
}

.feature-title-premium {
    font-size: 17px;
    font-weight: 900;
    color: #ff0050;
    line-height: 1.4;
}

.feature-box-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #ff0050;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-number {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-accent);
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0050 0%, #ff4d7d 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 0, 80, 0.3);
}

.feature-text {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
}

.feature-subtitle-premium {
    text-align: center;
    font-size: 16px;
    color: #333333;
    font-weight: 700;
}

/* カウンセリングセクションCTA */
.counseling-cta-wrapper {
    margin: 20px 8px 0;
}

.cta-counseling {
    display: block;
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
    transition: all 0.3s ease;
    line-height: 1.4;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: ctaBounce 2s ease-in-out infinite;
}

.cta-counseling::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-counseling:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes ctaBounce {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(183, 28, 28, 0.6);
    }
}

.cta-counseling:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.5);
}

/* ==========================================
   プロフィールセクション
   ========================================== */
.profile-section {
    background: white;
}

.profile-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

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

/* プロフィール画像 */
.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.4;
}

.profile-reading {
    font-size: var(--text-small);
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 8px;
}

.profile-title {
    font-size: var(--text-small);
    color: var(--text-secondary);
    line-height: 1.6;
}

.profile-achievements {
    display: grid;
    gap: 15px;
}

.profile-achievement-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.profile-achievement-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.profile-achievement-item p {
    font-size: var(--text-body);
    line-height: 1.6;
}

.profile-achievement-item strong {
    color: var(--primary-color);
    font-weight: 900;
}

/* ==========================================
   ビジョンセクション
   ========================================== */
/* ビジョンセクション画像 */
.vision-hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vision-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.vision-section {
    background: var(--light-gray);
}

.vision-content {
    max-width: 700px;
    margin: 0 auto;
}

.vision-greeting {
    font-size: var(--text-subtitle);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.7;
}

.vision-greeting strong {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.story-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.story-box p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: var(--text-body);
}

.story-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

.result-highlight {
    background: var(--gradient-hero);
    color: var(--text-primary);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
}

.number-large {
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 900;
    font-family: var(--font-accent);
    letter-spacing: -0.5px;
}

.mission-box {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.mission-box p {
    text-align: center;
    font-size: var(--text-subtitle);
    line-height: 1.9;
    margin-bottom: 0;
    font-weight: 500;
}

.closing-message {
    text-align: center;
    font-size: var(--text-subtitle);
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
}

/* ==========================================
   悩みセクション
   ========================================== */
.concerns-section {
    background: white;
}

.concerns-subtitle {
    color: var(--primary-color);
    font-weight: 700;
}

.concerns-list {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.concern-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.concern-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.concern-item p {
    font-size: var(--text-body);
    line-height: 1.7;
}

.solution-box {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.solution-box i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    animation: bounce 2s infinite;
}

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

.solution-box p {
    font-size: var(--text-subtitle);
    line-height: 1.8;
    margin: 0;
}

.solution-box strong {
    font-size: 20px;
    font-weight: 900;
    display: block;
    margin-top: 5px;
}

/* ==========================================
   ポイントセクション
   ========================================== */
.points-section {
    background: var(--light-gray);
}

.point-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.point-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: var(--font-accent);
}

.point-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
}

/* スケジュール */
.schedule-box {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

/* ギータ講師紹介カード */
.instructor-intro-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--light-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instructor-photo {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instructor-details {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.instructor-name {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
    color: white;
    letter-spacing: 2px;
}

.instructor-name-reading {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.instructor-info {
    margin-bottom: 20px;
    line-height: 1.8;
}

.instructor-info p {
    font-size: 15px;
    margin-bottom: 5px;
    color: white;
}

.instructor-experience {
    font-size: 16px;
    font-weight: 700;
    color: white;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    padding-top: 15px;
    margin-top: 10px;
}

/* レスポンシブ対応 - スマホでも横並び維持 */
@media (max-width: 767px) {
    .instructor-intro-card {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
    
    .instructor-photo {
        min-height: 300px;
    }
    
    .instructor-details {
        padding: 20px 15px;
    }
    
    .instructor-name {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .instructor-name-reading {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .instructor-info {
        margin-bottom: 15px;
    }
    
    .instructor-info p {
        font-size: 12px;
    }
    
    .instructor-experience {
        font-size: 13px;
        padding-top: 10px;
        margin-top: 8px;
    }
}

/* さらに小さい画面用 */
@media (max-width: 480px) {
    .instructor-intro-card {
        border-radius: 8px;
        border: 2px solid var(--light-gray);
    }
    
    .instructor-photo {
        min-height: 250px;
    }
    
    .instructor-details {
        padding: 15px 12px;
    }
    
    .instructor-name {
        font-size: 20px;
    }
    
    .instructor-name-reading {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .instructor-info p {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .instructor-experience {
        font-size: 12px;
    }
}

.schedule-title {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-accent);
    letter-spacing: 1px;
}

.schedule-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.schedule-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    background: white;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    min-height: 70px;
}

.schedule-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 11px;
    font-family: var(--font-accent);
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 6px;
}

.schedule-content {
    font-size: var(--text-small);
    line-height: 1.5;
    width: 100%;
}

.schedule-break {
    background: var(--light-gray);
    border: 2px dashed var(--text-secondary);
    justify-content: center;
}



.schedule-break .schedule-time,
.schedule-break .schedule-content {
    color: var(--text-secondary);
    border-bottom: none;
    padding-bottom: 0;
}

/* 引用ボックス */
.quote-box {
    background: var(--gradient-hero);
    color: var(--text-primary);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.quote-box i {
    font-size: 24px;
    color: var(--secondary-color);
    opacity: 0.5;
}

.quote-box p {
    font-size: var(--text-subtitle);
    line-height: 1.8;
    margin: 15px 0;
    font-weight: 500;
}

/* 詳細アイテム */
.content-details {
    margin: 25px 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-item p {
    font-size: var(--text-body);
    line-height: 1.7;
}

.detail-item strong {
    color: var(--primary-color);
}

/* 哲学ボックス */
.philosophy-box {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 4px solid var(--secondary-color);
}

.philosophy-box p {
    font-size: var(--text-body);
    line-height: 1.8;
    margin-bottom: 12px;
}

.philosophy-box p:last-child {
    margin-bottom: 0;
}

.philosophy-box strong {
    color: var(--primary-color);
}

.philosophy-box .emphasis {
    font-size: var(--text-subtitle);
    text-align: center;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

/* 実績者の声 - 画像セクション */
.testimonial-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-image-item {
    text-align: center;
}

.testimonial-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.testimonial-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.testimonial-name {
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-achievement {
    font-size: var(--text-small);
    color: var(--primary-color);
    font-weight: 600;
}

/* 実績ボックス */
.results-box {
    margin-top: 25px;
}

.results-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.results-description {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.result-card {
    background: var(--light-gray);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.result-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.result-text {
    font-size: 13px;
    line-height: 1.6;
}

.result-text strong {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 5px;
    font-weight: 900;
}

.video-placeholder {
    background: var(--gradient-hero);
    color: var(--text-primary);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.video-placeholder i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.video-placeholder p {
    font-size: 16px;
    font-weight: 700;
}

/* ==========================================
   特典セクション
   ========================================== */
.present-section {
    background: white;
}

/* セクション全体の余白設定 */
.section {
    padding: 40px 10px;
}

.present-section {
    padding: 40px 0;
    overflow-x: hidden;
}

.present-section .container {
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.present-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.present-item {
    background: var(--light-gray);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.present-item-full {
    grid-column: 1 / -1;
}

.present-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.present-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-md);
}

.present-icon i {
    font-size: 28px;
    color: var(--text-primary);
}

.present-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.5;
    display: block;
    padding: 0 5px;
}

.present-description {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    word-break: keep-all;
    overflow-wrap: break-word;
    padding: 0 5px;
}

.present-note {
    font-size: 8px;
    color: #999;
    margin-top: 5px;
}

/* ==========================================
   Q&Aセクション
   ========================================== */
.faq-section {
    background: var(--light-gray);
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question > i:first-child {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question > span {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

.faq-toggle {
    font-size: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding: 0 20px 20px 59px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ==========================================
   最終CTAセクション
   ========================================== */
.final-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.cta-details {
    margin-bottom: 35px;
}

.cta-detail-item {
    font-size: 14px;
    color: #ffd700;
    margin: 8px 0;
    font-weight: 600;
}

.final-message {
    margin-top: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.message-main {
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
    margin: 0 auto 12px auto;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1.4;
    white-space: nowrap;
    display: block;
    width: fit-content;
}

.message-sub {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto;
    line-height: 1.4;
    white-space: nowrap;
    display: block;
    width: fit-content;
}

.final-cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
    margin: 10px 0;
}

.contact-info i {
    margin-right: 8px;
    color: #ffd700;
}

/* ==========================================
   フッター
   ========================================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-secondary);
    padding: 30px 20px;
    text-align: center;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 12px;
}

/* ==========================================
   レスポンシブデザイン
   ========================================== */
@media (min-width: 768px) {
    .service-name {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-subtitle strong {
        font-size: 24px;
    }
    
    .achievement-number {
        font-size: 26px;
    }
    
    .achievement-label {
        font-size: 14px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .flow-icon {
        width: 110px;
        height: 110px;
        font-size: 18px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .vision-hero-image {
        max-width: 500px;
    }
    
    .testimonial-images {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .concerns-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .present-list {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
    }
    
    .final-cta-title {
        font-size: 40px;
    }
    
    .final-message {
        max-width: 700px;
        padding: 35px 30px;
    }
    
    .message-main {
        font-size: 28px;
    }
    
    .message-sub {
        font-size: 24px;
    }
    
    .cta-large {
        font-size: 20px;
        padding: 25px 55px;
    }
    
    .final-cta-description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .achievements {
        gap: 10px;
    }
    
    .achievement-item {
        min-width: 90px;
        padding: 12px 15px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-list {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

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

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}