/*
Theme Name: 睡月 SUIGETSU
Theme URI: https://headspa-suigetsu.com
Author: 
Author URI: 
Description: ドライヘッドスパ専門店 睡月のオリジナルWordPressテーマ
Version: 1.0.0
Text Domain: suigetsu
*/

/* 高級個室風・黒ベース金色装飾デザイン */
:root {
    /* 高級個室風カラーパレット */
    --primary-color: #1A1A1A; /* 深い黒 */
    --secondary-color: #2C2C2C; /* ダークグレー */
    --accent-color: #C4A876; /* ゴールド - 明度アップ */
    --gold-light: #D4BE93; /* ライトゴールド - 視認性向上 */
    --gold-dark: #A18F68; /* ダークゴールド */
    --gold-bright: #E2D0A8; /* ブライトゴールド */
    --light-bg: #262626; /* ダーク背景 */
    --white: #F5F5F5; /* 控えめな白 */
    --pure-white: #FFFFFF; /* 純白（必要時のみ） */
    --dark-bg: #0F0F0F; /* 最も深い黒 */
    --text-gold: #B69F72; /* テキスト用ゴールド */
    --text-light: #E8E8E8; /* 薄いテキスト - 視認性向上 */
    --text-primary: #F5F5F5; /* メインテキスト */
    --text-secondary: #D0D0D0; /* サブテキスト */
    --border-gold: #B69F72; /* ゴールドボーダー */
    --shadow-dark: rgba(0, 0, 0, 0.8); /* ダークシャドウ */
    
    /* タイポグラフィ - 明朝体最適化 */
    --font-primary: '游明朝', 'Yu Mincho', 'Noto Serif JP', 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', serif;
    --font-secondary: '游明朝', 'Yu Mincho', serif; /* 見出し用 */
    --font-size-xl: 3.4rem;
    --font-size-lg: 2.8rem;
    --font-size-md: 2.0rem;
    --font-size-base: 1.4rem;
    --font-size-sm: 1.2rem;
    --font-size-xs: 1.0rem;
    --line-height-relaxed: 1.8; /* 明朝体に適した行間 */
    --line-height-tight: 1.4; /* 見出し用 */
    --letter-spacing-wide: 0.1em; /* 文字間隔 */
    
    /* スペーシング */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3.5rem;
    --spacing-xl: 5rem;
    --spacing-section: 6rem; /* セクション間 */
    
    /* 高級感のあるシャドウ */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 4px 20px rgba(182, 159, 114, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(182, 159, 114, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* アクセシビリティ: フォーカススタイル */
:focus-visible {
    outline: 3px solid var(--gold-bright);
    outline-offset: 3px;
    border-radius: 4px;
    transition: outline 0.2s ease, outline-offset 0.2s ease;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-wide);
    color: var(--text-light);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    background-attachment: fixed;
    font-size: var(--font-size-base);
    position: relative;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* 明朝体に合う和風テクスチャ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(182, 159, 114, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(182, 159, 114, 0.04) 0%, transparent 40%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(182, 159, 114, 0.01) 41px,
            rgba(182, 159, 114, 0.01) 42px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(182, 159, 114, 0.015) 61px,
            rgba(182, 159, 114, 0.015) 62px
        );
    pointer-events: none;
    z-index: -1;
}

/* コンテナ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ヘッダー - 高級個室風デザイン */
.header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.7) 100%);
    border-top: 2px solid var(--border-gold);
    box-shadow: var(--shadow-medium), 0 -1px 0 rgba(182, 159, 114, 0.3);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease-in-out;
}

.fixed-header {
    position: fixed;
    top: 0;
    bottom: auto;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-top: none;
    border-bottom: 2px solid var(--border-gold);
    box-shadow: var(--shadow-medium), 0 1px 0 rgba(182, 159, 114, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav {
    /* padding: var(--spacing-xs) 0; */
    position: relative;
}

/* 和風装飾ライン */
.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    position: relative;
}

/* ハンバーガーメニュー（デスクトップでは非表示） */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}


