/* -----------------------------------------
   COLOR & FONT VARIABLES
   色やフォントの基本設定
----------------------------------------- */
:root {
  --black: #0a0a0a;
  --deep: #111111;
  --surface: #161616;
  --card: #1c1c1c;
  --border: #2a2a2a;
  --gold: #c9a96e;
  --gold-light: #e2c898;
  --gold-dim: #8a6f47;
  --white: #f5f0e8;
  --muted: #a09b95;
  --text: #d4cfc8;
}

/* -----------------------------------------
   BASE STYLES
   基本のスタイル設定
----------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* -----------------------------------------
   CUSTOM CURSOR
   カスタムカーソルの設定
----------------------------------------- */
.cursor { 
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%; 
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; 
  transform: translate(-50%,-50%); opacity: 0; transition: opacity 0.3s ease; 
}
/* カーソルの遅延を解消 */
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid #c9a96e;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  /* transition を強制的に排除してJSの動きを直結させる */
  transition: none !important; 
}

/* -----------------------------------------
   HEADER & LOGO
   ヘッダーとロゴの調整
----------------------------------------- */
header { 
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; 
  /* 背景を少し濃くして視認性を確保 */
  background: rgba(10, 10, 10, 0.85); 
  backdrop-filter: blur(15px); 
  border-bottom: 1px solid rgba(201, 169, 110, 0.3); 
  padding: 0 clamp(1.5rem, 4vw, 4rem); transition: all 0.4s ease; 
}
header.scrolled { 
  background: rgba(10, 10, 10, 0.98); 
  border-bottom-color: rgba(201, 169, 110, 0.5); 
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 1600px; margin: 0 auto; }

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-image {
  height: 30px; /* 100pxだと大きすぎてメニューと干渉するため、視認性の良い60pxに調整 */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-image {
  transform: scale(1.05);
}

/* --- タブレット・スマホ用 (1180px以下) --- */
@media screen and (max-width: 1180px) {
  
  /* ヘッダーの中身を横並びにする設定 */
  header#header .header-inner { 
    height: 80px !important;
    padding: 0 15px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* ロゴサイズ調整 */
  header#header .logo-image {
    height: 28px !important;
    width: auto !important;
  }

  /* 3. 右側アクションエリア：ここがボタンと三本線の親要素 */
  header#header .header-actions {
    display: flex !important;
    flex-direction: row !important; /* 横並びを強制 */
    align-items: center !important;
    gap: 12px !important;          /* ボタンと三本線の間の距離 */
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

}

/* -----------------------------------------
   NAVIGATION
   ナビゲーションメニュー（視認性向上版）
----------------------------------------- */
nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.5rem); }
nav a { 
  text-decoration: none; 
  /* 文字色を明るい色へ変更 */
  color: var(--text); 
  font-size: 0.82rem; 
  font-weight: 400; /* 太さを400にしてくっきりさせる */
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  transition: color 0.3s; 
  position: relative; 
  padding: 10px 0;
}
nav a::after { 
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; 
  height: 1px; background: var(--gold); 
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s; 
}
nav a:hover { color: var(--gold); }
nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.5rem; }

/* --- ご予約ボタンの高級感アップ（これを追加！） --- */

.reserve-btn {
  /* 背景と文字色（コントラスト最大化） */
  background: var(--gold) !important;
  color: #000000 !important;
  
  /* 強制的に太く、クッキリさせる設定 */
  font-family: 'Zen Kaku Gothic New', sans-serif !important;
  font-weight: 500 !important;      /* 最大の太さ */
  font-size: 0.85rem !important;
  letter-spacing: 0.1em !important;
  
  /* 画質・ボヤけ対策 */
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
  text-shadow: 0.5px 0.5px 0px rgba(0,0,0,0.2) !important;
  
  /* ボタンの形状 */
  border: none !important;
  padding: 0.8rem 2rem !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* ホバー時の動き（ここも1箇所にまとめる） */
.reserve-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}



/* モバイル用ハンバーガーボタンの見栄え（ついでに修正） */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold); /* ハンバーガーも金色で見やすく */
}

@media (max-width: 992px) {
  .hamburger { display: flex; } /* スマホ・タブレットで表示 */
}




/* --- 言語ドロップダウン全体の調整 --- */
.lang-dropdown {
  position: relative;
}

/* 表面に見えている「JP ▾」ボタン */
.lang-btn {
  background: none;
  border: 1px solid rgba(201, 169, 110, 0.4); /* 控えめな金の枠 */
  color: var(--text);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* 中に隠れているメニュー（ここがダサさの原因でした） */
.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #111111; /* 真っ白から深い黒へ */
  border: 1px solid var(--border);
  min-width: 120px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column; /* 横並びから縦並びへ */
  padding: 0.5rem 0;
}

