/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* 赤茶ワンポイント × 生成り */
  --color-ink: #2e2a26;
  --color-accent: #99432b;
  --color-accent-hover: #7a3522;
  --color-bg: #f4f1ec;
  --color-bg-white: #ffffff;
  --color-border: #dcd4c8;
  --color-ink-rgb: 46, 42, 38;
  --color-bg-rgb: 244, 241, 236;
  --color-accent-rgb: 153, 67, 43;

  /* 互換エイリアス（既存セレクタ向け） */
  --color-bg-dark: var(--color-ink);
  --color-cream: var(--color-bg-white);
  --color-neutral: var(--color-border);
  --color-vermilion: var(--color-accent-hover);

  --fade-duration: 900ms;
  --fade-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: "Noto Serif JP", "Zen Old Mincho", serif;
  font-weight: 400;
  color: var(--color-ink);
  background-color: var(--color-bg);
  opacity: 1;
  transition: opacity 0.45s var(--fade-ease);
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.fade-out {
  opacity: 0;
}
body.fade-in:not(.show) {
  opacity: 0;
}
body.fade-in.show,
body.show {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
  }
}
a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover:not(.btn a):not(.reservation-option__btn):not(
    .room-unit__reserve a
  ):not(.contact-btn a):not(.contact-fix) {
  opacity: 0.8;
}

/* スクロールでふわりと表示 */
.section-fade,
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--fade-duration) var(--fade-ease),
    transform var(--fade-duration) var(--fade-ease);
  will-change: opacity, transform;
}
.section-fade.is-visible,
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .section-fade,
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

section {
  padding-top: 100px;
}
@media (max-width: 768px) {
  section {
    padding-top: 50px;
  }
}
.btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
  padding: 0.95rem 2rem;
  color: var(--color-ink);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--color-ink) 55%, transparent);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.btn a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.btn a:hover {
  color: var(--color-bg);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn a:hover::after {
  transform: rotate(45deg) translate(1px, -1px);
}

.contentsBox {
  width: 88%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 480px;
  overflow: hidden;
  color: var(--color-bg);
  background: var(--color-ink);
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(var(--color-ink-rgb), 0.18) 0%,
    rgba(var(--color-ink-rgb), 0.08) 42%,
    rgba(var(--color-ink-rgb), 0.62) 100%
  );
}
.header-container {
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  padding: 4px clamp(16px, 3vw, 24px);
}
.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.header-logo img {
  display: block;
  width: auto;
  height: clamp(36px, 4.2vw, 48px);
  max-width: min(42vw, 180px);
  object-fit: contain;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 74px;
  background-color: rgba(var(--color-bg-rgb), 0.42);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 8%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition:
    transform 0.45s ease,
    opacity 0.35s ease,
    visibility 0.35s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease;
}
header.scrolled {
  background-color: rgba(var(--color-bg-rgb), 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: color-mix(in srgb, var(--color-ink) 14%, transparent);
}
@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  header {
    background-color: rgba(var(--color-bg-rgb), 0.92);
  }
  header.scrolled {
    background-color: rgba(var(--color-bg-rgb), 0.96);
  }
}
/* トップ：ヒーロー（スライダー）表示中はメニュー非表示、スクロールでヒーローが終わったら表示 */
header.header--await-hero:not(.header--revealed) {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-icon {
  display: none;
}
nav ul {
  max-width: 1200px;
  margin: 0 1em 0 auto;
  display: flex;
  align-items: center;
  letter-spacing: 0.175rem;
}
nav ul li {
  list-style-type: none;
  padding-left: 1.25em;
}
nav ul li.nav-btn a {
  text-decoration: none;
  transition: opacity 0.5s;
  color: var(--color-bg-dark);
  position: relative;
  display: inline-block;
  text-decoration: none;
}
nav ul li.nav-btn a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
nav ul li.nav-btn a:hover::after {
  transform: scale(1, 1);
}

.contact-btn a {
  background: var(--color-accent);
  padding: 0.5em 1em;
  color: var(--color-bg);
  border-radius: 5px;
  font-weight: 600;
}
.contact-btn a:hover {
  background: var(--color-vermilion);
}
.contact-fix {
  display: none;
}
@media (max-width: 768px) {
  header {
    height: 62px;
  }
  .header-container {
    position: relative;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-logo {
    position: relative;
    z-index: 1201;
  }
  .header-logo img {
    height: 32px;
    max-width: 140px;
  }
  .menu-icon {
    width: 30px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1200;
    margin-top: 0;
    margin-right: 0;
  }
  .menu-icon span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: center;
  }
  .menu-icon span:nth-child(1) {
    top: 0;
  }
  .menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-icon span:nth-child(3) {
    bottom: 0;
  }
  /* バツマーク表示時のアニメーション */
  .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    background: #000;
  }
  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 50%;
    background: #000;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: rgba(var(--color-bg-rgb), 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.8s ease,
      visibility 1.2s ease;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: var(--color-bg);
  }

  /* backdrop-filter があると fixed オーバーレイがヘッダー内に閉じ込まるため解除 */
  body.menu-open header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: var(--color-bg);
    border-bottom-color: transparent;
  }

  .overlay nav ul {
    list-style: none;
    text-align: center;
    flex-direction: column;
  }

  .overlay nav ul li {
    margin: 20px 0;
  }

  .overlay nav ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--color-bg-dark);
  }
  .overlay nav ul li.contact-btn a {
    color: var(--color-cream);
  }

  .overlay.hiding {
    opacity: 0;
    visibility: hidden;
  }

  /* メニュー（ハンバーガー） */
  nav {
    position: fixed;
    transition: right 0.3s ease;
    padding-top: 20px;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    list-style: none;
    padding: 0;
  }

  nav ul li {
    margin: 20px;
  }

  nav ul li a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 1.2rem;
  }

  .menu-icon {
    display: flex;
  }

  nav {
    top: 62px;
  }
  .contact-fix {
    display: block;
    position: fixed;
    top: unset;
    bottom: 0;
    right: auto;
    background: var(--color-accent);
    color: var(--color-bg);
    transform: translateY(0);
    writing-mode: horizontal-tb;
    padding: 7px 0 0;
    height: 35px;
    font-size: 0.875rem;
    font-weight: 600;
    width: 100%;
    border-radius: 15px 15px 0 0;
    text-align: center;
    z-index: 1;
  }
}

