/* ========================================
   2026年カレンダーLP - v6 完全クリーンデザイン
   参考：GLOW PROTEIN LP（構造のみ）
   ======================================== */

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

:root {
    /* 2色限定カラーパレット */
    --primary-green: #2E7D32;       /* 深いグリーン - 見出し・強調 */
    --primary-orange: #FF5722;      /* オレンジ - CTAボタン */
    --bg-white: #FFFFFF;            /* 純白 - メイン背景 */
    --bg-light-green: #F1F8F4;      /* 極薄グリーン - セクション背景 */
    --text-dark: #333333;           /* 濃いグレー - 本文 */
    --text-gray: #666666;           /* グレー - サブテキスト */
    --border-light: #E8E8E8;        /* 極薄ボーダー */
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: var(--text-dark);
    line-height: 1.75;
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

/* ========================================
   ヘッダー・ナビゲーション（シンプル）
   ======================================== */
.header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.header-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-button {
    background: var(--primary-orange);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #E64A19;
    transform: translateY(-1px);
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    background: var(--bg-white);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 40px;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.hero-empathy {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #E64A19;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-green);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--bg-white);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
}

/* ========================================
   セクション共通スタイル
   ======================================== */
.section {
    padding: 80px 0;
}

/* お客様の声とFAQセクションの余白を増やしてバランス調整 */
.section:has(.testimonials-grid),
.section:has(.faq-list) {
    padding: 100px 0;
}

.section-white {
    background: var(--bg-white);
}

.section-light {
    background: var(--bg-light-green);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   共感セクション（3カラム）
   ======================================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-item {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.problem-icon i {
    display: block;
}

.problem-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ========================================
   特徴セクション
   ======================================== */
.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-green);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   技法セクション（2x2グリッド）
   ======================================== */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.technique-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #D4E7D7;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    transition: all 0.3s ease;
}

.technique-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.technique-number {
    display: inline-block;
    background: var(--primary-green);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.technique-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.technique-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   比較リスト（箇条書き形式）
   ======================================== */
.comparison-list {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-icon {
    flex-shrink: 0;
    font-size: 32px;
    line-height: 1;
    color: var(--primary-green);
}

.comparison-icon i {
    display: block;
}

.comparison-content {
    flex: 1;
}

.comparison-item-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
    line-height: 1.5;
}

.comparison-item-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   商品詳細（画像付きカード）
   ======================================== */
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-detail-card {
    text-align: center;
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #D4E7D7;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    transition: all 0.3s ease;
}

.product-detail-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.product-detail-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.product-detail-icon i {
    display: block;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.product-detail-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-detail-text {
    font-size: 15px;
    color: #555555;
    font-weight: 500;
    line-height: 1.8;
}

/* ========================================
   得られる具体的な変化
   ======================================== */
.benefits-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid #D4E7D7;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.benefit-icon {
    flex-shrink: 0;
    font-size: 32px;
    color: var(--primary-green);
}

.benefit-icon i {
    display: block;
}

.benefit-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.total-words {
    text-align: center;
    margin-top: 40px;
}

.total-words-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.total-words-sub {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   こんな場面でご活用いただけます
   ======================================== */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #D4E7D7;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.use-case-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 16px;
    text-align: center;
}

.use-case-icon i {
    display: block;
}

.use-case-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.use-case-text {
    font-size: 15px;
    color: #555555;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
}

/* ========================================
   お客様の声
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #D4E7D7;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    text-align: center;
}

.testimonial-icon {
    width: 64px;
    height: 64px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.testimonial-icon i {
    font-size: 28px;
    color: var(--primary-green);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-gray);
    text-align: right;
}

/* ========================================
   価格セクション
   ======================================== */
.section-price {
    background: var(--bg-white);
}

.price-intro {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.price-intro-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.price-highlight {
    background: var(--bg-light-green);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.price-comparison {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.price-main {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 16px 0;
}

.price-daily {
    font-size: 16px;
    color: var(--text-dark);
}

.price-daily strong {
    font-size: 20px;
    color: var(--primary-orange);
    font-weight: 700;
}

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

.price-card {
    background: var(--bg-white);
    border: 2px solid #B8B8B8;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
}

.price-card-premium {
    border-color: var(--primary-orange);
    border-width: 3px;
}

.price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--bg-white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.price-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.price-original {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.price-tax {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.price-features li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.stock-info {
    background: #FFF3E0;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.stock-text {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
}

.stock-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-notes {
    text-align: center;
    margin-top: 32px;
}

.price-note {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #D4E7D7;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   プロフィール
   ======================================== */
.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.profile-image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 14px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.profile-role {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 24px;
}

.profile-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ========================================
   CTA最終セクション
   ======================================== */
.section-final-cta {
    background: var(--primary-green);
    color: var(--bg-white);
    text-align: center;
    padding: 100px 0;
}

.final-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 24px;
    line-height: 1.5;
}

.final-cta-text {
    font-size: 18px;
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: 40px;
}

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

/* PDF版ボタン（白背景・控えめ） */
.btn-white-outline {
    background: var(--bg-white);
    color: #4A4A4A;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #D0D0D0;
}

.btn-white-outline:hover {
    background: #F1F8F4;
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

/* ZOOM版ボタン（コーラルオレンジ・推奨） */
.btn-white {
    background: #FF7043;
    color: var(--bg-white);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #F4511E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 112, 67, 0.35);
}

.btn-orange-outline {
    background: transparent;
    color: var(--bg-white);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--bg-white);
    transition: all 0.3s ease;
}

.btn-orange-outline:hover {
    background: var(--bg-white);
    color: var(--primary-green);
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: #F5F5F5;
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.footer-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-empathy {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .techniques-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ========================================
   リスト内の行間
   ======================================== */
/* 開運法（親 li）の余白を消す */
.price-card-premium .price-features li.price-parent {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 子ulの余白を完全消去 */
.price-card-premium .price-features li.price-parent > ul {
    margin: 0 !important;
    padding: 0 !important;
}

/* 子liの調整 */
.price-card-premium .price-features li.price-parent > ul > li {
    border: none !important;
    padding: 4px 0 !important;
    margin: 0 !important;
}

.price-features li {
    line-height: 1.4 !important;
}
.price-features > li {
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.price-features > li:last-child {
    border-bottom: none;
}
/* price-features 内の最初の階層の li にだけ線をつける */
.price-features > li {
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

/* 下層の ul の li は線なし */
.price-features li ul li {
    border-bottom: none !important;
}

/* 最後の項目の線を消す → 空白ノードを無視して判定する */
.price-features > li:last-of-type {
    border-bottom: none !important;
}

.price-features > li {
    border-bottom: 1px solid #e0e0e0;
}
.price-features .price-child li {
    border-bottom: none !important;
}
.price-child li:last-child {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
}


/* カード全体を縦並び */
.price-card {
    display: flex;
    flex-direction: column;
}

/* フッター（残り人数＋ボタン）を一番下に固定 */
.price-footer {
    margin-top: auto;
}

/* 見た目調整 */
.price-footer .stock-info {
    margin-bottom: 16px;
}
/* スマホ時のヘッダー調整 */
@media (max-width: 480px) {
    .site-title {
        font-size: 14px !important;
        letter-spacing: 0.02em;
    }

    .header-nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 12px;
    }

    .nav-button {
        padding: 8px 18px;
        font-size: 12px;
    }
}
.sub-btn {
    font-size: 12px;
    margin-left: 6px;
    padding: 3px 8px;
    background: #F5F5F5; /* 優しい薄グレー */
    border-radius: 4px;
    text-decoration: underline;
    color: #2E7D32;  /* LPの基調グリーン */
}

.sub-btn:hover {
    background: #2E7D32;
    color: white;
    text-decoration: none;
}
/* 吉方位リンクをスマホでも必ず緑にする（最強指定） */
.price-card-premium .price-child a.sub-btn.small {
    color: #2E7D32 !important;
}

/* ========================================
   スマホ時のボタン中央揃え補正
   ======================================== */
@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-white-outline,
    .btn-orange-outline {
        width: 100% !important;        /* ボタンを画面幅いっぱいに */
        text-align: center !important; /* 文字を中央に */
        justify-content: center !important;
        display: flex !important;      /* 完全中央寄せ */
        align-items: center !important;
    }
}

/* 在庫表示（先着→残り→完売） */
.stock-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

/* 打消しの先着 */
.stock-old {
    color: #999;
    font-size: 14px;
}

/* → の矢印 */
.stock-arrow {
    margin: 0 6px;
    color: #555;
}

/* 残り人数（オレンジ強調） */
.stock-new {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 16px;
}

/* 完売（赤表示） */
.stock-soldout {
    color: #D32F2F;
    font-weight: 700;
    font-size: 16px;
}

/* 完売時のボタン無効化 */
.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
}

/* 下部全体を中央寄せ */
.price-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* 在庫ボックス（自然な横幅でOK） */
.stock-box {
    background: #FFF3E0;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
}

/* テキストデザイン */
.stock-old {
    margin-right: 4px;
    opacity: 0.7;
}

.stock-arrow {
    margin: 0 4px;
}

.stock-new {
    color: #D84315;
    font-weight: bold;
}

.stock-soldout {
    color: #D84315;
    font-weight: bold;
}

/* 完売時ボタン無効 */
.disabled-btn {
    pointer-events: none;
    opacity: 0.5;
}
/*stock-box をカード幅いっぱいに広げる*/
.price-card .stock-box {
    width: 100%;         /* カード幅いっぱい */
    max-width: 100%;     /* 念のため */
    box-sizing: border-box;
    padding: 20px;       /* 好きな余白に調整 */
    text-align: center;
    display: block;      /* 念のためブロック要素に */
}
.price-card .stock-info {
    display: flex;
    justify-content: center;  /* 真ん中に寄せる */
    align-items: center;
    gap: 6px;                 /* → の間の余白 */
}
