/* ============================================
   リラクゼーションサロン 百笑 - Warm & Friendly Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Warm & Natural Palette */
    --primary: #6b8e6b;
    /* 落ち着いた緑（和の雰囲気） */
    --primary-light: #8ba88b;
    --primary-dark: #4a6b4a;
    --accent: #d4a574;
    /* 温かみのあるオレンジベージュ */
    --accent-light: #e8c9a8;
    --accent-hover: #c4915e;

    /* Warm Neutrals */
    --white: #ffffff;
    --off-white: #faf8f5;
    --cream: #f5f0e8;
    --warm-gray-100: #ebe6df;
    --warm-gray-200: #d4cdc3;
    --warm-gray-400: #9a9189;
    --warm-gray-600: #6b635a;
    --warm-gray-800: #3d3833;
    --brown: #5c4a3a;

    /* Typography */
    --font-display: 'Zen Maru Gothic', sans-serif;
    --font-sans: 'Noto Sans JP', sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 100px);
    --container-width: 1100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(92, 74, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(92, 74, 58, 0.1);
    --shadow-lg: 0 10px 40px rgba(92, 74, 58, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.9;
    color: var(--warm-gray-800);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.logo-sub {
    font-size: 11px;
    color: var(--warm-gray-400);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--warm-gray-800);
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--accent);
}

.btn-nav {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--warm-gray-800);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section - Premium Animated Version
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

/* Background image with subtle zoom animation */
.hero-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Gradient overlay with animated texture */
.hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(74, 107, 74, 0.92);
    z-index: 1;
}

/* Removing gradients from the green background to make it solid as requested */
.hero-bg::before {
    display: none;
}

@keyframes gradientShift {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 35%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 85%;
    top: 25%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    left: 40%;
    top: 80%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.8);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.7;
    }
}

/* Gradient orbs */
/* Hiding gradient orbs to make the background solid as requested */
.hero-orb {
    display: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 165, 116, 0.25);
    top: -100px;
    right: -100px;
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 168, 139, 0.3);
    bottom: -50px;
    left: -100px;
    animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--white);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Hero title with staggered lines */
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero h1 .title-line {
    display: block;
    overflow: hidden;
}

.hero h1 .title-line.accent {
    color: var(--accent-light);
    text-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
}

/* Hero description */
.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 2;
}

/* Hero features with pulse animation */
.hero-features {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--white);
    transition: var(--transition-base);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 18px;
}

.feature-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

.hero-feature:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.hero-feature:nth-child(2) .feature-icon {
    animation-delay: 0.3s;
}

.hero-feature:nth-child(3) .feature-icon {
    animation-delay: 0.6s;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Hero buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 18px 32px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-base);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.hero-scroll span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    position: relative;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(15px);
        opacity: 0.5;
    }
}

/* Hero wave decoration */
.hero-wave {
    position: absolute;
    bottom: -1px;
    /* Slight overlap to prevent 1px gap line on mobile */
    left: 0;
    right: 0;
    height: 80px;
    z-index: 4;
    color: var(--white);
}

.hero-wave svg {
    display: block;
    /* Remove baseline spacing */
    width: 100%;
    height: 100%;
}

/* Slide-up animation system */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-slide-up.delay-3 {
    animation-delay: 0.6s;
}

.animate-slide-up.delay-4 {
    animation-delay: 0.8s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-feature {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        bottom: 100px;
    }

    .hero-bg-img {
        object-position: 75% center;
    }

    .hero-orb {
        display: none;
    }

    .particle {
        width: 4px;
        height: 4px;
    }
}


/* ============================================
   Section Common Styles
   ============================================ */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.4;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: var(--warm-gray-600);
    max-width: 550px;
    margin: 0 auto;
}

/* Fade in animations */
.fade-in,
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ============================================
   Concept Section
   ============================================ */
.concept {
    background: linear-gradient(to bottom, var(--white) 0%, var(--cream) 80px, var(--cream) 100%);
}

.concept-content {
    max-width: 900px;
    margin: 0 auto;
}

