/*
Theme Name: STRETCH+ Final
Theme URI: https://stretch-plus.com
Author: AILABO Group
Description: A custom premium theme for STRETCH+ 茅場町.
Version: 1.0.0
Text Domain: stretchplus
*/
@charset "UTF-8";

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Colors derived from the logo and premium wellness aesthetic */
    --primary-color: #23ADC6;
    /* Brand Blue */
    --primary-hover: #1c8a9e;
    --secondary-color: #AACE37;
    /* Brand Lime Green */
    --secondary-hover: #91b02d;
    --line-color: #06C755;
    /* LINE Green */
    --line-hover: #05A546;
    /* Text & Background Colors (Redesign) */
    --text-heading: #2B2B2B; /* 漆黒を回避、柔らかく締まるダークグレー */
    --text-body: #333333;
    --text-muted: #888888;
    
    --bg-color: #FFFFFF;
    /* 背景色 — リメイク用（ブランドカラーの極薄面を基本の交互レイアウトに使用） */
    --bg-alt: rgba(35, 173, 198, 0.03); /* プライマリカラーの3%透過 */
    
    --bg-white: #FFFFFF;
    --bg-light-grey: #F8F9FA;
    --bg-light-beige: #FAF8F5;
    --border-color: #E2E8F0;

    /* Typography */
    --font-family-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-family-en: 'Montserrat', sans-serif; /* 英語用フォント */
    --font-size-base: 17px; /* ベースサイズを1pxアップして全体を拡大 */
    --line-height-base: 1.8;

    /* Spacing & Layout (Premium White-space Rule) */
    --container-width: 1200px; /* 広げて高級感を出す */
    --section-padding-m: 80px 5%; /* モバイル用余白 */
    --section-padding-pc: 120px 5%; /* PC用極大余白 */
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-body);
    background-color: var(--bg-color);
    letter-spacing: 0.04em; /* 日本語テキストの詰まりを防ぐ */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-hover);
}

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

/* Image Color Grading (Brand Tone Unified) */
.about-image img,
.worry-img,
.step-image img,
.trainer-icon,
.access-card-img img,
.shop-info-image img {
    filter: saturate(0.85) brightness(1.05) contrast(0.95);
    transition: filter 0.5s ease;
}

a img {
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-en), var(--font-family-base); /* 英数字はMontserrat優先 */
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em; /* 見出しは広めに設定し高級感を演出 */
    color: var(--text-heading);
}

/* ==========================================================================
   Typography & Utility Classes
   ========================================================================== */
/* Removed unused .section-title class (Task F) */

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* Container */
#policy,
#worries,
#menu,
#flow,
#trainers,
#reviews,
#faq,
#info,
#access {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--section-padding-m);
}

@media (min-width: 992px) {
    #policy,
    #worries,
    #menu,
    #flow,
    #trainers,
    #reviews,
    #faq,
    #info,
    #access {
        padding: var(--section-padding-pc); /* 120pxの余白を適用 */
    }
}

/* Specific Narrow Containers */
#worries,
#faq {
    max-width: 800px;
}

/* Buttons (Premium Redesign) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-family: var(--font-family-base);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* プレミアム感のある柔らかい影 */
    border: none;
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(-4px); /* 浮き上がり強化 */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); /* ホバー時の影を濃く広く */
    opacity: 0.95;
}

.btn-web:hover,
.btn-reserve:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(35, 173, 198, 0.4);
}

.btn-outline-primary {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(35, 173, 198, 0.25);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

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





.btn-hotpepper {
    background-color: #fff;
    border: 2px solid #E50121; /* ホットペッパーのブランドカラー */
    color: #E50121;
    font-weight: bold;
    padding: 20px 40px;
    font-size: 1.15rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.btn-hotpepper:hover {
    background-color: #E50121;
    color: #fff;
}

.btn-google {
    background-color: #fff;
    border: 2px solid #4285F4; /* Googleのブランドカラー */
    color: #4285F4;
    font-weight: bold;
    padding: 20px 40px;
    font-size: 1.15rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.btn-google:hover {
    background-color: #4285F4;
    color: #fff;
}

.btn-booking-outline {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
}

.btn-booking-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}





.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px; /* 余白を少し追加 */
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Header
   ========================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 40px; /* 少し縮める */
}

.header-logo a {
    display: block;
    border: none;
    outline: none;
    text-decoration: none;
}

.header-logo img {
    height: 40px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    border: none;
    outline: none;
}

.header-nav ul {
    display: flex;
    gap: 24px;
}

.header-nav a {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
}

.header-nav a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 12px;
}

.header-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ==========================================================================
   Hero Section (Split Layout with Mask)
   ========================================================================== */
.hero-split {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px); /* ヘッダー分を引く */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-white);
    padding-top: 80px; /* ヘッダーの高さ分 */
}

.hero-inner {
    max-width: 1200px; /* Reduced to pull content closer and remove right-shifted illusion */
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center; /* Changed from space-between to center the block */
    gap: 60px; /* Increased gap to maintain breathing room */
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 650px; /* Increased to fit the longer new catchphrase on one line */
    padding-top: 40px;
}

.hero-content .main-message {
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    color: var(--text-heading);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.highlight-blue {
    position: relative;
    padding: 0 5px; /* マーカーが少しはみ出るように */
    background: linear-gradient(transparent 60%, #b2e0f0 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero-content .sub-message {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-content .sub-message strong {
    font-size: 1.4rem;
}

.hero-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-lead-text {
    color: #5fb4d4; /* 青色に変更 */
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    max-width: 450px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 450px;
}

.hero-actions .btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    justify-content: space-between;
}

.hero-actions 

.hero-actions 

.hero-actions 

.hero-actions 

.hero-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.5;
}

.hero-note strong {
    font-size: 1.6rem;
    color: #5fb4d4;
}

/* Image Masking Area */
.hero-image-col {
    flex: 1.2;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 650px;
    height: 600px;
    right: -5%; /* 半分見切れる位の調整 */
}

.hero-image-bg-circle {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background-color: #A9D1DE; /* より参考画像に近い柔らかなライトブルー */
    border-radius: 50%;
    z-index: 1;
}

.hero-masked-image {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    object-fit: cover;
    object-position: center 20%; /* 少し上め・中央寄りにして人物の見切れを防ぐ */
    z-index: 2;
    clip-path: circle(50% at 50% 50%); 
    border-radius: 50%;
}

@media (max-width: 991px) {
    .hero-split {
        flex-direction: column;
        padding-top: 100px;
    }
    .hero-inner {
        flex-direction: column;
    }
    .hero-image-col {
        order: -1;
        width: 100%;
        height: 400px;
        justify-content: center;
    }
    .hero-image-wrapper {
        width: 100%;
        right: 0;
    }
    .hero-image-bg-circle {
        width: 400px;
        height: 400px;
        left: 50%;
    }
    .hero-masked-image {
        width: 400px;
        height: 400px;
    }
    .hero-content {
        padding-top: 0;
        padding-bottom: 40px;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-bg-light {
    background-color: var(--bg-light-grey);
    padding: 80px 5%;
}

#about {
    margin-top: 0; /* Remove top margin if the background connects directly from hero */
}

.about-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-row.card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff; /* カードの白背景 */
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 浮かせるシャドウ */
    margin-bottom: 0;
    border-left: 8px solid #5fb4d4; /* 左端の青色強調 */
}

