@charset "UTF-8";

/* ==========================================================================
   Variables & Base Styles
   ========================================================================== */
:root {
    --color-primary: #FF8C00;
    --color-primary-light: #FFF0E0;
    --color-secondary: #007AFF;
    --color-secondary-dark: #00255e;
    /* 明るく活発な青に変更 */
    --color-text: #333333;
    --color-bg-gray: #F4F7F9;
    --color-white: #ffffff;
    --color-accent-red: #E74C3C;
    --font-base: 'M PLUS Rounded 1c', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --container-width: 90%;
    --max-width: 600px;
}

/* リセットCSS的なもの */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 400;
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: #004D98;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ユーティリティクラス */
.container {
    width: var(--container-width);
    max-width: var(--max-width);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white) !important;
}

.bg-navy {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #00C6FF 100%);
    /* グラデーションで若々しさを演出 */
}

.bg-orange {
    background-color: var(--color-primary);
}

.bg-gray {
    background-color: var(--color-bg-gray);
}

.highlight {
    color: var(--color-primary);
    font-weight: 800;
}

.highlight-text {
    color: var(--color-accent-red);
    font-weight: 700;
}

.highlight-serif {
    font-family: var(--font-serif);
}

.strong {
    font-weight: 800;
}

.text-large {
    font-size: 1.2em;
}

.text-small {
    font-size: 0.8em;
}

/* セクション共通設定 */
.section {
    padding: 60px 0;
    position: relative;
}

.section__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* あしらい（波線など） */
.deco-underline-orange {
    background: linear-gradient(transparent 70%, var(--color-primary-light) 70%);
    padding-bottom: 4px;
}

/* 【修正点】より自然で緩やかな波形のSVGパスに変更しました */
.wave-separator-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    /* 新しい自然な波形のパス */
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" d="M0,80 C360,95 1080,65 1440,80 L1440,100 L0,100 Z"></path></svg>') repeat-x bottom center;
    background-size: 1440px auto;
    z-index: 1;
}

.wave-separator-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    /* 上部も同じ自然な波形（反転）を適用 */
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg" transform="scale(1, -1)"><path fill="%23ffffff" d="M0,80 C360,95 1080,65 1440,80 L1440,100 L0,100 Z"></path></svg>') repeat-x top center;
    background-size: 1440px auto;
    z-index: 1;
}

.wave--orange .wave-separator-bottom {
    /* オレンジ色の波形も同じ自然なパスに変更 */
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23FF8C00" d="M0,80 C360,95 1080,65 1440,80 L1440,100 L0,100 Z"></path></svg>');
}

.cta .wave--white {
    /* CTA上部の白い波形も同じ自然なパスに変更 */
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" xmlns="http://www.w3.org/2000/svg" transform="scale(1, -1)"><path fill="%23ffffff" d="M0,80 C360,95 1080,65 1440,80 L1440,100 L0,100 Z"></path></svg>');
}


/* ボタン設定 */
.btn {
    display: inline-block;
    font-weight: 800;
    text-align: center;
    border-radius: 50px;
    padding: 1em 2em;
    line-height: 1.4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--line {
    background-color: #06C755;
    color: var(--color-white);
    font-size: 1.1rem;
}

.btn--large {
    font-size: 1.1rem;
    padding: 1.2em 3em;
    width: 100%;
    max-width: 400px;
}

.btn--huge {
    font-size: 1.3rem;
    padding: 1.2em 2em;
    width: 100%;
    max-width: 450px;
}

.btn-icon-line {
    font-weight: 800;
    margin-right: 8px;
    font-family: sans-serif;
}

/* 脈打つアニメーション */
.shadow-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 140, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

.btn--line.shadow-pulse {
    animation-name: pulse-line;
}

@keyframes pulse-line {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(6, 199, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(6, 199, 85, 0);
    }
}


/* ==========================================================================
   Section Specific Styles
   ========================================================================== */

/* Header / Hero */
.hero {
    position: relative;
    padding: 100px 0 120px;
    color: var(--color-text);
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    /* 【修正点】不透明度を上げて写真をはっきり表示 */
    opacity: 0.9;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 【修正点】オーバーレイを薄くして写真の鮮やかさを活かしつつ、文字の可読性も確保 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 240, 224, 0.6));
    z-index: -1;
}

.hero__title {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero__title .highlight {
    font-size: 2.2rem;
    display: block;
    margin-top: 10px;
    color: var(--color-primary);
}

.hero__lead {
    font-weight: 700;
    margin-bottom: 30px;
}

.hero__cta-wrapper {
    margin-top: 30px;
}

/* Problem Section */
.problem__box {
    background-color: var(--color-white);
    border: 3px solid var(--color-primary-light);
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.check-list li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 1em;
    font-weight: 700;
}

.check-list li::before {
    content: '☑';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2em;
}

.problem__solution-message {
    font-size: 1.1rem;
    font-weight: 700;
}

.problem__solution-message strong {
    color: var(--color-primary);
    font-size: 1.3rem;
    background: linear-gradient(transparent 60%, var(--color-primary-light) 60%);
}

/* Solution Section */
.solution__text p {
    margin-bottom: 1.5em;
}

/* Features Section */
.feature__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature__card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--color-primary);
}