/* ホバーした時にふわっと表示 */
.lang-dropdown:hover .lang-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* メニュー内の各言語ボタン */
.lang-menu button {
  background: none; /* 白背景を撤廃 */
  border: none;
  color: var(--muted);
  padding: 0.8rem 1.5rem;
  font-size: 0.75rem;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* 言語を選ぼうとマウスを乗せた時 */
.lang-menu button:hover {
  background: rgba(201, 169, 110, 0.1); /* ほんのり金色背景 */
  color: var(--gold); /* 文字を金色に */
}



/* -----------------------------------------
   MOBILE NAV
   モバイル用メニュー（フォント調整）
----------------------------------------- */
.mobile-nav { 
  position: fixed; inset: 0; z-index: 1500; background: rgba(10, 10, 10, 0.98); 
  display: flex; flex-direction: column; align-items: center; justify-content: center; 
  gap: 2.5rem; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { 
  font-family: 'Zen Kaku Gothic New', sans-serif; /* モバイルは読みやすさ重視 */
  font-size: 1.5rem; color: var(--text); 
  text-decoration: none; transition: color 0.3s; 
  letter-spacing: 0.2em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { 
  position: absolute; top: 2rem; right: 2rem; 
  background: none; border: 1px solid var(--border); 
  color: var(--gold); width: 44px; height: 44px; 
  cursor: pointer; font-size: 1.5rem; transition: all 0.3s; 
}

/* -----------------------------------------
   HERO SECTION
   メインビジュアル（背景写真 + 中央ロゴ）
----------------------------------------- */
.hero { 
  height: 100vh; 
  min-height: 700px; 
  position: relative; 
  overflow: hidden; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background-color: var(--black); /* 写真読込前のバックアップ色 */
}


/* --- 背景写真の共通設定 --- */
.hero-bg-image {
  position: absolute;
  inset: 0;
  /* contain から cover に変更して隙間を物理的に無くす */
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  z-index: 1;
}



/* --- 1. PCサイズ（881px以上）：元の写真を全表示 --- */
@media screen and (min-width: 761px) {
.hero-bg-image {
    background-image: url(''); 
    
    /* 1. 写真の横幅を画面に合わせ、高さは自動（見切れ防止） */
    background-size: 100% auto !important; 
    
    /* 2. 重なり防止の核心：上端から「120px」の位置から写真を開始する */
    /* 一般的なヘッダーの高さ（約80px）＋ゆとり（約40px）を持たせています */
    background-position: center top 75px !important; 

    /* 3. その他の必須設定 */
    background-repeat: no-repeat !important;
    background-color: #000 !important; /* 写真がない部分は黒で埋める */
    height: 100% !important;
    width: 100% !important;
  }

  /* 中央のロゴやテキストが看板と被らないよう、少し位置を調整 */
  .hero-content {
    margin-top: 100px; 
  }
}

/* --- 2. モバイルサイズ（880px以下）：別の写真を全表示 --- */
@media screen and (max-width: 880px) {
  .hero-bg-image {
    /* スマホ・タブレット用の写真 */
    background-image: url(''); 
  }
  
  /* モバイルで見やすくするための高さ調整（必要に応じて） */
  .hero {
    height: 100svh !important;
    min-height: 500px !important;
  }
}

/* 背景の暗幕（オーバーレイ）: ロゴや文字を見やすくします */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* 数値を上げるとより暗くなります */
  z-index: 2;
}

/* 背景に重なる線やノイズなどの装飾（お好みで） */
.hero::after { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='https://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"); 
  opacity: 0.2; 
  pointer-events: none; 
  z-index: 3;
}


/* -----------------------------------------
   HEADER RESOLVE BUTTON ADJUSTMENTS
----------------------------------------- */

/* 【1】 全デバイス共通：リンクの下線を消す */
header#header .reserve-btn {
  text-decoration: none !important; /* 下線を完全に除去 */
  border-bottom: none !important;  /* もしborderで線をつけている場合も除去 */
}

/* 【2】 PC表示（1181px以上）のホバー設定 */
@media screen and (min-width: 1181px) {
  header#header .reserve-btn:hover {
    text-decoration: none !important; /* ホバー時も下線を出さない */
    /* お好みでホバー時の動きを追加（例：少し明るくする） */
    opacity: 0.9;
  }
}

/* 【3】 SP・タブレット表示（1180px以下）の調整 */
@media screen and (max-width: 1180px) {
  /* 1. ヘッダー全体の余白を統一する */
  header#header .header-inner {
    padding: 0 20px !important; /* 左右に均等な余白（20px）を作る */
    display: flex !important;
    justify-content: space-between !important; /* 両端に寄せる */
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2. ロゴの位置を少し右に寄せる（微調整） */
  header#header .logo {
    margin-left: 5px !important; /* 左側にマージンを入れて少し右へ移動 */
    display: flex !important;
    align-items: center !important;
  }

  /* 3. 右側のグループ（予約ボタン＋ハンバーガー）の余白 */
  header#header .header-actions {
    margin-right: 5px !important; /* ロゴの移動に合わせて右側も微調整 */
    display: flex !important;
    align-items: center !important;
    gap: 20px !important; /* ボタンと三本線の間隔 */
	
  }
}

@media screen and (max-width: 1180px) {
  /* 予約ボタンの文字を標準の太さに戻す */
  header#header .header-actions .reserve-btn {
    font-weight: 400 !important; /* 700（太字）から400（標準）に変更 */
    
    /* もしこれでも太く感じる場合は、こちらも確認してください */
    letter-spacing: 0.05em !important; /* 字間を少し詰めると細く見えます */
  }
}

/* --- HERO CTA BUTTONS 高級感カスタマイズ --- */

.hero-cta {
    display: flex;
    gap: 2rem; /* ボタンの間隔を少し広げてゆとりを出す */
    justify-content: center;
    margin-top: 4rem;
}

.btn-primary, .btn-secondary {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3.5rem;   /* 少し横長にしてエレガントな比率に */
    font-size: 0.85rem;       /* 文字はあえて少し小さく、字間を広げるのが高級感の鉄則 */
    font-weight: 500;         /* 300(細すぎ)でも700(太すぎ)でもない、上品な500 */
    letter-spacing: 0.3em;    /* 字間をたっぷり空ける */
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* 滑らかな動き */
    overflow: hidden;
    z-index: 1;
}

