/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.2em;
  color: #4f4f4f;
  background: #ffffff;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --white: #ffffff;
  --cream: #fbf9f6;
  --blue: #0051a3;
  --red: #ab0000;
  --text: #4f4f4f;
  --content-pc: 1200px;
  --content-sp: 336px;
  --section-py: 100px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--content-pc);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: var(--section-py) 0;
}
.section--cream { background: var(--cream); }
.section--blue  { background: var(--blue); }

/* ===== SECTION HEADING ===== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading__en {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  font-size: 62px;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: var(--blue);
  display: block;
}
.section-heading__en--white   { color: var(--white); }
.section-heading__en--outlined {
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
}
.section-heading__ja {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: normal;
  color: var(--text);
  display: block;
}
.section-heading--bar .section-heading__en { display: inline-block; position: relative; }
.section-heading--bar .section-heading__en::after {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background: var(--blue);
  margin-top: -10px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.82; }
.btn--blue         { background: var(--blue); color: var(--white); }
.btn--outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--white        { background: var(--white); color: var(--blue); }
.btn--arrow::after { content: '›'; font-size: 20px; line-height: 1; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
  /* 背景なし → 画像の上に重なる */
}
/* --- 左側：ロゴ部分 --- */
.header-left {
  background-color: rgba(255,255,255,0.9);
  border: 2px solid #004098;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
  display: flex;          /* ← 追加 */
  align-items: center;    /* ← 追加 */
  align-self: stretch;    /* ← 追加 */
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 1024px) {
  .logo-img {
    height: 56px;
    flex-shrink: 0;      /* ← 追加: ロゴを潰れさせない */
  }
  .header-left {
    padding: 8px 16px;
    flex-shrink: 0;       /* ← 追加: ロゴエリアを潰れさせない */
  }

  /* ナビゲーション側を少しコンパクトに */
  .nav-item {
    width: 90px;
    padding: 0 12px;
  }
  .nav-icon {
    width: 28px;
    height: 28px;
  }
  .nav-text {
    font-size: 11px;
  }
}


@media (max-width: 768px) {
  .logo-img {
    height: 48px;
  }
  .header-left {
    padding: 6px 14px;
  }
}

