/* 高級個室風・黒ベース金色装飾デザイン */
: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;
    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;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

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

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

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

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

.logo-img {
    height: 60px;
    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: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid var(--accent-color);
}

.desktop-phone-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.desktop-reservation-btn:hover {
    background: var(--gold-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: none;
}

.desktop-phone-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    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);
    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);
}

.phone {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: var(--spacing-sm) 0;
    letter-spacing: 0.05em;
    text-shadow: 0 0 8px rgba(182, 159, 114, 0.4);
}

.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 .btn {
    margin-top: var(--spacing-md);
    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 {
    text-align: center;
    margin: 0 auto;
    padding: var(--spacing-sm) 0;
}

.recruit-description {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    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);
}

/* メインコンテンツ */
/* main {
    margin-bottom: 90px;
} */

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

/* .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    opacity: 0.6;
} */

.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;
    margin-bottom: var(--spacing-xl);
    color: var(--accent-color);
    font-weight: 400;
    position: relative;
    text-shadow: 0 0 25px rgba(196, 168, 118, 0.5);
    padding: 0 0 var(--spacing-md) 0;
    letter-spacing: 0.12em;
    line-height: var(--line-height-tight);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* .section-title::before {
    content: '〜';
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(182, 159, 114, 0.6);
    font-family: var(--font-secondary);
} */

.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;
    overflow: hidden;
}

/* パララックス効果用 */
.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;
    /* letter-spacing: 0.2em; */
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin: 1rem auto;
    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, smoothZoom 12s infinite;
    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-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: smoothZoom 12s infinite;
    filter: brightness(0.7) contrast(1.05);
}
*/
.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); }
}

.mainview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: var(--spacing-lg);
    color: var(--text-light);
}

.mainview-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.mainview-description {
    font-size: var(--font-size-base);
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.mainview-indicators {
    display: none;
}


/* 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-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    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: '◯';
    color: var(--accent-color);
    font-size: 0.6em;
    margin-right: 0.5em;
    opacity: 0.7;
}

/* .feature-item h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--gold-light));
    margin-top: 0.5rem;
    box-shadow: 0 0 8px rgba(182, 159, 114, 0.4);
}

.feature-prefix {
    color: var(--gold-light);
    margin-right: 0.5em;
    font-size: 1.2em;
    text-shadow: 0 0 12px rgba(212, 190, 147, 0.6);
    display: inline-block;
    transform: translateY(-2px);
} */

.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;
}

/* ヘッドスパメニュー */
.headspa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.headspa-item {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: var(--spacing-md);
    border-radius: 15px;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(182, 159, 114, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.headspa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(182, 159, 114, 0.1), transparent);
    transition: left 0.6s ease;
}

.headspa-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold), 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--gold-light);
}

.headspa-item:hover::before {
    left: 100%;
}

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

.effects-section {
    margin-top: var(--spacing-xl);
}

.effects-title {
    font-size: var(--font-size-md);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.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-md);
    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;
    margin-top: var(--spacing-sm);
}

.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;
    margin-bottom: var(--spacing-xl);
    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;
    margin-top: -3rem;
    margin-bottom: var(--spacing-lg);
}

.senses-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.sense-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 85%, var(--dark-bg) 100%);
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(182, 159, 114, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sense-item.right-image {
    flex-direction: row-reverse;
}

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

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

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

.sense-content {
    flex: 1;
    text-align: left;
}

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

.sense-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(182, 159, 114, 0.05), transparent);
    transition: top 0.8s ease, left 0.8s ease;
}

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

.sense-item:hover::after {
    top: 100%;
    left: 100%;
}

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

.sense-item 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 15px rgba(182, 159, 114, 0.5);
    position: relative;
    z-index: 2;
    letter-spacing: 0.15em;
    line-height: 1.3;
}

.sense-item h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--gold-light));
    margin-top: 0.5rem;
    box-shadow: 0 0 8px rgba(182, 159, 114, 0.4);
}

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

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

.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(0.9rem, 2vw, 1.1rem);
    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(1.1rem, 2.5vw, 1.4rem);
    color: rgba(212, 190, 147, 0.9);
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 6px rgba(212, 190, 147, 0.4);
    position: relative;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

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


.menu-special {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs);
    background: rgba(182, 159, 114, 0.15);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}


.menu-note {
    text-align: center;
    color: var(--light-text);
    font-size: var(--font-size-sm);
}

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



.contact-item h4 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-md);
    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);
    color: var(--text-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 10px rgba(230, 194, 0, 0.5);
}

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

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

.info-item h4 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
    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;
}

.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);
}

.map-placeholder iframe {
    width: 100%;
    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 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.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;
}

