/* ==========================================
   Hero
========================================== */

.page-hero {
    padding: 8rem 1.5rem 7rem;
    background: linear-gradient(135deg, #35524a, #54756a);
    color: #fff;
    text-align: center;
}

.page-hero {

    --hero-image: none;

    background:
        linear-gradient(rgba(53, 82, 74, .55), rgba(53, 82, 74, .55)),
        var(--hero-image);

    background-size: cover;
    background-position: center;
}

.dancer-page {

    --hero-image: url(images/swiper2.webp);

}

.pilates-page {

    --hero-image: url(images/pilates.jpg);

}

.approach-page .page-hero {
    background:
        linear-gradient(rgba(53, 82, 74, .55), rgba(53, 82, 74, .55)),
        url(images/swiper3.webp) center/cover;
}

.dancer-page .page-hero {
    background:
        linear-gradient(rgba(53, 82, 74, .55), rgba(53, 82, 74, .55)),
        url(images/swiper2.webp) center/cover;
}

.pilates-page .page-hero {
    background:
        linear-gradient(rgba(53, 82, 74, .55), rgba(53, 82, 74, .55)),
        url(images/swiper1.webp) center/cover;
}

.tougou-work-page .page-hero {
    background:
        linear-gradient(rgba(53, 82, 74, .55), rgba(53, 82, 74, .55)),
        url(images/tougou-work.jpg) center/cover;
}

.page-hero .container {
    max-width: 820px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    margin-bottom: 1rem;
    padding-bottom: .4rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.page-hero .lead {
    margin: 2rem auto;
    font-size: 1.3rem;
    line-height: 1.9;
    font-weight: 500;
    max-width: 700px;
}

.hero-text {
    margin: 2rem auto 0;
    max-width: 720px;
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, .9);
}

.hero-btn {
    margin-top: 3rem;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-1);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .2);
}

/* ==========================================
   About
========================================== */
.sub-block>h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.sub-about {
    padding: 5rem 1.5rem;
}

.sub-about .container {
    max-width: 1000px;
    margin: 0 auto;
}

.sub-about figure img {
    width: 100%;
}

/* ---------- 共通ブロック ---------- */

.sub-block {
    margin-top: 5rem;
}

.sub-block:first-child {
    margin-top: 0;
}

.sub-block>h3 {
    text-align: center;
    margin-top: 50px;
}

.sub-block>p {
    text-align: center;
}

.sub-block>card>p {
    text-align: left;
}

/* ---------- リード ---------- */

.about-lead {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.about-lead h2 {
    margin-bottom: 1.5rem;
}

.about-lead p {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
}

/* ---------- 特徴 ---------- */

.cards-3column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.card h3 {
    text-align: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--brand-1);

    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon i {
    font-size: 1.8rem;
}

.card h3 {
    color: var(--brand-1);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.card p {
    font-size: .95rem;
    line-height: 1.9;
    color: #666;
}

/* ---------- こんな方へ ---------- */
.check-list {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 2.5rem auto 0;
    max-width: 760px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.2rem;

    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.check-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;

    flex: 0 0 1.15rem;
    width: 1.15rem;

    color: var(--brand-1);
    font-size: 1.15rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .check-list {
        grid-template-columns: 1fr;
        padding: 1.5rem 0.25rem;
        row-gap: 1rem;
        margin-top: 2rem;
    }

    .check-list li {
        gap: 0.4rem;
        padding: 0.55rem 0;
        width: calc(100% + 1.5rem);
        transform: translateX(-1.5rem);
    }

    .check-list li::before {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}


/* ==========================
   Balm
========================== */

.balm-wrap {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    align-items: center;
}

.balm-image img {
    width: 100%;
    border-radius: var(--radius);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .08);
}

.balm-subtitle {
    color: var(--brand-2);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

#balm h2 {
    text-align: center;
    margin-bottom: 40px;
}

#balm h2 span {
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.balm-copy {
    font-size: 22px;
    color: var(--brand-1);
    font-weight: 600;
}

.balm-content p {
    line-height: 1.9;
}

.balm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;
    padding: 14px 24px;

    border-radius: 12px;

    background: var(--brand-1);
    color: #fff;

    text-decoration: none;
    font-weight: 700;

    transition: .3s;
}

.balm-btn:hover {
    background: var(--brand-2);
    color: var(--brand-1);
}


/* ==========================
   My Story
========================== */

.story-section {
    padding: 100px 0;
    background: #f8faf8;
}

.story-subtitle {
    text-align: center;
    color: var(--brand-1);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.story-title {
    text-align: center;
    margin-bottom: 60px;
}

.story-title span {
    color: var(--brand-1);
}

.story-card {

    max-width: 900px;
    margin: auto;

}

.story-block {

    background: #fff;

    border-left: 5px solid var(--brand-2);

    padding: 35px;

    border-radius: 12px;

    margin-bottom: 35px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

}

.story-block h3 {

    margin-bottom: 18px;

    color: var(--brand-1);

}

.story-block p {

    margin-bottom: 18px;

    line-height: 2;

}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 32px;
}

.story-grid figure img {
    width: 100%;
}

.story-quote {

    margin: 70px auto;

    max-width: 750px;

    text-align: center;

    font-size: 2rem;

    line-height: 1.8;

    font-weight: 700;

    color: var(--brand-1);

    position: relative;

}

.story-quote::before {

    content: "“";

    position: absolute;

    left: -15px;

    top: -15px;

    font-size: 5rem;

    color: var(--brand-2);

    font-family: serif;

}

.story-quote::after {

    content: "”";

    position: absolute;

    right: -10px;

    bottom: -40px;

    font-size: 5rem;

    color: var(--brand-2);

    font-family: serif;

}

.story-list {

    margin-top: 20px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}

.story-list li {

    list-style: none;

    background: var(--accent);

    border-radius: 8px;

    padding: 12px 15px;

    position: relative;

    padding-left: 40px;

}

.story-list li::before {

    content: "✓";

    position: absolute;

    left: 15px;

    color: var(--brand-1);

    font-weight: bold;

}

.story-message {

    background: #fff;

    border: 2px solid var(--brand-2);

    border-radius: 15px;

    padding: 40px;

    margin-top: 50px;

}

.story-message p {

    line-height: 2;

}

.story-message p:last-child {

    margin-top: 20px;

    font-weight: 600;

    color: var(--brand-1);

}

/* ------------------------------
   Features
------------------------------ */

.features {
    margin-top: 5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border: 1px solid rgba(53, 82, 74, .08);
}

.feature-card p {
    text-align: left;
}

.feature-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--brand-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--brand-1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--brand-1);
    font-size: 1.25rem;
}

