@charset "UTF-8";

:root {
  --ink: #2b2621;
  --ink-soft: #5c5349;
  --paper: #f6f2ea;
  --paper-2: #ece5d8;
  --matcha: #6b7b52;
  --matcha-dk: #4f5c3d;
  --gold: #b08d57;
  --line: #ddd3c3;
  --white: #fffdf8;
  --maxw: calc(100% - 7.25vw - 7.25vw);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
} /* スクロールバー分を常に確保（ロック解除時の幅ズレ防止） */
body {
  font-family: "Noto Serif JP", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.serif {
  font-family: "Noto Serif JP", serif;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-head .en {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-head .ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.sec-head .ja::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}
section {
  padding: 100px 0;
}

/* ============ オープニング（ロゴ） ============ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  transition:
    opacity 1.1s var(--ease),
    visibility 1.1s var(--ease);
}
#intro.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-logo {
  width: min(380px, 62vw);
  height: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: introLogo 1.8s var(--ease) 0.25s forwards;
}
@keyframes introLogo {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============ ヘッダー ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 46px;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
}
header.scrolled {
  background: rgba(246, 242, 234, 0.95);
  padding: 14px 46px;
  align-items: center;
  backdrop-filter: blur(6px);
}

/* ブランドロゴ（濃い背景＝白縦ロゴ／スクロール後＝黒横ロゴ） */
.brand {
  display: block;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: auto;
  transition: height 0.4s var(--ease);
}
.brand-logo--light {
  height: 280px;
}
.brand-logo--dark {
  height: 40px;
  display: none;
}
header.scrolled .brand-logo--light {
  display: none;
}
header.scrolled .brand-logo--dark {
  display: block;
}

/* ナビ */
nav {
  padding-top: 6px;
}
nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  
  padding-bottom: 16px;
  transition: border-color 0.4s;
}
header.scrolled nav ul {
  border-bottom-color: transparent;
  padding-bottom: 0;
}
nav li + li::before {
  content: "|";
  color: rgba(255, 255, 255, 0.4);
  margin: 0 20px;
  font-weight: 300;
}
header.scrolled nav li + li::before {
  color: var(--line);
}
nav a {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
header.scrolled nav a {
  color: var(--ink-soft);
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
nav a:hover {
  color: var(--paper);
}
nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
header.scrolled .nav-toggle span {
  background: var(--ink);
}

/* ヘッダー右側：ナビ ＋ 一休ロゴ（濃い背景＝白／スクロール後＝濃色） */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-ikyu {
  display: inline-flex;
  align-items: center;
}
.ikyu-logo {
  height: 26px;
  width: auto;
  display: block;
}
.ikyu-logo--dark {
  display: none;
}
header.scrolled .ikyu-logo--light {
  display: none;
}
header.scrolled .ikyu-logo--dark {
  display: block;
}

/* ============ TOP / Swiper ヒーロー ============ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
}
.hero .swiper {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.hero .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.hero .swiper-slide {
  height: 100%;
  width: 100%;
}
.hero .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero .slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
}
/* Ken Burns：JSで .kb を付与して制御。
   アクティブでなくなっても .kb は外さないため、切替中も前の画像はズームしたまま
   フェードアウトする（＝ズーム前へカチッと戻る現象を防ぐ）。 */
.hero .slide-img.kb {
  animation: kenburns 9s linear forwards;
}
@keyframes kenburns {
  from {
    transform: scale(1.1) translate(0, 0);
  }
  to {
    transform: scale(1.26) translate(-3%, -1.6%);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(30, 27, 23, 0.48) 0%,
    rgba(30, 27, 23, 0.12) 26%,
    rgba(30, 27, 23, 0.08) 58%,
    rgba(30, 27, 23, 0.58) 100%
  );
}
.hero-copy {
  position: absolute;
  left: 56px;
  bottom: 74px;
  z-index: 5;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.6s var(--ease) 0.5s forwards;
}
.hero-copy h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.0vw, 2.0rem);
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Swiper ページネーション */
.hero .swiper-pagination {
  z-index: 6;
  bottom: 40px !important;
  text-align: right;
  padding-right: 60px;
}
.hero .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--white);
  opacity: 0.4;
  transition: opacity 0.3s;
  border-radius: 50%;
}
.hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  font-family: "Noto Serif JP", serif;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--white);
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  background: var(--white);
  margin: 10px auto 0;
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============ About ============ */
#about {
  background: var(--white);
}
.about-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.about-lead .catch {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-bottom: 28px;
}
.about-lead p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
/* 左：文章（コンテナ左に整列）／ 右：画像スライド（右端まで full-bleed・右余白0） */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  /*gap: clamp(32px, 4vw, 60px);*/
  gap: 7.25vw;
  align-items: center;
  margin-bottom: 96px;
  /*padding-left: max(24px, calc((100% - 1072px) / 2));*/
  padding-left: 7.25vw;
}
.about-intro-text .catch {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-bottom: 26px;
}
.about-intro-text p {
  color: var(--ink-soft);
  font-size: 1.05vw;
}
.about-intro-media {
  position: relative;
  min-width: 0;
}
.aboutSwiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(43, 38, 33, 0.14);
}
.aboutSwiper .swiper-slide {
  overflow: hidden;
}
.aboutSwiper .swiper-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}
.aboutSwiper .swiper-pagination {
  bottom: 16px !important;
}
.aboutSwiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--white);
  opacity: 0.55;
  transition: opacity 0.3s;
  border-radius: 50%;
}
.aboutSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.aboutSwiper .swiper-button-prev,
.aboutSwiper .swiper-button-next {
  color: var(--white);
  transform: scale(0.5);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid.reverse {
  direction: rtl;
}
.about-grid.reverse > * {
  direction: ltr;
}
.about-grid + .about-grid {
  margin-top: 80px;
}
.about-figure {
  position: relative;
}
.about-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-figure .cap {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: var(--matcha);
  color: var(--white);
  font-family: "Noto Serif JP", serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  padding: 10px 20px;
}
.about-text h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-text h3 span {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
.about-text p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ============ Topics ============ */
#topics {
  padding: 0;
   background: var(--white);
}
/* 背景は白。装飾パネルで各ブロックに彩りを差し込む（藤井荘風） */
.topics-band {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #fff;
  overflow: hidden; /* 装飾パネルのはみ出しをクリップ */
}
/* 和風の葉の装飾（bk01）を角に配置 */
.topics-band--rooms {
  position: relative;
}
.topics-band--rooms > .wrap {
  position: relative;
  z-index: 1;
}
.deco-leaf {
  position: absolute;
  z-index: 0;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.deco-leaf--tr {
  top: 0;
  right: 0;
  width: clamp(360px, 40vw, 600px);
}
.deco-leaf--ml {
  top: 30%;
  left: 0;
  width: clamp(320px, 34vw, 520px);
  transform: scaleX(-1);
}
.deco-leaf--br {
  bottom: 0;
  right: 0;
  width: clamp(320px, 34vw, 520px);
  transform: scaleY(-1);
}
/* Topic02：テキストを画像の上（前）に配置。スクロールで テキスト → スライド の順 */
.cuisine-block .topics-caption {
  margin: 0 auto clamp(34px, 4.5vw, 60px);
}
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.topic {
  display: grid;
  grid-template-columns: 150px 130px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  padding: 26px 30px;
  transition: background 0.3s;
}
.topic:hover {
  background: var(--paper);
}
.topic .date {
  font-family: "Noto Serif JP", serif;
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.topic .tag {
  justify-self: start;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  border: 1px solid var(--matcha);
  color: var(--matcha-dk);
  padding: 4px 14px;
  border-radius: 2px;
}
.topic .txt {
  font-size: 0.92rem;
}
/* 画像スライド ＋ 中央キャプション */
.topics-block {
  margin-bottom: 84px;
}
.topics-block:last-child {
  margin-bottom: 0;
}
.topicSwiper {
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 18px 42px rgba(43, 38, 33, 0.14);
}
.topicSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.topicSwiper .swiper-slide img {
  width: 100%;
  height: clamp(320px, 56vh, 560px);
  object-fit: cover;
  display: block;
}
/* 客室名キャプション（画像右下） */
.topic-cap {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  padding: 11px 22px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.topic-cap::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.topicSwiper .swiper-pagination {
  bottom: 16px !important;
}
.topicSwiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--white);
  opacity: 0.55;
  transition: opacity 0.3s;
  border-radius: 50%;
}
.topicSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}
/* 中央構成の上品なキャプション（格式ある和風旅館の設え） */
.topics-caption {
  position: relative;
  max-width: 780px;
  margin: 44px auto 0;
  padding: 10px 20px 0;
  text-align: center;
}
.topics-caption > :not(.tc-num) {
  position: relative;
  z-index: 1;
}
.tc-num {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(4.6rem, 9vw, 7rem);
  font-weight: 600;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.tc-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.tc-cat::before,
.tc-cat::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--line);
}
.tc-cat-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 0.98rem;
  letter-spacing: 0.42em;
  color: var(--matcha-dk);
  text-indent: 0.42em;
}
.tc-cat-en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-indent: 0.4em;
}
.tc-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.62rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-top: 7%;
}
.tc-divider {
  display: block;
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}
.tc-body {
  color: var(--ink-soft);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  line-height: 2;
}