.feature__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature__title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-secondary-dark);
}

.feature__desc {
    font-size: 0.95rem;
    text-align: left;
}

/* Authority Section */
.authority__box {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    border-left: 6px solid var(--color-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.authority__box h2 {
    color: var(--color-secondary);
    font-size: 1.4rem;
}

/* Voice Section */
.voice__list {
    display: grid;
    gap: 30px;
}

.voice__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voice__meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.voice__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-primary-light);
    margin-right: 10px;
}

.voice__info {
    font-weight: 700;
    font-size: 0.9rem;
}

.voice__comment {
    position: relative;
    background-color: var(--color-primary-light);
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
}

.voice__comment.bubble::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 30px;
    border: 8px solid transparent;
    border-bottom-color: var(--color-primary-light);
}

/* Steps Section */
.steps__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step__item {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 20px 20px 20px 80px;
    /* 左側にステップ番号用の余白 */
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step__item::before {
    /* 連結線 */
    content: '';
    position: absolute;
    top: 50px;
    left: 40px;
    width: 2px;
    height: calc(100% + 20px);
    background-color: #ddd;
    z-index: 0;
}

.step__item:last-child::before {
    display: none;
}

.step__number {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-secondary-dark);
    /* ユーザー指定の濃い青を使用 */
    margin-bottom: 5px;
}

.step__desc {
    font-size: 0.95rem;
}

.highlight-step .step__number {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.highlight-step .step__title {
    color: var(--color-primary);
}

.step__desc .note {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85em;
}

/* CTA Section */
.cta {
    padding-top: 100px;
    padding-bottom: 100px;
}

.cta__price-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.cta__price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #FFEB3B;
    text-shadow: 2px 2px 0px var(--color-primary-dark);
    margin-bottom: 20px;
}

.cta__price-sub {
    font-size: 1.5rem;
}