/* --- 右側：ナビゲーションメニュー部分 --- */
.header-right {
  background-color: rgba(255,255,255,0.9);
  border: 2px solid #004098;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}
.nav-list {
  list-style: none; 
  margin: 0;
  padding: 0;
  display: flex;    
  align-items: flex-start;
}

/* 各メニュー項目 */
/* 各メニュー項目 */
.nav-item {
  border-right: 1px solid #004098; 
  padding: 0 20px; 
  width: 114px;     
  display: flex;    
  justify-content: center; 
}

/* 最後のメニュー項目だけ区切り線を消す */
.nav-item:last-child {
  border-right: none;
}


/* リンク（ボタン）のデザイン */
.nav-item a {
  text-decoration: none; 
  display: flex;
  flex-direction: column; 
  align-items: center;    
  color: #004098;       
  font-size: 11px;       
  font-weight: bold;     
}

/* アイコン画像の設定 */
.nav-icon {
  width: 35px;  
  height: 35px; /* アイコンの高さ */
  margin-bottom: 6px; 
  object-fit: contain; 
}

/* テキストの設定 */
.nav-text {
  text-align: center; 
  font-size: 13px;
  line-height: 1.3;   
}




/* --- FVエリア --- */
.first-view {
  position: relative; 
  width: 100%;
  height: 100vh;
  overflow: hidden;  /* ← 追加 */
}


/* キャッチコピーの文字デザイン */
.fv-catchcopy {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.6; 
  margin: 0;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* --- FVスライドショー --- */
.fv-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fv-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.fv-slide.active {
  opacity: 1;
}

/* キャッチコピーをスライドの上に */
.fv-text-box {
  position: absolute;
  bottom: 12%;
  left: 10%;
  z-index: 1;
}

/* ドットインジケーター */
.fv-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.fv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.fv-dot.active {
  background: #ffffff;
}


/* --- 右側の固定サイドメニュー --- */
.side-menu {
  position: fixed;
  top: 50%; 
  right: 20px;
  transform: translateY(-50%); 
  display: flex;
  flex-direction: column;
  border-radius: 30px; 
  overflow: visible; /* ← hidden → visible に変更 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100; 
}

/* サイドボタン共通のスタイル */
.side-btn {
  display: flex;
  flex-direction: column; 
  align-items: center;  
  width: 55px;
  padding: 20px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  position: relative; /* ← 追加 */
  transition: background-color 0.22s ease; 
}

.side-text {
  /* 文字だけを縦書きにする */
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 2px;
}

.btn-reserve {
  background-color: #285b9b;
  color: #ffffff;
  border-radius: 30px 30px 0 0; /* 上2つの角を丸く */
}

.btn-contact {
  background-color: #ffffff;
  color: #285b9b;
  border-radius: 0 0 30px 30px; /* 下2つの角を丸く */
}
.side-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  object-fit: contain;
}

/* 右端ライン（共通） */
.side-btn::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

/* ラインの色（ボタンごとに分ける） */
.btn-reserve::after  { background: rgba(255, 255, 255, 0.7); }
.btn-contact::after  { background: #285b9b; }

/* ホバー時の背景色 */
.btn-reserve:hover { background-color: #1d4e8a; }
.btn-contact:hover { background-color: #f0f6ff; }

/* ホバー時にラインを表示 */
.side-btn:hover::after { transform: translateY(-50%) scaleY(1); }


/* --- FV下お天気バー --- */
.weather-bar {
  background-color: #285b9b; 
  width: 100%;
  padding: 15px 0; 
  display: flex;
  justify-content: right; 
  align-items: center; 
}

/* リンク */
.weather-btn {
  display: flex;
  align-items: center;
  text-decoration: none; 
  color: #ffffff;
  font-size: 14px;      
  font-weight: bold;    
  border: 1px solid #ffffff; 
  border-radius: 30px; 
  padding: 8px 30px;   
  transition: opacity 0.3s; 
}

/* マウスを乗せたとき（ホバー時）のアクション */
.weather-btn:hover {
  opacity: 0.8; 
  cursor: pointer
}

/* テキスト部分の調整 */
.weather-text {
  margin: 0 15px;
}

/* アイコン画像の設定 */
.weather-icon {
  width: 18px;  
  height: 18px; 
  object-fit: contain;
}


/* --- 共通のコンテナ（中央揃え用） --- */
.inner-container {
  max-width: 900px; /* 画面が広くても、最大900pxまでしか広がらないようにする */
  margin: 0 auto;   /* 左右の余白を自動計算して、画面のど真ん中に配置する */
  padding: 0 20px;  /* スマホなどで見たときに端にくっつかないようにする余白 */
}

/* --- バナーエリア --- */
.banner-area {
  padding: 60px 0; /* 上下に余白を作る */
  text-align: center;
}

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

.banner-area a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  width: 90%;
}

.banner-area a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
}

.banner-area a:hover::after {
  background: rgba(255, 255, 255, 0.2);
}

/* --- NEWSエリア --- */
.news-area {
  padding-bottom: 80px;
}

/* タイトル部分 */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.title-en {
  color: #285b9b;
  font-size: 50px; /* 大きな英語タイトル */
  font-weight: 900; /* 一番太い文字にする */
  letter-spacing: 5px; /* 文字の間隔を広げる */
  margin: 0;
  line-height: 1;
}

.title-ja {
  color: #285b9b;
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 0 0;
}

/* お知らせリスト全体 */
.news-list {
  list-style: none; 
  padding: 0;
  margin: 0 0 40px 0;
}

/* お知らせ1行分の枠 */
.news-item {
  border: 2px solid #285b9b; 
  border-radius: 12px;      
  margin-bottom: 15px;       
  background-color: #ffffff;
}

/* 枠の中のリンク（フレックスボックスで横並びに） */
.news-item a {
  display: flex;
  align-items: center; 
  padding: 20px 30px; 
  text-decoration: none;
  color: #333333;     
}

/* 日付 */
.news-date {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  color: #285b9b;
  font-size: 16px;
  width: 165px;
  flex-shrink: 0;
  line-height: 1.5;
}
/* タイトル */
.news-title {
  flex-grow: 1;   
  font-size: 18px;
}

/* 右側のアイコン */
.news-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* --- お知らせ一覧ボタン --- */
.news-btn-wrapper {
  text-align: center; 
}

.btn-news-list {
  display: inline-block;
  background-color: #285b9b;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 80px; 
  border-radius: 50px; 
  transition: opacity 0.3s;
}

.btn-news-list:hover {
  opacity: 0.8; 
}

/* =============================================
   ABOUT US セクション
   ============================================= */
.about-us {
  background-color: #ffffff;
  padding: 100px 0;
  width: 100%;
}
.about-us__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-us__header {
  text-align: center;
  margin-bottom: 48px;
}
.about-us__title {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  font-size: 62px;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.about-us__subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: normal;
  color: #ffffff;
  margin-top: -8px;
}

/* カードグリッド */
.about-us__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* カード列は3列のまま */
  gap: 24px;
  background-color: #1b4fa0;
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* カード */
.about-us__card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background-color: #0051a3;
  border-radius: 16px;
  overflow: hidden;
}

/* 画像 */
.about-us__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形 */
  overflow: hidden;
  border-radius: 12px;
}
.about-us__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-us__card:hover .about-us__img {
  transform: scale(1.04);
}

/* カード本文 */
.about-us__card-body {
  padding-top: 20px;
  padding-bottom: 8px;
}

/* カードタイトル（中央寄せ） */
.about-us__card-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.75;
  letter-spacing: 0.15em;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; /* ← 中央寄せ */
  gap: 10px;
}