/* プランを見る：重厚なゴールド */
.btn-primary {
    background: var(--gold);
    color: #000000;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* コンセプト：洗練されたアウトライン */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05); /* わずかに背景を透かす */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4); /* 枠線はあえて真っ白にせず少し透かす */
    backdrop-filter: blur(8px); /* 背後をボカしてガラスのような質感に */
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-3px);
}

/* モバイル対応：スマホでボタンが詰まりすぎないように */
@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .btn-primary, .btn-secondary {
        width: 280px;
        padding: 1.1rem 0;
    }
}

.scroll-line { 
  width: 1px; 
  height: 50px; 
  background: linear-gradient(to bottom, var(--gold-dim), transparent); 
  animation: scrollPulse 2s ease infinite; 
}

/* -----------------------------------------
   SECTION COMMON
   各セクション共通
----------------------------------------- */
section { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem); }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-label { font-size: 0.6rem; letter-spacing: 0.5em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem; }
.section-label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; color: var(--white); line-height: 1.1; }
.section-title em { font-style: normal; color: var(--gold); }

/* -----------------------------------------
   NEWS SECTION
----------------------------------------- */
#news { background: var(--deep); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5px; margin-top: 4rem; border: 1.5px solid var(--border); }
.news-item { background: var(--card); padding: 2rem 2.5rem; cursor: pointer; transition: background 0.3s; border-right: 1.5px solid var(--border); }
.news-item:hover { background: #212121; }
.news-date { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--gold-dim); margin-bottom: 0.8rem; }
.news-tag { display: inline-block; border: 1px solid var(--border); font-size: 0.58rem; letter-spacing: 0.2em; color: var(--muted); padding: 0.2rem 0.6rem; margin-bottom: 1rem; text-transform: uppercase; }
.news-heading { font-size: 0.95rem; color: var(--white); line-height: 1.7; margin-bottom: 1rem; }
.news-link { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; text-decoration: none; }
.news-link:hover { color: var(--gold-light); }


/* -----------------------------------------
   CONCEPT SECTION (PC・SP画像出し分け完全版)
----------------------------------------- */
#concept { background: var(--black); }

.concept-layout { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 6rem; 
  align-items: center; 
  margin-top: 5rem; 
}

/* 画像を表示する外枠 */
.concept-visual { 
  position: relative; 
  aspect-ratio: 3/4; /* PC用：縦長比率 */
  overflow: hidden; 
}

/* 画像を入れるコンテナ */
.concept-img-placeholder { 
  width: 100%; 
  height: 100%; 
  background: #1a1612; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ★【PC時の設定】ここにPC用の写真名を入れます */
.concept-img-placeholder img {
  /* PCで見せたい写真のパスを入力 */
  content: url('images/concept.jpg') !important; 
  
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1;
}

/* アイコン（◈） */
.concept-img-icon { 
  position: absolute;
  z-index: 2;
  font-size: 3rem; 
  opacity: 0.4; 
  color: var(--gold); 
}

/* --- CONCEPT SECTION (タイポグラフィ) --- */
.concept-text { display: flex; flex-direction: column; gap: 3rem; }
.concept-body { 
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem); 
    font-weight: 300; 
    line-height: 2.4; 
    color: var(--text); 
    letter-spacing: 0.12em; 
    text-align: justify; 
}
.concept-body p + p { margin-top: 2rem; }
.concept-quote { 
    border-left: 1px solid var(--gold); 
    padding: 0.5rem 0 0.5rem 2.5rem; 
    font-family: 'Cormorant Garamond', serif; 
    font-size: clamp(1.4rem, 2.2vw, 2rem); 
    color: var(--white); 
    font-style: italic; 
    line-height: 1.4;
    letter-spacing: 0.05em;
}


/* --- スマホ・タブレット対応（768px以下） --- */
@media (max-width: 768px) {
    .concept-layout { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
    }

    /* スマホ用の枠の比率 */
    .concept-visual { 
        aspect-ratio: 16 / 9; 
    }

    /* ★【スマホ時の設定】ここにスマホ用の写真名を入れます */
    .concept-img-placeholder img {
        /* スマホで見せたい横長写真のパスを入力 */
        content: url('images/concept_2.jpg') !important; 
        
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important; 
        transform: scale(1.0) !important; 
    }

    .concept-body { line-height: 2.2; }
    .concept-quote { padding-left: 1.5rem; }
}

/* -----------------------------------------
   ROOMS SECTION (自動レスポンシブ版)
----------------------------------------- */
#rooms { background: var(--deep); }

.rooms-grid { 
  display: grid; 
  /* ★重要：1つあたりの最小幅を320pxに設定し、入り切らなくなったら自動で段組みを変える */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 2rem; 
  margin-top: 5rem; 
}

.room-card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  overflow: hidden; 
  transition: all 0.4s; 
  height: 100%; /* 高さを揃える */
  display: flex;
  flex-direction: column;
}

.room-card:hover { border-color: var(--gold-dim); transform: translateY(-10px); }

.room-img { 
  aspect-ratio: 16/10; 
  background: #1a1a1a; 
  overflow: hidden; 
  position: relative; 
}

.room-img img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  display: block;
}

.room-info { 
  padding: 2.5rem; 
  flex-grow: 1; /* テキスト量に関わらずカードの底を揃える */
  display: flex;
  flex-direction: column;
}

.room-cat { font-size: 0.55rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 1.5rem; }
.room-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }

.room-meta { 
  margin-top: auto; /* 価格情報をカードの最下部に固定 */
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  border-top: 1px solid var(--border); 
  padding-top: 1.5rem; 
}

.room-price { font-size: 0.9rem; color: var(--white); }
.room-price span { font-size: 0.65rem; color: var(--muted); }

