@charset "UTF-8";

/* =========================================================
   Web Fonts (self-hosted)
   ======================================================= */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('fonts/NotoSansJP-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Yrsa';
  src: url('fonts/Yrsa-Variable.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   LsHotel — shared stylesheet

   目次
   1.  Design tokens
   2.  Reset / base
   3.  Typography
   4.  Layout (container / section)
   5.  Header / Navigation
   6.  Buttons
   7.  Hero（トップページ）
   8.  Page hero / Breadcrumb（下層ページ）
   9.  Cards / Card grid
   10. Feature rows
   11. Info table
   12. Forms
   13. News list
   14. Prose（規約などの長文）
   15. OTA buttons / Page nav
   16. Sitemap tree
   17. Footer
   18. Utilities
   19. Scroll reveal
   20. Responsive
   21. Print / Reduced motion
   ========================================================= */

/* 1. Design tokens ----------------------------------------- */
:root {
  /* colors */
  --color-main: #121212;
  --color-bg: #F8F6F2;
  --color-sub-1: #EDE8E2;
  --color-sub-2: #E2DDD6;
  --color-accent-1: #B89C88;
  --color-accent-2: #CFC3A8;
  --color-text: #1e1e1e;
  --color-text-muted: #4a4745;
  --color-border: #DEDAD3;
  --color-white: #ffffff;
  --color-dark-text: #c9c8c2;
  --color-dark-muted: #8a8985;

  /* typography（見出しも本文もNoto Sans JPで統一。
     Yrsaは "LsHotel" ワードマーク専用） */
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-brand: "Yrsa", "Times New Roman", serif;

  /* spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* layout */
  --content-width: 1200px;
  --content-narrow: 880px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* motion */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 800ms;
}

/* 2. Reset / base ------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  min-width: 360px;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:hover { color: var(--color-accent-1); }

ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-accent-1);
  outline-offset: 2px;
}

/* 3. Typography -------------------------------------------- */
h1, h2, h3, h4, h5 {
  margin: 0 0 0.6em;
  font-weight: 700;
  line-height: 1.5;
}

.section-title {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.6em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* 4. Layout ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  width: 100%;
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }
.section--sub1   { background-color: var(--color-sub-1); }
.section--sub2   { background-color: var(--color-sub-2); }
.section--accent { background-color: var(--color-accent-2); }
.section--dark   { background-color: var(--color-main); color: var(--color-bg); }

/* .section--dark 内の色上書き */
.section--dark .section-title { color: var(--color-bg); }
.section--dark p              { color: var(--color-dark-text); }
.section--dark .btn--outline {
  color: var(--color-bg);
  border-color: var(--color-bg);
}

/* セクション見出しブロック（中央揃え＋下マージン） */
.section__head {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section__head--sm { margin-bottom: var(--space-md); }

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-1);
  margin: 0 0 0.8em;
}

.section__head--feature .section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}

/* セクション導入文（狭めの中央リード文） */
.section__lead {
  max-width: 42em;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

/* 施設紹介画像 */
#facility img {
  display: block;
  margin: 0 auto;
  border: 1px solid #ccc;
}