/* 矢印 */
.about-us__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.about-us__arrow.is-hovered,
.about-us__card:hover .about-us__arrow {
  transform: translateX(4px);
}

/* 波線ディバイダー（青色） */
.about-us__divider {
  margin: 10px 0 12px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6' viewBox='0 0 40 6'%3E%3Cpath d='M0 3 Q5 0 10 3 Q15 6 20 3 Q25 0 30 3 Q35 6 40 3' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 6px;
  opacity: 0.5;
}

/* 説明文 */
.about-us__desc {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
}

.about-us__header {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}


/* SP対応 */
@media (max-width: 768px) {
  .about-us { padding: 60px 0; }
  .about-us__inner { max-width: 336px; padding: 0 27px; }
  .about-us__title { font-size: 36px; }
  .about-us__cards { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================
   施設紹介ページ（ONSEN / HOTEL / RESTAURANT）
   スタイルガイド準拠
   ============================================= */

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

body {
  background-color: #fbf9f6;
  color: #4f4f4f;
}

/* =============================================
   セクション共通
   ============================================= */
.facility {
  padding: 100px 0;
  background-color: #ffffff;
}


.facility__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* =============================================
   セクションヘッダー（h2 + 日本語） ── 上部中央
   ============================================= */
.facility__header {
  text-align: center;
  margin-bottom: 64px;
}

/* h2：英語タイトル（Dela Gothic One, 62px） */
.facility__title {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  font-size: 62px;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: #0051a3;
}

/* 英語タイトル下の日本語（Zen Maru Gothic, 500, 16px） */
.facility__subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: normal;
  color: #4f4f4f;
  margin-top: -4px;
}

/* =============================================
   2カラム行
   ============================================= */
.facility__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  /* スクロールフェードイン初期状態 */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* テキスト左・画像右（HOTEL） */
.facility__row--reverse {
  /* grid-template-columns はそのまま、HTML順で左右が決まる */
}

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

/* =============================================
   画像カラム
   ============================================= */
.facility__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.facility__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.facility__img-wrap:hover .facility__img {
  transform: scale(1.04);
}

/* =============================================
  テキストカラム
   ============================================= */
.facility__body {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 背景デコイラスト（画像） */
.facility__deco-img {
  position: absolute;
  right: 50px;
  top: 250px;
  width: 200px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.facility__deco-img--left {
  right: auto;
  left: 24px;
  top: 160px;
}

.facility__body {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;  /* ← 追加 */
}

/* h3 見出し（Zen Maru Gothic, 700, 25px） */
.facility__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.75;
  letter-spacing: normal;
  color: #0051a3;
  margin-bottom: 8px;
}

/* 泉質ラベル */
.facility__label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: normal;
  color: #4f4f4f;
  margin-bottom: 20px;
}

/* p 本文（Zen Maru Gothic, 500, 16px） */
.facility__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.2em;
  color: #4f4f4f;
  margin-bottom: 36px;
}