/* ===== お部屋ごとのスライド紹介（泰山・旭・月影） ===== */
.rooms-head {
  position: relative;
  max-width: 780px;
  margin: clamp(56px, 6vw, 84px) auto 4px;
  padding: 10px 20px 0;
  text-align: center;
}
.rooms-head > :not(.tc-num) {
  position: relative;
  z-index: 1;
}
.room-block {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 3.4vw, 56px);
  margin-top: clamp(76px, 8.5vw, 128px);
}
.room-block > .room-caption,
.room-block > .room-media { position: relative; z-index: 1; }
/* 装飾パネル（キャプション側・画面端まで／上下をずらして余白を作る） */
.room-block::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(30px, 4vw, 64px);
  left: calc(50% - 50vw);
  right: 42%;
  height: 100vh;
  background: #f7f6f6;
}
.room-block .room-caption { order: -1; } /* 既定：キャプション左 */
.room-block--right { grid-template-columns: minmax(0, 1fr) 230px; }
.room-block--right .room-caption { order: 0; } /* 交互：キャプション右 */
.room-block--right::before {
  left: 42%;
  right: calc(50% - 50vw);
}
/* 縦書きキャプション */
.room-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.room-tag {
  writing-mode: vertical-rl;
  border: 1px solid var(--line);
  color: var(--matcha-dk);
  font-family: "Noto Serif JP", serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  padding: 16px 7px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
a.room-tag:hover {
  background: var(--matcha);
  border-color: var(--matcha);
  color: var(--white);
}
.room-name {
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  line-height: 1;
  margin: 0;
}
.room-meta {
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  color: var(--ink-soft);
}
/* スライダー */
.room-media { min-width: 0; }
.roomSwiper { overflow: hidden; box-shadow: 0 18px 42px rgba(43, 38, 33, 0.14); }
.roomSwiper .swiper-slide img {
  width: 100%;
  height: clamp(420px, 62vh, 640px);
  object-fit: cover;
  display: block;
}
.roomSwiper .swiper-pagination { bottom: 14px !important; }
.roomSwiper .swiper-pagination-bullet {
  width: 9px; height: 9px; background: var(--white);
  opacity: 0.6; border-radius: 50%; transition: opacity 0.3s;
}
.roomSwiper .swiper-pagination-bullet-active { opacity: 1; }
.roomSwiper .swiper-button-prev,
.roomSwiper .swiper-button-next { color: var(--white); }
.roomSwiper .swiper-button-prev::after,
.roomSwiper .swiper-button-next::after {
  font-size: 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* ============ Special Plan ============ */
#plan {
  background: var(--paper);
}
/* 共通キャッチコピー（見出し直下に1回だけ） */
.plan-lead {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--ink-soft);
  margin: -8px auto 52px;
  max-width: 760px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}