/* 5. Header / Navigation ----------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.9rem var(--space-md);
  background-color: #FBFCF0;
  border-bottom: 1px solid var(--color-border);
  min-width: 360px;
}
.site-header__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-brand);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-main);
}
.site-logo img { height: 36px; width: auto; }

.site-nav { display: flex; align-items: center; margin-left: auto; }

.nav-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5em;
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: stretch;
  margin-top: -0.9rem;
  margin-bottom: -0.9rem;
  margin-right: calc(-1 * var(--space-md));
  transition: background-color var(--duration-fast) var(--ease);
}
.nav-reserve:hover {
  background-color: var(--color-accent-1);
  color: var(--color-white);
}
.site-nav__list {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.site-nav__link {
  font-size: 0.9rem;
  color: var(--color-main);
  padding: 0.2em 0;
}
.site-nav__link:hover {
  color: var(--color-accent-1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background-color: var(--color-main);
  transition: transform var(--duration-base) var(--ease),
              opacity var(--duration-fast) var(--ease),
              top var(--duration-base) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* 6. Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-width: 180px;
  padding: 0.85em 1.6em;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-align: center;
}
.btn i { font-size: 0.85em; }
.btn--sm { min-width: 0; padding: 0.55em 1.2em; font-size: 0.85rem; }

.btn--primary {
  background-color: var(--color-main);
  color: var(--color-bg);
}
.btn--primary:hover {
  background-color: var(--color-accent-1);
  color: var(--color-white);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
.btn--outline:hover {
  background-color: var(--color-main);
  color: var(--color-bg);
}

.btn--accent {
  background-color: var(--color-accent-1);
  color: var(--color-white);
}
.btn--accent:hover {
  background-color: var(--color-main);
  color: var(--color-bg);
}

/* 7. Hero (top page) --------------------------------------- */
.hero {
  padding-top: 60px;
}
.hero__image-wrap {
  position: relative;
}
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  min-height: clamp(300px, 40vw, 560px);
}
.hero__logo-overlay {
  position: absolute;
  top: calc(clamp(300px, 40vw, 560px) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 30%, 400px);
  height: auto;
  z-index: 3;
}
.hero__inner {
  padding-top: calc(clamp(300px, 40vw, 560px) * 0.7);
  padding-right: var(--space-md);
  padding-bottom: var(--space-lg);
  padding-left: var(--space-md);
  text-align: center;
  color: var(--color-white);
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
}
.hero__title {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero__lead {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero__actions--center {
  justify-content: center;
  margin-top: var(--space-md);
}

/* 8. Page hero / Breadcrumb -------------------------------- */
.page-hero {
  padding: calc(var(--space-xl) + 60px) 0 var(--space-lg);
  background-color: var(--color-sub-1);
  text-align: center;
}
.page-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 0.4em;
}
.page-hero__title img {
  max-height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.page-hero__subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.breadcrumb {
  padding: var(--space-sm) 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: center;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 0.5em;
  color: var(--color-border);
}
.breadcrumb li:last-child { color: var(--color-main); }
.breadcrumb li:last-child::after { content: ""; }

/* 9. Cards / Card grid ------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 350px));
  gap: var(--space-md);
  justify-content: start;
}

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.card:hover { border-color: var(--color-accent-1); }

.card__visual {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(135deg, var(--color-sub-1) 0%, var(--color-sub-2) 100%);
}
.card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3), transparent 60%);
}
.card__visual--accent { background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%); }
.card__visual--dark   { background: linear-gradient(135deg, #2c2a27 0%, #121212 100%); }

.card__body { padding: var(--space-md); }
.card__eyebrow {
  font-size: 0.78rem;
  color: var(--color-accent-1);
  margin-bottom: 0.5em;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.card--coming-soon {
  cursor: default;
  opacity: 0.75;
}
.card--coming-soon:hover { border-color: var(--color-border); }
.card--coming-soon .card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card--coming-soon .card__visual-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
  background-color: rgba(0,0,0,0.45);
  padding: 0.4em 1em;
}

.card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* 10. Feature rows ----------------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-lg);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__visual { order: 2; }

.feature-row__visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-sub-2) 0%, var(--color-accent-2) 100%);
}
.feature-row__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 30%, rgba(255,255,255,0.3), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(18,18,18,0.15), transparent 55%);
}
.feature-row__visual--accent   { background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent-1) 100%); }
.feature-row__visual--sub      { background: linear-gradient(135deg, var(--color-sub-1) 0%, var(--color-sub-2) 100%); }
.feature-row__visual--sub-warm { background: linear-gradient(135deg, var(--color-sub-1) 0%, var(--color-accent-2) 100%); }
.feature-row__visual--map { background: none; padding: 0; overflow: hidden; }
.feature-row__visual--map::after { display: none; }
.feature-row__visual--photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-sub-1);
}
.feature-row__visual--photo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-sub-1);
  z-index: 1;
}
.feature-row__visual--photo::after { display: none; }

.feature-row__visual-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--color-main);
}

.feature-index {
  display: block;
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-border);
  letter-spacing: -0.03em;
  margin-bottom: -0.1em;
  user-select: none;
}

.feature-row__text h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 0.6em;
}
.feature-row__text h3 + p + h3 { margin-top: 1.5em; }
.access-from-head {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  margin-bottom: 0.3em;
}
.access-from-list {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0 0 1.6em;
  line-height: 1.9;
}
.feature-row__text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 2;
}

/* お部屋セクション専用レイアウト（PC: visual | title+body / SP: title→visual→body） */
.feature-row--room {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.feature-row--room .feature-row__visual {
  align-self: stretch;
  aspect-ratio: unset;
  min-height: 280px;
}

/* 客室写真スライダー */
.room-slider {
  background: #2c2a27;
}
.room-slider::after { display: none; }
.room-slider__track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.room-slider__slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.room-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.room-slider__btn:hover { background: rgba(0, 0, 0, 0.7); }
.room-slider__btn--prev { left:  0.625rem; }
.room-slider__btn--next { right: 0.625rem; }
.room-slider__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.room-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.room-slider__dot.is-active {
  background: #fff;
  border-color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .room-slider__track { transition: none; }
}

/* 11. Info table / Room spec / Spot table / Amenity / Notice */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.info-table th,
.info-table td {
  padding: 1em 1em;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}
.info-table th {
  width: 28%;
  font-weight: 500;
  color: var(--color-text-muted);
}
.info-table a { text-decoration: underline; }

/* お部屋のスペック表（feature-row 内で使用） */
.room-spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: var(--space-sm);
}
.room-spec th,
.room-spec td {
  padding: 0.7em 0.9em 0.7em 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}
.room-spec th {
  width: 7em;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.room-spec tr:last-child th,
.room-spec tr:last-child td { border-bottom: 0; }

/* 周辺スポット一覧テーブル */
.spot-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.spot-table thead th {
  padding: 0.8em 1em;
  text-align: left;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background-color: var(--color-sub-1);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}
.spot-table tbody th,
.spot-table tbody td {
  padding: 1em;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}
.spot-table tbody th {
  font-weight: 700;
  white-space: nowrap;
}
.spot-table__category {
  display: inline-block;
  font-size: 0.74rem;
  padding: 0.2em 0.8em;
  background-color: var(--color-sub-2);
  border-radius: 999px;
  white-space: nowrap;
}
.spot-table__distance {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.spot-table__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* 設備・アメニティ */
.amenity-group { margin-bottom: var(--space-lg); }
.amenity-group:last-child { margin-bottom: 0; }
.amenity-group__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--color-border);
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-sm);
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.8em;
  padding: 0.9em 1em;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.amenity-item i {
  color: var(--color-accent-1);
  font-size: 1.05rem;
  width: 1.4em;
  text-align: center;
  flex-shrink: 0;
}

/* 注意事項リスト */
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.notice-list > li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}
.notice-list > li:first-child { padding-top: 0; }
.notice-list > li:last-child  { border-bottom: 0; padding-bottom: 0; }
.notice-list h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4em;
}
.notice-list p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}
.access-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-top: var(--space-sm);
}