/* --- 760px以下のモバイル用微調整 --- */
@media screen and (max-width: 760px) {
  .rooms-grid {
    /* モバイルではカード間の隙間を少し詰める */
    gap: 1.5rem;
    /* 最小幅を少し小さくして、小さなスマホでも2列を維持しやすくする（1列にしたい場合はここを300px以上に固定） */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .room-info {
    padding: 1.5rem; /* スマホでは内側の余白を削ってコンテンツを広く見せる */
  }

  .room-name {
    font-size: 1.4rem;
  }
}

/* -----------------------------------------
   BEDDING SECTION (デザイン統一・レスポンシブ最適化)
----------------------------------------- */
#bedding { 
  background: var(--deep); 
  /* セクションのパディングを他と統一 */
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem); 
}

.bed-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* SP/タブレットは縦並び */
  gap: 4rem;
  align-items: center;
}

/* --- テキスト（他セクション：Amenities/Rooms 等と完全に同期） --- */
.bed-content {
  width: 100%;
  color: var(--white);
  text-align: center; 
}

/* 金色のラベル：.section-label のトーンに統一 */
.bed-tag {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}


/* タイトル：.section-title と同じ Cormorant 300 に統一 */
.bed-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem); 
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

/* 本文：.concept-body 等の 0.88rem / line-height 2.2 に統一 */
.bed-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 2.2;
  text-align: justify;
  max-width: 750px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

.bed-text p { margin-bottom: 1.5rem; }

/* --- ビジュアル（PC/タブレット/SP切り替え） --- */
.bed-visual {
  width: 100%;
  position: relative;
}

.bed-img {
  overflow: hidden;
}

.bed-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* --- 【タブレット：横並び＆重なり】 --- */
@media (max-width: 1023px) and (min-width: 501px) {
  
	
	.bed-visual {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0rem 0;
	margin-top: -3rem;
  }

  .bed-img.main {
    width: 60%;
    aspect-ratio: 16 / 10;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .bed-img.sub {
    width: 50%;
    aspect-ratio: 16 / 10;
    margin-left: -12%;
    margin-top: 5.5rem;
    border: 5px solid var(--deep);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }
}

/* --- 【PC：1:2非対称レイアウト（写真画角を横長に修正）】 --- */
@media (min-width: 1024px) {
  .bed-container {
    flex-direction: row; /* 横並びに戻す */
    align-items: center;
    gap: 8rem;
  }

  .bed-content {
    flex: 1.2;
    text-align: left; /* PCは左寄せ */
  }

  /* 見出しの線を左寄せに */
  .bed-tag { justify-content: flex-start; }

  .bed-text {
    margin: 0;
  }

  .bed-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* PCもメイン・サブともに横長（16:10）に固定 */
  .bed-img.main { 
    aspect-ratio: 16 / 10 !important; 
  }

  .bed-img.sub {
    width: 80%;
    aspect-ratio: 16 / 10 !important;
    
    /* 右にずらす調整：
       margin-left を auto にしつつ、
       transform でさらに右へ（x方向）移動させます */
    margin-left: auto;
    transform: translateX(10%); /* 数値を大きくするほど右にずれます */
    
    margin-top: -4rem; 
    border: 5px solid var(--deep);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* 影を強くすると重なりが綺麗に見えます */
  }
}
/* --- 【SP：シンプル積み上げ ＆ 比率統一】 --- */
@media (max-width: 500px) {
  .bed-container { gap: 3rem; }
  
  /* SP時は文字を左寄せ（ご提示いただいた他のセクションのSPルールに準拠） */
  .bed-content { text-align: left; }
  .bed-tag { justify-content: flex-start; }
  
  .bed-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* SPはROOMSと同じ 16:10 でサイズを統一 */
  .bed-img.main,
  .bed-img.sub {
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    margin: 0 !important;
    border: none !important;
  }
}

/* 注釈文（和室の注意書き）をグレーにする */
.bed-note {
  color: var(--muted) !important; /* 変数のグレーを適用 */
  font-size: 0.75rem;             /* 少し小さくすると注釈らしくなります */
  margin-top: -0.5rem;            /* 前の段落との隙間を少し詰める */
  margin-bottom: 1.5rem;
}

/* PC時に左寄せを維持する設定 */
@media (min-width: 1024px) {
  .bed-content .bed-note {
    text-align: left;
  }
}

/* -----------------------------------------
   FACILITIES SECTION (位置合わせ最適化版)
----------------------------------------- */
#facilities { background: var(--deep); }

/* ベース：グリッドの親要素 */
.fac-grid { 
  display: grid; 
  gap: 1.5px; 
  background: var(--border); 
  margin-top: 5rem; 
  border: 1.5px solid var(--border); 
}

/* 基本のカードスタイル */
.fac-item { 
  background: var(--card); 
  display: grid; 
  grid-template-columns: 1fr 1fr !important; 
  min-height: 400px; 
  overflow: hidden;
  position: relative;
  /* ★追加：中身の要素の高さを揃える */
  align-items: stretch; 
}

/* --- 【1】 1000px以上：横に2列（PCレイアウト） --- */
@media (min-width: 1000px) {
  .fac-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .fac-item:nth-child(even) { direction: rtl !important; }
  .fac-item:nth-child(even) .fac-info { 
    direction: ltr !important; 
    text-align: left !important;
  }
}

/* --- 【2】 999px 〜 501px：縦1列（タブレット・大きめのスマホ） --- */
@media (max-width: 999px) and (min-width: 501px) {
  .fac-grid { 
    grid-template-columns: 1fr; 
  }
  .fac-item {
    direction: ltr !important; 
    min-height: 380px;
  }
}

/* --- 【3】 500px以下：SP専用レイアウト（没入型・トリミング禁止版） --- */
@media (max-width: 500px) {
  .fac-item { 
    grid-template-columns: 1fr !important; 
    height: 100svh; /* min-heightからheightに変更して高さを固定 */
    position: relative;
    background: #000; /* ★重要：左右にできた隙間を黒で埋める */
    overflow: hidden;
  }

  /* --- 画像エリア（ここを調整） --- */
  .fac-img {
    position: absolute; 
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center; /* 画像を中央に配置 */
  }

  .fac-img img {
    /* ★重要：トリミングを禁止し、全体を表示する */
    object-fit: contain !important; 
    
    /* ★重要：画面の高さにピタッと合わせる */
    height: 100% !important; 
    width: auto !important; /* 横幅は写真の比率に従う */
    
    /* 没入感を出すために少し暗くする（必要に応じて） */
    opacity: 0.7; 
  }

  /* グラデーションオーバーレイ（設定はそのまま維持） */
  .fac-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.1) 0%,
      rgba(0,0,0,0.7) 80%,
      rgba(0,0,0,0.95) 100%
    );
    z-index: 2;
  }

  /* テキストエリア（設定はそのまま維持） */
  .fac-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10% 8% 15% 8% !important; 
    text-align: center;
    background: none !important;
    z-index: 3;
    justify-content: flex-end !important; 
  }

  /* 見出し（設定はそのまま維持） */
  .fac-name {
    font-size: clamp(1.8rem, 8vw, 2.2rem) !important; 
    margin-bottom: 1.5rem !important;
    min-height: auto !important;
  }
}