@media (max-width: 991px) {
    .about-row.card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
}

.about-row.reverse .about-image {
    order: 1;
}

.about-content {
    flex: 1; /* 残りの幅をテキストが取る */
    max-width: 100%; /* テキストの最大幅を制限して読みやすく */
    margin: 0 auto;
}

.about-content h2,
.about-content h3 {
    color: var(--primary-color); /* 見出しはブランドの青 */
    font-size: 1.3rem; /* 見出しサイズ拡大 */
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-heading); /* より濃い黒にする */
    font-size: 1.05rem; /* フォントサイズを少しだけ調整して収まりやすく */
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content p strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000; /* 黒字の太字で強調 */
}

.about-image {
    width: 45%; /* 画像の親要素の横幅を固定 */
    max-width: 45%;
    flex-basis: 45%;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    height: 350px; /* 絶対値で高さを固定し上下カードの不一致を排除 */
    object-fit: cover;
    border-radius: 8px; /* 内側の画像は少し丸みを抑える */
}

@media (max-width: 991px) {
    .about-image {
        width: 100%;
    }
    .about-image img {
        height: 250px; /* スマホ時の固定高 */
    }
}

.about-recommend.card {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 20px;
}

.about-recommend h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-recommend ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #444444;
}

/* Removed duplicate styles for about-content and about-recommend */

.about-recommend ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
    margin-bottom: 40px;
}

/* ==========================================================================
   Worries Section (Personas)
   ========================================================================== */
#worries {
    padding: 80px 5%;
    background-color: var(--bg-clean);
}

.worries-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.worries-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Personas Container */
.personas-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

/* Individual Persona Column */
.persona-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Speech Bubble */
.speech-bubble {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
    border: 2px solid var(--border-color);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 12px 10px 0;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    z-index: 2;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 14px 12px 0;
    border-style: solid;
    border-color: var(--border-color) transparent transparent transparent;
    z-index: 1;
}

.speech-bubble ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.speech-bubble li {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 32px; /* SVGアイコン分の余白 */
    text-align: left;
}

.speech-bubble li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-image: url('./image_final/common_checklist_icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* Persona Image & Label */
.persona-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.persona-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #f5f5f5;
    /* Placeholder styles are handled inline */
}

.persona-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .personas-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .persona-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Closing Action Area */
.worries-closing {
    text-align: center;
    margin-top: 20px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.catchy-message {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-heading);
}

.closing-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.action-lead {
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--text-body);
}

.closing-action 

.closing-action 

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
    .worries-closing {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

#policy h2::after {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 20px 0;
}

.policy-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .policy-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .policy-header {
        flex: 0 0 420px;
        position: sticky;
        top: 100px;
        background-color: var(--bg-white);
        padding: 30px; /* 右カードのpadding(30px)と揃えて上端の縦位置を揃える */
        margin-bottom: 0;
    }

    #policy h2 {
        font-size: clamp(1.4rem, 2vw, 1.8rem); /* Slightly smaller to fit 1 card height */
        margin-bottom: 10px;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }
}

.policy-lead-box {
    font-size: 1.05rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 16px;
    margin-top: 24px;
}

.policy-lead {
    color: #555555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.policy-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.policy-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* 通常時のシャドウを少し強めて対比を明確に */
    transition: transform var(--transition-speed);
    text-align: left;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.policy-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 12px;
}

.policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; /* 少し大きく */
    height: 44px; /* 少し大きく */
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    font-size: 1.15rem; /* 数字も大きく */
    flex-shrink: 0;
}

.policy-card h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 0;
    border-bottom: none;
    line-height: 1.4;
    display: block;
}

.policy-strong {
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.policy-card p {
    color: #444444;
    line-height: 1.7;
}

/* ==========================================================================
   Worries Section
   ========================================================================== */
#worries {
    text-align: center;
    background-color: var(--bg-white);
    padding: 80px 20px 100px;
    max-width: 100%;
}

.worries-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.worries-title {
    font-size: 2rem;
    color: var(--text-heading); /* 濃いグレー〜ほぼ黒 */
    margin-bottom: 24px;
}

.worries-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
}

.worries-lead {
    font-size: 1.05rem;
    color: #333333; /* やや柔らかい濃グレー */
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 850px; /* 2行目が変に改行されないように十分な幅を確保 */
    margin-left: auto;
    margin-right: auto;
}

/* Story Layout Styles */
.worries-story-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .worries-story-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .worries-images-col {
        flex: 0 0 45%;
    }
    
    .worries-text-col {
        flex: 1;
        text-align: left;
    }
}

.worry-img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.solution-story-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    align-items: center;
}

.worries-card-large {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: transform var(--transition-speed);
}

.worries-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.worries-list-large {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .worries-list-large {
        grid-template-columns: 1fr 1fr; /* 2 Column layout on PC */
        column-gap: 40px;
    }
}

.worries-list-large li {
    position: relative;
    padding: 18px 20px 18px 50px;
    background-color: var(--bg-warm); /* [修正依頼] 水色からwarm背景に変更 */
    border-radius: 40px; /* pill形 */
    font-size: 1.1rem; /* 少し小さめでバランスを取る */
    font-weight: bold;
    color: var(--text-body);
    line-height: 1.5;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.worries-list-large li:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.worries-list-large li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #06C755; /* チェックアイコンの緑 */
    font-size: 1.35rem; /* サイズ微調整 */
    font-weight: bold;
}

.worries-list-large li .highlight {
    font-weight: 800; /* 先頭の名詞部分だけ強く太字に */
    color: var(--text-heading);
}

/* Golf Special sub-link in the main card */
.worries-card-sub {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed #dddddd;
    text-align: center;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

.worries-sub-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap; /* リンク部分の助詞で折れないよう保護 */
}

.worries-sub-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}



/* ==========================================================================
   Menu/Pricing Section
   ========================================================================== */
#menu {
    text-align: center;
    background-color: var(--bg-white);
    border-top: 1px solid #E0E4E8; /* セクションのボトムに章が変わった感のラインを追加 */
    padding: 100px 20px 80px; /* 余白をやや多めに空ける */
    max-width: 100%;
}


#menu h2 {
    color: var(--text-heading); /* 悩み見出しと同じトーンの黒寄りの濃グレー */
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px;
    word-break: keep-all; /* 長音符「ー」での不自然な改行を防ぐ */
    overflow-wrap: break-word;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: #ffffff; /* カードは白に変更 */
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* 白背景上の白カードなのでシャドウを強める */
    position: relative;
    border: 1px solid #E2E8F0; /* 通常カードの枠線 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem; /* 改行を防ぐために少し小さく */
    margin-bottom: 25px;
    white-space: nowrap; /* 強制的に1行に収める */
    letter-spacing: -0.01em;
}

