/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
body {
    font-family: 'Noto Serif JP', 'YuMincho', 'Hiragino Mincho ProN', serif;
    line-height: 1.8;
    color: #4A4A4A;
    background-color: #F9F7F4;
    font-size: 16px; /* 基本フォントサイズ */
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #8B7355;
    line-height: 1.5;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    text-align: center;
    box-shadow: none; /* デフォルトの影を削除 */
}

.cta-button.primary {
    background: white;
    color: #8B7355;
    border-color: #8B7355;
}

.cta-button.primary:hover {
    background: #8B7355;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 115, 85, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: #6B5B73;
    border-color: #6B5B73;
}

.cta-button.secondary:hover {
    background: #6B5B73;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(107, 91, 115, 0.2);
}

.cta-note {
    margin-top: 20px;
    font-size: 15px;
    opacity: 0.8;
}

/* 共感パート */
.empathy {
    background: url("images/003.webp") center/cover;
    position: relative;
}

.empathy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 247, 244, 0.85);
    z-index: 1;
}

.empathy .container {
    position: relative;
    z-index: 2;
}

.checklist {
    max-width: 650px;
    margin: 0 auto;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateY(-3px);
}

.check-icon {
    font-size: 22px;
    color: #8B7355;
    margin-right: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.check-item p {
    margin: 0;
    font-size: 17px;
}

/* 解決策の提示 */
.solution {
    background: url("images/006.webp") center/cover;
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.solution .container {
    position: relative;
    z-index: 2;
}

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

.solution-text p {
    margin-bottom: 25px;
    font-size: 17px;
}

.highlight {
    background: linear-gradient(transparent 65%, rgba(139, 115, 85, 0.2) 65%);
    padding: 12px 0;
    border-radius: 6px;
}

.solution-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0; /* 角丸をなくす */
    box-shadow: none; /* 影をなくす */
}

/* ベネフィット */
.benefits {
    background: url("images/007.webp") center/cover;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0,0,0,0.09);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
}

.benefit-card h3 {
    font-size: 22px;
    color: #8B7355;
    margin-bottom: 18px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
}

.faq {
    background: url("images/003.webp") center/cover;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 247, 244, 0.85);
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-question {
    padding: 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #F9F7F4;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #4A4A4A;
    margin: 0;
}

.faq-toggle {
    font-size: 26px;
    color: #8B7355;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 28px 28px;
    max-height: 250px; /* Adjust as needed */
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #7A7A7A;
}
/* プロフィール */
.profile {
    background: url("images/003.webp") center/cover;
    position: relative;
}

.profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 247, 244, 0.85);
    z-index: 1;
}

.profile .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #8B7355;
    line-height: 1.5;
    position: relative;
    z-index: 3;
}

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

.profile-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.profile-text h3 {
    font-size: 26px;
    color: #8B7355;
    margin-bottom: 25px;
    font-weight: 600;
}

.profile-text p {
    margin-bottom: 25px;
    font-size: 17px;
}

.profile-mission {
    background: linear-gradient(transparent 65%, rgba(107, 91, 115, 0.2) 65%);
    padding: 18px 0;
    text-align: center;
    border-radius: 12px;
    font-size: 20px;
}

.credentials {
    margin-top: 35px;
    padding: 28px;
    background: #F9F7F4;
    border-radius: 18px;
}

.credentials h4 {
    font-size: 20px;
    color: #8B7355;
    margin-bottom: 18px;
    font-weight: 600;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    margin-bottom: 12px;
    font-size: 15px;
    padding-left: 22px;
    position: relative;
}

.credentials li::before {
    content: '•';
    color: #8B7355;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 最後のCTA */
.final-cta {
    background: linear-gradient(135deg, #6B5B73, #8B7355);
    color: white;
    text-align: center;
}

.final-cta .section-title {
    color: white;
}

.final-message {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.final-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .final-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.final-cta .cta-button.primary {
    background: white;
    color: #6B5B73;
    border-color: white;
}

.final-cta .cta-button.primary:hover {
    background: #F9F7F4;
}

.final-cta .cta-button.secondary {
    border-color: white;
    color: white;
}

.final-cta .cta-button.secondary:hover {
    background: white;
    color: #6B5B73;
}

/* フッター */
.footer {
    background: url('images/sky_cloud.jpeg') center/cover;
    position: relative;
    padding: 50px 0;
    text-align: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer p {
    color: #7A7A7A;
    font-size: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .session-details {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .container {
        padding: 0 18px;
    }
    

    
    .benefit-card {
        padding: 25px;
    }
    
    .faq-question {
        padding: 22px;
    }
    
    .credentials {
        padding: 22px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .final-message {
        font-size: 18px;
    }
}


/* ファーストビュー */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

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

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

/* セクション共通 */
section {
    padding: 80px 0;
}


/* セッション紹介ページ */
.session {
    background: #F9F7F4;
    text-align: center;
}

.session-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.session .container > p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.session-paid {
    margin-top: 50px;
    text-align: center;
}

.session-subtitle {
    font-size: 24px;
    color: #8B7355;
    margin-bottom: 30px;
    font-weight: 600;
}

.pricing {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

.pricing-item {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-plans {
    margin-top: 20px;
}

.plan {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.plan small {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #7A7A7A;
}



/* 最終ページのボタン配置 */
.final-buttons {
    text-align: center;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.button-row .cta-button {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        max-width: 90%;
    }
    
    .pc-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .button-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .button-row .cta-button {
        max-width: none;
        min-width: none;
    }
}

/* PC用の表示制御 */
@media (min-width: 769px) {
    .pc-only {
        display: block !important;
    }
    
    .mobile-only {
        display: none !important;
    }
}

