/* カスタムカラーパレット */
:root {
    /* 推奨パターン構成 */
    --bg-white: #FFFFFF;
    --main-lavender: #B7A9D5;
    --accent-red: #D94F4F;
    --sub-blue: #A6C8FF;
    --support-mocha: #C6A98D;
    
    /* グラデーション */
    --gradient-main: linear-gradient(135deg, #B7A9D5 0%, #A6C8FF 100%);
    --gradient-hero: linear-gradient(135deg, #B7A9D5 0%, #9B8BC7 50%, #A6C8FF 100%);
    --gradient-accent: linear-gradient(45deg, #D94F4F 0%, #E56B6B 100%);
    
    /* テキストカラー */
    --text-dark: #2C2C2C;
    --text-gray: #666666;
    --text-light: #999999;
    
    /* シャドウ */
    --shadow-light: 0 2px 10px rgba(183, 169, 213, 0.15);
    --shadow-medium: 0 4px 20px rgba(183, 169, 213, 0.25);
    --shadow-strong: 0 8px 30px rgba(183, 169, 213, 0.35);
    
    /* フォント */
    --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* リセット・基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ヘッダー */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--main-lavender);
}

.logo i {
    font-size: 24px;
}

.header-cta .btn-primary {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.header-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ヒーローセクション */
.hero {
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 79, 79, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .accent {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-display {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-before {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.price-before .strike {
    text-decoration: line-through;
    color: #ffcccc;
}

.price-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.discount {
    background: var(--accent-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.current-price {
    font-size: 36px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    font-size: 14px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-accent);
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(217, 79, 79, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 79, 79, 0.5);
}

.remaining-seats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.remaining-seats span {
    color: #FFD700;
    font-weight: 700;
}

/* ヒーロービジュアル */
.hero-visual {
    position: relative;
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chart-container {
    height: 200px;
    margin-bottom: 20px;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: var(--text-dark);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--main-lavender);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* 共通セクションスタイル */
.section-title {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--main-lavender);
}

/* 問題提起セクション */
.problems {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-red);
}

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

.problem-item i {
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.problem-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.problems-solution {
    background: var(--gradient-main);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-medium);
}

.problems-solution h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.problems-solution p {
    font-size: 18px;
    line-height: 1.6;
}

/* 講師紹介セクション */
.instructor {
    padding: 80px 0;
    background: white;
}

.instructor-content {
    max-width: 1000px;
    margin: 0 auto;
}

.instructor-profile {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.profile-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-light);
}

.instructor-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.instructor-title {
    font-size: 16px;
    color: var(--main-lavender);
    font-weight: 600;
    margin-bottom: 30px;
}

.achievements h4,
.credentials h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.achievements i,
.credentials i {
    color: var(--main-lavender);
}

.achievements ul {
    list-style: none;
    margin-bottom: 30px;
}

.achievements li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.5;
}

.achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

.credential-list {
    display: grid;
    gap: 12px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(183, 169, 213, 0.1);
    border-radius: 10px;
    color: var(--text-gray);
}

.credential-item i {
    color: var(--main-lavender);
}

.instructor-quote {
    background: var(--gradient-main);
    padding: 40px;
    border-radius: 20px;
    color: white;
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.quote-content {
    position: relative;
    text-align: center;
}

.quote-content i {
    font-size: 24px;
    opacity: 0.5;
}

.quote-content .fa-quote-left {
    position: absolute;
    top: -10px;
    left: -10px;
}

.quote-content .fa-quote-right {
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.quote-content p {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0;
}

.transformation-story h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.story-timeline {
    display: grid;
    gap: 20px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
}

.timeline-year {
    background: var(--gradient-main);
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.timeline-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* 講座内容セクション */
.course-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.curriculum {
    margin-bottom: 60px;
}

.part-section {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 30px;
}

.part-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gradient-main);
    color: white;
    padding: 25px 30px;
}

.part-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

.part-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.part-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    font-size: 14px;
}

.part-content {
    padding: 30px;
}

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

.lesson-item {
    padding: 20px;
    border: 2px solid rgba(183, 169, 213, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lesson-item:hover {
    border-color: var(--main-lavender);
    transform: translateY(-2px);
}

.lesson-item i {
    font-size: 24px;
    color: var(--main-lavender);
    margin-bottom: 12px;
}

.lesson-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.lesson-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.workshop-grid {
    display: grid;
    gap: 25px;
}

.workshop-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
    background: rgba(183, 169, 213, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--main-lavender);
}

.workshop-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.workshop-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.workshop-desc {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.time-saving {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.time-saving .before {
    color: var(--accent-red);
    text-decoration: line-through;
}

.time-saving .after {
    color: #28a745;
    font-weight: 700;
}

.time-saving i {
    color: var(--main-lavender);
}

.improvement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.improvement .metric {
    font-size: 14px;
    color: var(--text-gray);
}

.improvement .value {
    background: var(--gradient-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
}

.learning-method {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.learning-method h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
}

.learning-method h3 i {
    color: var(--main-lavender);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.method-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(183, 169, 213, 0.05);
    transition: all 0.3s ease;
}

.method-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.method-item i {
    font-size: 32px;
    color: var(--main-lavender);
    margin-bottom: 15px;
}

.method-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.method-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* 価格セクション */
.price-section {
    padding: 80px 0;
    background: white;
}

.price-story {
    background: var(--gradient-main);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: var(--shadow-medium);
}

.price-story h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-story p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.story-highlight p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.price-comparison {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.price-header {
    background: rgba(183, 169, 213, 0.1);
    padding: 20px;
}

.price-header h4 {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.normal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price-arrow {
    background: var(--gradient-accent);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.special-price {
    padding: 25px 20px;
}

.special-price h4 {
    color: var(--main-lavender);
    margin-bottom: 10px;
    font-weight: 600;
}

.current-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.price-note {
    background: var(--gradient-main);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.roi-calculator {
    background: rgba(183, 169, 213, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(183, 169, 213, 0.2);
}

.roi-calculator h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.roi-calculator h4 i {
    color: var(--main-lavender);
}

.roi-items {
    display: grid;
    gap: 15px;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.roi-item:first-child {
    background: var(--gradient-main);
    color: white;
    font-weight: 700;
    font-size: 18px;
    justify-content: center;
}

.roi-item i {
    color: var(--main-lavender);
    font-size: 20px;
    width: 24px;
}

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

.roi-desc {
    color: var(--text-gray);
}

.roi-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-red);
}

.urgency-alert {
    background: var(--gradient-accent);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
    justify-content: center;
}

.alert-content i {
    font-size: 32px;
    animation: pulse 2s infinite;
}

.alert-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.alert-text p {
    margin: 0;
}

.alert-text span {
    font-weight: 700;
    font-size: 20px;
}

/* 特典セクション */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    margin: 0 auto 20px;
}

.benefit-content {
    text-align: center;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-value {
    background: var(--gradient-accent);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.benefit-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* お客様の声セクション */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: rgba(183, 169, 213, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(183, 169, 213, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--main-lavender);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.company-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.company-type {
    background: var(--main-lavender);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.result-badge {
    text-align: right;
    font-size: 12px;
}

.result-badge span {
    display: block;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.result-badge strong {
    color: var(--accent-red);
    font-size: 16px;
    font-weight: 700;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 32px;
    color: var(--main-lavender);
    line-height: 1;
}

.testimonial-content p::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -15px;
    font-size: 32px;
    color: var(--main-lavender);
    line-height: 1;
}

.testimonial-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-red);
}

.overall-stats {
    background: var(--gradient-main);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.overall-stats h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.overall-stats .stat-item {
    text-align: center;
}

.overall-stats .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.overall-stats .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* 緊急性セクション */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe5e5 0%, #fff0f0 100%);
}

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

.urgency-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border-left: 4px solid var(--accent-red);
    transition: all 0.3s ease;
}

.urgency-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.urgency-item i {
    font-size: 36px;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.urgency-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.urgency-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.countdown-section {
    background: var(--gradient-accent);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.countdown-content h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-item label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

/* 最終CTAセクション */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

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

.cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-title i {
    color: #FFD700;
}

.cta-price {
    margin-bottom: 30px;
}

.price-comparison-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
}

.strike-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.arrow {
    font-size: 32px;
    color: #FFD700;
}

.special-price {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.discount-badge {
    background: var(--accent-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
}

.final-benefits {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 16px;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row i {
    color: #FFD700;
    font-size: 18px;
}

.btn-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-accent);
    color: white;
    padding: 25px 50px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(217, 79, 79, 0.5);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    animation: ctaPulse 3s infinite;
}

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

.btn-main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 79, 79, 0.6);
}

.remaining-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.remaining-info span {
    color: #FFD700;
    font-size: 24px;
    font-weight: 800;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.trust-item i {
    color: #FFD700;
}

/* フッター */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--main-lavender);
}

.footer-info p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--main-lavender);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--main-lavender);
}

.footer-contact h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--main-lavender);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-benefits {
        justify-content: center;
    }

    .instructor-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .price-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-item span {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .cta-title {
        flex-direction: column;
        gap: 10px;
    }

    .price-comparison-inline {
        flex-direction: column;
        gap: 10px;
    }

    .header-content {
        height: 60px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .section-title {
        flex-direction: column;
        gap: 10px;
    }

    .workshop-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 36px;
    }

    .btn-hero {
        font-size: 16px;
        padding: 15px 30px;
    }

    .btn-main-cta {
        font-size: 20px;
        padding: 20px 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* スクロールアニメーション */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

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

    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease;
    }

    .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s ease;
    }

    .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--main-lavender);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9b8bc7;
}