/* --- 共通パーツ（レスポンシブ配置調整済み） --- */
.fac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fac-info { 
  padding: 4rem 3rem; 
  display: flex; 
  flex-direction: column; 
  /* ★デフォルト（1列時）は中央寄せにして余白のバランスを取る */
  justify-content: center; 
}

.fac-name { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.8rem; 
  color: var(--white); 
  margin-bottom: 2rem; 
  display: flex;
  align-items: center;
}

.fac-desc { 
  font-size: 0.88rem; 
  color: var(--muted); 
  line-height: 2; 
  text-align: justify; 
}

/* ★PC時（2列）だけ上揃えにして、左右のラインをピシッと揃える */
@media (min-width: 1000px) {
  .fac-info {
    justify-content: flex-start; 
  }
  
  .fac-name {
    /* 2列の時に見出しの高さを揃えるための土台 */
    min-height: 1.2em; 
  }
}

/* ★SP時（500px以下）の微調整 */
@media (max-width: 500px) {
  .fac-info {
    /* 没入型レイアウトなので下寄せに固定 */
    justify-content: flex-end !important;
    padding: 10% 8% 15% 8% !important;
  }
}

/* --- セクションラベル：中央揃えを強制し、密度を調整 --- */
#facilities .section-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.55rem !important;
  color: var(--gold) !important;
  letter-spacing: 0.4em !important;  /* 密度向上のため0.4emに維持 */
  text-transform: uppercase !important;
  white-space: nowrap !important;
  
  /* ★中央配置のための修正点 */
  display: block !important;         /* flexからblockに変更して中央揃えを有効化 */
  text-align: center !important;     /* 文字を中央へ */
  width: 100% !important;           /* 親要素の幅いっぱいに広げる */
  margin: 0 auto 2.5rem !important;  /* 左右中央配置 + 下の余白 */
}

/* もしラベルの横に線を入れるデザインにしていた場合は、以下のように疑似要素を調整します */
#facilities .section-label::before,
#facilities .section-label::after {
  content: none !important; /* 中央揃えの邪魔になる場合は一旦消すのが安全です */
}

/* 個別の設備名：こちらも字間を詰め、シャープな印象に --- */
.fac-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
  letter-spacing: 0.08em !important; /* 0.15emから0.08emに詰め */
  white-space: nowrap !important;
  margin-bottom: 1rem !important;
  min-height: auto !important;
  justify-content: flex-start !important; 
  display: flex;
  align-items: center;
  color: var(--white);
}

/* 500px以下のスマホ時のみ、ラベルを左に寄せる */
@media screen and (max-width: 500px) {
}
/* -----------------------------------------
   SURROUNDINGS SECTION 
----------------------------------------- */
#surroundings { 
    background: var(--deep); 
    display: block !important; /* セクション自体が消えるのを防ぐ */
    visibility: visible !important;
}

/* もしスクロールアニメが動かなくても、透明のままにしない設定 */
.reveal {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.surr-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
    gap: 3rem; 
    margin-top: 5rem; 
}

.surr-card { 
    background: var(--surface); 
    border: 1px solid var(--border); 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.surr-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-8px);
}

.surr-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #111;
}

.surr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.6s ease;
}

.surr-card:hover .surr-img img {
    opacity: 1;
    transform: scale(1.05);
}

.surr-content {
    padding: 2.5rem;
}

.surr-distance { 
    font-size: 0.65rem; 
    color: var(--gold); 
    letter-spacing: 0.3em; 
    margin-bottom: 1rem; 
}

.surr-name { 
    font-size: 1.25rem; 
    color: var(--white); 
    margin-bottom: 1.2rem; 
}

.surr-desc { 
    font-size: 0.88rem; 
    color: var(--muted); 
    line-height: 2; 
}

/* スマホでは1列に強制変更 */
@media (max-width: 760px) {
    .surr-grid { grid-template-columns: 1fr; }
}



/* --- ACCESS SECTION 最終調整 --- */