.concept-text {
    text-align: center;
    margin-bottom: 50px;
}

.concept-main {
    font-size: 18px;
    color: var(--warm-gray-800);
    margin-bottom: 20px;
    line-height: 2;
}

.concept-sub {
    font-size: 15px;
    color: var(--warm-gray-600);
    line-height: 2;
}

.concept-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.concept-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: var(--transition-base);
    overflow: hidden;
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.concept-img {
    height: 160px;
    overflow: hidden;
}

.concept-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.concept-card:hover .concept-img img {
    transform: scale(1.05);
}

.concept-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0 8px;
}

.concept-card p {
    font-size: 13px;
    color: var(--warm-gray-600);
    padding: 0 16px 20px;
}

.concept-plus {
    font-size: 32px;
    color: var(--accent);
    font-weight: 500;
}

/* ============================================
   Kodawari (Commitment) Section
   ============================================ */
.kodawari {
    background: var(--white);
}

.kodawari-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.kodawari-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.kodawari-item.reverse {
    flex-direction: row-reverse;
}

.kodawari-img {
    flex: 0 0 45%;
    height: 280px;
    overflow: hidden;
}

.kodawari-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.kodawari-item:hover .kodawari-img img {
    transform: scale(1.05);
}

.kodawari-text {
    flex: 1;
    padding: 30px;
}

.kodawari-text h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 16px;
}

.kodawari-text p {
    font-size: 15px;
    color: var(--warm-gray-600);
    line-height: 2;
}

/* ============================================
   Menu Section
   ============================================ */
.menu {
    background: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.menu-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.menu-img {
    height: 180px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-img img {
    transform: scale(1.08);
}

.menu-content {
    padding: 20px;
    text-align: center;
}

.menu-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--warm-gray-800);
    margin-bottom: 8px;
}

.menu-time {
    font-size: 13px;
    color: var(--warm-gray-400);
    margin-bottom: 4px;
}

.menu-price {
    font-size: 14px;
    color: var(--primary);
}

.menu-price span {
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-display);
}

.menu-note {
    text-align: center;
    font-size: 13px;
    color: var(--warm-gray-400);
}

/* ============================================
   Therapist Section
   ============================================ */
.therapist {
    background: var(--off-white);
}

.therapist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.therapist-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.therapist-image img {
    width: 100%;
    height: auto;
    display: block;
}

.therapist-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 20px;
}

.therapist-text p {
    font-size: 15px;
    color: var(--warm-gray-600);
    line-height: 2;
    margin-bottom: 24px;
}

.therapist-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.therapist-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border: 1px solid var(--warm-gray-100);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--warm-gray-800);
}



/* ============================================
   Products Section
   ============================================ */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(145deg, var(--cream) 0%, var(--warm-gray-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.product-content {
    padding: 28px;
}

.product-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--warm-gray-800);
    margin-bottom: 10px;
}

.product-content p {
    font-size: 14px;
    color: var(--warm-gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.btn-secondary:hover {
    color: var(--accent);
    gap: 10px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--warm-gray-100);
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.contact-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 36px;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--warm-gray-800);
}

/* ============================================
   Access Section
   ============================================ */
.access {
    background: var(--off-white);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.access-building {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.access-building img {
    width: 100%;
    height: auto;
}

.access-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 16px;
}

.access-address {
    font-size: 15px;
    color: var(--warm-gray-600);
    line-height: 2;
    margin-bottom: 20px;
}

.access-details {
    margin-bottom: 24px;
}

.access-details p {
    font-size: 14px;
    color: var(--warm-gray-600);
    margin-bottom: 8px;
}

.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
}