/* =============================================
   ボタン
   ============================================= */
.facility__btn {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #0051a3;
  padding: 14px 48px;
  border-radius: 30px;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.facility__btn:hover {
  background-color: #003d80;
  transform: translateY(-2px);
}

/* =============================================
   レスポンシブ：SP (〜768px)
   ============================================= */
@media (max-width: 768px) {
  .facility {
    padding: 60px 0;
  }

  .facility__inner {
    max-width: 390px;
    padding: 0 27px;
  }

  .facility__header {
    margin-bottom: 40px;
  }

  .facility__title {
    font-size: 36px;
  }

  /* SP：全セクション縦積み */
  .facility__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* HOTEL（reverse）：SP では画像を先頭へ */
  .facility__row--reverse .facility__img-wrap {
    order: -1;
  }

  .facility__deco-img {
    display: none;
  }

  .facility__btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }
}

/* アクセシビリティ：モーション低減 */
@media (prefers-reduced-motion: reduce) {
  .facility__row {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .facility__img {
    transition: none;
  }
}


/* =============================================
   HOURS & PRICES セクション
   ============================================= */

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

body {
  background-color: #ffffff;
}



.hours {
  position: relative;
  background-color: #fbf9f6;
  padding: 0;
}

/* ── 波線 ── */
.hours__wave {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.hours__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── インナー ── */
.hours__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ── タイトル ── */
.hours__header {
  text-align: center;
  margin-bottom: 40px;
}
.hours__title {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  font-size: 62px;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: #0051a3;
}
.hours__subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #4f4f4f;
  margin-top: -4px;
}

/* ── 区切り線 ── */
.hours__rule {
  border: none;
  border-top: 1px solid #0051a3;
  opacity: 0.3;
  margin: 0;
}

/* ── 行 ── */
.hours__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 32px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.hours__row.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hours__category {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.hours__category-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  color: #0051a3;
}
.hours__detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours__time-row {
  display: flex;
  gap: 32px;
  align-items: baseline;
}
.hours__day {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #4f4f4f;
  min-width: 56px;
}
.hours__time {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #4f4f4f;
}
.hours__note {
  font-size: 14px;
  color: #4f4f4f;
  opacity: 0.8;
}
.hours__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.05em;
  color: #4f4f4f;
}
.hours__text--block {
  margin-top: 12px;
}

/* =============================================
   料金ブロック（修正版）
   ============================================= */
.price-block {
  margin-top: 48px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 48px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.price-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.price-block__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  color: #0051a3;
  text-align: center;
  margin-bottom: 28px;
}

/* ── テーブル本体 ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #0051a3;
  table-layout: fixed;
}
.price-table .col-label  { width: 130px; }
.price-table .col-sub    { width: 180px; }
.price-table .col-detail { width: auto; }

/* 全てのセル共通の基本スタイル */
.price-table td {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.15em;
  color: #4f4f4f;
  padding: 16px 20px;
  vertical-align: middle;
  /* 基本的に右側と下側に青い実線を引く */
  border-right: 1px solid #0051a3;
  border-bottom: 1px solid #0051a3;
}

/* ── ラベル列（温泉・宿泊） ── */
.pt-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.25em;
  text-align: center;
  border-right: 2px solid #0051a3 !important; /* 太い右線 */

  color: #ffffff !important;
}
.pt-label--onsen {
  background-color: #0051a3;
}
.pt-label--hotel {
  background-color: #ab0000;
  border-bottom: none; /* 一番下なので下線は不要（外枠と被るため） */
}

/* ── サブラベル列 ── */
.pt-sub {
  text-align: center;
  background-color: #ffffff;
  letter-spacing: 0.2em;
  border-right: 2px solid #0051a3 !important; /* 太い右線 */
}
.pt-sub small {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* 大枠の境界を太線にする設定 */
.pt-group > .pt-sub {
  /* 前のグループとの境界（平日の下、休日の下） */
  border-top: 2px solid #0051a3;
}

/* ── 詳細列のフレックス配置 ── */
.pt-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
}
.pt-detail--center {
  justify-content: center;
}

