/* ========================================
   心とお金のリカバリーメンテ 3か月RNR
   スタイルシート
   
   バージョン: 2.0
   最終更新: 2026-01-26 15:00
   
   変更履歴:
   - ボタンの色統一（水色/ゴールド）
   - 立体感のあるデザインに修正
   - 参加者の変化セクション修正
======================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.8;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    opacity: 0.7;
}

/* ========================================
   共通スタイル
======================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    .pc-only {
        display: none;
    }
}

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

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
}

/* 注意書き */
.note {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.6;
}

.note-inline {
    font-size: 0.85rem;
    color: #888;
}

.highlight {
    color: #e6a23c;
    font-weight: 700;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: linear-gradient(135deg, #f5f5f0 0%, #fff 50%, #f5f5f0 100%);
    padding: 60px 0 40px;
    border-bottom: 3px solid #e6a23c;
    position: relative;
    overflow: hidden;
}

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

.header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.header-label {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.header-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.header-date {
    display: inline-block;
}

.date-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a961 0%, #d4b882 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

@media screen and (max-width: 768px) {
    .header {
        padding: 40px 0 30px;
    }
    .header-title {
        font-size: 1.8rem;
    }
    .header-subtitle {
        font-size: 1rem;
    }
    .date-badge {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    background: linear-gradient(to bottom, #fff 0%, #fafaf8 100%);
    padding: 60px 0;
}

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

.hero-hook {
    margin-bottom: 40px;
}

.hook-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #e6a23c;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    .hook-text {
        font-size: 1.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}

/* ========================================
   導入セクション
======================================== */
.intro {
    padding: 80px 0;
    background-color: #fff;
}

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

.intro-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
}

.intro-text strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* ========================================
   問題提起セクション
======================================== */
.problem {
    padding: 80px 0;
    background-color: #fafaf8;
}

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

.problem-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    margin-bottom: 40px;
}

.problem-text strong {
    color: #2c2c2c;
    font-weight: 600;
}

.common-advice {
    background-color: #fff;
    border-left: 4px solid #e6a23c;
    padding: 30px 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.common-advice ul {
    list-style: none;
}

.common-advice li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.common-advice li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6a23c;
    font-weight: 700;
    font-size: 1.2rem;
}

.common-advice li:last-child {
    margin-bottom: 0;
}

.symptoms-box {
    background-color: #fffbf0;
    border: 3px solid #e6a23c;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.symptoms-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 30px;
}

.symptoms-list {
    list-style: none;
}

.symptoms-list li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    line-height: 1.8;
}

.symptoms-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e57373;
    font-weight: 700;
    font-size: 1.3rem;
}

.symptoms-list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .common-advice {
        padding: 25px 25px;
    }
    .symptoms-box {
        padding: 30px 25px;
    }
}

/* ========================================
   診断セクション
======================================== */
.diagnosis {
    background-color: #fff;
}

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

