/* ========================================
   料金ページ共通設定
======================================== */
#main-content {
    background-color: #0B0B0D;
}

/* ========================================
   料金ページ FV
======================================== */
.pricing-fv {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #141418 0%, #0B0B0D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    margin-top: 60px;
    text-align: center;
    border-bottom: 1px solid #2A2A2E;
}

.pricing-fv-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2F2F2;
    letter-spacing: 0.1em;
}

.pricing-fv-content .subtitle {
    font-size: 18px;
    color: #B9BCC2;
    letter-spacing: 0.05em;
}

/* ========================================
   料金セクション共通
======================================== */
.pricing-section {
    padding: 120px 60px;
    background-color: #0B0B0D !important;
    margin: 0 !important;
    border-bottom: 1px solid #2A2A2E;
}

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

.pricing-intro {
    text-align: center;
    font-size: 16px;
    color: #B9BCC2;
    margin-bottom: 80px;
    letter-spacing: 0.05em;
}

/* ========================================
   トレーニングプラン
======================================== */
.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: #141418 !important;
    border: 1px solid #2A2A2E;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    border-color: #C6A15B;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 161, 91, 0.15);
}

.pricing-card.featured {
    border-color: #C6A15B;
    background: linear-gradient(135deg, rgba(198, 161, 91, 0.05) 0%, transparent 100%) !important;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #C6A15B;
    color: #0B0B0D;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.meal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #C6A15B;
    color: #0B0B0D;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.plan-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid #2A2A2E;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 10px;
}

.plan-frequency {
    font-size: 14px;
    color: #B9BCC2;
    letter-spacing: 0.05em;
}