/* スライドラッパー */
.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--fade-duration) ease;
  will-change: opacity;
}
.slide.is-active {
  opacity: 1;
}

.slide__media {
  position: absolute;
  inset: 0;
}
.slide__media img,
.slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ヒーローブランド */
.hero__content {
  position: absolute;
  right: clamp(24px, 5.5vw, 80px);
  bottom: clamp(56px, 12vh, 112px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(42vw, 12.5rem);
  text-align: center;
  color: var(--color-cream);
}
.hero__title {
  margin: 0;
}
.hero__logo {
  display: block;
  width: clamp(4rem, 10vw, 6.5rem);
  height: auto;
  max-height: min(48vh, 18rem);
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(var(--color-ink-rgb), 0.35));
  opacity: 0;
  transform: translateY(16px);
  animation: hero-logo-in 1.4s var(--fade-ease) 0.35s forwards;
}
.hero__title-main,
.hero__lead {
  display: none;
}
.hero__title-sub {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.025em;
  color: color-mix(in srgb, var(--color-cream) 78%, transparent);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: hero-logo-in 1.1s var(--fade-ease) 0.85s forwards;
}
.hero__title-sub span {
  display: block;
  text-align: justify;
  text-align-last: justify;
}
.hero__title-sub span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
}
@keyframes hero-logo-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ページネーション（ドット） */
.pagination {
  position: absolute;
  inset: auto 50% 24px auto;
  transform: translateX(50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 10px;
  height: 10px;
  background: rgba(var(--color-bg-rgb), 0.35);
  outline: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  box-shadow: 1px 2px 3px rgba(var(--color-ink-rgb), 0.5);
}
.dot.is-active {
  background: var(--color-accent);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: none;
  }
  .hero__logo,
  .hero__title-main,
  .hero__lead,
  .hero__title-sub {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (max-width: 768px) {
  /* スマホ本編：テキストベース / イントロ：ロゴ画像 */
  .hero__logo {
    display: none;
  }
  .hero__title-main {
    display: block;
    font-size: clamp(1.65rem, 7.2vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 14px rgba(var(--color-ink-rgb), 0.4);
  }
  .hero__lead {
    display: block;
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.36em;
    line-height: 1;
    color: color-mix(in srgb, var(--color-cream) 88%, var(--color-accent));
    white-space: nowrap;
  }
  .hero__title-sub {
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    line-height: 0.5;
  }

  .hero:not(.is-intro):not(.is-intro-done) .hero__title-main,
  .hero:not(.is-intro):not(.is-intro-done) .hero__lead,
  .hero:not(.is-intro):not(.is-intro-done) .hero__title-sub {
    opacity: 0;
    animation: none;
  }

  body.hero-intro-active {
    overflow: hidden;
    height: 100%;
  }
  body.hero-intro-active .contact-fix,
  body.hero-intro-active .pagination {
    visibility: hidden;
    pointer-events: none;
  }

  .hero.is-intro::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 4990;
    background: rgba(0, 0, 0, 0.62);
    opacity: 1;
    transition: opacity 0.85s var(--fade-ease);
  }
  .hero.is-intro.is-intro-out::before {
    opacity: 0;
  }

  .hero.is-intro .hero__content {
    position: fixed;
    inset: 0;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 5000;
    width: 100%;
    height: 100%;
    max-width: none;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    transform: translateY(14px);
    animation: hero-intro-in 1.25s var(--fade-ease) 0.15s forwards;
    pointer-events: none;
  }
  .hero.is-intro.is-intro-out .hero__content {
    animation: hero-intro-out 0.85s var(--fade-ease) forwards;
  }

  /* イントロ：ロゴ画像のみ表示 */
  .hero.is-intro .hero__logo {
    display: block;
    width: clamp(4.25rem, 26vw, 6.25rem);
    max-height: min(42vh, 15rem);
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }
  .hero.is-intro .hero__title-main,
  .hero.is-intro .hero__lead,
  .hero.is-intro .hero__title-sub {
    display: none;
  }

  /* 本編：テキストを画面中央下へ（ロゴ非表示） */
  .hero.is-intro-done .hero__content {
    position: absolute;
    inset: auto;
    left: 50%;
    right: auto;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    width: auto;
    height: auto;
    max-width: min(90vw, 20rem);
    transform: translateX(-50%);
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    opacity: 1;
    animation: none;
    pointer-events: auto;
  }
  .hero.is-intro-done .hero__logo {
    display: none;
  }
  .hero.is-intro-done .hero__title-main,
  .hero.is-intro-done .hero__lead,
  .hero.is-intro-done .hero__title-sub {
    opacity: 0;
    transform: translateY(10px);
    animation: hero-logo-in 1s var(--fade-ease) 0.2s forwards;
  }
  .hero.is-intro-done .hero__lead {
    animation-delay: 0.35s;
  }
  .hero.is-intro-done .hero__title-sub {
    animation-delay: 0.5s;
  }

  @keyframes hero-intro-in {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes hero-intro-out {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-8px);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .hero.is-intro::before,
  .hero.is-intro .hero__content {
    animation: none;
    transition: none;
  }
  .hero.is-intro-done .hero__content {
    transform: translateX(-50%);
  }
}

.about-catch,
.access-catch,
.room-catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 0.55rem;
  margin-bottom: clamp(40px, 5vw, 64px);
  position: relative;
}

.about-catch-en,
.access-catch-en,
.room-catch-en {
  font-size: 3em;
  letter-spacing: 0.25rem;
  color: var(--color-accent);
  font-weight: 700;
}

.about-catch .about-catch-en,
.room-catch .room-catch-en,
.access-catch .access-catch-en {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-catch-ja,
.access-catch-ja,
.room-catch-ja {
  font-size: 1em;
  color: var(--color-ink);
  font-weight: 700;
}

.about-catch .about-catch-ja,
.room-catch .room-catch-ja,
.access-catch .access-catch-ja {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: 0.2em;
  line-height: 1.35;
  overflow: hidden;
}

.section-catch__accent {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--color-accent);
  transform-origin: center;
}

[data-section-catch] .about-catch-en,
[data-section-catch] .room-catch-en,
[data-section-catch] .access-catch-en,
[data-section-catch] .about-catch-ja,
[data-section-catch] .room-catch-ja,
[data-section-catch] .access-catch-ja,
[data-section-catch] .section-catch__accent {
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-section-catch] .section-catch__accent {
  transform: scaleX(0);
  opacity: 1;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

[data-section-catch].is-inview .about-catch-en,
[data-section-catch].is-inview .room-catch-en,
[data-section-catch].is-inview .access-catch-en {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

[data-section-catch].is-inview .about-catch-ja,
[data-section-catch].is-inview .room-catch-ja,
[data-section-catch].is-inview .access-catch-ja {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

[data-section-catch].is-inview .section-catch__accent {
  transform: scaleX(1);
}

.section-catch__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.65em);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-section-catch].is-inview .section-catch__char {
  opacity: 1;
  transform: translateY(0);
}

.section-catch__char--space {
  width: 0.35em;
}

@media (prefers-reduced-motion: reduce) {
  [data-section-catch] .about-catch-en,
  [data-section-catch] .room-catch-en,
  [data-section-catch] .access-catch-en,
  [data-section-catch] .about-catch-ja,
  [data-section-catch] .room-catch-ja,
  [data-section-catch] .access-catch-ja,
  [data-section-catch] .section-catch__accent,
  .section-catch__char {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .about-catch,
  .room-catch,
  .access-catch {
    align-items: center;
    text-align: center;
  }
  .section-catch__accent {
    transform-origin: center;
  }
  .room-catch::after,
  .access-catch::after,
  .about-catch::after {
    display: none;
  }
  .about-catch .about-catch-en,
  .room-catch .room-catch-en,
  .access-catch .access-catch-en {
    font-size: 0.75rem;
  }
  .about-catch .about-catch-ja,
  .room-catch .room-catch-ja,
  .access-catch .access-catch-ja {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }
}

.about-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 52px);
}

.about-text {
  flex: 1 1 58%;
  min-width: 0;
  max-width: 36rem;
  letter-spacing: 0.2rem;
}
.about-text p {
  padding-bottom: 25px;
}
.about-text ul {
  margin: 0.35rem 0;
  padding-left: 1.5rem;
  list-style-position: outside;
}
.about-text ul li {
  line-height: 1.7;
}
.about-text ul li:last-child {
  margin-bottom: 0;
}
.about-gallery-hint {
  margin: 0;
  padding-top: 14px;
  letter-spacing: 0.2rem;
}
.about-gallery {
  flex: 0 1 38%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 0.35rem;
}
.about-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
/* トップ about：PC は img05 のみ、SP は 2 枚 */
.about-gallery--intro > img:first-of-type {
  display: none;
}
.about-img {
  margin-top: 50px;
  width: 100%;
  height: 500px;
  min-height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      180deg,
      rgba(var(--color-ink-rgb), 0.5) 0%,
      rgba(var(--color-ink-rgb), 0.25) 42%,
      rgba(var(--color-ink-rgb), 0.72) 100%
    ),
    url("../img/101/img101_03.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 42%;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about-text {
    width: 100%;
    max-width: none;
    flex: none;
  }
  .about-gallery {
    width: 100%;
    max-width: none;
    flex: none;
    padding-top: 0;
    margin-top: 8px;
    flex-direction: row;
    gap: 12px;
  }
  .about-gallery--intro > img:first-of-type {
    display: block;
  }
  .about-gallery img {
    flex: 1 1 50%;
    min-width: 0;
    aspect-ratio: 1 / 1;
  }
  .about-img {
    height: auto;
    min-height: 200px;
    aspect-ratio: 16 / 9;
    max-height: 52vw;
    background-position: center 38%;
  }
  .about-content {
    flex-direction: column;
    gap: 0;
  }
  .about-gallery.about-gallery--lead {
    display: none;
  }
}

.page section {
  padding-top: 50px;
}
.about-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1; /* 正方形に固定 */
  object-fit: cover; /* はみ出す部分は切り取る */
}