/* 一番右端のセルは右線を消す（外枠と重なるため） */
.price-table td:last-child {
  border-right: none;
}

/* ── 点線（ダッシュ線）の制御 ── */
/* 各区分（平日・休日）内の1行目と2行目のセルの下線を点線にする */
.price-table tr:nth-child(1) td.pt-detail,
.price-table tr:nth-child(2) td.pt-detail,
.price-table tr:nth-child(4) td.pt-detail,
.price-table tr:nth-child(5) td.pt-detail {
  border-bottom: 1px dashed #0051a3;
}

/* ── 太い実線の制御 ── */
/* 平日区分の最後（3行目）の下線を太実線にする */
.price-table tr:nth-child(3) td.pt-detail {
  border-bottom: 2px solid #0051a3;
}
/* 休日区分の最後（6行目）の下線を太実線にする */
.price-table tr:nth-child(6) td.pt-detail {
  border-bottom: 2px solid #0051a3;
}

/* ── 入浴回数券・宿泊 ── */
.pt-ticket-note {
  display: block;
  font-size: 13px;
  color: #0051a3;
  letter-spacing: 0.05em;
  margin-top: 4px;
  white-space: normal;
}

/* 宿泊行（最終行）の調整 */
.pt-lodging > td {
  border-bottom: none; /* 外枠と重なるため下線を消す */
}

/* ── 備考 ── */
.price-block__note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #4f4f4f;
  text-align: center;
  margin-top: 16px;
}

/* ── SP対応 ── */
@media (max-width: 768px) {
  .hours__inner {
    padding: 40px 20px 60px;
  }
  .hours__title {
    font-size: 32px;
  }
  .hours__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .hours__category-text {
    font-size: 22px;
  }
  .hours__time-row {
    flex-direction: column;
    gap: 4px;
  }
  .price-block {
    padding: 24px 0 20px;
    overflow-x: auto;
  }
  .price-table {
    min-width: 480px;
  }
  .price-table td {
    font-size: 13px;
    padding: 10px 12px;
    letter-spacing: 0.05em;
  }
  .pt-detail {
    padding: 10px 16px;
  }
  .price-block__note {
    font-size: 12px;
    padding: 0 16px;
    text-align: left;
  }
}

/* ── モーション低減 ── */
@media (prefers-reduced-motion: reduce) {
  .hours__row,
  .price-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== ACCESS ===== */

/* グーグルマップ（全幅） */

.access__map {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2 / 1;   
  border: 2px solid #c0d0dc;
  margin-bottom: 48px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 住所・電話・アクセス 2カラム */
.access__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

/* 各アイテム */
.access__item {
  margin-bottom: 28px;
}
.access__item:last-child {
  margin-bottom: 0;
}

/* ラベル（住所・電話・アクセス） */
.access__item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #0051a3;
  margin:8px 0 ;
  letter-spacing: 0.05em;
}

.access__label-icon {
  width: 40px;
  height: px;
  object-fit: contain;
  flex-shrink: 0;
}

/* 本文 */
.access__item-content {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  padding-left: 28px;
}

/* 電話番号 */
.access__phone {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  color: #0051a3;
  letter-spacing: 0.05em;
  padding-left: 28px;
  margin-top: 4px;
}

/* ── 駐車場エリア ── */
.access__parking-block {
  background-color: #fbf9f6;
  border-radius: 12px;
  padding: 40px 48px;
  text-align: center;
}

.access__parking-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.75;
  color: #0051a3;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.access__parking-lead {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #4f4f4f;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.access__parking-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.access__parking-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  text-align: center;
  margin-bottom: 12px;
}
.access__parking-text:last-child {
  margin-bottom: 0;
}

/* ── SP対応 ── */
@media (max-width: 768px) {
  .access__map {
    height: 240px;
    margin-bottom: 32px;
  }
  .access__info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .access__phone {
    font-size: 22px;
  }
  .access__parking-block {
    padding: 28px 20px;
  }
  .access__parking-text {
    text-align: left;
  }
}
/* ===== Q&A ===== */
.qa {
  background: #ffffff;
}