#access {
  background-color: #000;
  width: 100%;
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

#access .section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.access-layout {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 60px;
}

/* マップエリア */
.map-wrapper {
  flex: 1.2;
  min-width: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 情報エリアのテキスト制御 */
.access-info {
  flex: 1;
}

.access-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.access-item:last-child {
  border: none;
}

/* フォントの統一設定 */
.access-block-title {
  font-family: 'Cinzel', serif; /* 他の英字見出しと統一 */
  color: #c9a96e; /* var(--gold) */
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.access-block-content {
  font-family: 'Zen Kaku Gothic New', sans-serif; /* 本文フォントに統一 */
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.hotel-name {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-weight: 400;
}

/* --- スマホ・タブレット用 --- */
@media screen and (max-width: 760px) {
  #access .section-inner { padding: 0 20px; }
  .access-layout {
    flex-direction: column !important;
    gap: 40px;
  }
  .map-wrapper { aspect-ratio: 1 / 1 !important; }
}

/* --- FAQ SECTION：レスポンシブ配置対応版 --- */
#faq { 
  background: var(--deep); 
  padding: 100px 0;
}

/* 軸を揃えるコンテナ：幅は900pxに固定しつつ中央配置 */
#faq .section-inner {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: block !important;
}

/* タイトルとラベル：860px以上で中央、以下で左寄せ（共通設定を活かすため一部削除） */
#faq .section-label,
#faq .section-title {
  /* 固定の text-align: left を削除し、外部のメディアクエリに任せます */
  width: 100% !important;
  display: block !important;
}

/* 860px以上の時だけ追加で調整が必要な場合 */
@media screen and (min-width: 860px) {
  #faq .section-label,
  #faq .section-title {
    text-align: center !important;
  }
}

/* リスト本体：常に幅100% */
.faq-list { 
  width: 100% !important;
  max-width: 900px; 
  margin: 4rem auto 0 !important; 
  display: flex !important; 
  flex-direction: column !important; 
  gap: 1.5rem !important;
}

/* ボックスデザイン（維持） */
.faq-item { 
  background: var(--surface) !important; 
  border: 1px solid var(--border) !important; 
  width: 100% !important;
  display: block !important;
}

.faq-q { 
  padding: 1.8rem 2.5rem !important; 
  display: flex !important; 
  justify-content: space-between !important; 
  align-items: center !important; 
  cursor: pointer !important; 
  font-size: 0.95rem !important; 
  color: var(--white) !important; 
}

.faq-icon { color: var(--gold) !important; font-size: 1.2rem !important; transition: transform 0.3s !important; }

.faq-a { 
  max-height: 0; 
  overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); 
  background: rgba(255,255,255,0.02) !important; 
}

.faq-a-inner { 
  padding: 0 2.5rem 2rem !important; 
  font-size: 0.88rem !important; 
  color: var(--muted) !important; 
  line-height: 1.8 !important; 
}

.faq-item.open .faq-icon { transform: rotate(45deg) !important; }
.faq-item.open .faq-a { max-height: 500px !important; }

/* --- CONTACT SECTION PC&SP 決定版 --- */

#contact {
  background-color: #000;
  padding: 120px 0;
  width: 100%;
}

/* コンテンツを中央にギュッと寄せる */
#contact .section-inner {
  max-width: 1000px; /* 1200pxから1000pxに絞って密度を上げます */
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px; /* 左の情報と右のフォームの適度な距離 */
  margin-top: 60px;
}

/* 左側：連絡先情報（アクセスのフォントに統一） */
.contact-info {
  flex: 0 0 350px; /* 幅を350pxに固定して安定させます */
}

.contact-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-block-title {
  font-family: 'Cinzel', serif;
  color: #c9a96e;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.contact-block-content {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

/* 右側：フォームエリア */
.contact-form-container {
  flex: 1;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #c9a96e;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* ★入力枠：背景を白、文字を黒にして視認性を最大化 */
.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  background: #fff; /* 背景を白に */
  border: 1px solid #ccc;
  color: #000; /* 文字を黒に */
  padding: 15px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  border-radius: 2px;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* 送信ボタン：ホテルの色（ゴールド）に合わせる */
.submit-btn {
  width: 100%;
  padding: 18px;
  background: #c9a96e; /* ゴールド */
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  letter-spacing: 0.1em;
}

.submit-btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  /* セクション全体の高さを固定せず、中身に合わせて伸びるようにする */
  #contact {
    height: auto !important;
    min-height: 100vh !important;
    padding: 60px 0 !important;
    overflow: visible !important; /* 中身を隠さない */
  }

  #contact .section-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
    display: block !important; /* レイアウト崩れ防止 */
  }

  .contact-layout {
    display: flex !important;
    flex-direction: column !important; /* 縦に並べる */
    gap: 40px !important;
    width: 100% !important;
    height: auto !important;
  }

  /* 連絡先とフォーム、どちらも幅100%で縦に積む */
  .contact-info, 
  .contact-form-container {
    width: 100% !important;
    flex: none !important;
    display: block !important;
  }

  /* 入力項目が消えないよう、高さを維持 */
  .form-group {
    width: 100% !important;
    margin-bottom: 20px !important;
    display: block !important;
  }

  .form-group input, 
  .form-group select, 
  .form-group textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
  }
}
/* -----------------------------------------
    FOOTER SECTION (修正・追記版)
----------------------------------------- */
footer {
  background: var(--black) !important;
  border-top: 1px solid var(--border) !important;
  padding: 8rem 0 4rem !important; /* 左右paddingを0にしてinnerで制御 */
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ★PCで左に寄るのを防ぐ最重要設定 */
.footer-inner {
  max-width: 1200px !important;
  margin: 0 auto !important; /* これで中央に寄ります */
  padding: 0 40px !important;
  box-sizing: border-box !important;
}

.footer-top {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 4rem !important;
  margin-bottom: 6rem !important;
}

.footer-brand {
  max-width: 400px !important;
}

.footer-logo {
  height: 40px !important;
  width: auto !important;
  margin-bottom: 2rem !important;
}

.footer-desc {
  font-family: 'Zen Kaku Gothic New', sans-serif !important;
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  line-height: 2 !important;
  letter-spacing: 0.05em !important;
}

.footer-col-title {
  font-family: 'Cinzel', serif !important;
  font-size: 0.75rem !important;
  color: var(--gold) !important;
  letter-spacing: 0.4em !important;
  text-transform: uppercase !important;
  margin-bottom: 2.5rem !important;
  position: relative !important;
}

.footer-col-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: -0.8rem !important;
  left: 0 !important;
  width: 20px !important;
  height: 1px !important;
  background: var(--gold-dim) !important;
}