.price-highlight-small {
    font-size: 0.95rem;
    color: #666666;
    font-weight: bold;
    margin-bottom: 5px;
}

.price-highlight-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color); /* ブランドブルー */
    margin: 0 0 10px 0;
    line-height: 1;
}

.price-highlight-main-sub {
    font-size: 2rem;
    font-weight: 800;
    color: #444444; /* 濃いグレー（両脇用） */
    margin: 0 0 10px 0;
    line-height: 1;
}

.price-normal {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 30px;
}

.pricing-card.recommended {
    transform: scale(1.05);
    border: 3px solid var(--primary-color); /* ブランドブルーに目立たせる */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.menu-cta {
    margin-top: 50px;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
#flow {
    text-align: center;
    background-color: var(--bg-light-grey);
    padding: 100px 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

#flow h2 {
    color: var(--text-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px;
}

.flow-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px auto 50px;
    max-width: 1120px; /* PCではカードが左右もう少し広がるように配置 */
}

@media (min-width: 768px) {
    .flow-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.flow-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    height: 100%; /* 全カードの高さ揃え */
    
    /* Animation Base */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.flow-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for sequential popping */
.flow-card:nth-child(1) { transition-delay: 0.1s; }
.flow-card:nth-child(2) { transition-delay: 0.3s; }
.flow-card:nth-child(3) { transition-delay: 0.5s; }

.flow-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #E0E8F0;
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.step-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    background-color: #EBF4FC; /* パステルブルーの背景 */
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.step-badge {
    display: inline-block;
    color: #333333;
    font-size: 0.95rem;
    font-weight: 700;
}

.step-badge i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 1.1rem;
}

.step-image {
    margin-bottom: 20px;
}

.step-image img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    object-fit: cover;
}

.step-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333333;
}

.step-details p {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 0;
}

.step-details strong {
    display: block;
    color: var(--text-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ==========================================================================
   Trainers Section
   ========================================================================== */
#trainers {
    text-align: center;
    background-color: var(--bg-light-grey);
    max-width: 100%;
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1fr; /* スマホでは1列 */
    gap: 30px;
    max-width: 1000px; /* 2列になったときにゆとりを持たせて文字改行を防ぐ */
    margin: 40px auto 0;
}

@media (min-width: 768px) {
    .trainer-grid {
        grid-template-columns: repeat(2, 1fr); /* PCやタブレットで2x2のマトリックス配置 */
    }
}

.trainer-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trainer-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.trainer-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.trainer-card p strong {
    font-size: 0.95rem;
    color: var(--primary-color);
}

.trainer-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 15px;
    text-align: left;
}

.trainer-card .btn {
    margin-top: auto;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
#reviews {
    background-color: var(--bg-light-grey);
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 80px 0 45px; /* FAQセクションとの余白バランス調整（下を減らす） */
}

#reviews h2 {
    color: var(--text-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px; /* 他のセクションと余白を揃える */
}

.review-slider-container {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 70px;
}

.slider-btn {
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #4a4a4a; /* ダークグレーのシンプルな色 */
    padding: 0;
    transition: all 0.3s ease;
}

.slider-btn svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.slider-btn:hover {
    color: #5fb4d4; /* ホバーでテーマカラーの水色に */
}

.slider-btn:hover svg {
    transform: scale(1.1);
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

.review-grid-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.review-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    align-items: stretch;
}

.review-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 影を控えめに */
    padding: 30px;
    width: calc(33.333% - 20px);
    flex-shrink: 0; 
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    height: 100%; /* Allow stretching */
}

@media (max-width: 900px) {
    .review-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .review-card {
        width: 100%;
    }
    .review-slider-container {
        padding: 20px 0;
    }
    .slider-btn {
        display: none; /* スマホではスワイプ想定かボタン非表示（あとでJSで簡易スワイプ対応） */
    }
    .review-grid-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    .review-card {
        scroll-snap-align: center;
    }
}

/* Slider Progress Bar */
.review-progress-container {
    width: 200px;
    height: 4px;
    background-color: #e0dfd5;
    margin: 20px auto 40px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.review-progress-bar {
    height: 100%;
    background-color: #5fb4d4;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease, width 0.3s ease;
}

.review-bubble {
    border: 2px solid #63b3ce; /* 参照画像のような深緑・青緑系 */
    border-radius: 60px; /* 楕円形に近い角丸 */
    padding: 25px 30px;
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 20%;
    width: 2px;
    height: 30px;
    background-color: #63b3ce;
    transform: rotate(30deg);
}

.review-quote {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.6;
}

.review-quote .highlight-text {
    color: #4da3bf; /* 参照画像の強調色 */
}

.review-user {
    font-size: 0.9em;
    color: #b0bdc8;
    margin-top: 15px;
    display: block;
    font-weight: normal;
}

/* ==========================================================================
   Global Section Background Rhythm (User Requested Pattern)
   ========================================================================== */
#about     { background-color: var(--bg-white) !important; }
#worries   { background-color: var(--bg-light-grey) !important; }
#policy    { background-color: var(--bg-white) !important; }
#amenities { background-color: var(--bg-light-grey) !important; }
/* #flow is excluded from rhythm */
#trainers  { background-color: var(--bg-white) !important; }
#reviews   { background-color: var(--bg-light-grey) !important; }
#faq       { background-color: var(--bg-white) !important; }
#access    { background-color: var(--bg-light-grey) !important; }

.review-episode {
    background-color: #fcfaf5; /* とても薄い黄色/ベージュ系（和紙風の色味） */
    border-radius: 12px;
    padding: 25px;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02); /* 内側にわずかな影でくぼみを表現 */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Review Details Layout */
.review-details {
    margin-bottom: 20px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 15px;
    flex-grow: 1;
}

.review-detail-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.review-detail-label {
    font-weight: bold;
    color: #5fb4d4;
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-detail-value {
    width: 100%;
    font-size: 0.95rem;
    color: #2c2c2c;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.review-detail-value.check-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-detail-value.check-list span {
    padding-left: 0 !important;
}

.review-detail-value.check-list span::before {
    display: none;
}

.review-feedback {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feedback-heading {
    color: #5fb4d4;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
}

.review-episode .comment {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c2c2c; /* ダークグレー */
    margin: 0;
    text-align: left;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
#faq {
    background-color: var(--bg-light-grey);
    padding: 48px 20px 60px;
    border-top: 1px solid #E5E9EC;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#faq h2 {
    text-align: center;
    color: var(--text-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px;
}

.faq-lead {
    text-align: center;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
}

.faq-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (min-width: 992px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 20px;
    }
}

.faq-category {
    margin-bottom: 20px;
    position: relative;
}

.faq-category h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-body);
    padding-bottom: 0;
    border-bottom: none;
    margin: 24px 0 12px 0; /* 上下余白 */
    text-align: left;
}

details {
    background: #ffffff; /* [修正依頼] 背景色被りを防ぐため白に変更 */
    border: 1px solid transparent;
    border-radius: 6px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: none; /* 初期はシャドウなし */
    overflow: hidden;
}

/* 開いているときのアコーディオン */
details[open] {
    background: #fff;
    border: 1px solid #DDE5EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

summary {
    padding: 16px 45px 16px 55px; /* 上下を少し減らし、左にQマークの幅 */
    font-weight: bold;
    cursor: pointer;
    position: relative;
    list-style: none;
    outline: none;
    background-color: transparent; /* 背景は親のdetailsに依存 */
    color: var(--text-body);
    display: flex;
    align-items: center;
    line-height: 1.5;
    border-radius: 6px;
}

summary::-webkit-details-marker {
    display: none;
}

/* Qの丸い背景と文字 */
summary::before {
    content: 'Q';
    position: absolute;
    left: 15px; /* 左端アイコン */
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 900;
}

/* プラスアイコン */
summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-body); /* 質問テキストと同じ濃いグレー系 */
    transition: transform 0.3s ease;
}