.about-gallery-grid img:hover {
  transform: scale(1.05);
}
.page-about-img {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  min-height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      160deg,
      rgba(var(--color-ink-rgb), 0.82) 0%,
      rgba(var(--color-ink-rgb), 0.55) 48%,
      rgba(var(--color-ink-rgb), 0.78) 100%
    ),
    url("../img/img_r_02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  color: var(--color-cream);
  text-align: center;
  padding: 2rem 1.25rem;
}
.page-hero-catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  max-width: 90%;
}
.page-hero-catch__en {
  margin: 0;
  font-size: clamp(0.75rem, 1.6vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-accent) 70%, var(--color-cream));
  text-shadow: 0 1px 3px rgba(var(--color-ink-rgb), 0.55);
}
.page-hero-catch__ja {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.35;
  color: var(--color-cream);
  text-shadow: 0 2px 10px rgba(var(--color-ink-rgb), 0.55);
}
.page-hero-catch__accent {
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-top: 0.35rem;
  background: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(var(--color-ink-rgb), 0.15);
}
@media (max-width: 768px) {
  .page-about .page-hero-catch__ja {
    font-size: clamp(1.15rem, 5.2vw, 1.4rem);
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}
.page .about-content {
  flex-direction: row;
}

.page .about-gallery {
  width: 100%;
}
.page-room-img {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  min-height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      160deg,
      rgba(var(--color-ink-rgb), 0.82) 0%,
      rgba(var(--color-ink-rgb), 0.55) 48%,
      rgba(var(--color-ink-rgb), 0.78) 100%
    ),
    url("../img/img_r_06.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  color: var(--color-cream);
  text-align: center;
  padding: 2rem 1.25rem;
}
.page .room-gallery {
  width: 100%;
}
.page .room-gallery-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
}
.page .about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 50px;
  gap: 20px;
}