.feature-card p {
    margin: 0;
    line-height: 2;
    color: var(--text);
}

.feature-card p a {
    color: var(--brand-1);
}

/* Feature Card Link */

.feature-card p.feature-link {
    margin-top: 1.2rem;
    text-align: center;
}

.feature-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap .3s ease;
}

.feature-link a i {
    font-size: 0.9rem;
    transition: transform .3s ease;
}

.feature-link a:hover {
    gap: 0.6rem;
}

.feature-link a:hover i {
    transform: translateX(4px);
}

/* Prices */

/* 基本メニュー */

.main-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.featured-plan {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    /* max-width: 760px; */
}

.pricing-tab {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.pricing-tab li {
    background: var(--brand-2);
    color: #fff;
    list-style: none;
    font-size: 28px;
    border-radius: 14px 14px 0 0;
    width: calc(50% - 14px);
    padding: 14px 0;
    text-align: center;
    cursor: pointer;
    transition: .35s;
    margin-top: 10px;
}

.pricing-tab li.current {
    background: var(--brand-1);
}

.pricing-tab li:hover {
    padding: 20px 0;
    transform: translateY(-6px);
}

.center-text {
    display: flex;
    justify-content: center;
}

.pricing-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.pricing-grid:last-of-type {
    margin-bottom: 0;
}

.pricing-grid.grid2 {
    grid-template-columns: repeat(2, 1fr);
}

.pricing-grid.grid2-1 {
    grid-template-columns: 2fr 1fr;
}

.pricing-grid.grid3 {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-type.hide {
    display: none;
}

.price-card {
    background: linear-gradient(180deg, #fff, #fbfffd);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(53, 82, 74, 0.04);
    box-shadow: 0 6px 18px rgba(20, 30, 20, 0.03);
    transition: transform .25s ease;
}

.price-card.recommended {
    position: relative;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f2f8f5 60%,
            #ffffff 100%);
    border: 2px solid var(--brand-1);
    box-shadow:
        0 25px 20px rgba(53, 82, 74, 0.18),
        0 8px 20px rgba(53, 82, 74, 0.12);
    transform: translateY(-8px);
    z-index: 1;
    overflow: visible;
    position: relative;
    transform: translateY(-8px);
    z-index: 1;
}

.recommended::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--brand-1);
    border-radius: var(--radius) var(--radius) 0 0;
    z-index: 0;
}

.recommended>* {
    position: relative;
    z-index: 2;
}

.recommended .price-amount {
    font-size: 34px;
    font-weight: 900;
}

.recommended a {
    background: var(--brand-1);
    font-weight: 700;
    padding: 14px 24px;
}

.badge-90 {
    position: absolute;
    top: -16px;
    left: 22px;
    background: var(--brand-1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    z-index: 5;
}

.badge-90 i {
    color: #FFD700;
}

.lead-90 {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 700;
    background: var(--brand-2);
    color: var(--brand-1);
    border-radius: 20px;
}

.price-card h4 {
    margin: 0 0 8px;
    color: var(--brand-1)
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-1);
    margin: 10px 0;
}

.price-card span {
    color: var(--brand-1);
    font-size: 18px;
    font-weight: bold;
}

.price-card a {
    margin-top: 12px;
    border: none;
    transition: .35s;
}

.price-card a:hover {
    background: var(--brand-2);
    color: var(--brand-1);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {

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

}

@media (max-width: 768px) {

    .about-lead h2,
    .sub-about h2,
    .section-title h2,
    .guide-heading h2,
    .service-group h2 {
        font-size: 1.6rem;
    }

    .page-hero {
        padding: 6rem 1.25rem 5rem;
    }

    .page-hero .lead {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: .95rem;
    }

    .page-hero .cta {
        width: 100%;
        max-width: 320px;
    }

    .sub-about {
        padding: 4rem 1.25rem;
    }

    .about-lead p {
        text-align: left;
    }

    .sub-block {
        margin-top: 4rem;
    }

    .sub-about figure {
        width: 85vw;
        margin: 0 auto;
    }

    .card {
        padding: 1.8rem 1.5rem;
    }

    .check-list li {
        padding: .5rem .8rem .1rem 2.8rem;
    }

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

    #balm h2 {
        text-align: center;
    }

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

    .story-section {

        padding: 70px 0;

    }

    .story-block {

        padding: 25px;

    }

    .story-grid {
        display: block;
    }

    .story-grid figure {
        width: 30vw;
        margin: 0 auto;
    }

    .story-quote {

        padding: 30px 20px;

        font-size: 1.2rem;

    }

    .story-list {

        grid-template-columns: 1fr;

    }

    .story-message {

        padding: 25px;

    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .pricing-tab li {
        font-size: 20px;
    }

    .recommended {
        transform: none;
    }
}