.recruit-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.position-item {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-medium), inset 0 0 15px rgba(182, 159, 114, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.position-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold), 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

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

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

.position-item p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-relaxed);
    letter-spacing: 0.03em;
}

.position-item ul {
    margin-left: var(--spacing-sm);
    color: var(--text-light);
    list-style-type: none;
    padding: 0;
}

.position-item ul li {
    position: relative;
    padding-left: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    line-height: var(--line-height-relaxed);
}

.position-item ul li::before {
    content: '◦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.recruit-content > p {
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    letter-spacing: 0.03em;
    margin-bottom: var(--spacing-lg);
    margin-top: -50px;
}

.recruit-contact {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-medium), inset 0 0 15px rgba(182, 159, 114, 0.08);
    margin-top: var(--spacing-xl);
    position: relative;
}

.recruit-contact h4 {
    font-family: var(--font-secondary);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(182, 159, 114, 0.4);
}

/* フッター - 高級個室風 */
.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: var(--spacing-lg) 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: var(--spacing-sm);
}

.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);
}

/* 特別な見出し装飾 */
.effects-title::before {
    content: '※';
    margin-right: 0.5em;
    color: var(--accent-color);
    text-shadow: 0 0 12px rgba(182, 159, 114, 0.5);
}

.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;
    }
}

/* 中画面用（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) {
    /* main {
        margin-bottom: 85px;
    } */

    .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: 80px;
        margin-bottom: 0;
    }

    .hero {
        min-height: calc(100vh - 80px);
    }

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

    .mainview-container {
        height: calc(100vh - 80px);
    }
    
    .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;
    }
    
    .features-header .section-title {
        white-space: normal;
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    /* スマホ用ナビゲーション要素 */
    .mobile-nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mobile-reservation-btn {
        background: var(--accent-color);
        border: 2px solid var(--accent-color);
        color: var(--primary-color);
        text-decoration: none;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .mobile-phone-btn {
        background: transparent;
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
        text-decoration: none;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .mobile-reservation-btn:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
    }

    .mobile-phone-btn:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-2px);
    }

    .menu-toggle {
        display: flex;
    }

    /* スマホ用フルスクリーンメニュー */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 9999;
        list-style: none;
        margin: 0;
        padding: 100px 20px 20px 20px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-close {
        display: none;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        z-index: 10001;
        position: absolute;
        right: 0;
    }

    .menu-close span {
        width: 25px;
        height: 3px;
        background: var(--accent-color);
        margin: 3px 0;
        transition: 0.3s;
        transform-origin: center;
    }

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

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

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

    .menu-close span:nth-child(2) {
        opacity: 0;
    }

    .menu-close span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu li {
        margin: 0.6rem 0;
        width: 85%;
        max-width: 350px;
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 1.5rem;
        font-size: 1.3rem;
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        background: transparent;
        border: 2px solid #C4A876;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        letter-spacing: 0.05em;
    }

    .nav-menu a:hover {
        background: #C4A876;
        color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(196, 168, 118, 0.3);
    }

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

    /* スマホ時はデスクトップ用ボタンを非表示 */
    .desktop-nav-actions {
        display: none !important;
    }
    
    
    .logo-img {
        height: 50px;
    }
    
    .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-md);
    }
    
    .feature-image {
        flex: none;
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .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: var(--spacing-md);
    }

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

    .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: var(--spacing-md);
        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 {
        width: 200px;
        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: 40px;
        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);
        margin-bottom: var(--spacing-md);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* スマートフォン用（480px以下） */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
    }

    .features-header .section-title {
        font-size: 1.3rem;
    }

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

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

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

    .logo-img {
        height: 32px;
        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 {
        padding: 90px 15px 15px 15px;
        gap: 0.8rem;
    }

    .nav-menu li {
        margin: 0.4rem 0;
        width: 90%;
        max-width: 300px;
    }

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

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

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

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

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .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;
    }

    
    /* iPhone SE用のハンバーガーメニュー調整 */
    .nav-menu {
        padding: 80px 10px 10px 10px;
        gap: 0.6rem;
    }

    .nav-menu li {
        margin: 0.3rem 0;
        width: 95%;
        max-width: 280px;
    }

    .nav-menu a {
        padding: 0.9rem 1rem;
        font-size: 1.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: 40px;
        width: auto;
    }
    
    .nav-menu {
        width: 320px;
        padding-top: 2rem;
    }
    
    .nav-menu a {
        padding: 0.5rem var(--spacing-md);
        font-size: 1rem;
    }
}

/* 大画面用の最大幅制御 */
/* @media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
    }
} */

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

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

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