.logo {
    padding: 0.6rem 0 0.3rem 0;
}

.logo-img {
    height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 1rem;
    z-index: 1;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    display: block;
}

.nav-menu a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(182, 159, 114, 0.5);
}

.reservation-btn {
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    display: block;
}

.reservation-btn:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(182, 159, 114, 0.5);
}

/* PC用ナビゲーションボタン */
.desktop-nav-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

/* PC用ボタン - スマホと完全に同じスタイル（最初から背景付き） */
.desktop-reservation-btn {
    background: linear-gradient(135deg, var(--accent-color), #a8873a);
    color: var(--dark-bg);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: opacity 0.2s;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 8px rgba(196, 168, 118, 0.3);
}

.desktop-phone-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.desktop-reservation-btn:hover,
.desktop-phone-btn:hover {
    opacity: 0.8;
    text-shadow: none;
}

.reservation-info h3 {
  margin-bottom: 1rem;
}

/* 予約セクション */
.reservation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reservation-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 90%);
    padding: var(--spacing-xl);
    border-radius: 24px;
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(182, 159, 114, 0.3);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-item {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 2vw;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft), inset 0 0 10px rgba(182, 159, 114, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold), 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}


.contact-item h4 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    font-size: var(--font-size-md);
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 0 0 15px rgba(182, 159, 114, 0.5);
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.phone {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-gold);
    margin: var(--spacing-sm) 0;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(230, 194, 0, 0.5);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    letter-spacing: 0.03em;
    font-weight: 400;
    margin-top: var(--spacing-sm);
}

.contact-item--line p {
    font-size: var(--font-size-sm);
}

.contact-item .btn {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ヘッドスパとはセクション */
#what-is-headspa {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/about.jpg');
    background-size: 200%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    min-height: 400px;
}

@media screen and (max-width: 850px) {
    /* モバイルでのヘッドスパとはセクション背景画像修正 */
    #what-is-headspa {
        background-attachment: scroll !important;
        background-size: 300% !important;
        background-position: 55% center !important;
        min-height: 300px;
    }
}

#what-is-headspa .headspa-content {
    position: relative;
    z-index: 2;
}

#what-is-headspa .headspa-text p {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    line-height: var(--line-height-relaxed);
}

#what-is-headspa .section-title {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* 採用情報セクション */
.recruit-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-sm) 0;
}

.recruit-description {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    letter-spacing: 0.05em;
}

.recruit-button-container {
    margin-top: var(--spacing-sm);
}

.recruit-detail-btn {
    font-size: 1.2rem;
    padding: 16px 60px;
    border: 1px solid #c0a062;
    color: #c0a062;
    background-color: transparent;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.2em;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.recruit-detail-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c0a062;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.recruit-detail-btn:hover {
    color: #0a0a0a;
}

.recruit-detail-btn:hover:after {
    transform: scaleX(1);
}

/* セクション共通 - 個室風デザイン */
.section {
    padding: var(--spacing-section) 0;
    position: relative;
    margin: 0;
}


.bg-light {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow-inner);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3px;
    right: 3px;
    border-top: 1px solid rgba(182, 159, 114, 0.2);
    border-bottom: 1px solid rgba(182, 159, 114, 0.2);
    pointer-events: none;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--accent-color);
    font-weight: 400;
    position: relative;
    text-shadow: 0 0 25px rgba(196, 168, 118, 0.5);
    letter-spacing: 0.12em;
    line-height: var(--line-height-tight);
    opacity: 0;
    margin-bottom: 3.3rem;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}


.section-title::after {
    content: '';
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), var(--gold-light), var(--accent-color), transparent);
    display: block;
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(182, 159, 114, 0.4);
}

