/* =========================================
   Finesse Academy LP① - Price-Free Version
   個別面談誘導用LP（品格重視表記）
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #FAF8F3;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* ========== カラーパレット ========== */
:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4AF37;
    --accent-color: #A67C52;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-cream: #FAF8F3;
    --bg-white: #FFFFFF;
    --bg-light: #F5F3EE;
}

/* ========== コンテナ ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ========== タイポグラフィ ========== */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 20px auto 0;
}

/* ========== ヒーローセクション ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7), rgba(139, 111, 71, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-cta {
    margin-top: 40px;
}

/* ========== 個別面談詳細セクション ========== */
.consultation-details {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    position: relative;
    overflow: hidden;
}

.consultation-details::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-style: italic;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.consultation-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

.consultation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
}

.consultation-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.consultation-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.consultation-card ul {
    text-align: left;
    padding-left: 0;
}

.consultation-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.consultation-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ========== サブキャッチ ========== */
.subcatch {
    background: var(--bg-white);
    text-align: center;
}

.subcatch .lead {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.subcatch .lead strong {
    color: var(--primary-color);
    font-weight: 600;
}

.subcatch .secondary {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.subcatch .secondary strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ========== 問題提起 ========== */
.problems {
    background: var(--bg-light);
}

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

.problem-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.problem-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* ========== 理想提示 ========== */
.ideal {
    background: var(--bg-white);
}

.ideal-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.ideal-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

.ideal-card {
    background: var(--bg-cream);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ideal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.2);
}

.ideal-card i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ideal-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ideal-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== ターゲット ========== */
.target {
    background: var(--bg-light);
}

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

.target-item {
    background: var(--bg-white);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: translateX(10px);
}

.target-item i {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.target-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ========== カリキュラム ========== */
.curriculum {
    background: var(--bg-white);
}

.curriculum-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.curriculum-overview {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 50px;
    border-left: 5px solid var(--secondary-color);
}

.curriculum-overview h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.curriculum-overview h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.curriculum-overview ul {
    list-style: none;
}

.curriculum-overview ul li {
    padding: 10px 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.curriculum-overview .small {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* タイムライン */
.curriculum-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-date,
.timeline-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.timeline-date i,
.timeline-location i {
    margin-right: 8px;
    color: var(--accent-color);
}

.timeline-desc {
    margin: 20px 0;
    color: var(--text-dark);
    line-height: 1.8;
}

.timeline-desc .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.timeline-outcome {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.timeline-outcome h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-outcome ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.timeline-outcome ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.timeline-bonus {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(166, 124, 82, 0.1));
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-top: 15px;
}

.timeline-bonus i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.timeline-bonus.special {
    border-left: 4px solid var(--secondary-color);
}

/* 特典まとめ */
.curriculum-benefits {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
}

.curriculum-benefits h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.curriculum-benefits h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 注記 */
.curriculum-note {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05), rgba(212, 175, 55, 0.05));
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    margin-top: 50px;
}

.curriculum-note p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.curriculum-note i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* ========== 講師紹介 ========== */
.instructor {
    background: var(--bg-light);
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.instructor-image {
    position: relative;
}

.instructor-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.instructor-bio h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.instructor-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.instructor-desc p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 20px;
}

.instructor-message {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    margin-top: 30px;
    font-style: italic;
}

.instructor-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #DDD;
}

.instructor-contact i {
    margin-right: 8px;
    color: var(--accent-color);
}

.instructor-contact a:hover {
    color: var(--secondary-color);
}

/* ========== FAQ ========== */
.faq {
    background: var(--bg-white);
}

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

.faq-item {
    background: var(--bg-cream);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question i:first-child {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.faq-question i:last-child {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i:last-child {
    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 30px 25px 65px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========== クロージングCTA ========== */
.closing-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #FFFFFF;
    text-align: center;
}

.closing-cta h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.closing-cta p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== CTAボタン ========== */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.cta-button.large {
    padding: 22px 55px;
    font-size: 1.25rem;
}

.cta-button i {
    margin-right: 10px;
}

/* リップルエフェクト */
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

/* ========== フッター ========== */
.footer {
    background: var(--text-dark);
    color: #FFFFFF;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer a {
    color: var(--secondary-color);
}

.footer a:hover {
    color: var(--accent-color);
}

/* ========== ページトップボタン ========== */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

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

.page-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========== アニメーション ========== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== レスポンシブ ========== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instructor-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problems-grid,
    .ideal-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .timeline-item::before {
        left: 22px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .closing-cta h2 {
        font-size: 1.8rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}