/* 12. Forms ------------------------------------------------ */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form__field { display: flex; flex-direction: column; gap: 0.5em; }
.form__label {
  font-size: 0.9rem;
  font-weight: 500;
}
.form__label .required {
  color: var(--color-accent-1);
  font-size: 0.75em;
  margin-left: 0.4em;
}
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8em 0.9em;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-accent-1);
}
.form__textarea { min-height: 160px; resize: vertical; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.form__consent input { margin-top: 0.3em; }
.form__consent a { text-decoration: underline; }

.form__actions { text-align: center; margin-top: var(--space-sm); }

.form-intro { margin-bottom: var(--space-md); }

/* 13. News list -------------------------------------------- */
.news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-md);
}
.news-head__title { margin-bottom: 0; }

.news-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: grid;
  grid-template-columns: 8em 8em 1fr;
  gap: var(--space-md);
  align-items: baseline;
  padding: 1.1em 0;
  border-bottom: 1px solid var(--color-border);
}
a.news-item:hover .news-item__title { color: var(--color-accent-1); }
.news-item__date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.news-item__tag {
  display: inline-block;
  font-size: 0.74rem;
  padding: 0.25em 0.9em;
  background-color: var(--color-sub-2);
  border-radius: 999px;
  text-align: center;
  width: max-content;
}
.news-item__title {
  font-size: 0.95rem;
}

/* 14. Prose（規約などの長文） ----------------------------- */
.prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2em 0 0.6em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--color-border);
}
.prose h3 { font-size: 1.05rem; font-weight: 700; margin: 1.6em 0 0.5em; }
.prose p, .prose li { font-size: 0.95rem; line-height: 2; }
.prose ul, .prose ol { margin: 1em 0 1em 1.5em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4em; }
.prose a { text-decoration: underline; }
.prose__date {
  margin-top: 2em;
  text-align: right;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* 15. OTA buttons / Page nav ------------------------------- */
/* 概要セクション内に埋め込む予約ブロック */
.booking-inline {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-sub-1);
  border-radius: var(--radius-sm);
}
.booking-inline__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4em;
  text-align: center;
}
.booking-inline__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 var(--space-md);
}
.booking-inline .note { text-align: center; }

