/* =========================================
   料金プランページ固有設定 (pricing-style.css)
   ========================================= */

/* タイトルエリア */
.page-title {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 120px; /* ヘッダーとの間隔 */
}
.page-title h1 {
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--light-silver);
    letter-spacing: 0.2em;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
    margin: 2rem auto 3rem;
}

/* 価格カードレイアウト */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(45, 31, 61, 0.6) 0%, rgba(20, 27, 45, 0.8) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease;
}
.pricing-card.featured { border-color: var(--star-gold); }
.pricing-card.coming-soon { opacity: 0.75; }

/* バッジ */
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--star-gold);
    color: var(--deep-night);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}
.coming-soon-badge { background: var(--soft-purple); color: var(--silver); }

/* 価格表示 */
.price-container {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    margin-bottom: 1.5rem;
}
.price { font-family: 'Cinzel', serif; font-size: 2.5rem; color: var(--light-silver); }

/* 機能リスト */
.features-list { list-style: none; padding: 0; }
.features-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
}
.features-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--star-gold);
}
.coming-label {
    font-size: 0.75rem;
    color: var(--soft-purple);
    background: rgba(192, 192, 192, 0.1);
    padding: 0.1rem 0.5rem;
    margin-left: 0.5rem;
}

/* 追加予定セクション */
.future-section {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 6px;
    padding: 1.2rem;
    margin-top: 1rem;
}

/* 注意事項 */
.notes-section {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 6px;
    padding: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}
.notes-list { list-style: none; padding: 0; font-size: 0.85rem; color: var(--silver); }

@media (max-width: 768px) {
    .pricing-container { grid-template-columns: 1fr; }
}

/* 学習プラン専用スタイル */
.pricing-card.learning {
    border-color: #a4b0be; /* 銀色っぽい落ち着いた色 */
    background: linear-gradient(180deg, rgba(30, 40, 60, 0.7) 0%, rgba(15, 20, 35, 0.9) 100%);
}

.learning-badge {
    background: var(--royal-purple, #6b5b9a); /* 紫系で「特別感」を演出 */
    color: var(--star-white, #ffffff);
}

/* パッケージ内容の強調 */
.features-list li strong {
    color: var(--star-gold);
    font-weight: 600;
}