@media (max-width: 768px) {
  .page .room-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .about-content {
    flex-direction: column;
  }
}

.room {
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    color-mix(in srgb, var(--color-neutral) 45%, var(--color-bg)) 45%,
    var(--color-bg) 100%
  );
  padding-bottom: 165px;
}
.room-unit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "text gallery"
    "reserve gallery";
  align-items: start;
  column-gap: clamp(24px, 4vw, 48px);
  row-gap: 0;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid
    color-mix(in srgb, var(--color-neutral) 80%, transparent);
}
.room-unit--reverse {
  grid-template-areas:
    "gallery text"
    "gallery reserve";
}
.room-unit .room-text {
  grid-area: text;
  width: auto;
}
.room-unit .room-gallery {
  grid-area: gallery;
  width: auto;
}
.room-unit .room-unit__reserve {
  grid-area: reserve;
}
.room-common {
  width: 100%;
  margin: 8px 0 28px;
  padding: clamp(28px, 4vw, 48px) 0;
}
.room-common-gallery {
  margin-top: clamp(28px, 4vw, 40px);
}
.room-common-gallery .room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.room-common-gallery .room-gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
.room-common-gallery p {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .room-common-gallery .room-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
.room-common__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.room-common__block {
  position: relative;
  min-width: 0;
}
.room-common__block--kitchen {
  padding-right: clamp(0px, 2vw, 12px);
}
.room-common__block--amenities {
  padding-left: clamp(20px, 3vw, 36px);
  border-left: 1px solid
    color-mix(in srgb, var(--color-accent) 35%, transparent);
}
.room-common__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-ink) 45%, transparent);
  margin-bottom: 0.55rem;
}
.room-common__title {
  position: relative;
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 1rem;
  padding: 0.15em 0 0.15em 0.9rem;
  border-bottom: none;
}
.room-common__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 2px;
  background: var(--color-accent);
}
.room-common__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--color-ink) 12%, transparent);
}
.room-common__body {
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  font-size: 0.95rem;
}
.room-common__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: color-mix(in srgb, var(--color-ink) 55%, transparent);
}
.room-common__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.room-common__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
}
.room-common__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