.qa__lead {
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  margin-bottom: 40px;
}

/* ── タブ（インデックス）── */
.qa__tabs {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 0;
  padding-left: 0;
}

.qa__tab-btn {
  flex: 1; /* ← これを追加：3つのタブが均等に広がる */
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}

/* 各タブの色 */
.qa__tab-btn--food  { background-color: #3bbfbf; }
.qa__tab-btn--hotel { background-color: #ab0000; }
.qa__tab-btn--onsen { background-color: #1b4fa0; }

/* アクティブタブ：パネルとくっつける */
.qa__tab-btn.active {
  z-index: 3;
  transform: translateY(0);
}
/* 非アクティブ：少し下げる */
.qa__tab-btn:not(.active) {
  transform: translateY(6px);
  opacity: 0.9;
}

/* ── 青背景パネル ── */
.qa__panel {
  background-color: #1b4fa0;
  border-radius: 0 0 16px 16px;
  padding: 32px 32px 40px;
  position: relative;
  z-index: 2;
}

/* ── アコーディオンアイテム ── */
.qa__item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.qa__item:last-child { margin-bottom: 0; }

/* 質問行 */
.qa__question {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.qa__question:hover { background: #f0f5fb; }

/* Q マーク：大きくDela Gothic One */
.qa__q-mark {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 32px;
  color: #0051a3; /* 常に青 */
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

/* 質問テキスト */
.qa__q-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #4f4f4f;
  flex: 1;
  letter-spacing: 0.05em;
}

/* ⊕ / ⊖ アイコン */
.qa__chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* borderとcolorは不要になるので削除 */
}
.qa__chevron-img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

/* 通常時：プラス表示、マイナス非表示 */
.qa__chevron-img--plus  { display: block; }
.qa__chevron-img--minus { display: none; }

/* open時：プラス非表示、マイナス表示 */
.qa__item.open .qa__chevron-img--plus  { display: none; }
.qa__item.open .qa__chevron-img--minus { display: block; }


/* 回答エリア */
.qa__answer {
  display: none;
  padding: 0 24px 24px 84px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
}
.qa__answer-mark {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  color: #ab0000; 
  margin-right: 16px;
  vertical-align: middle;
}

.qa__item.open .qa__answer { display: block; }

/* ── SP対応 ── */
@media (max-width: 768px) {
  .qa__tab-btn {
    font-size: 12px;
    padding: 10px 16px;
  }
  .qa__panel {
    padding: 20px 16px 28px;
    border-radius: 0 12px 12px 12px;
  }
  .qa__answer {
    padding-left: 48px;
  }
}

.instagram {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* 背景の薄い半円 */
.instagram::before {
  content: '';
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1700px;
  height: 1700px;
  background-color: #fbf9f6;
  border-radius: 50%;
  z-index: 0;
}

/* コンテンツを前面に */
.instagram .container {
  position: relative;
  z-index: 1;
}

.instagram__heading {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 62px;
  color: var(--blue);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.instagram__sub {
  text-align: center;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.instagram__grid {
  width: 100%;
  overflow: hidden;
  margin-bottom: 32px;
}

.instagram__post {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s;
  background: #e8eef5;
}

.instagram__post:hover { opacity: 0.85; }

.instagram__more { text-align: center; }


.snapwidget-widget {
  width: 100% !important;
  display: block;
}




/* ===== FOOTER ===== */
.footer {
  background-color: #0051a3;
  color: #ffffff;
  padding: 48px 0 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 48px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

/* ── 左エリア ── */
.footer__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── ロゴ ── */
.footer__logos {
  display: flex;
  gap: 55px;
  align-items: center; 
}

.footer__logo-wrap {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px; 
}

.footer__logo-img {
  width: auto;         
  height: 80px;        
  object-fit: contain;
  display: block;
}

/* ── 住所 ── */
.footer__address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer__address-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: #ffffff;
}
.footer__address-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

/* ── ボタン ── */
.footer__btns {
  display: flex;
  gap: 16px;
}

.footer__btn-img-wrap {
  flex: 1;
  display: block;
  text-decoration: none;
  transition: opacity 0.2s;
  line-height: 0;
}

.footer__btn-img-wrap:hover {
  opacity: 0.85;
}

.footer__btn-image {
  width: 80%;
  height: auto;
  display: block;
}

/* ── 区切り線 ── */
.footer__divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  align-self: stretch;
  flex-shrink: 0;
}

/* ── 右エリア（カンプ完全再現版） ── */
.footer__right {
  width: 440px; 
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 100px;    
  padding-left: 50px; 
}

/* 2つの列（div）を横並びにする設定 */
.footer__nav {
  display: flex;
  gap: 60px; /* 左列と右列の間隔 */
}

/* 列ごとの縦並び設定 */
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 20px; /* 上下のメニューの間隔 */
}

.footer__nav-link {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700; 
  font-size: 16px; 
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap; /* テキストの途中改行を絶対に防ぐ */
  transition: opacity 0.2s;
}
.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__copy {
  font-family: 'Zen Maru Gothic', sans-serif; 
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #ffffff; 
  text-align: center; 
  margin-top: auto;
  white-space: nowrap;
  transform: translateX(-50px); /* カンプ通り縦線を基準に中央寄りに微調整 */
}

/* =============================================
   ── SP対応（完全版） ──
   ============================================= */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    padding: 0 20px 40px;
    gap: 32px;
  }
  
  .footer__divider {
    width: 100%;
    height: 1px;
  }
  
  .footer__left {
    width: 100%;
  }

  .footer__btns {
    flex-direction: column; 
    gap: 12px;
  }
  .footer__btn-img-wrap {
    width: 100%;
    max-width: 340px; 
    margin: 0 auto;   
  }

  .footer__right {
    width: 100%;
    padding-left: 0;
    gap: 40px;
  }
  
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    justify-items: center; 
  }
  
  .footer__copy {
    text-align: center;
    white-space: normal;
    transform: none;
  }
}
/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }


/* ===== スクロールアニメーション共通 ===== */
.anim-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* D：スタッガー（時間差） */
.anim-stagger .anim-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-stagger .anim-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SP追加対応（style.css末尾）
   ============================================= */
@media (max-width: 768px) {
  /* フッター下にSP CTAバー分の余白 */
  body {
    padding-bottom: 60px;
  }
  
  /* ヘッダー高さに合わせた上部余白 */
  .contact-page,
  .news-page,
  .onsen-page,
  .hotel-page,
  .restaurant-page {
    padding-top: 0;
  }

  /* banner-area SP */
  .banner-area {
    padding: 32px 0;
  }

  /* section-heading SP */
  .section-heading__en { font-size: 32px; }

  /* hours section SP */
  .hours__inner { padding: 32px 20px 48px; }

  /* access section inner */
  .access__inner,
  .access__section .container,
  .access .container {
    padding: 0 20px;
  }

  /* QA section padding */
  .qa .container {
    padding: 0 12px;
  }

  /* Instagram section */
  .instagram .container {
    padding: 0 16px;
  }
  .instagram__heading { font-size: 36px; }

  /* news SP overlap fix */
  .news-area .inner-container {
    max-width: 100%;
    padding: 0 16px;
  }
  .news-item {
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .news-item a {
    padding: 12px 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: center;
  }

  .news-title {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 14px;
    align-self: center;
  }
  .news-icon { display: none; }

  /* about-us SP */
  .about-us {
    padding: 48px 0;
  }
  .about-us__inner {
    padding: 0 16px;
    max-width: 100%;
  }
  .about-us__cards {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    border-radius: 12px;
    gap: 20px;
  }

  /* facility SP */
  .facility {
    padding: 48px 0;
  }
  .facility__inner {
    max-width: 100%;
    padding: 0 16px;
  }
  .facility__header { margin-bottom: 28px; }
  .facility__title { font-size: 32px; }
  .facility__heading { font-size: 20px; }
  .facility__text { font-size: 14px; letter-spacing: 0.05em; margin-bottom: 20px; }
  .facility__btn { font-size: 14px; padding: 12px 0; }
}


