/* Global Variables */
:root {
    /* Color Palette */
    --color-main-greige: #E0DCD6;
    --color-deep-greige: #C7C2BC;
    --color-base-white: #F9F9F7;
    --color-accent-gold: #D4AF37;
    --color-text-charcoal: #333333;

    /* Typography */
    --font-jp: 'Noto Serif JP', serif;
    --font-en: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding-pc: 160px;
    --section-padding-sp: 100px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-jp);
    color: var(--color-text-charcoal);
    background-color: var(--color-base-white);
    line-height: 2.0;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

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

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

/* Typography Utility */
.font-en {
    font-family: var(--font-en);
}

.text-gold {
    color: var(--color-accent-gold);
}

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

/* Layout Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding-pc) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-sp) 0;
    }
}

/* Components */
.btn {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--color-accent-gold);
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-accent-gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: #fff;
    color: var(--color-accent-gold);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(249, 249, 247, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

@media (max-width: 768px) {
    .header-inner {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.5rem;
        gap: 8px;
    }

    .logo small {
        font-size: 0.8rem;
    }

    .header .btn {
        padding: 10px 15px !important;
        font-size: 0.8rem !important;
    }
}

.logo {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2.0rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: var(--color-text-charcoal);
}

.logo small {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1.0rem;
    color: var(--color-text-charcoal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main-greige);
    overflow: visible;
    /* Changed from hidden to allow location text to show below */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 0;
    object-position: center 30%;
    /* Default for Desktop */
}

@media (max-width: 768px) {
    .hero-bg {
        object-position: center 65%;
        /* Revert to safe face position */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(224, 220, 214, 0.4), rgba(224, 220, 214, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.3em;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.8;
    margin-left: 2rem;
    font-family: var(--font-jp);
    color: var(--color-text-charcoal);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-left: 2rem;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        /* Revert to top alignment */
        padding-top: 80px;
        /* Slightly increased from 70px as requested */
        padding-bottom: 0;
    }

    .hero-content {
        margin-bottom: 0;
    }

    .hero-content {
        writing-mode: horizontal-tb;
    }

    .hero-title {
        font-size: 1.25rem;
        /* 1.5remだとiPhoneで改行されてしまうため縮小 */
        line-height: 1.6;
        margin-left: 0;
        margin-bottom: 1rem;
        /* Reduced from 2rem to bring subtitle closer */
    }

    .hero-title span {
        white-space: nowrap;
        /* 強制的に改行させない */
    }

    .hero-subtitle {
        margin-left: 0;
        font-size: 1rem;
    }

    .hero-catch {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--color-text-charcoal);
        display: block;
        margin-bottom: 0.5rem;
        background: linear-gradient(transparent 70%, rgba(212, 175, 55, 0.2) 70%);
    }
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-accent-gold);
    color: var(--color-text-charcoal);
    padding: 10px 30px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    border-radius: 50px;
    animation: fadeUp 1.5s ease 1s backwards;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.hero-badge:hover {
    background-color: #fff;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 158, 103, 0.2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Hero Location Text */
.hero-location {
    position: absolute;
    bottom: -50px;
    /* Moved down further to ensure no overlap */
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #666;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 10;
    font-family: var(--font-jp);
    opacity: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: fadeUp 1.5s ease 1.2s forwards;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Problem Section */
.problem-box {
    background-color: #fff;
    padding: 80px 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.problem-heading {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.problem-sub {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.problem-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.problem-checklist {
    max-width: 700px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #faf9f7;
    border: 1px solid #e0dcd6;
    border-radius: 8px;
}

.checklist-heading {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--color-text-charcoal);
}

.checklist-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .checklist-ul {
        grid-template-columns: 1fr 1fr;
        gap: 20px 40px;
        /* Row gap 20px, Column gap 40px */
    }
}

.checklist-ul li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checklist-ul li:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: var(--color-accent-gold);
    font-size: 1.5rem;
    /* サイズアップ */
    line-height: 1.2;
    font-weight: bold;
    /* 太く */
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    /* 光彩を追加 */
}

/* Spacing Adjustments */
.problem-section {
    padding-bottom: 60px;
}

.solution-section {
    padding-top: 60px;
}

@media (max-width: 768px) {
    .problem-section {
        padding-bottom: 40px;
    }

    .solution-section {
        padding-top: 40px;
    }
}

/* Solution Section */
.bg-greige {
    background-color: #f4f2ef;
    /* 少し明るめのグレージュ */
}

.solution-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.solution-grid.reverse {
    flex-direction: row-reverse;
}

.solution-img-wrapper {
    flex: 1;
}

.solution-content {
    flex: 1;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: var(--font-en);
}

.solution-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-accent-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.ba-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.ba-item {
    text-align: center;
}

.ba-img-placeholder {
    width: 250px;
    height: 350px;
    background-color: transparent;
    /* 画像の隙間がグレーにならないように透明化 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.arrow {
    font-size: 2rem;
    color: var(--color-accent-gold);
}

.note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}

/* Benefit Section */
.benefit-section {
    background-color: var(--color-deep-greige);
    /* 仮 */
    position: relative;
    color: #fff;
    /* 背景が明るい場合は文字色要調整だが、オーバーレイで暗くする想定 */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.benefit-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 243, 239, 0.85);
    /* 文字を見やすくするために不透明度アップ */
    /* Greige overlay strong */
    z-index: 1;
}

.benefit-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* 文字色をチャコールグレーに上書き（明るい背景のため） */
    color: var(--color-text-charcoal);
}

.benefit-heading {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    text-align: left;
    display: inline-block;
}

.benefit-list li {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-gold);
}

/* Trust Section */
.trust-profile {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

.profile-img-wrapper {
    flex: 0 0 350px;
}

.profile-placeholder {
    height: 450px;
    border-radius: 4px;
}

.profile-content {
    flex: 1;
}

.profile-role {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-name-en {
    font-size: 1rem;
    margin-left: 10px;
    color: #888;
}

.profile-license {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.story-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Offer Section */
.bg-deep-greige {
    background-color: var(--color-deep-greige);
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 80px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--color-accent-gold);
}

.offer-heading {
    font-size: 1.8rem;
    margin: 20px 0;
}

.price-area {
    margin: 40px 0;
    background-color: var(--color-base-white);
    padding: 30px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.main-price {
    color: var(--color-text-charcoal);
    margin-top: 10px;
}

.price-new {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    line-height: 1;
}

.btn-block {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    min-width: 600px;
    /* 横スクロールを強制して潰れを防ぐ */
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    line-height: 1.4;
    /* 行間を詰める */
}

.comparison-table th.forest {
    background-color: var(--color-main-greige);
    color: var(--color-text-charcoal);
    font-size: 1.2rem;
    width: 40%;
}

.comparison-table th.general {
    background-color: #f0f0f0;
    color: #666;
    width: 40%;
}

.comparison-table .label {
    text-align: left;
    font-weight: 500;
    width: 20%;
    background-color: #fafafa;
}

.comparison-table .highlight {
    background-color: rgba(212, 175, 55, 0.05);
    /* Gold light bg */
}

.comparison-table strong {
    color: var(--color-accent-gold);
    font-size: 1.1rem;
    /* display: block; 削除して改行を防ぐ（HTMLのbrタグのみで改行） */
    /* margin-bottom: 5px; 削除 */
}

.comparison-table span {
    font-size: 0.85rem;
    color: #666;
}

.comparison-table .weak {
    font-size: 0.85rem;
    color: #999;
}

/* Roadmap */
.roadmap-container {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 24px;
    /* Icon center */
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-main-greige);
    z-index: 0;
}

.roadmap-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.step-content {
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    flex: 1;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-accent-gold);
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-text-charcoal);
    display: flex;
    gap: 15px;
}

.q-mark {
    color: var(--color-accent-gold);
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-answer {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.a-mark {
    color: var(--color-main-greige);
    /* Muted color for Answer */
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Utility */
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .sp-br {
        display: inline;
    }

    .pc-br {
        display: none;
    }

    .problem-heading {
        font-size: 1.25rem;
        /* スマホでの改行崩れを防ぐため縮小 */
        line-height: 1.5;
    }

    .problem-box {
        padding: 40px 20px;
    }

    .solution-grid,
    .solution-grid.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .ba-area {
        flex-direction: column;
        gap: 10px;
    }

    .ba-area .arrow {
        transform: rotate(90deg);
        margin: -10px 0;
        /* 矢印の上下余白も少し詰める */
    }

    .trust-profile {
        flex-direction: column;
    }

    .profile-img-wrapper {
        flex: auto;
        width: 100%;
    }

    .profile-placeholder {
        height: 350px;
    }

    .offer-card {
        padding: 40px 20px;
    }

    .price-new {
        font-size: 2.5rem;
    }

    /* ボタンの改行対策 */
    .btn {
        white-space: nowrap;
        font-size: 1rem;
        /* 少し小さく */
        padding: 15px 10px;
        /* 横の余白を減らす */
        width: auto;
        /* width:100%だと文字数次第で改行されることがあるためwidth:autoも検討したが、btn-blockで100%指定されているので、フォントサイズで対応 */
    }

    .btn-block {
        font-size: 0.95rem;
        /* ブロックボタンはさらに少し小さく */
    }

    /* Additional Responsive for New Sections */
    .comparison-table {
        min-width: auto;
        /* 横スクロールを解除 */
        width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 6px 4px;
        font-size: 0.75rem;
    }

    .comparison-table strong {
        font-size: 0.8rem;
        /* 少し大きく戻す */
        white-space: nowrap;
        /* 改行させない */
    }

    /* オファーセクションの改行対策 */
    .price-row.main-price {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .price-label,
    .tax {
        white-space: nowrap;
        /* 改行させない */
        font-size: 0.9rem;
    }

    .price-new {
        font-size: 2.2rem;
    }

    .price-area {
        margin: 15px 0;
        padding: 20px;
    }

    /* 列幅の調整（スマホ用）- 再調整 */
    .comparison-table .label {
        width: 12%;
    }

    .comparison-table th.general {
        width: 38%;
    }

    .comparison-table th.forest {
        width: 50%;
    }

    .comparison-table .label {
        font-size: 0.8rem;
    }

    .roadmap-step {
        gap: 20px;
    }

    .step-content {
        padding: 20px;
    }

    .benefit-section {
        min-height: 50vh;
        /* スマホでは高さを抑えて背景の拡大（ズーム）を防ぐ */
        padding: 80px 0;
    }
}

/* Testimonials Section (Voice) */
#testimonials {
    padding: 80px 0;
    overflow: hidden;
    /* For Swiper */
}

.testimonial-swiper {
    padding: 40px 20px 60px;
    /* 下部にページネーション用の余白 */
    overflow: visible;
    /* スライドが少し見えるように */
}

.swiper-wrapper {
    align-items: stretch;
    /* カードの高さを揃える */
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #f9f9f9;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-charcoal);
    margin-bottom: 20px;
    font-style: italic;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-accent-gold);
}

@media (max-width: 768px) {
    .testimonial-swiper {
        padding: 20px 0 50px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* スマホでのサブタイトル改行対策（Voiceセクション） */
    #testimonials .section-subtitle {
        font-size: 0.9rem;
        white-space: nowrap;
        padding: 0 5px;
    }
}

/* =========================================
   Price Section
   ========================================= */
.price-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.price-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 600px;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.price-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.price-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-charcoal);
    margin-bottom: 8px;
    font-family: var(--font-jp-serif);
}