@media (max-width: 768px) {
  .room-common {
    padding: 24px 0;
  }
  .room-common__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .room-common__block--kitchen {
    padding-right: 0;
  }
  .room-common__block--amenities {
    padding-left: 0;
    border-left: none;
    padding-top: 28px;
    border-top: 1px solid
      color-mix(in srgb, var(--color-accent) 35%, transparent);
  }
  .room-common__list {
    grid-template-columns: 1fr;
  }
}
.room-unit__title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.4em;
  margin: 0 0 1.25rem;
  padding: 0 0 0.65rem;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--color-ink) 14%, transparent);
  color: var(--color-ink);
  width: fit-content;
  max-width: 100%;
}
.room-unit__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.room-unit__en {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin-right: -0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.2;
  text-align: center;
}
.room-unit__number {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-ink);
}
.room-unit__suffix {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--color-ink) 62%, transparent);
  padding-bottom: 0.2em;
}
.room-text {
  width: 48%;
  letter-spacing: 0.15rem;
}
.room-text dl {
  margin-bottom: 25px;
}
.room-text dl dt {
  line-height: 2;
  padding: 12px 0 2px;
  color: var(--color-accent);
  font-weight: 700;
}
.room-text dl dt:first-child {
  padding: 0 0 6px 0;
}
.room-text dl dd {
  line-height: 2.15;
  letter-spacing: 0.12em;
  padding-top: 0.35rem;
}
.room-text dl dd span {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0;
  padding-top: 5px;
}
.room-text ul li {
  list-style-position: inside;
}
.room-unit__reserve {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}
.room-unit__reserve a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-width: 12rem;
  padding: 0.8rem 1.5rem;
  color: var(--color-bg);
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.room-unit__reserve a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.room-unit__reserve a:hover {
  background-color: var(--color-vermilion);
  border-color: var(--color-vermilion);
  color: var(--color-bg);
}
.room-unit__reserve a:hover::after {
  transform: rotate(45deg) translate(1px, -1px);
}
.room-gallery {
  width: 50%;
}
.room-gallery p {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 5px;
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.room-unit .room-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.room-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1; /* 正方形に固定 */
  object-fit: cover; /* はみ出す部分は切り取る */
}