/* 開いている時のマイナスアイコン */
details[open] summary::after {
    content: '−';
}

details p {
    padding: 0 45px 20px 55px; /* 左側はQの丸のラインに合わせる */
    color: #555555;
    background-color: transparent;
    position: relative;
    display: block;
    margin-top: -4px; /* サマリーとの間合い調整 */
}

details p::before {
    content: 'A.';
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 900;
    position: absolute;
    left: 24px;
    top: 0;
    line-height: 1.2;

}

/* ==========================================================================
   Shop Info & Access Section
   ========================================================================== */
#info, #access {
    background-color: var(--bg-white);
    padding: 80px 20px;
    max-width: 100%;
}

/* 店舗情報ブロック */
.shop-info-block {
    margin-bottom: 80px; /* アクセスブロックとの余白 */
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.shop-info-block h2,
.shop-access-block h2 {
    color: var(--text-heading); /* 統一のため黒に変更 */
    text-align: center; /* 統一のため中央揃えに変更 */
    margin-bottom: 30px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.shop-info-block h2::after,
.shop-access-block h2::after {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    display: none; /* 中央揃えのため左線を削除 */
}

.shop-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .shop-info-grid {
        grid-template-columns: 2fr 3fr; /* 2:3比率 */
        gap: 50px;
        align-items: flex-start;
    }
}

.shop-info-image {
    position: relative;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 10px; /* 白枠風 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.shop-info-image img {
    border-radius: calc(var(--border-radius) - 4px);
    width: 100%;
    height: auto;
    display: block;
}

.shop-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-table th, .shop-table td {
    padding: 18px 0;
    border-bottom: 1px solid #DDE5EB;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.shop-table tr:first-child th,
.shop-table tr:first-child td {
    padding-top: 0;
}

.shop-table th {
    width: 100px;
    font-weight: bold;
    color: var(--primary-color);
}

.shop-table td {
    color: var(--text-body);
}

.shop-address-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* 改行させない */
    gap: 12px;
}

.shop-address-wrapper span {
    white-space: nowrap; /* 住所テキスト自体も改行させない */
}

.btn-copy-address {
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.2s ease;
    white-space: nowrap; /* ボタンテキストも改行させない */
    flex-shrink: 0; /* flex内でボタンが潰れるのを防ぐ */
}

.btn-copy-address:hover {
    background: var(--primary-color);
    color: #fff;
}

/* アクセスブロック */
.shop-access-block {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.access-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .access-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.access-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.access-card-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.access-card-text {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.access-card-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: bold;
    line-height: 1.4;
    padding-bottom: 0;
    border-bottom: none;
    min-height: 3.36rem; /* 1.2rem * 1.4 * 2 lines = exactly 2 lines height */
}

.access-card-text p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
#cta-1, #cta-2 {
    text-align: center;
    padding: 70px 20px;
    color: #fff;
    max-width: 100%;
}

#cta-1 h2, #cta-2 h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 10px;
}

.final-cta-sub {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}


.btn-final-web {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 40px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}



.btn-final-web:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


.btn-final-line {
    background-color: var(--line-color);
    color: #fff;
    font-size: 1.05rem;
    font-weight: bold;
    padding: 16px 40px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-final-line:hover {
    background-color: #05b04b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Footer
   ========================================================================== */
#footer {
    background-color: #1A1A1A; /* リメイク仕様：漆黒ではない重厚な墨色 */
    color: #FFFFFF;
    padding: 60px 20px 30px;
    border-top: 1px solid #333333;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 2fr 1fr;
        align-items: flex-start;
    }
}

/* 左カラム */
.footer-logo-img {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
}

.footer-left .footer-nap p {
    color: #AAAAAA;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-left .footer-tel {
    font-size: 1.15rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-top: 10px;
    letter-spacing: 0.05em;
}

/* 中央カラム */
.footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

@media (max-width: 767px) {
    .footer-nav ul {
        grid-template-columns: 1fr; /* スマホでは縦並び */
    }
}

.footer-nav a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem; /* Added to fit without wrapping */
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

/* 右カラム */
.footer-right {
    display: flex;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .footer-right {
        justify-content: flex-end; /* PCでは右寄せ */
    }
}

.footer-sns-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sns-label {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-family-en);
    text-transform: uppercase;
    color: #888888;
    letter-spacing: 0.05em;
}

.footer-sns {
    display: flex;
    gap: 12px;
}

.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-sns a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* Ensure white icon */
}

.footer-sns a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(35, 173, 198, 0.4);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333333;
    display: flex;
    flex-wrap: wrap; /* スマホ用に折り返し許可 */
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888888;
}

.footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom a {
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   Floating QR Code
   ========================================================================== */
#floating-qr {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--line-color);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--line-color);
    text-align: center;
    z-index: 1000;
    width: 200px;
    display: none;
    /* Hidden on mobile */
}

#floating-qr>p.qr-title {
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    background-color: transparent;
    color: #FFFFFF;
    padding: 0;
    margin-bottom: 12px;
    white-space: nowrap;
}

#floating-qr img {
    width: 100%;
    margin-bottom: 5px;
}

#floating-qr .qr-text {
    font-size: 0.8rem;
    color: var(--text-body);
    margin: 0;
}

/* ==========================================================================
   Responsive (Mobile)
   ========================================================================== */
@media (min-width: 992px) {
    #floating-qr {
        display: block;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */

@media (max-width: 991px) {
    .header-nav {
        display: none;
    }

    .hero-content .main-message {
        font-size: clamp(1rem, 5.5vw, 1.4rem);
    }

    .hero-content .sub-message {
        font-size: 1rem;
    }

    /* Consider a hamburger menu for actual production */

    .about-row,
    .about-row.reverse,
    .shop-info {
        grid-template-columns: 1fr;
    }

    .about-row.reverse .about-content,
    .about-row.reverse .about-image {
        order: initial;
    }

    .flow-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .step-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav ul,
    .footer-sns {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .worries-list {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   LP Specific Styles
   ========================================================================== */

/* Intent Bridge */
#intent-bridge {
    background-color: var(--bg-steady); /* [修正A-v2] 感情カテゴリ: --bg-steady（確信・安心・ガイド） */
    padding: var(--section-padding);
}

.intent-bridge-inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.intent-bridge-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary-color);
    margin-bottom: 28px;
    line-height: 1.5;
    text-align: center;
}

.intent-bridge-inner p {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 16px;
    color: var(--text-body);
}

.intent-bridge-highlight {
    background: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    padding: 24px 28px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.intent-bridge-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Concerns (お悩み別) */
#concerns {
    background-color: var(--bg-color);
    padding: var(--section-padding);
}

.concerns-inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.concern-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-speed);
}