.price-tag {
    font-size: 0.8rem;
    color: var(--color-accent-gold);
    font-weight: 500;
    background: #fff9f0;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
}

.price-time {
    font-size: 1.5rem;
    font-family: var(--font-en);
    color: var(--color-text-charcoal);
    margin-bottom: 5px;
}

.price-cost {
    font-size: 1.4rem;
    font-family: var(--font-en);
    color: var(--color-text-charcoal);
    font-weight: 500;
    margin-bottom: 15px;
}

.price-cost .tax {
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 3px;
}

.price-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Featured Plan (120min) */
.price-card.featured {
    border: 2px solid var(--color-accent-gold);
    background: #fffbf5;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(184, 158, 103, 0.15);
    z-index: 1;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.feature-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-gold);
    color: #fff;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(184, 158, 103, 0.3);
    white-space: nowrap;
}

.price-note {
    font-family: var(--font-jp-serif);
    color: #888;
}

/* Bridge CTA */
.cta-bridge-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-charcoal);
}

.cta-bridge-text strong {
    color: var(--color-accent-gold);
    font-size: 1.4rem;
    border-bottom: 2px solid var(--color-accent-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .price-list {
        gap: 20px;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .price-list {
        display: flex;
        flex-direction: column;
        padding: 10px 0 20px;
        margin: 0;
    }

    .price-card {
        width: 100%;
        margin-right: 0;
    }

    .price-card:last-child {
        margin-right: 0;
    }

    .price-card.featured {
        transform: scale(1);
        border-width: 2px;
    }

    .cta-bridge-text {
        font-size: 1rem;
    }

    .cta-bridge-text strong {
        font-size: 1.15rem;
    }
}

/* Indiba Badge */
.badge-indiba,
.badge-allhand {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    background-color: #666;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 5px;
    vertical-align: middle;
}

/* CTA Styles */
.cta-link-block:hover .cta-highlight {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.cta-highlight {
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 2px solid var(--color-accent-gold);
    transition: color 0.3s;
}

.btn-gold {
    background-color: var(--color-accent-gold);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* LINE Promo Balloon */
.line-promo-balloon {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border: 2px solid var(--color-accent-gold);
    border-radius: 8px;
    padding: 12px 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.line-promo-balloon::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 11px 11px 0;
    border-style: solid;
    border-color: var(--color-accent-gold) transparent transparent transparent;
}
.line-promo-balloon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 9px 9px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    z-index: 1;
}
.line-promo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}
.line-promo-desc {
    font-size: 0.95rem;
    color: var(--color-text-charcoal);
    font-weight: 500;
}

/* Adjust Spacing between Roadmap and Price */
.roadmap-section {
    padding-bottom: 60px !important;
}

.price-section {
    padding-top: 60px !important;
}

@media (max-width: 768px) {
    .roadmap-section {
        padding-bottom: 40px !important;
    }

    .price-section {
        padding-top: 40px !important;
    }
}