/* ヒーローセクション - 高級個室風 */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* パララックス効果用 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top right, rgba(182, 159, 114, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(182, 159, 114, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 5;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(182, 159, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(182, 159, 114, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(34, 34, 34, 0.5) 0%, rgba(10, 10, 10, 1) 80%);
}

/* 月の装飾を追加 */
.hero .container::after {
    content: '';
    position: absolute;
    width: 30vmax;
    height: 30vmax;
    max-width: 400px;
    max-height: 400px;
    right: 10vw;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(192, 160, 98, 0.2),
                inset 0 0 30px rgba(192, 160, 98, 0.1);
    opacity: 0;
    animation: moon-fade-in 4s ease-out 0.8s forwards;
    z-index: 0;
}

.hero-content {
    position: static;
    padding: 2rem;
    text-align: center;
    z-index: 10;
    width: 100%;
    /* max-width: 600px; */
    animation: fadeIn 2.5s ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
}


.hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
    margin: 0;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.shop-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 9rem;
    font-weight: 600;
    color: #c0a062;
    margin: 1.5rem 0 1rem 0;
    line-height: 1;
    letter-spacing: 0.45em;
    text-shadow: 0 0 25px rgba(192, 160, 98, 0.6);
    text-align: center;
    text-indent: 0.1em;
    margin-left: -0.1em;
    margin-right: -0.5em;
}

.shop-name-en {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #c0a062;
    margin-bottom: 3.5rem;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    color: #cccccc;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    text-align: center;
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 5;
    margin-top: var(--spacing-lg);
}

.btn {
    display: inline-block;
    padding: 14px 56px;
    border: 1px solid #c0a062;
    color: #c0a062;
    background-color: transparent;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c0a062;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn:hover {
    color: #0a0a0a;
}

.btn:hover:after {
    transform: scaleX(1);
}

/* アニメーション定義 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moon-fade-in {
    from {
        opacity: 0;
        transform: translateY(-40%) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) rotate(15deg);
    }
}

.btn-secondary {
    background-color: #c0a062;
    color: #0a0a0a;
    border: 1px solid #c0a062;
    text-decoration: none;
    font-weight: bold !important;
    font-size: 1.05rem;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Mainview Slider */
.mainview-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.mainview-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    animation: fadeSlide 12s infinite;
}

.mainview-slide:nth-child(1) {
    animation-delay: 0s;
}

.mainview-slide:nth-child(2) {
    animation-delay: 4s;
}

.mainview-slide:nth-child(3) {
    animation-delay: 8s;
}

@keyframes fadeSlide {
    0% { opacity: 0; animation-timing-function: ease-in; }
    11% { opacity: 1; }
    33% { opacity: 1; animation-timing-function: ease-out; }
    44% { opacity: 0; }
    100% { opacity: 0; }
}
.mainview-slide:nth-child(1) .mainview-img {
    animation-delay: 0s;
}

.mainview-slide:nth-child(2) .mainview-img {
    animation-delay: 4s;
}

.mainview-slide:nth-child(3) .mainview-img {
    animation-delay: 8s;
}

@keyframes smoothZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


/* About セクション */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ヘッドスパとは セクション */
.headspa-content {
    max-width: 900px;
    margin: 0 auto;
}

.headspa-text p {
    color: var(--text-primary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

/* 睡月の特徴セクション（元の五感セクション） */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-sm);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(196, 168, 118, 0.3),
        rgba(196, 168, 118, 0.6),
        rgba(196, 168, 118, 0.3),
        transparent
    );
}

.feature-item:last-child::after {
    display: none;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.feature-item.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.feature-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.feature-content {
    flex: 1;
    text-align: left;
    padding: 0 var(--spacing-sm);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
    text-shadow: 0 0 15px rgba(182, 159, 114, 0.4);
}

.feature-item h3 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
    font-weight: 400;
    text-shadow: 0 0 10px rgba(182, 159, 114, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.feature-item h3::before {
    content: '\25EF';
    color: var(--accent-color);
    font-size: 0.6em;
    margin-right: 0.5em;
    opacity: 0.7;
}


.feature-item p {
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
    text-align: left;
}

/* エフェクトアイコン */
.effect-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    text-shadow: 0 0 10px rgba(182, 159, 114, 0.4);
}

.about-text h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(182, 159, 114, 0.3);
}