/* ★箇条書きのドット（点）を強制的に消す */
.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links li {
  margin-bottom: 1.2rem !important;
  list-style: none !important; /* 念押し */
}

.footer-links a {
  text-decoration: none !important;
  color: var(--text) !important;
  font-size: 0.85rem !important;
  font-family: 'Zen Kaku Gothic New', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s ease !important;
}

.footer-links a:hover {
  color: var(--gold) !important;
  padding-left: 5px !important;
}

/* フッターボトム */
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1) !important;
  padding-top: 3rem !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.footer-copy {
  font-size: 0.7rem !important;
  color: var(--muted) !important;
}

/* --- フッター：1024px以下の中央寄せ最適化 --- */
@media screen and (max-width: 1024px) {
  
  /* 1. フッター全体のレイアウトを中央に強制 */
  .footer-inner {
    text-align: center !important;
    padding: 0 20px !important;
  }

  /* 2. 上部グリッドを1列にして中央配置 */
  .footer-top {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3rem !important;
  }

  /* 3. ブランドエリア（ロゴと説明文） */
  .footer-brand {
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
  }

  .footer-logo {
    margin: 0 auto 1.5rem !important; /* ロゴを中央に */
    height: 30px !important; /* スマホ用に少し調整 */
  }

  .footer-desc {
    font-size: 0.8rem !important;
    max-width: 120% !important;     /* スマホ画面の90%まで広げる */
    line-height: 1.8 !important;
    margin-top: 1rem !important;
  }
}

  /* 4. ナビゲーションメニュー */
  .footer-nav-group {
    text-align: center !important;
    width: 100% !important;
  }

  .footer-col-title {
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-block !important; /* 線を中央にするため */
  }

  /* タイトル下の金色の線を中央へ */
  .footer-col-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .footer-links {
    padding: 0 !important;
    list-style: none !important;
  }

  .footer-links li {
    text-align: center !important;
  }

  /* 5. フッター下部（コピーライトなど） */
  .footer-bottom {
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: center !important;
    padding-top: 2rem !important;
    border-top: 1px solid rgba(201, 169, 110, 0.1) !important;
  }

  .footer-sub-links {
    justify-content: center !important;
    gap: 2rem !important;
  }
}

/* ハニーポット用隠しフィールド */
.hp-field {
  display: none !important;
  opacity: 0;
  position: absolute;
  top: -9999px;
  left: -9999px;
}


/* -----------------------------------------
   MODAL WINDOW
----------------------------------------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all 0.4s; padding: 2rem; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--black); border: 1px solid var(--border); width: 100%; max-width: 700px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: all 0.4s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { padding: 2.5rem 3rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); font-weight: 300; }
.modal-close { background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
.modal-close:hover { color: var(--gold); }
.modal .contact-form { padding: 2rem 3rem 3rem; }

/* -----------------------------------------
   ANIMATIONS
----------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }






/* --- モバイルナビ 高級感を維持しつつ極限まで圧縮 --- */
.mobile-nav-inner {
  width: 90% !important; /* 横幅を少し広げて一行のゆとりを確保 */
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* メインメニュー：上下の余白を最小化 */
.nav-main {
  margin-bottom: 1.5rem !important; /* 3remから半分に */
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding-bottom: 1rem !important; /* 2remから半分に */
}

.nav-main a {
  display: block !important;
  margin-bottom: 0.8rem !important; /* 各項目の間隔を大幅に圧縮 */
  text-decoration: none !important;
}

.nav-main a .en {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem !important; /* 英語をさらに小さく */
  color: #c9a96e;
  margin-bottom: -2px !important; /* 日本語との距離をゼロ以下に */
  letter-spacing: 0.2em;
}

.nav-main a {
  font-size: 1rem !important; /* 日本語も少しサイズダウン */
  color: #fff !important;
}

/* サブメニュー：さらにコンパクトに */
.nav-sub {
  display: flex;
  flex-direction: column;
  gap: 0.8rem !important; /* 1.2remから縮小 */
}

.nav-sub-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem !important; /* 項目同士を少し離して誤タップ防止 */
}

.nav-sub a {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* お問い合わせ：枠を少し細くして圧迫感を減らす */
.nav-contact-link {
  margin-top: 0.5rem !important;
  padding: 8px 15px !important;
  font-size: 0.85rem !important;
  border: 1px solid rgba(201, 169, 110, 0.6) !important;
}

/* ✕ボタンの位置を最上部に固定 */
.mobile-nav-close {
  top: 10px !important;
  right: 20px !important;
}

#facilities .section-label {
  /* ↓ 2.5rem から 0.5rem (約8px) に大幅に縮小 */
  margin-bottom: 1.5rem !important; 
  
  /* 字間も他と合わせるために一応念押し */
  letter-spacing: 0.5em !important;
  display: block !important;
  text-align: center !important;
  width: 100% !important;
}