.concern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px (0, 0, 0, 0.08);
}

.concern-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.concern-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* Access Steps */
.access-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    counter-reset: step;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .access-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.access-step {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.access-step-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.access-step-body {
    padding: 20px;
}

.access-step-body h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.5;
}

.access-step-body p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Story */
#story {
    background-color: var(--bg-color);
    padding: var(--section-padding);
}

.story-inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.story-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* 追加: 白カードのシャドウ強化 */
}

.story-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.story-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 16px;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.story-quote {
    background: var(--bg-color);
    border-left: 4px solid var(--secondary-color);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-top: 24px;
    font-style: italic;
    color: var(--text-heading);
    font-weight: 500;
}

/* ==========================================================================
   Pricing Section (LP1 specific styles if not in HP)
   ========================================================================== */
.pricing-inner {
    max-width: 960px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: #ffffff;
    padding: 36px 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 24px;
    white-space: nowrap;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: bold;
    margin-bottom: 4px;
}

.price-main {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 8px;
    line-height: 1;
}

.price-normal {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-card.recommended {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pricing-card.recommended .price-main {
    color: var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.pricing-cta {
    margin-top: 48px;
}

/* ==========================================================================
   Floating QR (PC only) and Mobile CTA
   ========================================================================== */
#floating-qr {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--line-color);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--line-color);
    text-align: center;
    z-index: 1000;
    width: 200px;
    display: none;
}

@media (min-width: 992px) {
    #floating-qr {
        display: block;
    }
}

#floating-qr .qr-title {
    font-weight: bold;
    font-size: 0.95rem; /* Reduced to strictly avoid wrapping */
    color: #FFFFFF;
    margin-bottom: 12px;
    white-space: nowrap;
}

#floating-qr img {
    width: 100%;
    margin-bottom: 5px;
}

.mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    padding: 10px 12px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    gap: 8px;
}

.mobile-sticky-cta .btn {
    flex: 1;
    padding: 14px 8px;
    font-size: 0.9rem;
    box-shadow: none;
}

@media (min-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Section 6: 豊富な設備・アメニティ (Amenities)
   ========================================================================== */
.amenities-container {
    padding: 80px 5%;
    background-color: #f9fbff;
}
.speech-badge {
    display: table;
    margin: 0 auto 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    box-shadow: 0 4px 10px rgba(35, 173, 198, 0.3);
}
.speech-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}
.amenities-container h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 50px;
    color: #2c2c2c;
    font-weight: 700;
}
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}
.amenity-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.amenity-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.amenity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.amenity-card:hover .amenity-img-wrapper img {
    transform: scale(1.05);
}
.amenity-content {
    padding: 30px 25px;
    flex-grow: 1;
}
.amenity-content h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.amenity-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #5fb4d4;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}
.amenity-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .amenity-card {
        width: calc(50% - 15px);
    }
}
@media (max-width: 600px) {
    .amenities-container {
        padding: 50px 5%;
    }
    .amenities-container h2 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
    }
    .amenity-card {
        width: 100%;
    }
}

/* ==========================================================================
   Flow Section - Horizontal Timeline (Reference Image Design)
   ========================================================================== */
.flow-horizontal-section {
    padding: 60px 0 0;
    width: 100%;
}

.flow-steps-wrapper {
    width: 100%;
    margin-top: 40px;
}

.flow-step {
    position: relative;
    padding: 60px 0;
    width: 100%;
}



.bg-white {
    background-color: #ffffff;
}