.about-text p {
    color: var(--text-primary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: 400;
}


.effects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.effect-item {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: 2vw;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft), inset 0 0 10px rgba(182, 159, 114, 0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(2px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.effect-item.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

.effect-image {
    width: 100%;
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.effect-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.effect-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.effect-item p {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    letter-spacing: 0.03em;
    font-weight: 400;
}

.effect-item::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(182, 159, 114, 0.2);
    border-radius: 8px;
    pointer-events: none;
}

.effect-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold), 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.effect-item h3 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    text-shadow: 0 0 15px rgba(182, 159, 114, 0.6);
    letter-spacing: 0.1em;
    line-height: 1.3;
    font-size: var(--font-size-md);
}

.effect-item h4 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    text-shadow: 0 0 15px rgba(182, 159, 114, 0.6);
    letter-spacing: 0.1em;
    line-height: 1.3;
}

/* 五感の癒しセクション */
.senses-intro {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.senses-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    letter-spacing: 0.03em;
    text-align: center;
}


/* メニューセクション */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: 0.8rem;
}

.menu-item {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 80%, var(--dark-bg) 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(196, 168, 118, 0.4);
    box-shadow:
        var(--shadow-medium),
        inset 0 1px 0 rgba(196, 168, 118, 0.2);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-header {
    width: 100%;
}

.menu-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(182, 159, 114, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.7);
    border-color: var(--gold-light);
}

.menu-item.featured {
    border-color: var(--gold-light);
    border-width: 3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    box-shadow: var(--shadow-gold), var(--shadow-medium);
}

.featured-label {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.menu-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    width: 100%;
    min-height: 3rem;
}

.menu-item h3 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    text-shadow: 0 0 6px rgba(196, 168, 118, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
    line-height: var(--line-height-tight);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-moon-icon {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-right: var(--spacing-xs);
    color: rgba(196, 168, 118, 0.9);
    text-shadow: 0 0 8px rgba(196, 168, 118, 0.4);
    flex-shrink: 0;
}

.menu-duration {
    color: rgba(196, 168, 118, 0.8);
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    text-shadow: 0 0 4px rgba(182, 159, 114, 0.3);
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
}

.menu-price {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
    text-decoration: none;
    opacity: 0.6;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    letter-spacing: 0.03em;
}


/* 予約セクション - スタイルは上で定義済み */

/* アクセスセクション */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.info-item {
    margin-bottom: var(--spacing-md);
}

.info-item h4 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(182, 159, 114, 0.3);
}

.access-map {
    position: relative;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 80%);
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    box-shadow:
        var(--shadow-medium),
        inset 0 0 20px rgba(182, 159, 114, 0.1),
        0 0 30px rgba(182, 159, 114, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.access-map::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(182, 159, 114, 0.3);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2);
    background: var(--dark-bg);
    flex: 1;
    min-height: 350px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 12px;
    filter: sepia(0.1) contrast(1.1) brightness(0.95);
    transition: filter 0.3s ease;
}

.map-placeholder iframe:hover {
    filter: sepia(0) contrast(1.2) brightness(1.05);
}

/* 求人セクション */

.recruit-content h3 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-md);
    font-weight: 300;
    text-shadow: 0 0 12px rgba(182, 159, 114, 0.4);
    letter-spacing: 0.1em;
}