/* スマホ時 (500px以下) も同様に詰める */
@media screen and (max-width: 500px) {
  #facilities .section-label {
    margin-bottom: 1.4rem !important; /* スマホはさらに少し詰める */
    text-align: left !important;
  }
}

/* -----------------------------------------
   SUPER RESPONSIVE (PC版復旧 + SP完全最適化版)
----------------------------------------- */

/* 全デバイス共通：横揺れ・はみ出しを物理的にロック */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

/* --- タブレット・スマホ用 (1180px以下) --- */
@media screen and (max-width: 1180px) {
  
  /* 1. カーソルを消す */
  .cursor, .cursor-ring { display: none !important; }

  /* 2. ヘッダー：高さを80pxに凝縮し、余白を最適化 */
  header#header .header-inner { 
    height: 80px !important;            /* 120pxから80pxへ */
    padding: 0 15px !important;         /* 左右に程よい余白 */
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ロゴ画像のサイズ調整（80pxの高さに合わせる） */
  header#header .logo-image {
    height: 30px !important;            /* 分厚く見えないよう少しサイズダウン */
    width: auto !important;
    margin-left: 0 !important;
  }

  /* 3. 右側アクションエリア：垂直中央揃えを維持し、間隔を詰める */
  header#header .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;               /* 60pxから15pxへ（ボタンと三本線の距離） */
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  /* 予約ボタン：スリムかつ視認性重視 */
  header#header .reserve-btn { 
    padding: 10px 16px !important;      /* 上下を少し削ってスリムに */
    font-size: 13px !important;
    font-weight: 700 !important;
    background: var(--gold) !important;
    color: #000 !important;
    white-space: nowrap !important;
    display: block !important;
    border: none !important;
    margin-right: 0 !important; 
  }

  /* 5. ハンバーガーメニュー：三本線のサイズを微調整 */
  header#header .hamburger { 
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around !important; /* 間隔を均等に */
    width: 30px !important;             /* 38pxから30pxへ */
    height: 20px !important;            /* 25pxから20pxへ */
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-left: 10px !important;
  }

  header#header .hamburger span {
    width: 100% !important;
    height: 2px !important;             /* 3pxから2pxへ（よりシャープに） */
    background: var(--gold) !important;
  }

  /* 非表示設定 */
  .desktop-nav, .lang-dropdown { display: none !important; }
}
  /* 3. ヒーローセクション */
  .hero {
    padding-top: 170px !important; 
    height: auto !important;
    min-height: 100svh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important; 
    align-items: center !important;
  }

  .hero-eyebrow {
    margin-top: 20px !important; 
    margin-bottom: 4rem !important; 
    display: block !important;
  }
  
  .hero-main-logo {
    width: 90vw !important; 
    max-width: 500px !important;
    height: auto !important;
    margin-bottom: 2.5rem !important;
  }

 

/* --- iPhone SE などの超小型画面（375px以下）用 --- */
@media screen and (max-width: 375px) {
  header#header .header-inner { 
    height: 90px !important; 
    padding: 0 10px 0 0 !important; /* 左の余白をゼロに */
  }
  header#header .logo-image { 
    height: 65px !important; 
    margin-left: -10px !important; /* さらに左へ */
  }
  header#header .header-actions { 
    gap: 15px !important; 
  }
  .hero { 
    padding-top: 110px !important; 
  }
}

/* --- セクションタイトル＆ラベル：配置切り替え ＆ 行間・字間調整（決定版） --- */

/* 【1】 500px以上の時：中央寄せ ＆ ゆったりした行間 */
@media screen and (min-width: 500px) {
  .section-label,
  .section-label.reveal,
  .section-title,
  .section-title.reveal {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
  }

  /* セクションタイトル全体設定（PC） */
  .section-title {
    line-height: 1.2 !important;    /* 1.1から1.5へ広げて美しく */
    letter-spacing: 0.02em !important; /* 高級感を出す字間 */
    margin-bottom: 2rem !important;    /* 下の余白 */
  }

  /* 装飾ライン（下線など）がある場合の中央揃え */
  .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* 【2】 499px以下の時：左寄せ ＆ スマホ用行間 */
@media screen and (max-width: 499px) {
  .section-label,
  .section-label.reveal,
  .section-title,
  .section-title.reveal {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: auto !important;
    display: block !important;
  }

  /* セクションタイトル全体設定（スマホ） */
  .section-title {
    line-height: 1.3 !important;    /* スマホではバランスを見て1.4に */
    letter-spacing: 0.0em !important;
    margin-bottom: 2rem !important;
  }

  /* 装飾ラインを左に戻す */
  .section-title::after {
    left: 0 !important;
    transform: none !important;
  }
}

/* --- セクションタイトル横の装飾線を消去 --- */
.section-label::before,
.section-label::after,
.section-title::before,
.section-title::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* revealクラスがついている場合も上書き */
.section-label.reveal::before,
.section-title.reveal::before {
  content: none !important;
  display: none !important;
}
	
	
	
	
	/* 2. ロゴ設定：左マージンをマイナスにしてさらに左へ微調整 */
  header#header .logo-image { 
    height: 25px !important; 
    width: auto !important; 
    display: block !important;
    flex-shrink: 0 !important;
    margin-left: -5px !important; /* 気持ち左に寄せるための隠し味 */
  }