.flow-step-inner {
    display: flex;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.flow-step-image {
    width: 40%;
    flex-shrink: 0;
}

.flow-step-image img {
    width: 100%;
    border-radius: 4px; /* subtle rounding */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.flow-step-content {
    width: 60%;
    text-align: left;
}

.flow-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    gap: 15px;
}

.step-badge-blue {
    background-color: #5fb4d4;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 20px;
    border-radius: 30px; /* pill shape */
    white-space: nowrap;
    letter-spacing: 1px;
}

.step-title-inline {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.step-desc {
    font-size: 1.05rem; /* テキストサイズを大きくして読みやすく */
    color: #4a4a4a;
    line-height: 1.8;
}

/* Triangles */


.flow-triangle-down-white {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #ffffff;
    z-index: 10;
}

@media (max-width: 768px) {
    .flow-step-inner {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    .flow-step-image {
        width: 100%;
    }
    .flow-step-content {
        width: 100%;
    }
    .flow-step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================================
   Trainer detailed info list
   ========================================================================== */
.trainer-info-list {
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.trainer-info-item {
    display: flex;
    margin-bottom: 8px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}
.trainer-info-item:last-child {
    border-bottom: none;
}
.ti-label {
    flex: 0 0 85px; /* メッセージの5文字が改行しないように少し広げる */
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
}
.ti-value {
    flex: 1;
    color: #4a4a4a;
    line-height: 1.5;
}

/* ==========================================================================
   Bottom Stick CTA / Google Map Btn
   ========================================================================== */
.btn-google-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #5fb4d4; /* Matching the Web booking button */
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    margin-top: 5px;
    transition: background 0.3s;
}
.btn-google-map:hover {
    background-color: #4AA0C0;
    color: #fff;
}
.btn-google-map i {
    margin-right: 8px;
}







.bg-blue {
    background-color: #eaf5fa; /* light blue */
}

.flow-triangle-down-blue {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #eaf5fa;
    z-index: 10;
}

/* ==========================================================================
   Bottom Stick CTA / Google Map Btn
   ========================================================================== */
.bottom-cta-banner {
    background-image: linear-gradient(rgba(35, 173, 198, 0.45), rgba(35, 173, 198, 0.55)), url('./image_final/cta_background.png');
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    
}
.bottom-cta-banner h2,
.bottom-cta-banner h3 {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: bold;
    letter-spacing: 2px;
}



/* ==========================================================================
   Store Info Refinements
   ========================================================================== */
.shop-table th {
    padding-right: 30px; /* Increased separation between label and value */
    padding-top: 15px;
    padding-bottom: 15px;
    vertical-align: top;
    white-space: nowrap;
}
.shop-table td {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.6;
}

.shop-address-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.shop-address-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

/* Slideshow styles */
.shop-info-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.shop-info-slideshow img.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.shop-info-slideshow img.slide.active {
    opacity: 1;
}


/* Hero sub-message highlight */
.hero-highlight {
    color: var(--primary-color);
    font-size: 1.25em;
    font-weight: bold;
}





/* Update Address Wrapper Layout */
.shop-address-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.shop-address-line1 {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.shop-address-line2 {
    margin-top: 5px;
}

/* Copy Icon Button */
.btn-copy-icon {
    background: transparent;
    border: 1px solid #ccc;
    color: #555;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    padding: 0;
}
.btn-copy-icon:hover {
    background: #f0f0f0;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-copy-icon:active {
    transform: scale(0.95);
}

.btn-web {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-web:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-line {
    background-color: var(--line-color);
    color: #fff;
    border: 2px solid var(--line-color);
}

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


.btn-web-outline {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1.15rem;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-web-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(35, 173, 198, 0.3);
}

.btn-line-outline {
    background-color: #fff;
    color: var(--line-color);
    border: 2px solid var(--line-color);
    font-size: 1.15rem;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-line-outline:hover {
    background-color: var(--line-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

/* =========================================
   PHASE 27: Red Aux CTAs and Yellow-Green Accents
   ========================================= */
.btn-hotpepper {
    border-color: #e4007f !important;
    color: #e4007f !important;
}
.btn-hotpepper:hover {
    background-color: #e4007f !important;
    color: #ffffff !important;
}
.btn-rakuten {
    border-color: #bf0000 !important;
    color: #bf0000 !important;
}
.btn-rakuten:hover {
    background-color: #bf0000 !important;
    color: #ffffff !important;
}
.btn-aux-red {
    display: inline-block;
    width: 100%;
    max-width: 350px;
    background-color: #ffffff;
    color: #e60000;
    font-weight: bold;
    padding: 15px 20px;
    border: 2px solid #e60000;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
    box-sizing: border-box;
}
.btn-aux-red:hover {
    background-color: #e60000;
    color: #ffffff;
}

.card-yellowgreen {
    border-left: 8px solid #8cc63f !important;
}
.title-yellowgreen {
    color: #8cc63f !important;
}
.highlight-yellowgreen {
    background: linear-gradient(transparent 60%, rgba(140, 198, 63, 0.4) 60%);
    font-weight: bold;
}

/* Phase 28: Universal CTA Button Matrix Lock */
.cta-universal-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 350px !important;
    height: 65px !important;
    font-size: 1.05rem !important;
    line-height: 1.2 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}
.worries-universal-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 60px !important;
    font-size: 1.05rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
.cta-grid-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-content: center;
    max-width: 730px;
    margin: 0 auto;
}
@media(max-width: 768px) {
    .cta-grid-container { grid-template-columns: 1fr; }
}

/* Phase 29: Button Alignments and QR text */
.btn-web, .btn-line, .btn-web-outline, .btn-line-outline {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}
#floating-qr .qr-title, #floating-qr>p.qr-title {
    font-size: 1.15rem !important;
    text-align: center !important;
    letter-spacing: 0 !important;
    width: 100% !important;
    margin-bottom: 8px !important;
}


/* =======================================================
   PHASE 30: MOBILE DEDICATED OVERHAUL (max-width: 768px)
   ======================================================= */
.sp-sticky-nav { display: none; }

@media (max-width: 900px) {
    body {
        padding-bottom: 70px !important;
        overflow-x: hidden !important;
    }
    .sp-sticky-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 70px;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 9999;
    }
    .sp-sticky-nav a {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 0.9rem;
        font-weight: bold;
        text-decoration: none;
        color: #fff;
    }
    .sticky-nav-kirei {
        background-color: var(--primary-color);
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    .sticky-nav-line {
        background-color: var(--line-color);
    }
    .sp-sticky-nav i {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .hero-content {
        padding: 20px !important;
        margin-top: 60px !important;
    }
    .hero-content h2 {
        font-size: 1.8rem !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }

    .about-row.card {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
    }
    .card-yellowgreen {
        border-left: none !important;
        border-top: 5px solid #8cc63f !important;
    }
    .about-row.card:not(.card-yellowgreen) {
        border-left: none !important;
        border-top: 5px solid #5fb4d4 !important;
    }

    .worries-universal-btn {
        font-size: 0.85rem !important;
        padding: 10px !important;
    }

    #floating-qr { display: none !important; }

    .review-grid-wrapper {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 10px !important;
    }
    #review-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        transform: none !important;
        transition: none !important;
        width: max-content !important;
    }
    .review-card {
        scroll-snap-align: start !important;
        flex: 0 0 85vw !important;
        margin-right: 15px !important;
    }
    .review-controls { display: none !important; }
}


@media (max-width: 900px) {
    /* Critical iOS rendering crash recovery */
    .reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
    
    /* Touch Target & Thumb ergonomics */
    .btn, a.btn, a.btn-line, a.btn-web, a.btn-hotpepper, a.btn-rakuten {
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Global spacing and layout normalization */
    section { padding-top: 50px !important; padding-bottom: 50px !important; }
    #hero { padding-top: 0 !important; }
    .hero-content { margin-top: 20px !important; }
    
    img { max-width: 100vw !important; height: auto !important; }
}


/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        align-items: flex-start !important; /* Prevents stretching if flex height is weird */
    }
    .header-logo {
        max-width: 50% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 140px !important;
    }
    .hero-split {
        overflow: hidden !important;
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 30px !important;
    }
    .hero-image-wrapper {
        width: 90vw !important;
        height: 90vw !important;
        max-width: 380px !important;
        max-height: 380px !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
    }
    .hero-image-bg-circle {
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        transform: none !important;
    }
    .hero-masked-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .main-message {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        line-height: 1.4 !important;
    }
    .hero-actions {
        flex-direction: column !important;
    }
    .hero-actions .btn {
        width: 100% !important;
        text-align: center !important;
    }
}


/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    .hero-split {
        overflow: hidden !important;
        padding-top: 80px !important; /* give space to header */
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 30px !important;
        order: -1;
    }
    .hero-image-wrapper {
        width: 85vw !important;
        height: 85vw !important;
        max-width: 350px !important;
        max-height: 350px !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
    }
    .hero-image-bg-circle {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    .hero-masked-image {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */
.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    .hero-split {
        overflow: hidden !important;
        padding-top: 80px !important; /* give space to header */
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 10px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        margin-top: 15px !important;
    }
    .about-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 100vw !important;
        max-width: 100vw !important;
        flex: 0 0 100vw !important;
        padding: 5% 8% !important;
        box-sizing: border-box !important;
    }
    .review-grid {
        gap: 0 !important;
    }
    .hero-image-wrapper {
        width: 85vw !important;
        height: 85vw !important;
        max-width: 350px !important;
        max-height: 350px !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
    }
    .hero-image-bg-circle {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    .hero-masked-image {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */
.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    .hero-split {
        overflow: hidden !important;
        padding-top: 80px !important; /* give space to header */
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 10px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        margin-top: 15px !important;
    }
    .about-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 100vw !important;
        max-width: 100vw !important;
        flex: 0 0 100vw !important;
        padding: 5% 8% !important;
        box-sizing: border-box !important;
    }
    .review-grid {
        gap: 0 !important;
    }
    .hero-image-wrapper {
        width: 85vw !important;
        height: 85vw !important;
        max-width: 350px !important;
        max-height: 350px !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
    }
    .hero-image-bg-circle {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    .hero-masked-image {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */

.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    .hero-split {
        overflow: hidden !important;
        padding-top: 110px !important; /* give extra space to header to stop overlap */
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        margin-top: 15px !important;
    }
    .about-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }
    .review-grid {
        gap: 10px !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */

.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    .hero-split {
        overflow: hidden !important;
        padding-top: 110px !important; /* give extra space to header to stop overlap */
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }
    .review-grid {
        gap: 10px !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */

.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.back-to-top:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    /* Force Shop Info Elements to Wrap */
    .shop-info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .shop-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    .shop-table th, .shop-table td {
        word-break: break-all !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }
    .shop-info-slideshow, .shop-info-slideshow img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .shop-address-wrapper {
        display: block !important;
    }
    
    .hero-split {
        overflow: hidden !important;
        padding-top: 110px !important; /* give extra space to header to stop overlap */
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    
    /* Make back to top button dodge the sticky footer */
    .back-to-top {
        bottom: 120px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }
    .review-grid {
        gap: 10px !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */

.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.back-to-top:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* --- MOBILE HOTFIXES --- */
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    /* Force Shop Info Elements to Wrap */
    .shop-info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .shop-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    .shop-table th, .shop-table td {
        word-break: break-all !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }
    .shop-info-slideshow, .shop-info-slideshow img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .shop-address-wrapper {
        display: block !important;
    }
    
    .hero-split {
        overflow: hidden !important;
        padding-top: 110px !important; /* give extra space to header to stop overlap */
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    
    /* Make back to top button dodge the sticky footer */
    .back-to-top {
        bottom: 120px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-self: stretch !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }
    .review-grid {
        gap: 15px !important;
        align-items: stretch !important;
        display: flex !important;
    }
    .review-header {
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .review-episode {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */

.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.back-to-top:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* =========================================
   MOBILE LAYOUT HOTFIXES
   ========================================= */
   
#hero {
    padding-top: 140px !important; /* increased to prevent header overlap */
    padding-bottom: 30px !important;
}
.hero-split {
    overflow: hidden !important;
    width: 100% !important;
}
@media (max-width: 991px) {
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    /* Force Shop Info Elements to Wrap */
    .shop-info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .shop-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    .shop-table th, .shop-table td {
        word-break: break-all !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }
    .shop-info-slideshow, .shop-info-slideshow img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .shop-address-wrapper {
        display: block !important;
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    
    /* Make back to top button dodge the sticky footer */
    .back-to-top {
        bottom: 120px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-self: stretch !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }
    .review-grid {
        gap: 15px !important;
        align-items: stretch !important;
        display: flex !important;
    }
    .review-header {
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .review-episode {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}


/* --- GLOBAL HOTFIXES --- */

.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.back-to-top:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* =========================================
   MOBILE LAYOUT HOTFIXES
   ========================================= */
   
#hero {
    padding-top: 140px !important; /* increased to prevent header overlap */
    padding-bottom: 30px !important;
}
.hero-split {
    overflow: hidden !important;
    width: 100% !important;
}
@media (max-width: 991px) {
    /* --- PC / SP VISIBILITY --- */
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
    
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    /* Force Shop Info Elements to Wrap */
    .shop-info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .shop-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    .shop-table th, .shop-table td {
        word-break: break-all !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }
    .shop-info-slideshow, .shop-info-slideshow img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .shop-address-wrapper {
        display: block !important;
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    
    /* Make back to top button dodge the sticky footer */
    .back-to-top {
        bottom: 120px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-self: stretch !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }
    .review-grid {
        gap: 15px !important;
        align-items: stretch !important;
        display: flex !important;
    }
    /* Dynamic Mobile Review Restructuring */
    .review-bubble {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    .review-bubble::after, .review-quote .highlight-text, .review-quote br {
        display: none !important;
    }
    .review-user {
        display: block !important;
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .feedback-heading {
        display: none !important;
    }
    .review-header {
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .review-episode {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}

/* =========================================
   MOBILE LAYOUT EXCLUSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
    
    
.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.back-to-top:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* =========================================
   MOBILE LAYOUT HOTFIXES
   ========================================= */
   
    #hero {
        padding-top: 140px !important; /* increased to prevent header overlap */
        padding-bottom: 30px !important;
    }
    .hero-split {
        overflow: hidden !important;
        width: 100% !important;
    }
    
    /* --- PC / SP VISIBILITY --- */
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
    
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    /* Force Shop Info Elements to Wrap */
    .shop-info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .shop-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    .shop-table th, .shop-table td {
        word-break: break-all !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }
    .shop-info-slideshow, .shop-info-slideshow img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .shop-address-wrapper {
        display: block !important;
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    
    /* Make back to top button dodge the sticky footer */
    .back-to-top {
        bottom: 120px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-self: stretch !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }
    .review-grid {
        gap: 15px !important;
        align-items: stretch !important;
        display: flex !important;
    }
    /* Dynamic Mobile Review Restructuring */
    .review-bubble {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    .review-bubble::after, .review-quote .highlight-text, .review-quote br {
        display: none !important;
    }
    .review-user {
        display: block !important;
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .feedback-heading {
        display: none !important;
    }
    .review-header {
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .review-episode {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}

/* =========================================
   GLOBAL OVERRIDES (PC & SP)
   ========================================= */
.sp-only {
    display: none !important;
}

/* =========================================
   MOBILE LAYOUT EXCLUSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
    
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
        position: relative;
        width: 100%;
    }
.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.back-to-top:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* =========================================
   MOBILE LAYOUT HOTFIXES
   ========================================= */
   
    #hero {
        padding-top: 140px !important; /* increased to prevent header overlap */
        padding-bottom: 30px !important;
    }
    .hero-split {
        overflow: hidden !important;
        width: 100% !important;
    }
    
    /* --- PC / SP VISIBILITY --- */
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
    
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    /* Force Shop Info Elements to Wrap */
    .shop-info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .shop-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    .shop-table th, .shop-table td {
        word-break: break-all !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }
    .shop-info-slideshow, .shop-info-slideshow img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .shop-address-wrapper {
        display: block !important;
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    
    /* Make back to top button dodge the sticky footer */
    .back-to-top {
        bottom: 120px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-self: stretch !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }
    .review-grid {
        gap: 15px !important;
        align-items: stretch !important;
        display: flex !important;
    }
    /* Dynamic Mobile Review Restructuring */
    .review-bubble {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    .review-bubble::after, .review-quote .highlight-text, .review-quote br {
        display: none !important;
    }
    .review-user {
        display: block !important;
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .feedback-heading {
        display: none !important;
    }
    .review-header {
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .review-episode {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Keep Hero Image Square / Natural without circular crops */
    .hero-image-wrapper {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        margin: 0 auto !important;
        position: relative !important;
        right: auto !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: auto !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: contain !important;
        border-radius: 8px !important; /* Slight rectangle rounding */
        position: static !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
}

/* =========================================
   GLOBAL OVERRIDES (PC & SP)
   ========================================= */
.sp-only {
    display: none !important;
}

/* =========================================
   MOBILE LAYOUT EXCLUSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
    
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
        position: relative;
        width: 100%;
    }
.bg-beige {
    background-color: #FAF4E8 !important; /* Gentle beige/sand color */
}
.flow-triangle-down-beige {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #FAF4E8;
    z-index: 10;
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}
.back-to-top:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}

/* --- FAQ TABS --- */
.faq-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 18px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.faq-tab.active {
    background: var(--primary-color);
    color: #fff;
}
.faq-tab-pane {
    display: none;
}
.faq-tab-pane.active {
    display: block;
}

/* --- TABLE OVERFLOW HOTFIX --- */
.shop-address-line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.shop-address-line1 span {
    word-break: break-all;
}

/* =========================================
   MOBILE LAYOUT HOTFIXES
   ========================================= */
   
    #hero {
        padding-top: 140px !important; /* increased to prevent header overlap */
        padding-bottom: 30px !important;
    }
    .hero-split {
        overflow: hidden !important;
        width: 100% !important;
    }
    
    /* --- PC / SP VISIBILITY --- */
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
    
    #header {
        padding: 15px 5% !important;
        background: rgba(255, 255, 255, 0.95); /* Ensure readability */
    }
    .header-logo {
        max-width: 60% !important;
    }
    .header-logo img {
        height: auto !important;
        width: 100% !important;
        max-width: 160px !important;
    }
    .header-actions {
        display: none !important;
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 5%;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .hamburger-btn span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }
    .hamburger-btn span:nth-child(1) { top: 0px; }
    .hamburger-btn span:nth-child(2) { top: 11px; }
    .hamburger-btn span:nth-child(3) { top: 22px; }
    
    .hamburger-btn.active span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    /* Mobile Nav Overlay */
    #header-nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
    }
    #header-nav.active {
        transform: translateY(0);
        visibility: visible;
    }
    #header-nav ul {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center;
        padding: 0;
    }
    #header-nav a {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
    }
    
    /* Standardize horizontal padding for all sections */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        padding-left: 5% !important;
        padding-right: 5% !important;
        box-sizing: border-box !important;
    }
    
    /* Force Shop Info Elements to Wrap */
    .shop-info-block {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .shop-table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    .shop-table th, .shop-table td {
        word-break: break-all !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        padding: 5px 0 !important;
    }
    .shop-info-slideshow, .shop-info-slideshow img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .shop-address-wrapper {
        display: block !important;
    }
    .hero-image-col {
        height: auto !important;
        margin-bottom: 20px !important;
        order: -1;
    }
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
    }
    .about-image img, .persona-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    .persona-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 15px !important;
        text-align: center;
    }
    
    /* Sticky bottom nav 2x2 override */
    .sp-sticky-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2px !important;
        height: auto !important;
        padding: 0 !important;
    }
    .sp-sticky-nav a {
        padding: 15px 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    body {
        padding-bottom: 120px !important; /* clear 2 rows of sticky nav */
    }
    
    /* Make back to top button dodge the sticky footer */
    .back-to-top {
        bottom: 120px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    .review-slider-container {
        padding: 0 !important;
    }
    .review-grid-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .review-card {
        width: 90vw !important;
        max-width: 90vw !important;
        flex: 0 0 90vw !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-self: stretch !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }
    .review-grid {
        gap: 15px !important;
        align-items: stretch !important;
        display: flex !important;
    }
    /* Dynamic Mobile Review Restructuring */
    .review-bubble {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    .review-bubble::after, .review-quote .highlight-text, .review-quote br {
        display: none !important;
    }
    .review-user {
        display: block !important;
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .feedback-heading {
        display: none !important;
    }
    .review-header {
        font-weight: bold !important;
        font-size: 1.1rem !important;
        border-bottom: 2px solid var(--primary-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: var(--primary-color) !important;
    }
    .review-episode {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .review-card p, .review-card h4, .review-card span {
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
    }
    .review-feedback, .review-quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* --- Anchor Fix for Hamburger Menu --- */
    #hero, #about, #worries, #reviews, #menu, #flow, #trainers, #amenities, #policy, #info, #faq, #access {
        scroll-margin-top: 80px !important;
    }

    /* Keep Hero Image Full Screen Overlay (Neuler.jp Benchmark) */
    #hero {
        padding: 0 !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-height: 85vh !important;
    }
    .hero-split {
        flex-direction: column !important;
    }
    .hero-inner {
        position: static !important;
    }
    .hero-image-col {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 0 !important;
        margin: 0 !important;
        order: unset !important;
    }
    .hero-image-wrapper {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        margin: 0 !important;
        position: absolute !important;
        border-radius: 0 !important;
    }
    .hero-image-bg-circle {
        display: none !important; /* Remove decorative background circle */
    }
    .hero-masked-image {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: cover !important;
        border-radius: 0 !important; 
        position: absolute !important;
        filter: brightness(0.6) !important; /* Darken wrapper for text pop */
    }
    
    .hero-content {
        position: relative !important;
        z-index: 2 !important;
        color: #fff !important;
        padding: 40px 5% !important;
        margin-top: 80px !important;
        text-align: center !important;
        background: transparent !important;
    }
    .main-message {
        font-size: clamp(1.5rem, 6.5vw, 1.9rem) !important;
        line-height: 1.4 !important;
        text-align: center !important;
        color: #fff !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.6) !important;
    }
    .main-message .highlight-blue {
        color: #fff !important; /* Override theme blue for contrast */
    }
    .sub-message {
        text-align: center !important;
        margin-top: 15px !important;
        color: #fff !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
    }
    .sub-message .hero-highlight {
        color: #FFD700 !important; /* Make highlight pop against dark bg */
    }
    .hero-actions-wrapper {
        text-align: center !important;
        margin-top: 30px !important;
    }
    .hero-lead-text, .hero-note {
        color: #fff !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
    }
    .main-message {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        line-height: 1.4 !important;
        text-align: center;
    }
    .sub-message {
        text-align: center;
        margin-top: 15px;
    }
    .hero-actions-wrapper {
        text-align: center;
        margin-top: 30px;
    }
    /* Footer Force Center Alignment */
    .footer-right, .footer-sns-wrap {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .footer-sns {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
    }
}

/* Force SP Hero to be absolute rectangle without any background circles */
@media (max-width: 900px) {
    .hero-image-bg-circle {
        display: none !important;
    }
    .hero-section {
        overflow: hidden !important;
    }
    .hero-image-wrapper, .hero-masked-image {
        border-radius: 0 !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }

    /* Hero Text Staggered Animation */
    .hero-content .main-message {
        opacity: 0;
        transform: translateY(20px) !important;
        animation: spFadeInUp 1.5s ease-out forwards;
        animation-delay: 0.4s;
    }
    .hero-content .sub-message {
        opacity: 0;
        transform: translateY(20px) !important;
        animation: spFadeInUp 1.5s ease-out forwards;
        animation-delay: 1.3s;
    }
    .hero-content .hero-actions-wrapper {
        opacity: 0;
        transform: translateY(20px) !important;
        animation: spFadeInUp 1.5s ease-out forwards;
        animation-delay: 2.2s;
    }

    /* Limit price yellow highlighting exclusively to mobile views */
    .sp-yellow-price {
        color: #FFD700 !important;
    }
}

@keyframes spFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