.direct-booking {
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: var(--color-surface, #f8f6f2);
  border-radius: 8px;
  border: 1px dashed var(--color-accent-1, #8b7355);
}
.direct-booking__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2em 0.7em;
  background: var(--color-accent-1, #8b7355);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-radius: 3px;
}
.direct-booking__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}
.direct-booking__calendar {
  overflow: hidden;
  border-radius: 6px;
}
.direct-booking__note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--color-text-sub, #888);
  text-align: center;
}

.ota-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.ota-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.2em;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-main);
}
.ota-btn:hover {
  border-color: var(--color-accent-1);
  color: var(--color-main);
}
.ota-btn__label { display: flex; flex-direction: column; gap: 0.2em; }
.ota-btn__eyebrow {
  font-size: 0.74rem;
  color: var(--color-accent-1);
}
.ota-btn i { color: var(--color-accent-1); font-size: 0.9em; }

/* ページ内ナビゲーション */
.page-nav {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}
.page-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.9rem;
}
.page-nav__list a:hover { color: var(--color-accent-1); }

/* 16. Sitemap tree ----------------------------------------- */
.sitemap-tree { display: flex; flex-direction: column; gap: var(--space-md); }
.sitemap-tree__section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--color-border);
}
.sitemap-tree__section ul { padding-left: 1.2em; list-style: disc; }
.sitemap-tree__section li { margin-bottom: 0.4em; }
.sitemap-tree__section li a { text-decoration: underline; text-underline-offset: 3px; }