.room-gallery-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .room-unit,
  .room-unit--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "gallery"
      "reserve";
    row-gap: 1.5rem;
  }
  .room-unit {
    margin-top: 48px;
    padding-top: 32px;
  }
  .room-unit__title {
    align-items: flex-end;
  }
  .room-unit__number {
    font-size: 1.85rem;
  }
  .room-unit__suffix {
    padding-bottom: 0.08em;
    line-height: 1;
  }
  .room-text {
    width: 100%;
  }
  .room-gallery {
    width: 100%;
  }
  .room-unit__reserve {
    margin-top: 0.25rem;
  }
  .room-gallery-grid,
  .room-unit .room-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* モーダルスタイル（ヘッダー・ハンバーガーより前面） */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  overflow: hidden;
}

.modal.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.room-modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  object-fit: contain;
}

/* ▼ 閉じるボタン */
.close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  padding: 8px;
}
@media (max-width: 768px) {
  .close {
    top: 16px;
    right: 12px;
  }
}
/* ▼ 矢印（左右） */
.arrow {
  position: absolute;
  top: 50%;
  font-size: 48px;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  z-index: 1;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}
.room-bg {
  overflow: hidden;
  width: 100%;
  padding-top: 80px;
}
.room-bg__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: room-bg-scroll 30s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.room-bg__track li {
  flex-shrink: 0;
  width: 350px;
  padding: 0 5px;
}
.room-bg__track img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
@keyframes room-bg-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .room {
    padding-bottom: 80px;
  }
  .room-bg {
    width: 100%;
    padding-top: 48px;
  }
  .room-bg__track {
    animation-duration: 15s;
  }
  .room-bg__track li {
    width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .room-bg__track {
    animation: none;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

.access {
  padding-bottom: 100px;
}

.access-text-ad {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--color-neutral);
  border-bottom: 1px solid var(--color-neutral);
  padding: 50px 0px;
  margin-bottom: 50px;
}
.access-text-ad h3 {
  width: 30%;
  max-width: 30%;
  color: var(--color-accent);
}
.movie-title,
.access-title {
  margin: 50px auto 20px;
  text-align: center;
  border-bottom: 2px solid var(--color-accent);
  padding: 0.25em 0;
  letter-spacing: 0.125rem;
  color: var(--color-ink);
}
.movie-title__brand {
  font-size: 0.82em;
  letter-spacing: 0.06em;
}
.movie-title__sp-only {
  display: none;
}
.movie-container {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.reservation-container {
  width: 100%;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 1.35rem);
  padding: clamp(2.75rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}
.reservation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  margin: 0;
}
.reservation-en {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-accent) 85%, var(--color-cream));
}
.reservation-text {
  color: var(--color-cream);
  text-align: center;
  text-shadow: 0 1px 2px rgba(var(--color-ink-rgb), 0.35);
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  letter-spacing: 0.18em;
  font-weight: 700;
}
.reservation-accent {
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-top: 0.25rem;
  background: var(--color-accent);
}
.reservation-floors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  width: min(100%, 920px);
  align-items: start;
}
.reservation-floor {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding-top: 0;
}
.reservation-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  align-items: stretch;
}
.reservation-option {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  align-items: center;
  column-gap: 0.75rem;
  min-height: 0;
  padding: 0.7rem 0.9rem;
  background: color-mix(in srgb, var(--color-ink) 42%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-cream) 22%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}