/* フッター - 高級個室風 */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    border-top: 3px solid var(--border-gold);
    color: var(--text-light);
    padding: 0 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(182, 159, 114, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(182, 159, 114, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.footer-logo {
    padding: 1rem 0 0;
}

.footer-logo-img {
    height: auto;
    width: 10vw;
    object-fit: contain;
}

.footer-info p {
    margin-bottom: 0.2rem;
    color: var(--text-light);
    text-shadow: 0 0 5px rgba(182, 159, 114, 0.2);
    font-size: var(--font-size-xs);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-gold);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    opacity: 0.7;
    margin: 0;
    text-align: center;
}

/* 明朝体向けの追加スタイル */
p, li, .contact-item p {
    line-height: var(--line-height-tight);
    letter-spacing: 0.03em;
    /* text-align: justify; */
    text-justify: inter-ideograph;
}

.menu-description {
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.menu-item p {
    margin: 10px 0;
    line-height: 1.6;
}

/* 和風装飾文字 */
.section-title::before {
    font-family: var(--font-secondary);
}


.boldText {
    font-weight: 800;
}

.point {
    font-size: 0.8em;
    margin: 2vw 0;
}

/* レスポンシブデザイン */

/* デスクトップ用ナビゲーション */
@media (min-width: 769px) {
    .mobile-nav-actions {
        display: none;
    }

    .desktop-nav-actions {
        display: flex;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        background: none;
        height: auto;
        width: auto;
        z-index: auto;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 0;
        justify-content: flex-end;
        align-items: center;
    }

    .nav-menu li {
        width: auto;
        position: relative;
        margin: 0;
        max-width: none;
    }

    .nav-menu li:not(.desktop-nav-actions):not(:last-child)::after {
        content: '|';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--white);
        font-size: 1rem;
        z-index: 1;
    }

    .nav-menu a {
        width: auto;
        margin: 0;
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        color: var(--text-light);
        background: none;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        letter-spacing: 0.03em;
        white-space: nowrap;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--accent-color);
        text-shadow: 0 0 8px rgba(182, 159, 114, 0.5);
    }

    .nav-menu .reservation-btn {
        display: none;
    }

    .menu-toggle {
        display: none;
    }

    .fixed-cta {
        display: none !important;
    }
}

/* 中画面用（1200px以下） */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0;
    }

    .nav-menu a {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }

    .desktop-reservation-btn,
    .desktop-phone-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .desktop-nav-actions {
        gap: 0.8rem;
    }

    .nav-right {
        gap: 1rem;
    }

}

/* タブレット用 */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 var(--spacing-md);
    }

    .reservation-btn {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 75vh;
    }

    .hero .container {
        height: 75vh;
    }

    .mainview-container {
        height: 75vh;
    }

    .shop-name {
        font-size: 15vw;
    }

    .section-title {
        font-size: 2.0rem;
    }

    .effects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .feature-item {
        padding: var(--spacing-lg);
    }
    
    .feature-img {
        height: 220px;
    }
}