/* 17. Footer ----------------------------------------------- */
.site-footer {
  background-color: var(--color-main);
  color: var(--color-dark-text);
  padding: var(--space-lg) 0 var(--space-md);
  font-size: 0.88rem;
}
.site-footer a { color: inherit; }
.site-footer a:hover { color: var(--color-accent-2); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}
.site-footer__brand .site-logo { color: var(--color-bg); }
.site-footer__brand .site-logo img { filter: brightness(0) invert(1); }
.site-footer__tagline {
  margin-top: var(--space-sm);
  color: var(--color-dark-muted);
  font-size: 0.85rem;
  line-height: 1.8;
}
.site-footer__heading {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-accent-2);
  margin-bottom: var(--space-sm);
}
.site-footer__list li { margin-bottom: 0.5em; }
.site-footer__bottom {
  border-top: 1px solid #2b2b2b;
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  color: #7a7975;
  font-size: 0.8rem;
}
.site-footer__meta { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* 18. Utilities -------------------------------------------- */
.text-center { text-align: center; }
.mt-lg       { margin-top: var(--space-lg); }
.text-muted  { color: var(--color-text-muted); }
.text-sm     { font-size: 0.88rem; }
.text-xs     { font-size: 0.82rem; }

.note {
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.note--sm { font-size: 0.88rem; }
.section--dark .note,
.section--dark p.note { color: var(--color-dark-muted); }


/* 20. Responsive ------------------------------------------- */
@media (min-width: 1100px) {
  .hero__logo-overlay { top: calc(clamp(300px, 40vw, 560px) / 2 - 3rem); }
  .hero__inner { padding-top: calc(clamp(300px, 40vw, 560px) * 0.7 - 3rem); }
}

@media (max-width: 1280px) {
  :root {
    --space-2xl: 6rem;
    --space-xl: 4.5rem;
  }
}

@media (max-width: 840px) {
  .hero__inner { max-width: 100%; }
}

@media (max-width: 960px) {
  :root {
    --space-2xl: 4.5rem;
    --space-xl: 3.5rem;
    --space-lg: 3rem;
  }
  .site-header { padding: 0.7rem 1rem; }
  .site-logo { font-size: 1.15rem; }
  .site-logo img { height: 30px; width: auto; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 98;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 60px;
    background-color: var(--color-bg);
    transform: translateX(100%);
    transition: transform var(--duration-base) var(--ease);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: var(--space-md) 0;
  }
  .site-nav__list li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  .site-nav__link {
    display: block;
    padding: 1.1rem var(--space-md);
    font-size: 1rem;
  }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-reserve {
    position: relative;
    z-index: 110;
    margin-top: -0.7rem;
    margin-bottom: -0.7rem;
    margin-right: -1rem;
  }

  .hero { padding-top: 52px; }

  .feature-row { grid-template-columns: 1fr; gap: var(--space-md); }
  .feature-row--reverse .feature-row__visual { order: 0; }

  .feature-row--room {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .feature-row--room .feature-row__text {
    display: contents;
  }
  .feature-row--room .feature-row__text > .feature-index {
    display: none;
  }
  .feature-row--room .feature-row__text > h3 {
    order: 1;
  }
  .feature-row--room .feature-row__visual {
    order: 2;
    aspect-ratio: 4 / 3;
    min-height: unset;
    align-self: auto;
    margin-bottom: var(--space-xs);
  }
  .feature-row--room .feature-row__text > *:not(h3) {
    order: 3;
  }
  .feature-row--room.feature-row--reverse .feature-row__visual {
    order: 2;
  }

  .form__row { grid-template-columns: 1fr; }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0.4em;
    padding: 1em 0;
  }
  .news-item__tag { justify-self: start; }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .site-footer__brand { grid-column: 1 / -1; }

  .info-table th { width: 32%; }

  /* 周辺スポット一覧：モバイルではカード状に積む */
  .spot-table thead { display: none; }
  .spot-table tbody tr {
    display: block;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
  }
  .spot-table tbody tr:last-child { border-bottom: 0; }
  .spot-table tbody th,
  .spot-table tbody td {
    display: block;
    padding: 0.25em 0;
    border: 0;
  }
  .spot-table tbody th { padding-top: 0; }

  /* 注意事項：番号列を小さく */
  .notice-list > li { grid-template-columns: 2em 1fr; gap: 0.6em; }
}

@media (max-width: 375px) {
  body { font-size: 15px; }
  :root { --space-2xl: 3.5rem; --space-xl: 2.5rem; }
  .container, .container-narrow { padding: 0 1rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .info-table { font-size: 0.85rem; }
  .info-table th, .info-table td { padding: 0.9em 0.6em; }
  .info-table th { width: 38%; }
}

/* 20b. FAQ ------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0; margin: 0; }

.faq-item {
  border-bottom: 1px solid var(--color-border, #e0dbd4);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--color-border, #e0dbd4); }

.faq-item__q,
.faq-item__a {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item__a { margin-top: 0.6rem; color: var(--color-text-sub, #555); }

.faq-item__icon {
  flex-shrink: 0;
  width: 1.6em;
  height: 1.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.faq-item__q .faq-item__icon { background: var(--color-accent-1, #8b7355); color: #fff; }
.faq-item__a .faq-item__icon { background: var(--color-sub-1, #e8e3dc); color: var(--color-text, #1a1a1a); }

.cancel-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  font-size: 0.9em;
}
.cancel-table th,
.cancel-table td {
  border: 1px solid var(--color-border, #e0dbd4);
  padding: 0.5rem 0.8rem;
  text-align: left;
}
.cancel-table thead th {
  background: var(--color-sub-1, #e8e3dc);
  font-weight: 600;
}
.cancel-table tbody tr:nth-child(even) {
  background: #f9f7f5;
}

/* 21. Print / Reduced motion ------------------------------- */
@media print {
  .site-header, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* 22. Cookie Consent Banner --------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 9999;
  font-size: 0.875rem;
  line-height: 1.6;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}
.cookie-banner p {
  margin: 0;
  flex: 1;
}
.cookie-banner a {
  color: #a8c4a8;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--accept {
  background: #4a7c59;
  color: #fff;
  border: 1px solid #4a7c59;
}
.cookie-banner__btn--decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #666;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 23. Grand Opening Popup ---------------------------------- */
.grand-opening-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.72);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: goFadeIn var(--duration-base) var(--ease) both;
}
.grand-opening-overlay.is-closing {
  animation: goFadeOut var(--duration-base) var(--ease) both;
}
@keyframes goFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes goFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.grand-opening-modal {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: goSlideUp var(--duration-base) var(--ease) both;
}
@keyframes goSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.grand-opening-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  border-radius: 50%;
  transition: background var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease);
}
.grand-opening-modal__close:hover {
  background: var(--color-sub-2);
  color: var(--color-main);
}

.grand-opening-modal__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--color-accent-1);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.grand-opening-modal__date {
  font-family: var(--font-jp);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.3;
  margin: 0 0 0.4rem;
}

.grand-opening-modal__title {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--color-accent-1);
  margin: 0 0 1.2rem;
  letter-spacing: 0.04em;
}

.grand-opening-modal__divider {
  width: 3rem;
  height: 1px;
  background: var(--color-border);
  margin: 0 auto 1.2rem;
}

.grand-opening-modal__body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin: 0 0 2rem;
}

.grand-opening-modal__btn {
  display: inline-block;
  padding: 0.8em 2.2em;
  background: var(--color-main);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity var(--duration-fast) var(--ease);
}
.grand-opening-modal__btn:hover { opacity: 0.78; }

@media (max-width: 480px) {
  .grand-opening-modal {
    padding: 2.5rem 1.5rem 2rem;
  }
}