.reservation-option::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 1.35rem;
  transform: translateY(-50%);
  background: var(--color-accent);
}
.reservation-option:hover {
  border-color: color-mix(in srgb, var(--color-accent) 65%, transparent);
  background: color-mix(in srgb, var(--color-ink) 52%, transparent);
  transform: none;
}
.reservation-option__en {
  display: none;
}
.reservation-option__rooms {
  margin: 0;
  padding-left: 0.35rem;
  color: var(--color-cream);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  min-height: 0;
  white-space: nowrap;
}
.reservation-option__capacity {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.15em;
  margin: 0;
  color: color-mix(in srgb, var(--color-cream) 78%, transparent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.reservation-option__num {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--color-cream);
  margin-left: 0.15em;
}
.reservation-option__unit {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
  color: var(--color-cream);
}
.reservation-option__label {
  display: none;
}
.reservation-option__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  width: auto;
  min-width: 5.5rem;
  margin-top: 0;
  padding: 0.5rem 0.9rem;
  color: var(--color-ink);
  background: var(--color-cream);
  border: 1px solid var(--color-cream);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.reservation-option__btn::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.reservation-option__btn:hover {
  color: var(--color-cream);
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.reservation-option__btn:hover::after {
  transform: rotate(45deg) translate(1px, -1px);
}
.reservation {
  padding: 0;
  margin-top: clamp(40px, 6vw, 80px);
  scroll-margin-top: 80px;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      160deg,
      rgba(var(--color-ink-rgb), 0.82) 0%,
      rgba(var(--color-ink-rgb), 0.48) 42%,
      rgba(var(--color-ink-rgb), 0.8) 100%
    ),
    url("../img/img_r_03.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 768px) {
  .access {
    padding-bottom: 50px;
  }
  .access-text-ad {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 25px 0px;
  }
  .access-text-ad h3 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .movie-title,
  .access-title {
    width: 100%;
  }
  .movie-title__brand {
    font-size: 0.74em;
  }
  .movie-title__sp-only {
    display: inline;
  }
  .reservation-floors {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
  }
  .reservation-options {
    width: 100%;
    gap: 0.45rem;
  }
  .reservation-option {
    grid-template-columns: 4.75rem 1fr auto;
    padding: 0.6rem 0.7rem;
    column-gap: 0.5rem;
  }
  .reservation-option__rooms {
    font-size: 0.85rem;
  }
  .reservation-option__capacity {
    font-size: 0.7rem;
  }
  .reservation-option__num {
    font-size: 1rem;
  }
  .reservation-option__btn {
    min-width: 0;
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
  }
}
/************************** 
フッター 
***************************/
footer {
  background: var(--color-bg-dark);
}
footer ul li {
  list-style-type: none;
  padding: 0.25em;
}
.footer-logo-container {
  margin-bottom: 20px;
}
.footer-logo-container a {
  color: var(--color-cream);
}
.footer-logo-container img {
  width: 100%;
}
.footer-box {
  color: var(--color-cream);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 50px;
  justify-content: space-between;
}

.footer-info {
  width: 33%;
}
.footer-info > p {
  margin: 0 0 1.15em;
  line-height: 1.75;
}
.footer-info > p:last-of-type {
  margin-bottom: 1.35em;
}
.footer-info ul {
  list-style-type: none;
}
.footer-nav {
  margin-top: 50px;
}
.footer-nav a {
  text-decoration: none;
  color: var(--color-cream);
}
@media (max-width: 768px) {
  .footer-box {
    flex-direction: column;
  }
  .footer-info {
    width: 100%;
  }
  .footer-nav {
    margin-top: 25px;
  }
}
.copy {
  margin-top: 50px;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-cream);
  opacity: 0.85;
}
.footer-nav a:hover,
.footer-info a:hover {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .copy {
    margin-bottom: 40px;
  }
}