.plan-body {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-display {
    margin-bottom: 10px;
}

.currency {
    font-size: 18px;
    color: #C6A15B;
    font-weight: 600;
}

.amount {
    font-size: 40px;
    font-weight: 700;
    color: #F2F2F2;
    margin: 0 5px;
}

.period {
    font-size: 14px;
    color: #B9BCC2;
}

.price-sub {
    font-size: 13px;
    color: #C6A15B;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.plan-features li {
    padding: 12px 0;
    color: #B9BCC2;
    font-size: 14px;
    border-bottom: 1px solid #2A2A2E;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #C6A15B;
    color: #0B0B0D;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

.btn-accent {
    background-color: #C6A15B !important;
    color: #0B0B0D !important;
}

.btn-accent:hover {
    background-color: #D1B279 !important;
}

/* ========================================
   100日成果保証プラン
======================================== */
.meal-pricing {
    background-color: #141418 !important;
}

.meal-pricing .section-title::after {
    margin-bottom: 0;
}

.subtitle-accent {
    display: block;
    font-size: 24px;
    color: #C6A15B;
    margin-top: 15px;
}

.meal-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.meal-card {
    background-color: #0B0B0D !important;
    border: 1px solid #2A2A2E;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.meal-card:hover {
    border-color: #C6A15B;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 161, 91, 0.15);
}

.meal-card.featured {
    border-color: #C6A15B;
    background: linear-gradient(135deg, rgba(198, 161, 91, 0.05) 0%, transparent 100%) !important;
}

.meal-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid #2A2A2E;
}

.meal-name {
    font-size: 22px;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 10px;
}

.meal-frequency {
    font-size: 13px;
    color: #B9BCC2;
    letter-spacing: 0.05em;
}

.meal-body {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.meal-breakdown {
    background-color: #141418;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 13px;
}

.meal-breakdown p {
    margin-bottom: 8px;
    color: #B9BCC2;
}

.meal-breakdown p:last-child {
    margin-bottom: 0;
}

.meal-breakdown .label {
    color: #C6A15B;
    font-weight: 600;
}

.meal-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.meal-features li {
    padding: 12px 0;
    color: #B9BCC2;
    font-size: 14px;
    border-bottom: 1px solid #2A2A2E;
    display: flex;
    align-items: center;
}

.meal-features li:last-child {
    border-bottom: none;
}

/* ========================================
   FAQ セクション
======================================== */
.faq-section {
    background-color: #0B0B0D !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    padding-bottom: 30px;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.faq-question::before {
    content: 'Q. ';
    color: #C6A15B;
    font-weight: 700;
}

.faq-answer {
    font-size: 14px;
    color: #B9BCC2;
    line-height: 1.8;
    padding-left: 0;
}

.faq-answer::before {
    content: 'A. ';
    color: #C6A15B;
    font-weight: 600;
    margin-right: 5px;
}

/* ========================================
   CTA セクション
======================================== */
.pricing-cta {
    padding: 100px 60px;
    background: linear-gradient(135deg, #141418 0%, #0B0B0D 100%);
    text-align: center;
    border-top: 1px solid #2A2A2E;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.cta-content p {
    font-size: 16px;
    color: #B9BCC2;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.mobile{
    display: none;
}
/* ========================================
   レスポンシブ（料金ページ）
======================================== */
@media (max-width: 1024px) {
    .pricing-fv {
        height: 300px;
    }

    .pricing-fv-content h1 {
        font-size: 36px;
    }

    .pricing-plans-grid,
    .meal-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 30px;
    }

    .pricing-fv {
        padding: 0 30px;
        height: 250px;
        margin-top: 70px;
    }

    .pricing-fv-content h1 {
        font-size: 28px;
    }

    .pricing-fv-content .subtitle {
        font-size: 14px;
    }

    .pricing-plans-grid,
    .meal-plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-header,
    .meal-header {
        padding: 25px 20px 15px;
    }

    .plan-body,
    .meal-body {
        padding: 25px 20px;
    }

    .amount {
        font-size: 32px;
    }

    .plan-features li,
    .meal-features li {
        font-size: 13px;
        padding: 10px 0;
    }

    .faq-grid {
        gap: 25px;
    }

    .pricing-cta {
        padding: 80px 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .pc{
        display: none;
    }

    .mobile{
        display: block;
    }
}
/* ========================================
   FAQ セクション
======================================== */
.faq-section {
    background-color: #0B0B0D !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background-color: #141418 !important;
    border: 1px solid #2A2A2E;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #C6A15B;
    background-color: rgba(198, 161, 91, 0.02) !important;
}

.faq-item.active {
    border-color: #C6A15B;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #F2F2F2;
    letter-spacing: 0.02em;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.faq-question::before {
    content: 'Q';
    color: #C6A15B;
    font-weight: 700;
    width: 30px;
    height: 30px;
    background-color: #0B0B0D;
    border: 2px solid #C6A15B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 14px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C6A15B;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(198, 161, 91, 0.02);
    border-top: 1px solid #2A2A2E;
}

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

.faq-answer-content {
    font-size: 14px;
    color: #B9BCC2;
    line-height: 1.8;
    padding: 25px;
    letter-spacing: 0.02em;
}

.faq-answer-content::before {
    content: 'A';
    color: #C6A15B;
    font-weight: 700;
    width: 30px;
    height: 30px;
    background-color: #0B0B0D;
    border: 2px solid #C6A15B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-bottom: 15px;
    flex-shrink: 0;
    font-size: 14px;
    float: left;
}
/* ========================================
   FAQ セクション
======================================== */
.faq-section {
    background-color: #0B0B0D !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* チェックボックスを隠す */
.faq-checkbox {
    display: none;
}

.faq-item {
    background-color: #141418 !important;
    border: 2px solid #2A2A2E;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #C6A15B;
    background-color: rgba(198, 161, 91, 0.02) !important;
    box-shadow: 0 8px 24px rgba(198, 161, 91, 0.1);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #F2F2F2;
    letter-spacing: 0.02em;
    padding: 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: #C6A15B;
}

.faq-question::before {
    content: 'Q';
    color: #FFFFFF;
    background-color: #C6A15B;
    font-weight: 700;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 16px;
}

.faq-question-text {
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C6A15B;
    font-size: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

/* チェックボックスがチェックされている時 */
.faq-checkbox:checked ~ .faq-question {
    border-bottom-color: #C6A15B;
}

.faq-checkbox:checked ~ .faq-question .faq-toggle {
    transform: rotate(180deg);
}

/* デフォルトで答えは隠す */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(198, 161, 91, 0.03);
    border-top: 2px solid #2A2A2E;
}

/* チェックボックスがチェックされている時に答えを表示 */
.faq-checkbox:checked ~ .faq-answer {
    max-height: 600px;
    border-top: 2px solid #C6A15B;
}

.faq-answer-content {
    font-size: 15px;
    color: #B9BCC2;
    line-height: 1.9;
    padding: 30px 30px;
    letter-spacing: 0.01em;
    display: flex;
    gap: 20px;
}

.faq-answer-content::before {
    content: 'A';
    color: #FFFFFF;
    background-color: #C6A15B;
    font-weight: 700;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.faq-answer-text {
    flex: 1;
    padding-top: 5px;
}