.diagnosis-intro {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.diagnosis-intro strong {
    color: #2c2c2c;
    font-weight: 600;
}

.diagnosis-outro {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-top: 50px;
}

.diagnosis-outro strong {
    color: #2c2c2c;
    font-weight: 600;
}

.disease-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.disease-card {
    background-color: #fafaf8;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.disease-card:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.disease-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e6a23c;
    margin-bottom: 12px;
}

.disease-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

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

/* ========================================
   CTA チェックリスト
======================================== */
.cta-checklist {
    background-color: #fff;
    padding: 80px 0;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    border: 2px solid #e6a23c;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c9a961 0%, #d4b882 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary {
    background: linear-gradient(135deg, #5c9bd3 0%, #8fb4e0 100%);
    box-shadow: 0 6px 20px rgba(92, 155, 211, 0.3);
}

.cta-button.primary:hover {
    box-shadow: 0 8px 25px rgba(92, 155, 211, 0.4);
}

.cta-button:not(.primary):not(.secondary) {
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.cta-button:not(.primary):not(.secondary):hover {
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-arrow {
    margin-left: 10px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .cta-box {
        padding: 40px 30px;
    }
    .cta-title {
        font-size: 1.4rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 16px 40px;
    }
}

/* ========================================
   プログラムセクション
======================================== */
.program {
    padding: 80px 0;
    background-color: #fafaf8;
}

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

.program-intro {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.program-intro strong {
    color: #2c2c2c;
    font-weight: 600;
}

.program-overview {
    margin-bottom: 60px;
}

.program-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 40px;
}

.month-block {
    background-color: #fafaf8;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.month-block:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

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

.month-label {
    background: linear-gradient(135deg, #e6a23c 0%, #f5d678 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 50px;
    flex-shrink: 0;
}

.month-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
}

.month-content {
    padding-left: 0;
}

.month-description {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

.month-description strong {
    color: #e6a23c;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .month-block {
        padding: 25px;
    }
    .month-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ========================================
   スケジュールセクション
======================================== */
.program-schedule {
    margin-bottom: 60px;
}

.schedule-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fafaf8 100%);
    border: 2px solid #e6a23c;
    border-radius: 12px;
    padding: 40px;
}

.schedule-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.schedule-text strong {
    color: #2c2c2c;
    font-weight: 600;
}

.schedule-time {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 20px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.time-icon {
    font-size: 1.8rem;
}

.time-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
}

.schedule-note {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.schedule-dates {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed #e6a23c;
}

.schedule-dates-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 30px;
}

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

.date-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.date-day {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.date-time {
    display: inline-block;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.date-time.day {
    background-color: #fff9e6;
    color: #e6a23c;
}

.date-time.night {
    background-color: #e3f2fd;
    color: #5c9bd3;
}

@media screen and (max-width: 768px) {
    .schedule-box {
        padding: 30px 20px;
    }
    .schedule-time {
        flex-direction: column;
        gap: 20px;
    }
    .time-slot {
        padding: 15px 25px;
    }
    .dates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ========================================
   サポート内容セクション
======================================== */
.support {
    background: linear-gradient(135deg, #fafaf8 0%, #fff 100%);
}

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

.support-intro {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.support-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
}

.support-card:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.support-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e6a23c;
    margin-bottom: 20px;
}

.support-card-list {
    list-style: none;
}

.support-card-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.support-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6a23c;
    font-weight: 700;
    font-size: 1.1rem;
}

.support-card-list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .support-card {
        padding: 25px;
    }
}

/* ========================================
   価格セクション
======================================== */
.price {
    background-color: #fff;
}

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

.price-intro {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.price-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fafaf8 100%);
    border: 3px solid #e6a23c;
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.price-normal {
    text-align: center;
    margin-bottom: 30px;
}

.price-normal-label {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 15px;
}

.price-normal-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.price-normal-amount {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #888;
    line-height: 1;
    text-decoration: line-through;
}

.price-special {
    text-align: center;
    margin-bottom: 50px;
}

.price-label {
    font-size: 1.3rem;
    color: #e6a23c;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-note-next {
    font-size: 0.95rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.6;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.price-amount {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #e6a23c;
    line-height: 1;
}

.price-tax {
    font-size: 1rem;
    color: #666;
}

.price-detail {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.price-detail strong {
    color: #2c2c2c;
    font-weight: 600;
}

.price-comparison {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.price-comparison-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.price-comparison-normal {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.price-normal-amount {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #888;
    text-decoration: line-through;
}

.price-benefit {
    background-color: #fafaf8;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.benefit-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6a23c;
    text-align: center;
    margin-bottom: 30px;
}

.benefit-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    border-left: 4px solid #e6a23c;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #e6a23c;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.benefit-value {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

.benefit-value strong {
    color: #e6a23c;
    font-weight: 700;
}

.benefit-status {
    font-size: 0.95rem;
    color: #e6a23c;
    font-weight: 600;
}

.benefit-status strong {
    font-size: 1.1rem;
}

.benefit-total {
    background-color: #fffbf0;
    border: 3px solid #e6a23c;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.benefit-total-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
}

.benefit-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6a23c;
}

.benefit-total-note {
    font-size: 0.95rem;
    color: #888;
}

.benefit-explanation {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    text-align: center;
}

.benefit-explanation strong {
    color: #e6a23c;
    font-weight: 700;
}

.price-start {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed #e8e8e8;
}

.start-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
}

.start-icon {
    margin: 0 10px;
}

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

@media screen and (max-width: 768px) {
    .price-box {
        padding: 40px 25px;
    }
    .price-amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   参加条件セクション
======================================== */
.conditions {
    padding: 80px 0;
    background-color: #fff;
}

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

.conditions-intro {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.conditions-box {
    background-color: #fffbf0;
    border: 3px solid #e6a23c;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.conditions-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6a23c;
    text-align: center;
    margin-bottom: 30px;
}

.conditions-list {
    list-style: none;
}

.conditions-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.conditions-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.condition-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e6a23c 0%, #f5d678 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.condition-content {
    flex: 1;
}

.condition-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
    line-height: 1.6;
}

.condition-detail {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.cancellation-box {
    background-color: #fafaf8;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 40px;
    margin-top: 60px;
}

.cancellation-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
    text-align: center;
}

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

.cancellation-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.cancellation-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: #e6a23c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.cancellation-list li:last-child .cancellation-icon {
    background-color: #e57373;
}

.cancellation-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.cancellation-note {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .conditions-list li {
        gap: 15px;
    }
    .condition-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .cancellation-box {
        padding: 30px 20px;
    }
}

/* ========================================
   事例セクション
======================================== */
.cases {
    background-color: #fff;
}

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

.cases-intro {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.case-item {
    background-color: #fafaf8;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.case-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a961 0%, #d4b882 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.case-profile {
    flex: 1;
}

.case-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.case-job {
    font-size: 0.9rem;
    color: #888;
}

.case-body {
    margin-bottom: 25px;
}

.case-problem {
    margin-bottom: 25px;
}

.case-problem-title {
    font-size: 1rem;
    font-weight: 600;
    color: #e6a23c;
    margin-bottom: 10px;
}

.case-problem-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.case-solution {
    margin-bottom: 25px;
}

.case-solution-title {
    font-size: 1rem;
    font-weight: 600;
    color: #e6a23c;
    margin-bottom: 10px;
}

.case-solution-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.case-voice {
    background-color: #fffbf0;
    border-left: 4px solid #e6a23c;
    padding: 20px 25px;
    border-radius: 8px;
}

.case-voice-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e6a23c;
    margin-bottom: 10px;
}

.case-voice-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .case-item {
        padding: 30px 25px;
    }
    .case-header {
        gap: 15px;
    }
    .case-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ========================================
   あなたはどっち？選択肢セクション
======================================== */
.choice-section {
    background: linear-gradient(135deg, #fafaf8 0%, #fff 100%);
    padding: 80px 0;
}

.choice-intro {
    text-align: center;
    margin-bottom: 50px;
}

.choice-image-top {
    max-width: 600px;
    margin: 0 auto 30px;
}

.choice-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.choice-card {
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
}

.choice-card.highlighted {
    border-color: #e6a23c;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.choice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.choice-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.choice-badge {
    display: inline-block;
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.choice-badge.gold {
    background: linear-gradient(135deg, #e6a23c 0%, #f5d678 100%);
    color: #fff;
}

.choice-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.5;
}

.choice-card-body {
    text-align: left;
}

.choice-card-description {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

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

.choice-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.choice-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6a23c;
    font-weight: 700;
    font-size: 1.1rem;
}

.choice-action {
    margin-bottom: 30px;
}

.choice-button {
    display: block;
    text-align: center;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.choice-button.primary {
    background: linear-gradient(135deg, #5c9bd3 0%, #8fb4e0 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(92, 155, 211, 0.3);
}

.choice-button.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.choice-button.primary:hover::before {
    width: 300px;
    height: 300px;
}

.choice-button.gold {
    background: linear-gradient(135deg, #c9a961 0%, #d4b882 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.choice-button.gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.choice-button.gold:hover::before {
    width: 300px;
    height: 300px;
}

.choice-button:hover {
    transform: translateY(-3px);
}

.choice-button.primary:hover {
    box-shadow: 0 8px 25px rgba(92, 155, 211, 0.4);
}

.choice-button.gold:hover {
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.button-text {
    position: relative;
    z-index: 1;
}

.choice-note {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    text-align: center;
}

.choice-note-detail {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    text-align: left;
    background-color: #fafaf8;
    padding: 20px;
    border-radius: 8px;
}

.choice-note-detail strong {
    color: #e6a23c;
}

.choice-note-detail-sub {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e8e8e8;
}

.choice-arrow {
    text-align: center;
    padding-top: 20px;
    border-top: 1px dashed #e8e8e8;
}

.choice-arrow-text {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.arrow-down {
    display: block;
    font-size: 2rem;
    color: #e6a23c;
    margin-bottom: 10px;
}

.choice-arrow-link {
    font-size: 1rem;
    font-weight: 600;
    color: #e6a23c;
}

.choice-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.choice-image-flow {
    max-width: 100%;
    margin-bottom: 30px;
}

.choice-footer-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.choice-footer-text strong {
    color: #e6a23c;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .choice-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .choice-card {
        padding: 30px 25px;
    }
    .choice-image-top {
        max-width: 100%;
    }
}

/* ========================================
   最終CTAセクション
======================================== */
.final-cta {
    background-color: #fafaf8;
    padding: 80px 0;
}

.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.5;
}

.final-cta-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 40px;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 22px 60px;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #c9a961 0%, #d4b882 100%);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button.secondary:hover {
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    transform: translateY(-3px);
}

.final-cta-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.6;
}

.final-cta-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #e6a23c 50%, transparent 100%);
    margin: 60px auto;
}

.final-cta-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.final-cta-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.final-message {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }
    .final-cta-title {
        font-size: 1.6rem;
    }
    .final-cta-text {
        font-size: 1rem;
    }
    .cta-button.large {
        font-size: 1.05rem;
        padding: 18px 40px;
    }
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #f5f5f0;
    color: #555;
    padding: 60px 0;
    text-align: center;
    border-top: 2px solid #e6a23c;
}

.footer-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-note {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }
    .footer-text {
        font-size: 0.95rem;
    }
    .footer-note {
        font-size: 0.8rem;
    }
}

/* ========================================
   選択肢セクション
======================================== */
.choice-section {
    padding: 80px 0;
    background-color: #fafaf8;
}

.choice-intro {
    text-align: center;
    margin-bottom: 60px;
}

.choice-image-top {
    max-width: 600px;
    margin: 0 auto 30px;
}

.choice-intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.choice-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e6a23c;
}

.choice-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.choice-card {
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.choice-card:hover {
    border-color: #e6a23c;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.choice-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6a23c;
    margin-bottom: 20px;
}

.choice-card-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.choice-points {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.choice-points li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.choice-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6a23c;
    font-weight: bold;
}

.choice-btn {
    display: inline-block;
    background-color: #e6a23c;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.choice-btn:hover {
    background-color: #b8952f;
    transform: scale(1.05);
}

.choice-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .choice-section {
        padding: 60px 0;
    }
    
    .choice-title {
        font-size: 1.6rem;
    }
    
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .choice-card {
        padding: 30px 20px;
    }
    
    .choice-card-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   なぜリカバリーメンテセクション
======================================== */
.why {
    padding: 80px 0;
    background-color: #fff;
}

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

.why-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #e6a23c;
    text-align: center;
    margin-bottom: 40px;
}

.why-text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.risk-box {
    background-color: #fef5e7;
    border-left: 5px solid #e67e22;
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.risk-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.risk-list {
    list-style: none;
}

.risk-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.risk-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.merit-box {
    background-color: #f5f9f0;
    border-left: 5px solid #e6a23c;
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.merit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e6a23c;
    margin-bottom: 20px;
}

.merit-intro,
.risk-intro {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.risk-outro {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed rgba(230, 162, 60, 0.3);
}

.merit-list {
    list-style: none;
}

.merit-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.merit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6a23c;
    font-weight: bold;
    font-size: 1.2rem;
}

.merit-list li strong {
    color: #e6a23c;
    font-weight: 700;
}

/* 健康診断の重要性ボックス */
.checkup-importance {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border: 3px solid #e6a23c;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    position: relative;
    box-shadow: 0 8px 25px rgba(230, 162, 60, 0.15);
}

.checkup-icon {
    text-align: center;
    margin-bottom: 20px;
}

.icon-circle {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e6a23c 0%, #f5d678 100%);
    border-radius: 50%;
    line-height: 80px;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(230, 162, 60, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(230, 162, 60, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(230, 162, 60, 0.5);
    }
}

.checkup-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #e6a23c;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.checkup-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
}

.checkup-text strong {
    color: #2c2c2c;
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(transparent 60%, rgba(230, 162, 60, 0.3) 60%);
    padding: 2px 5px;
    font-weight: 700;
    color: #e6a23c;
}

@media screen and (max-width: 768px) {
    .checkup-importance {
        padding: 30px 20px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 2rem;
    }
    
    .checkup-title {
        font-size: 1.2rem;
    }
    
    .checkup-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .why {
        padding: 60px 0;
    }
    
    .why-subtitle {
        font-size: 1.3rem;
    }
    
    .risk-box, .merit-box {
        padding: 20px;
    }
    
    .risk-title, .merit-title {
        font-size: 1.1rem;
    }
}

/* ========================================
   事例セクション
======================================== */
.case-study {
    padding: 80px 0;
    background-color: #fafaf8;
}

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

.case-card {
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
}

.case-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.case-profile {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e6a23c;
}

.case-body {
    line-height: 1.8;
}

.case-before-title, .case-after-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    margin-top: 20px;
}

.case-before-title::before {
    content: '▼ ';
    color: #888;
}

.case-after-title::before {
    content: '▲ ';
    color: #e6a23c;
}

.case-before-text, .case-after-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-voice {
    background-color: #fffbf0;
    border-left: 4px solid #e6a23c;
    padding: 20px;
    margin-top: 25px;
    border-radius: 8px;
}

.case-voice-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e6a23c;
    margin-bottom: 10px;
}

.case-voice-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .case-study {
        padding: 60px 0;
    }
    
    .intro, .problem, .diagnosis, .program, .price, .conditions, .choice-section, .cta-checklist, .final-cta {
        padding: 60px 0;
    }
}
