/* ========================================
   JOLLYGOOD+ Price Page Styles
   /about/price/ — サービス料金
   Uses design tokens from /common.css
======================================== */

/* ==========================
   Section — 共通余白
========================== */
.section {
    padding: var(--section-pad, 120px) 0;
}

.section--gray {
    background: var(--jg-bg-gray, #F5F5F7);
}


/* ==========================
   Price Hero
========================== */
.price-hero {
    position: relative;
    padding: 140px 32px 48px;
    text-align: center;
    background: linear-gradient(135deg, #f0f6ff 0%, #fff 100%);
}
.price-hero__label {
    display: inline-block;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: var(--fs-body, 1.6rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #00A2FA;
    margin-bottom: 16px;
    font-weight: 600;
}
.price-hero__title {
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.5;
    color: #1a1a2e;
}
.price-hero__title em {
    font-style: normal;
}


/* ==========================
   Plan Cards
========================== */
.price-plan {
}
.price-plan__heading {
    text-align: center;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 56px;
    letter-spacing: 0.02em;
}
.price-plan__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.price-plan__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    overflow: hidden;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.price-plan__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,162,250,.12);
}
.price-plan__card-header {
    padding: 20px 16px;
    color: #fff;
    font-weight: 700;
    font-size: var(--fs-btn, 1.5rem);
    letter-spacing: 0.04em;
}
.price-plan__card-header--blue    { background: #00A2FA; }
.price-plan__card-header--navy    { background: #007bbe; }
.price-plan__card-header--dark    { background: #004266; }
.price-plan__card-header--pink    { background: #e23e85; }

.price-plan__card-body {
    padding: 28px 20px 36px;
}
.price-plan__price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.4;
}
.price-plan__price span {
    display: block;
    font-size: var(--fs-small, 1.3rem);
    font-weight: 400;
    color: #888;
    margin-top: 4px;
}
.price-plan__detail-label {
    font-size: var(--fs-small, 1.3rem);
    color: #999;
    margin-top: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.price-plan__detail-value {
    font-size: var(--fs-h2, 2.4rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}
.price-plan__detail-value span {
    font-size: var(--fs-small, 1.3rem);
    font-weight: 400;
    margin-left: 2px;
}
.price-plan__genre {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.price-plan__genre-label {
    font-size: var(--fs-small, 1.3rem);
    color: #999;
    margin-bottom: 6px;
}
.price-plan__genre-value {
    font-size: var(--fs-btn, 1.5rem);
    font-weight: 700;
    color: #00A2FA;
}
.price-plan__note {
    text-align: center;
    font-size: var(--fs-small, 1.3rem);
    color: #999;
    margin-top: 32px;
    line-height: 1.8;
}


/* ==========================
   Goggle Cost
========================== */
.price-goggle {
}
.price-goggle__heading {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, var(--fs-h2, 2.4rem));
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}
.price-goggle__card {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    padding: 40px 48px;
}
.price-goggle__card-img {
    flex-shrink: 0;
    width: 200px;
}
.price-goggle__card-img img {
    width: 100%;
    height: auto;
}
.price-goggle__card-body {}
.price-goggle__card-name {
    font-size: var(--fs-btn, 1.5rem);
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.7;
}
.price-goggle__card-name span {
    color: #00A2FA;
    font-weight: 700;
}
.price-goggle__card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
}
.price-goggle__card-price span {
    font-size: var(--fs-small, 1.3rem);
    font-weight: 400;
    color: #888;
    margin-left: 4px;
}


/* ==========================
   Flow Steps
========================== */
.price-flow {
}
.price-flow__heading {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, var(--fs-h2, 2.4rem));
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    letter-spacing: 0.02em;
}
.price-flow__heading img {
    height: 30px;
    width: auto;
}
.price-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.price-flow__step {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    padding: 28px 36px;
}
.price-flow__step-img {
    flex-shrink: 0;
    width: 88px;
}
.price-flow__step-img img {
    width: 100%;
    height: auto;
}
.price-flow__step-body {}
.price-flow__step-num {
    font-family: 'Inter', sans-serif;
    font-size: var(--fs-h2, 2.4rem);
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}
.price-flow__step-num--blue   { color: #00A2FA; }
.price-flow__step-num--purple { color: #7B6BF6; }
.price-flow__step-num--pink   { color: #e23e85; }
.price-flow__step-num--gray   { color: #1a1a2e; }

.price-flow__step-title {
    font-size: var(--fs-btn, 1.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.4;
}
.price-flow__step-txt {
    font-size: var(--fs-body, 1.6rem);
    color: #666;
    line-height: 1.8;
}


/* ==========================
   Responsive
========================== */
@media (max-width: 1024px) {
    .price-plan__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .price-hero {
        padding: 120px 24px 56px;
    }
    .price-plan__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        padding: 0;
    }
    .price-goggle__card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 24px;
    }
    .price-goggle__card-img {
        width: 160px;
    }
    .price-flow__step {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    .price-flow__step-img {
        width: 72px;
    }
}