.plan-card {
  background: var(--white);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(43, 38, 33, 0.08);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(43, 38, 33, 0.12);
}
.plan-card .ph {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.plan-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.plan-card:hover .ph img {
  transform: scale(1.06);
}
.plan-card .badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold);
  color: var(--white);
  font-family: "Noto Serif JP", serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  padding: 7px 16px;
}
.plan-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
/* 部屋タイプ（カード見出し） */
.plan-cat {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  color: var(--ink);
}
.plan-cat span {
display: block;
        font-size: 0.975vw;
        letter-spacing: 0.15em;
        color: var(--gold);
        text-indent: 0.3em;
        margin-bottom: 10px;
}
.plan-body .desc {
  color: var(--ink-soft);
  font-size: 0.86rem;
  margin-bottom: 22px;
  flex: 1;
}
.plan-body .btn {
  margin-top: auto;
}
.plan-meta {
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  margin-bottom: 22px;
}
.plan-meta .row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.plan-price {
  font-family: "Noto Serif JP", serif;
}
.plan-price .num {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--matcha-dk);
}
.plan-price .unit {
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.btn {
  display: inline-block;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 14px;
  background: var(--ink);
  color: var(--white);
  transition: background 0.3s;
}
.btn:hover {
  background: var(--matcha-dk);
}

.btn a {
	display: block;
	width: 100%;
	color: #ffffff;
	font-size: 1.0vw;
	text-align: center;
	-webkit-transition: all .5s;
	transition: all .5s;
  line-height: 1.4;
        letter-spacing: 0;
}

.btn b {
	font-size: 1.35vw;
}

.off {
	display: block;
	font-size: 1.35vw !important;
}

.off strong {
	font-size: 1.35vw !important;
	display: block;
}

.shousai {
	font-size: 1.0vw !important;
	display: block;
}

.shousai .ll {
	display: none !important;
}

.shousai .s {
	font-size: 0.9875vw !important;
}

.after_point_rate {
	font-size: 1.35vw !important;
}


/* ============ Photo Gallery ============ */
#gallery {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
#gallery .sec-head .ja {
  color: var(--paper);
}
/* 横に流れ続けるスライド（PCは2.5枚表示） */
.gallerySwiper {
  width: 100%;
  overflow: hidden;
}
.gallerySwiper .swiper-wrapper {
  transition-timing-function: linear !important;
} /* 一定速でスクロール */
.gallerySwiper .swiper-slide {
  overflow: hidden;
}
.gallerySwiper .swiper-slide img {
  width: 100%;
  height: clamp(260px, 30vw, 430px);
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.5s var(--ease);
}
.gallerySwiper .swiper-slide:hover img {
  filter: brightness(1.06);
}