.access-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--brown);
    color: var(--warm-gray-200);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-copy {
    font-size: 12px;
    color: var(--warm-gray-400);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {

    .access-content,
    .therapist-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 80px 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--warm-gray-100);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 18px 0;
        color: var(--warm-gray-800) !important;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .nav-menu a.btn-nav {
        background: var(--primary);
        color: var(--white) !important;
        margin-top: 20px;
        border-radius: var(--radius-md);
    }

    .menu-footer {
        margin-top: auto;
        padding-top: 40px;
        text-align: center;
        border-top: none !important;
    }

    .menu-address {
        font-size: 13px;
        color: var(--warm-gray-400);
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .menu-tel {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        display: block;
        margin-bottom: 20px;
    }

    .menu-sns {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .sns-link {
        font-size: 14px !important;
        color: var(--warm-gray-600) !important;
        text-decoration: underline !important;
    }

    .mobile-only {
        display: block !important;
    }

    footer {
        padding-bottom: 100px !important;
    }
}

@media (min-width: 769px) {

    .mobile-only,
    .sp-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .concept-visual {
        flex-direction: column;
        gap: 20px;
    }

    .concept-card {
        max-width: 100%;
    }

    .concept-plus {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .kodawari-item,
    .kodawari-item.reverse {
        flex-direction: column;
        gap: 0;
    }

    .kodawari-img {
        height: 220px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .kodawari-text {
        padding: 30px 20px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        background: var(--white);
    }

    .menu-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }



    .therapist-content {
        gap: 30px;
    }

    .therapist-image {
        height: 250px;
    }

    .access-content {
        gap: 30px;
    }

    .access-map {
        height: 250px;
    }

    .sp-only {
        display: inline !important;
    }
}

/* ============================================
   Blog Section & Pages
   ============================================ */

/* Blog Section on Homepage */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card a {
    display: block;
}

.blog-card-thumbnail {
    height: 180px;
    overflow: hidden;
    background: var(--warm-gray-100);
}

.blog-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-thumbnail img {
    transform: scale(1.05);
}

.placeholder-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-thumbnail::after {
    content: '📝';
    font-size: 40px;
    opacity: 0.5;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content time {
    font-size: 12px;
    color: var(--warm-gray-400);
}

.blog-card-content h2,
.blog-card-content h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--brown);
    margin-top: 8px;
    line-height: 1.5;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--warm-gray-600);
    margin-top: 10px;
    line-height: 1.7;
}

.blog-card-content .read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

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

.blog-empty {
    text-align: center;
    padding: 40px;
    color: var(--warm-gray-600);
}

/* Blog Page */
.blog-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.page-hero {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--brown);
    margin: 16px 0;
}

.page-hero p {
    color: var(--warm-gray-600);
}

.empty-message {
    text-align: center;
    padding: 80px 20px;
    color: var(--warm-gray-600);
}

/* Article Page */
.article-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.article-header .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 14px;
}

.article-header time {
    font-size: 14px;
    color: var(--warm-gray-400);
}

.article-header h1 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--brown);
    margin-top: 16px;
    line-height: 1.5;
}

.article-thumbnail {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: auto;
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px 60px;
    font-size: 17px;
    line-height: 2;
    color: var(--warm-gray-800);
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--brown);
    margin: 50px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--brown);
    margin: 40px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content strong {
    color: var(--primary);
}

.article-cta {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--brown);
    margin-bottom: 12px;
}

.article-cta p {
    color: var(--warm-gray-600);
    margin-bottom: 20px;
}

/* Related Articles */
.related-articles {
    background: var(--cream);
    padding: 60px 0;
}

.related-articles h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--brown);
    text-align: center;
    margin-bottom: 40px;
}

.related-articles .blog-grid {
    margin-bottom: 0;
}

.related-articles .blog-card-content h3 {
    font-size: 15px;
}

/* Responsive Blog */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-thumbnail {
        height: 200px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-content {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-cta {
        padding: 30px 20px;
        margin: 0 20px 40px;
    }
}

/* ============================================
   Floating CTA (Mobile Only)
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.floating-cta.visible {
    transform: translateY(0);
}

.cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.cta-item.reserve {
    background: var(--accent);
}

.cta-item.shop {
    background: var(--primary);
}

.cta-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

@media (min-width: 769px) {
    .floating-cta {
        display: none;
    }
}