/* iPad Pro / 大きめタブレット用 */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 0;
    }
    .nav-menu a {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }

    .hero-content {
        padding: 3rem;
        max-width: 550px;
    }
    
    .shop-name {
        font-size: 10vw;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-xl: 2.6rem;
        --font-size-lg: 2.0rem;
        --font-size-md: 1.4rem;
        --font-size-base: 1.1rem;
        --font-size-sm: 1.0rem;
        --spacing-xl: 3rem;
        --spacing-lg: 2.5rem;
        --spacing-section: 4rem;
    }

    /* モバイルでのヘッドスパとはセクション背景画像修正 */
    #what-is-headspa {
        background-attachment: scroll !important;
        background-size: 350% !important;
        background-position: 55% center !important;
        min-height: 300px;
    }

    /* スマホ時はヘッダーを上に固定 */
    .header {
        position: fixed !important;
        top: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
        border-top: none !important;
        border-bottom: 2px solid var(--border-gold) !important;
        box-shadow: var(--shadow-medium), 0 1px 0 rgba(182, 159, 114, 0.3) !important;
        z-index: 1000 !important;
    }

    .nav-right {
        display: contents; /* スマホではこのラッパーを無効化 */
    }

    main {
        margin-top: var(--header-height, 28px);
        margin-bottom: 0;
    }

    .hero {
        min-height: calc(100vh - var(--header-height, 28px));
    }

    .hero .container {
        height: calc(100vh - var(--header-height, 28px));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mainview-container {
        height: calc(100vh - var(--header-height, 28px));
    }
    
    .shop-name {
        font-size: 18vw;
    }
    .hero-subtitle, .shop-name-en {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 40px;
        font-size: 0.9rem;
    }

    .hero .container::after {
        right: 5vw;
        width: 40vmax;
        height: 40vmax;
    }
    
    .section-title {
        font-size: 1.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 1.3rem;
    }
    
    .features-header .section-title {
        white-space: normal;
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    /* スマホ用ナビゲーション要素 */
    .mobile-nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        background: transparent;
        border: 1px solid var(--accent-color);
        color: var(--accent-color);
        padding: 0.4rem 0.65rem;
        border-radius: 4px;
        font-size: 0.75rem;
        font-family: var(--font-primary);
        letter-spacing: 0.05em;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        background: var(--accent-color);
        color: var(--primary-color);
    }

    /* スマホ用フルスクリーンメニュー */
    .nav-menu {
        position: fixed;
        top: var(--header-height, 28px);
        left: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height, 28px));
        background: rgba(10, 10, 10, 0.97);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 999;
        list-style: none;
        margin: 0;
        padding: 0 0 2rem;
        overflow-y: auto;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(196, 168, 118, 0.3);
        transform: translateY(-110%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease-in, visibility 0.28s;
    }

    .nav-menu.active {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.32s ease-out, visibility 0s;
    }

    .menu-close {
        display: none;
        align-items: center;
        background: transparent;
        border: 1px solid var(--accent-color);
        color: var(--accent-color);
        padding: 0.4rem 0.65rem;
        border-radius: 4px;
        font-size: 0.75rem;
        font-family: var(--font-primary);
        letter-spacing: 0.05em;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .menu-close.active {
        display: inline-flex;
    }

    .menu-toggle.active {
        display: none;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-menu li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.65rem 1.2rem;
        font-size: 1.1rem;
        color: #ffffff;
        text-decoration: none;
        text-align: left;
        background: transparent;
        border: none;
        border-radius: 0;
        font-weight: 400;
        transition: background 0.2s;
        width: 100%;
        box-sizing: border-box;
        letter-spacing: 0.08em;
    }

    .nav-menu a::after {
        content: '►';
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.5);
        flex-shrink: 0;
    }

    .nav-menu a:hover {
        background: rgba(196, 168, 118, 0.12);
        transform: none;
        box-shadow: none;
    }

    .nav-menu .reservation-btn {
        color: var(--accent-color);
        font-weight: 600;
        padding: 0.65rem 1.2rem !important;
        border-radius: 0;
    }

    .nav-menu .reservation-btn::after {
        color: var(--accent-color);
    }

    /* スマホ時は区切り線を非表示 */
    .nav-menu li:not(:last-child)::after {
        display: none;
    }

    /* スマホ時はデスクトップ用ボタンを非表示 */
    .desktop-nav-actions {
        display: none !important;
    }
    
    
    .logo-img {
        height: 16px;
    }

    .logo {
        padding: 0.2rem 0;
    }
    
    .hero-content {
        position: static;
        padding: var(--spacing-lg);
        background: none;
        width: 90%;
        max-width: 400px;
        text-align: center;
        border-radius: none;
    }
    
    .hero-title {
        font-size: var(--font-size-lg);
    }
    
    .feature-item {
        flex-direction: column !important;
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    .feature-image {
        flex: none;
        width: 100%;
    }
    
    .feature-img {
        height: 200px;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .access-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .access-map {
        padding: var(--spacing-xs);
        border-radius: 15px;
    }

    .access-map::before {
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border-radius: 9px;
    }

    .map-placeholder iframe {
        height: 280px;
        border-radius: 9px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .footer-info p {
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        font-size: 1.0rem;
        padding: 0.8rem 1.5rem;
        white-space: nowrap;
    }
    
    .contact-item .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        min-width: 140px;
        width: auto;
    }
    
    .logo-img {
        height: 48px;
        width: auto;
    }

    .footer-logo-img {
        height: 50px;
        width: auto;
    }
    
    .effects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .effect-item {
        padding: var(--spacing-lg);
    }
    
    .menu-item {
        padding: var(--spacing-lg);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* フッター SNS */
    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-sns {
        order: -1;
    }

    /* コラム矢印 */
    .column-swiper .swiper-button-prev,
    .column-swiper .swiper-button-next {
        display: flex;
        width: 28px;
        height: 28px;
    }

    .column-swiper .swiper-button-prev::after,
    .column-swiper .swiper-button-next::after {
        font-size: 0.9rem;
    }

    /* 料金カード内レイアウト */
    .menu-info {
        flex-wrap: wrap;
        gap: 0.15rem 0.4rem;
        align-items: center;
    }

    .menu-moon-icon {
        order: 1;
        flex-shrink: 0;
    }

    .menu-item h3 {
        order: 2;
        flex: 1 0 calc(100% - 3rem);
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        font-size: 0.95rem;
    }

    .menu-duration {
        order: 3;
        margin-left: 2.2rem;
        font-size: 0.95rem;
    }

    .menu-duration::after {
        content: ' \00B7 ';
        opacity: 0.5;
    }

    .menu-price {
        order: 4;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .footer-info p {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }
}

/* 小さめのスマートフォン用（430px以下） */
@media (max-width: 430px) {
    .header {
        padding: 0.2rem 0;
    }
    
    .nav-container {
        padding: 0 var(--spacing-xs);
    }

    .logo-img {
        height: 40px;
        width: auto;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        min-height: 75vh;
        padding-top: 0.5rem;
    }
    
    .hero .container {
        height: 75vh;
        position: relative;
    }
    
    .mainview-container {
        height: 75vh;
        z-index: 1;
    }
    
    .hero-content {
        position: static;
        padding: 1.5rem;
        width: 90%;
        background: none;
        border-radius: none;
        z-index: 10;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .shop-name {
        font-size: clamp(3rem, 18vw, 4.5rem);
    }
}

/* 特に小さい画面用（iPhone SEなど, 395px以下） */
@media (max-width: 395px) {
    .hero-content {
        padding: 1.8rem;
        max-width: 320px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }
}

/* 極小画面用（320px以下） */
@media (max-width: 320px) {
    main {
        margin-top: 65px;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

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

    .hero {
        min-height: 70vh;
        padding-top: 0.3rem;
    }

    .hero .container {
        height: 70vh;
        position: relative;
    }

    .mainview-container {
        height: 70vh;
        z-index: 1;
    }

    .hero-content {
        position: static;
        padding: 1.2rem;
        width: 90%;
        max-width: 280px;
        background: none;
        border-radius: none;
        z-index: 10;
        text-align: center;
    }

    
    .nav-menu {
        padding: 1rem 10px 1.5rem;
        gap: 0.6rem;
    }

    .nav-menu a {
        font-size: 1rem;
    }
}

/* 横向きモバイル対応 */
@media (max-width: 896px) and (orientation: landscape) and (max-height: 414px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0.5rem 0;
    }

    .logo-img {
        height: 48px;
        width: auto;
    }
    
    .nav-menu {
        width: 320px;
        padding-top: 2rem;
    }
    
    .nav-menu a {
        padding: 0.5rem var(--spacing-md);
        font-size: 1rem;
    }
}


/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* ホバーエフェクトの統一 */
.effect-item:hover,
.menu-item:hover,
.contact-item:hover {
    box-shadow: var(--shadow-medium);
}

/* ============================================================
   初回限定価格
   ============================================================ */
.menu-first-price {
    text-align: right;
    margin-top: auto;
    padding-top: 0.8rem;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--accent-color);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.05em;
    text-shadow: 0 0 12px rgba(196, 168, 118, 0.8), 0 0 24px rgba(196, 168, 118, 0.5);
}

.menu-micro-copy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    letter-spacing: 0.03em;
    text-align: right;
}

/* ============================================================
   コラム（note横スクロール）
   ============================================================ */
#column {
    overflow: hidden;
}

.column-swiper {
    padding: 0 0 2rem 0;
    overflow: visible;
}

.column-swiper .swiper-wrapper {
    align-items: stretch;
}

.column-swiper .swiper-slide {
    height: auto;
}

.column-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border: 1px solid rgba(196, 168, 118, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.column-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.column-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #262626 100%);
    position: relative;
    overflow: hidden;
}

.column-card-thumb.has-thumb {
    background-size: cover;
    background-position: center;
}

.column-card-thumb.has-thumb::after {
    display: none;
}

.column-card-thumb::after {
    content: 'note';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    color: var(--accent-color);
    opacity: 0.4;
    letter-spacing: 0.2em;
}

.column-card-body {
    padding: 1.2rem 1.4rem;
    flex: 1;
}

.column-card-date {
    font-size: var(--font-size-xs);
    color: var(--text-gold);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.column-card-title {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-swiper .swiper-button-prev,
.column-swiper .swiper-button-next {
    color: var(--accent-color);
    width: 36px;
    height: 36px;
}

.column-swiper .swiper-button-prev::after,
.column-swiper .swiper-button-next::after {
    font-size: 1.2rem;
}

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

.reviews-more {
    text-align: center;
    margin-top: 2.5rem;
}


/* ============================================================
   よくある質問
   ============================================================ */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.faq-tab {
    background: none;
    border: 1px solid rgba(196, 168, 118, 0.4);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: var(--font-size-xs);
    letter-spacing: 0.1em;
    transition: all 0.25s ease;
}

.faq-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.faq-tab.active {
    background: rgba(196, 168, 118, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

.faq-panel .faq-item:first-child {
    border-top: 1px solid rgba(196, 168, 118, 0.25);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(196, 168, 118, 0.25);
}

.faq-item:first-child {
    border-top: 1px solid rgba(196, 168, 118, 0.25);
}

.faq-category {
    font-size: var(--font-size-xs);
    color: var(--accent-color);
    letter-spacing: 0.25em;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(196, 168, 118, 0.4);
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category + .faq-item {
    border-top: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 0.5rem;
    text-align: left;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-q {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
    width: 1.6rem;
    line-height: 1;
}

.faq-text {
    flex: 1;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.faq-icon {
    font-size: 1.6rem;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
    font-style: normal;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0.5rem 1.6rem calc(1rem + 1.6rem);
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.9;
    letter-spacing: 0.05em;
}

/* ============================================================
   フッター SNSアイコン
   ============================================================ */
.footer-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}

.footer-sns {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.footer-sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-sns-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-sns-line {
    color: #06C755;
}

.footer-sns-line:hover {
    background: rgba(6, 199, 85, 0.12);
}

.footer-sns-instagram {
    color: #E1306C;
}

.footer-sns-instagram:hover {
    background: rgba(225, 48, 108, 0.12);
}


/* ============================================================
   コース詳細展開ボタン
   ============================================================ */
.menu-detail-toggle {
    display: block;
    margin-top: 0.5rem;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: var(--font-size-xs);
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.menu-detail-toggle:hover {
    opacity: 0.7;
}

/* ============================================================
   スマホ固定CTAボタン
   ============================================================ */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 0.5rem 1rem 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fixed-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


.fixed-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, var(--accent-color), #a8873a);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(196, 168, 118, 0.15);
    transition: opacity 0.2s;
}

.fixed-cta-btn:hover {
    opacity: 0.88;
}

.fixed-cta-sub {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.85;
}



/* ============================================================
   視覚・嗅覚・聴覚など feature-content テキストサイズ
   ============================================================ */
.feature-content h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
}

.feature-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

/* ============================================================
   reviews-more ボタン見切れ修正
   ============================================================ */
.reviews-more .btn {
    white-space: normal;
    word-break: keep-all;
}