.cta__note {
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.cta__sub-text {
    margin-top: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.cta__qr-wrapper {
    margin-top: 25px;
    text-align: center;
}

.cta__qr {
    max-width: 160px;
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq__list {
    max-width: var(--max-width);
    margin: 0 auto;
}

.faq__item {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq__q {
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.faq__a {
    margin-left: 0;
    padding-left: 1.5em;
    border-left: 3px solid var(--color-primary);
}

/* Footer */
.footer {
    padding: 30px 0;
    font-size: 0.8rem;
}

.footer__info {
    margin-bottom: 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.sticky-footer.is-visible {
    transform: translateY(0);
}

.sticky-footer .btn--sticky {
    width: 100%;
    padding: 1em;
    font-size: 1rem;
}


/* Timetable Section */
.timetable {
    padding-bottom: 80px;
    background-color: var(--color-bg-gray);
    /* 背景色を追加して区切りを明確に */
}

.timetable__layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timetable__card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #f0f0f0;
}

.timetable__card-title {
    margin: 0;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    color: var(--color-white);
}

.timetable__card-title.weekend {
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFB700 100%);
}

.timetable__card-title.weekday {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #00C6FF 100%);
}

.timetable__icon {
    font-size: 1.2em;
    margin-right: 8px;
    vertical-align: middle;
}

.timetable__list {
    padding: 20px;
}

.timetable__row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.timetable__row:last-child {
    border-bottom: none;
}

.timetable__time {
    background-color: var(--color-bg-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-family: var(--font-base);
    color: var(--color-secondary);
    margin-right: 15px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.timetable__content {
    font-weight: 700;
    font-size: 1rem;
}

.timetable__notes {
    list-style: none;
    margin: 24px 0 0;
    color: rgb(207, 101, 52);
    font-size: 0.92rem;
    line-height: 1.7;
}

.timetable__notes li {
    padding: 0;
}

/* 背景色：少し変化をつけるため薄いオレンジなどを設定 */
.bg-light-orange {
    background-color: #FFFAF5;
}

.program-lead {
    margin-bottom: 40px;
    font-weight: 700;
}

/* グリッドレイアウト */
.program__grid {
    display: grid;
    gap: 30px;
    /* PCでは3列、スマホでは1列 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* カードデザイン */
.program__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.program__card:hover {
    transform: translateY(-5px);
}

/* 画像エリア */
.program__img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.program__card:hover .program__img {
    transform: scale(1.05);
}

/* カテゴリバッジ */
.program__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bg-pink {
    background-color: #FF6B6B;
}

.bg-blue {
    background-color: #4D96FF;
}

.bg-green {
    background-color: #6BCB77;
}

/* テキストエリア */
.program__body {
    padding: 25px;
}

.program__title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-secondary);
    line-height: 1.4;
}

.program__text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
    /* 読みやすさのため左揃え */
}

/* タグリスト（具体的な運動メニュー） */
.program__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.program__tags li {
    font-size: 0.8rem;
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.u-mobile-only {
    display: none;
}

.u-mt-40 {
    margin-top: 40px;
}

/* ==========================================================================
   Media Queries (PC向けの調整)
   ========================================================================== */
@media (min-width: 768px) {
    :root {
        --max-width: 960px;
    }

    .u-mobile-only {
        display: block;
    }

    .hero {
        padding: 150px 0 180px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__title .highlight {
        font-size: 3rem;
    }

    .hero__lead {
        font-size: 1.2rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .feature__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature__card:nth-child(4),
    .feature__card:nth-child(5) {
        grid-column: auto / span 1;
    }

    .feature__grid {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .feature__card {
        width: calc(33.333% - 20px);
        margin: 10px;
    }

    .voice__list {
        grid-template-columns: 1fr 1fr;
    }

    .voice__item {
        align-items: flex-start;
    }

    .voice__comment.bubble::before {
        top: 20px;
        left: -15px;
        border-bottom-color: transparent;
        border-right-color: var(--color-primary-light);
    }

    .cta__price {
        font-size: 5rem;
    }

    .sticky-footer {
        padding: 20px 0;
    }

    .sticky-footer .btn--sticky {
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }
}


/* Roadmap Section */
.roadmap-lead {
    margin-bottom: 50px;
    font-weight: 700;
}

.roadmap__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.roadmap__step {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    border: 2px solid #fff;
    transition: transform 0.3s;
}

.roadmap__step:hover {
    transform: translateY(-5px);
}

.roadmap__step.step-1 {
    border-color: #B2EBF2;
    background: #E0F7FA;
}

.roadmap__step.step-2 {
    border-color: #FFF9C4;
    background: #FFFDE7;
}

.roadmap__step.step-3 {
    border-color: #FFCCBC;
    background: #FBE9E7;
}

.roadmap__icon-box {
    flex: 0 0 100px;
    text-align: center;
    margin-right: 30px;
    position: relative;
}

.roadmap__step-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.roadmap__icon {
    font-size: 3.5rem;
    line-height: 1;
}

.roadmap__content {
    flex: 1;
}

.roadmap__title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.roadmap__desc {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Arrow between steps */
.roadmap__arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #ccc;
    margin: -30px auto 20px;
    position: relative;
    z-index: 1;
}

/* Responsive for Roadmap */
@media (max-width: 767px) {
    .roadmap__step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .roadmap__icon-box {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Instructor Section */
.instructor__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.instructor__visual {
    position: relative;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.instructor__img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid var(--color-primary-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.instructor__badge {
    position: absolute;
    bottom: 10px;
    right: 0;
    background: linear-gradient(135deg, #A50044 0%, #004D98 100%);
    /* バルサカラー風 */
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

.instructor__badge .badge-main {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
}

.instructor__badge .badge-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.9;
}

.instructor__content {
    text-align: left;
}

.instructor__name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 10px;
    display: inline-block;
}

.instructor__name-en {
    display: block;
    font-size: 1rem;
    color: #999;
    font-weight: 700;
    font-family: sans-serif;
    margin-top: 5px;
}

.instructor__profile {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.instructor__message-box {
    background-color: #F0F8FF;
    border-left: 5px solid var(--color-secondary);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    font-weight: 700;
    color: var(--color-text);
}

@media (min-width: 768px) {
    .instructor__box {
        flex-direction: row;
        align-items: flex-start;
        padding: 50px;
        gap: 50px;
    }

    .instructor__visual {
        margin-bottom: 0;
    }
}

/* Access Section */
.access__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.access__card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* More subtle, premium shadow */
    border: none;
    /* Removed border for cleaner look */
    display: flex;
    flex-direction: column;
}

.access__header {
    padding: 18px;
    text-align: center;
}

.access__header.bg-pink {
    background: #FF9A9E;
}

.access__header.bg-blue {
    background: #4facfe;
}

.access__title {
    margin: 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.access__body {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.access__location-name {
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
    color: var(--color-secondary-dark);
}

.access__address {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666;
}

/* Responsive Map Embed */
.access__map {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: auto;
    /* Push to bottom if content varies */
}

.access__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Target Section */
.target__age {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-secondary-dark);
}

.target__age .highlight {
    font-size: 2.2rem;
    color: var(--color-primary);
}

.target__desc {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-text);
    font-size: 1.1rem;
}