/* ============ Access ============ */
#access {
  background: var(--paper);
}
/* マップ全幅（1面）＋ その下にテキスト */
.access-grid {
  display: block;
  
}
#access #gglmap {
	width: 100%;
	height: 500px;
	margin: 0;
	letter-spacing: 0;
}
.access-info {
  padding: 56px;

  border-top: 1px solid var(--line);
}
/* 左：施設名 ／ 右：紹介文 */
.access-intro {
  display: grid;
  grid-template-columns: minmax(190px, 240px) 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.access-intro .ai-name-col {
  padding-top: 6px;
}
.access-intro .ai-name {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.5;
  color: var(--ink);
}
.access-intro .ai-name-en {
  font-family: "Noto Serif JP", serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 14px;
}
.detail-btn {
  display: inline-block;
  margin-top: 26px;
  background: var(--matcha);
  color: var(--white);
  font-family: "Noto Serif JP", serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  padding: 14px 30px;
  transition: background 0.3s;
}
.detail-btn:hover {
  background: var(--matcha-dk);
}
.access-intro .ai-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 22px;
}
.access-intro .ai-body {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 2.05;
}

/* ============ フッター ============ */
footer {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 60px 24px 40px;
}
footer .logos {
        font-family: "Noto Serif JP", serif;
        letter-spacing: 0.2em;
        margin-bottom: 20px;
        margin: 0 auto 20px;
        text-align: center;
        /* width: 100%; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}
footer .logos img {
 width: 10%;
  height: auto;
  display: inline-block;
}
footer .logos .x {
  margin: 0 18px;
  opacity: 0.6;
  font-size: 0.9rem;
}
footer .note {
  font-size: 0.72rem;
  opacity: 0.7;
  letter-spacing: 0.1em;
  line-height: 2;
}
footer .copy {
  margin-top: 15px;
  font-size: 0.68rem;
  opacity: 0.6;
  letter-spacing: 0.15em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* TOPへ戻るボタン（500px以上スクロールで表示） */
#pagetop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  width: 62px;
  height: 62px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease),
    transform 0.4s var(--ease);
}
#pagetop.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
#pagetop:hover {
  opacity: 0.8;
}
#pagetop img {
  width: 100%;
  height: 100%;
  display: block;
}
