@charset "UTF-8";
/* Gothic instead of Mincho so the chōonpu (ー) renders as a straight bar */
.brand-name {
  font-family: var(--font-sans);
}

/* Keeps half-width numerals upright (not rotated sideways) inside vertical-rl text */
.tcy {
  text-combine-upright: all;
}

/* =================================================
   Layout primitives
================================================= */
.container,
.inr {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent-dark);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

section {
  padding-block: 64px;
}

@media (max-width: 767px) {
  section {
    padding-block: 40px;
  }
}

.t-center,
.ta_c {
  text-align: center;
}
.t-jus {
  text-align: justify;
}
.t-grey,
.p-grey {
  color: var(--color-text-light);
}
.cap {
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* PC/SP visibility helpers (also usable on <br>) */
.br_sp {
  display: none;
}
@media (max-width: 767px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: inline;
  }
}

/* margin utilities used throughout the original templates (mb10 / mb_10 ...) */
.mb10,
.mb_10 {
  margin-bottom: 10px;
}
.mb15,
.mb_15 {
  margin-bottom: 15px;
}
.mb20,
.mb_20 {
  margin-bottom: 20px;
}
.mb25,
.mb_25 {
  margin-bottom: 25px;
}
.mb30,
.mb_30 {
  margin-bottom: 30px;
}
.mb40,
.mb_40 {
  margin-bottom: 40px;
}
.mb50,
.mb_50 {
  margin-bottom: 50px;
}
.mb60,
.mb_60 {
  margin-bottom: 60px;
}
.mb70,
.mb_70 {
  margin-bottom: 70px;
}
.mb80,
.mb_80 {
  margin-bottom: 80px;
}
.mb100,
.mb_100 {
  margin-bottom: 100px;
}
.mb120,
.mb_120 {
  margin-bottom: 120px;
}
.mt20,
.mt_20 {
  margin-top: 20px;
}
.mt_40 {
  margin-top: 40px;
}
.mt_60 {
  margin-top: 60px;
}
.bg_w {
  background: #fff;
}

/* =================================================
  背景色
================================================= */
.bg-main {
  background-color: var(--color-bg);
}

.bg-green {
  background-color: var(--color-bg-green);
}

.bg-blue {
  background-color: var(--color-bg-blue);
}
/* =================================================
   Header / Navigation
================================================= */
.wrapper {
  position: relative;
}

body {
  padding-top: 84px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(23, 20, 17, 0.08);
}

@media (max-width: 1200px) {
  .site-header {
    padding: 0 3%;
  }
}

.site-header__logo {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.site-header__logo a {
  color: var(--color-text);
  display: block;
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 56px;
}

.gnav {
  flex: 1 1 auto;
  min-width: 0;
}

.gnav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
  flex-wrap: wrap;
}

.gnav ul li a {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.gnav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.gnav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__tel-box {
  text-align: center;
}

.site-header__tel {
  font-size: 1.6rem;
  white-space: nowrap;
}

.site-header__tel-hours {
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-text-light);
  white-space: nowrap;
}

.site-header__cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-accent-dark);
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.site-header__cta:hover {
  background: var(--color-accent);
}

.tel-num {
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

.f-logo .checkin.linkbar .tel-num {
  font-size: 2.2rem;
}

/* Mobile slide menu (checkbox-driven, no JS required to open/close) */
.slide-menu-btn {
  display: none;
}

#slide-menu-check {
  display: none;
}

.slide-menu {
  display: none;
}

@media (max-width: 900px) {
  body {
    padding-top: 60px;
  }

  .site-header {
    height: 60px;
    padding: 0 16px;
  }

  .site-header__logo {
    font-size: 1.6rem;
  }

  .site-header__logo img {
    height: 38px;
  }
}

@media (max-width: 1160px) {
/*  .gnav,
  .site-header__right {
    display: none;
  }
*/
  .gnav {
    display: none;
  }
  .site-header__tel-box{
    display: none;
  }
  .site-header__cta {
    padding: 6px 14px;
    font-size: 1.4rem;
    margin-right: 50px;
  }

  .slide-menu-btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 3%;
    z-index: 210;
    cursor: pointer;
  }

  .bdr-box {
    width: 32px;
    height: 24px;
    position: relative;
  }

  .bdr-box span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      top 0.3s ease,
      background 0.3s ease;
  }

  .bdr-box span:nth-child(1) {
    top: 0;
  }
  .bdr-box span:nth-child(2) {
    top: 11px;
  }
  .bdr-box span:nth-child(3) {
    top: 22px;
  }

  .slide-menu {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 18, 15, 0.85);
    padding: 96px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 200;
  }

  #slide-menu-check:checked ~ .slide-menu {
    transform: translateX(0);
  }

  #slide-menu-check:checked ~ .slide-menu-btn .bdr-box span {
    background: #fff;
  }

  #slide-menu-check:checked ~ .slide-menu-btn .bdr-box span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }

  #slide-menu-check:checked ~ .slide-menu-btn .bdr-box span:nth-child(2) {
    opacity: 0;
  }

  #slide-menu-check:checked ~ .slide-menu-btn .bdr-box span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
  }

  .main-nav ul li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .lang-btn {
    margin-bottom: 24px;
  }

  .lang-btn label {
    cursor: pointer;
  }

  .lang-btn #lang-btn {
    display: none;
  }

  .lang-list {
    display: none;
  }

  .lang-btn #lang-btn:checked ~ .lang-list {
    display: block;
  }

  .slide-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .button01,
  .button02 {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 1.4rem;
    white-space: nowrap;
    flex: 1;
  }

  .button01 {
    background: #fff;
    color: var(--color-accent-dark);
    font-weight: 600;
  }

  .button02 {
    border: 1px solid #fff;
    color: #fff;
  }

  .slide-btn__hours {
    margin-top: 6px;
    font-size: 1.3rem;
    text-align: center;
    color: #fff;
    opacity: 0.85;
  }

  .sns-box {
    margin-top: 24px;
    font-size: 1.8rem;
    color: #fff;
  }
}

@media (max-width: 900px) {
  .slide-menu-btn {
    top: 16px;
    right: 16px;
  }
}

/* =================================================
   Swiper pagination (override default blue theme)
================================================= */
.swiper {
  --swiper-theme-color: var(--color-text);
  --swiper-pagination-bullet-inactive-color: var(--color-border);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-navigation-color: var(--color-text);
  --swiper-navigation-size: 24px;
}

/* =================================================
   Hero / mv slider (Swiper)
================================================= */
.top_under img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

@media (max-width: 767px) {
  .top_under--overlay img {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
}

.top_under--overlay {
  position: relative;
}

.top_under--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.top_slider {
  width: 100%;
  height: 100%;
}

.top_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_slider .swiper-slide {
  overflow: hidden;
}

.top_slider .swiper-slide.is-zoom img {
  animation: mv-zoom-up 10s linear both;
}

@keyframes mv-zoom-up {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top_slider .swiper-slide.is-zoom img {
    animation: none;
  }
}

.top_slider .swiper-slide img.is-pos-right {
  object-position: 75% center;
}

.top_slider .swiper-slide img.is-pos-right-strong {
  object-position: 90% center;
}

/* =================================================
   Hero: full-bleed slider + fixed-width side panel
================================================= */
.hero {
  position: relative;
  padding-right: 260px;
}

.hero__media {
  position: relative;
  height: calc(100vh - 84px);
  min-height: 720px;
  max-height: 920px;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 10, 0.55) 0%, rgba(10, 12, 10, 0) 28%);
  z-index: 2;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9比率の高さ (100 * 9 / 16) */
  min-height: 100%;
  min-width: 177.77vh; /* 16:9比率の幅 (100 * 16 / 9) */
  transform: translate(-50%, -50%);
  pointer-events: none; /* 動画上のクリック動作を無効化 */
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.hero__scroll a {
  font-family: var(--font-accent);
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.hero__scroll .txt {
  display: block;
  margin-bottom: 8px;
}

.hero__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 260px;
  height: 100%;
  background: var(--color-bg);
  box-shadow: -30px 0 60px rgba(10, 12, 10, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 64px 16px 40px;
}

.hero__logo {
  margin-bottom: 40px;
}

.hero__logo img {
  display: block;
  width: 90px;
  height: auto;
}

.hero__tagline {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
}

@media (max-width: 900px) {
  .hero {
    padding-right: 0;
  }

  .hero__media {
    height: calc(100vh - 60px);
    min-height: 560px;
    max-height: 700px;
  }

  .hero__scroll {
    bottom: 76px;
  }

  .hero__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background: none;
    padding: 0;
  }

  .hero__logo img {
    width: 100px;
    filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0, 0, 0, 0.5));
  }

  .hero__tagline span {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  }
}

/* 345px = ヘッダー60 + 余白24 + 空室検索約192 + 下部固定バー57 + ゆとり（検索窓をファーストビューに収める） */
@media (max-width: 767px) {
  .hero__media {
    height: calc(100vh - 345px);
    height: calc(100svh - 345px);
    min-height: 300px;
    max-height: none;
  }

  .hero__scroll {
    bottom: 28px;
  }

  /* スライダーの裏で元々見えておらず、低いMVからはみ出して検索窓の操作を妨げるため */
  .hero__panel {
    display: none;
  }
}

/* =================================================
   空室検索 (room availability search) — placeholder box,
   sized and positioned for a future reservation-system embed
================================================= */
.room-search-box {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  padding-block: 0;
  width: 100%;
  max-width: 640px;
}

.room-search-box .inr {
  max-width: 640px;
  margin-inline: 0;
  background: var(--color-bg);
  box-shadow: 0 20px 40px rgba(23, 36, 43, 0.18);
  padding: 32px 40px;
}

.room-search-box__ttl {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

#search_489ban form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px 40px;
}

#search_489ban .inbox_489ban {
  display: contents;
}

#search_489ban dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

#search_489ban dt {
  font-size: 1.6rem;
  font-weight: 600;
}

#search_489ban dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

#search_489ban select {
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  padding: 6px 4px;
  font-size: 1.6rem;
  color: var(--color-text);
}

#search_489ban dd label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

#search_489ban button[name="searchButton489ban"] {
  display: inline-block;
  flex: 0 0 auto;
  margin: 8px auto 0;
  width: max-content;
  padding: 12px 40px;
  background: var(--color-accent-dark);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
}

#search_489ban button[name="searchButton489ban"]:hover {
  background: var(--color-accent);
}

.room-search-box__links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.room-search-box__links a {
  font-size: 1.5rem;
  color: var(--color-text);
}

.room-search-box__links i {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-left: 2px;
}

@media (max-width: 1490px) {
  .room-search-box {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    max-width: none;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-inline: 16px;
  }

  .room-search-box .inr {
    max-width: none;
    padding: 24px 20px;
  }

  #search_489ban form {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  #search_489ban button[name="searchButton489ban"] {
    align-self: center;
    width: max-content;
    margin: 0 auto;
    padding: 12px 40px;
    font-size: 1.4rem;
  }

  .room-search-box__links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
  }
}

@media (max-width: 767px) {
  .room-search-box .inr {
    padding: 16px;
  }

  .room-search-box__ttl {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  #search_489ban dt,
  #search_489ban select,
  #search_489ban dd label {
    font-size: 1.3rem;
  }

  #search_489ban form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  #search_489ban .date_489ban {
    flex: 1 1 100%;
  }

  #search_489ban button[name="searchButton489ban"] {
    align-self: center;
    margin: 0 0 0 auto;
    flex: 0 0 auto;
    padding: 7px 22px;
    font-size: 1.3rem;
  }

  .room-search-box__links a {
    font-size: 1.3rem;
  }
}

/* =================================================
   Section headings
================================================= */
/* お部屋・SPA・お食事・愛犬・過ごしかたページ：タイトルをヒーロー画像の上に重ねる */
.top_under--overlay .page-title {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page-title h1 {
  font-size: 3.4rem;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.1em;
}

.page-title-plain {
  padding-top: 60px;
  padding-bottom: 40px;
}

.page-title-plain h1 {
  font-size: 3.4rem;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .page-title-plain {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .page-title-plain h1 {
    font-size: 2.4rem;
  }
}

.page-title h2 {
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  margin-top: 16px;
  font-size: 1.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .page-title h1 {
    font-size: 2.4rem;
  }

  .page-title h2 {
    font-size: 1.8rem;
  }
}

.first-box {
  padding-top: 56px;
}

.hx-type1 {
  font-size: 2.8rem;
}

.hx-type2 {
  font-size: 2.4rem;
}

.hx-type3 .sub,
.hx-type3 {
  font-size: 2.1rem;
}

.hx-type3 .sub {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.hx-type4 {
  font-size: 2rem;
}

.mincho {
  font-family: var(--font-serif);
}

.sub_title {
  font-size: 1.8rem;
}

.mincho.h_bar,
h2.h_bar,
h3.h_bar {
  text-align: center;
}

.subttl {
  display: block;
  font-size: 1.8rem;
  color: var(--color-text-light);
  margin-top: 6px;
}

.text-blue {
  color: #3e596a;
}

.text-green {
  color: #2b4a37;
}

/* =================================================
   Column box (alternating image / text)
================================================= */
.column-box {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.column-box.fb-rev {
  flex-direction: row-reverse;
}

.column-box .img-box,
.column-box .txt-box {
  flex: 1 1 0;
  min-width: 0;
}

.column-box.column2 .img-box,
.column-box.column2 .txt-box {
  flex: 1 1 50%;
}

@media (max-width: 767px) {
  .column-box {
    flex-direction: column;
    gap: 24px;
  }

  .column-box.fb-rev {
    flex-direction: column;
  }
}

/* =================================================
   Concept intro (background photo + vertical text)
================================================= */
.concept-box {
  position: relative;
  height: 640px;
  padding-block: 0;
  overflow: hidden;
}

.concept-box__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.concept-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.7);
  z-index: 1;
}

.concept-box__inr {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding: 60px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.concept-box__title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  flex: 0 0 auto;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.concept-box__txt {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  flex: 0 0 auto;
  height: 74%;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 2.8;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.concept-box__line {
  text-indent: 1em;
  margin-block-start: 1em;
}

.concept-box__line:first-child {
  margin-block-start: 0;
}

@media (max-width: 1490px) {
  .concept-box {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .room-search-box {
    order: 1;
  }

  .concept-box__inr {
    order: 2;
    max-width: none;
    padding: 40px 20px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .concept-box__txt {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    color: #fff;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: auto;
    font-size: 1.8rem;
    line-height: 2;
    text-align: left;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  }

  .concept-box__title {
    display: none;
  }
}

.kodawari-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.kodawari-list li {
  width: 25%;
  height: 640px;
  position: relative;
}

.kodawari-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.3s ease;
}

.kodawari-list li:hover img {
  filter: brightness(1);
}

.kodawari-list__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 90px;
  height: 280px;
  background: var(--color-bg);
  border-bottom: 3px double var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8px 20px;
}

.kodawari-list__jp {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

.kodawari-list__en {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-light);
}

@media (max-width: 1200px) {
  .kodawari-list {
    justify-content: space-evenly;
  }

  .kodawari-list li {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
  }

  .kodawari-list li a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .kodawari-list li img {
    width: 100%;
    height: 100%;
  }

  .kodawari-list__title {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    min-width: 220px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    border-bottom: none;
    box-shadow: 0 8px 20px rgba(23, 36, 43, 0.2);
    padding: 20px 32px;
  }

  .kodawari-list__jp {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
  }

  .kodawari-list__en {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
  }
}

/* =================================================
   魅力 (charm / highlight) slider section
================================================= */
.charm-section {
  padding-top: 0;
  padding-bottom: 120px;
}

.charm-list {
  display: flex;
  flex-direction: column;
  gap: 160px;
  width: 100%;
}

#charm-facilities {
  scroll-margin-top: 84px;
}

@media (max-width: 900px) {
  #charm-facilities {
    scroll-margin-top: 60px;
  }
}

/* テキストボックスは画像に重ねる縦長の長方形 */
.charm-item {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  flex: 0 0 auto;
}

.charm-item__media {
  width: 71.5%;
}

.charm-item:nth-child(odd) .charm-item__media {
  margin-left: auto;
}

.charm-item:nth-child(even) .charm-item__media {
  margin-right: auto;
}

.charm-item__slider {
  width: 100%;
  margin-bottom: 12px;
}

.charm-item__slider img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.charm-item__thumbs {
  display: flex;
  gap: 10px;
}

.charm-item__thumbs img {
  width: calc((100% - 30px) / 4);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.charm-item__thumbs img.is-active {
  opacity: 1;
}

.charm-item__box {
  position: absolute;
  top: 40px;
  left: 0;
  width: 31%;
  min-width: 280px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 28px 56px;
  background: var(--color-bg);
  box-shadow: 0 20px 40px rgba(47, 43, 36, 0.25);
  z-index: 1;
}

.charm-item:nth-child(even) .charm-item__box {
  left: auto;
  right: 0;
}

.charm-item__badge {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text);
  z-index: 2;
}

.charm-item__ttl {
  flex: 0 0 auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.charm-item__body {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.charm-item__divider {
  display: block;
  position: relative;
  border-top: 1px dotted var(--color-border);
  margin-bottom: 20px;
}

.charm-item__divider::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  background: var(--color-accent-dark);
}

.charm-item__txt {
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: left;
}

@media (max-width: 900px) {
  .charm-list {
    gap: 90px;
  }

  .charm-item__media,
  .charm-item:nth-child(odd) .charm-item__media,
  .charm-item:nth-child(even) .charm-item__media {
    width: 100%;
    margin: 0;
  }

  .charm-item__box,
  .charm-item:nth-child(even) .charm-item__box {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 8px);
    max-width: none;
    min-width: 0;
    margin-top: 56px;
    margin-inline: auto;
    padding: 56px 20px 32px;
    box-shadow: 0 12px 24px rgba(47, 43, 36, 0.22);
  }

  .charm-item__badge {
    top: -48px;
    width: 96px;
    height: 96px;
    font-size: 1.8rem;
  }

  .charm-item__ttl {
    font-size: 1.8rem;
  }

  .charm-item__txt {
    font-size: 1.6rem;
  }
}

/* =================================================
   List box (room page: stacked full-width sections)
================================================= */
.list-box {
  margin-top: 30px;
}

/* =================================================
   Feature grid (card grids used on dogrun / experience pages)
================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-grid.brs {
  gap: 24px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.illumi {
  padding-block: 40px;
  scroll-margin-top: 84px;
}

@media (max-width: 900px) {
  .illumi {
    scroll-margin-top: 60px;
  }
}

.illumi:nth-of-type(odd) {
  background: var(--color-bg-alt);
}

.room-list {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: start;
}

.room-list .thum_img {
  width: 100%;
}

.room-list .room_slider {
  width: 100%;
  margin-bottom: 12px;
}

.room-list .room_slider img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-list .thumbnail {
  display: flex;
  gap: 10px;
}

.room-list .thumbnail img {
  width: calc((100% - 30px) / 4);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.room-list .thumbnail img.is-active {
  opacity: 1;
}

.room-list .list-inr {
  width: 100%;
}

@media (max-width: 767px) {
  .room-list {
    grid-template-columns: 1fr;
  }
}

.room_table_s,
.room_table {
  width: 100%;
}

.room_table_s th,
.room_table_s td,
.room_table th,
.room_table td {
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  font-size: 1.6rem;
}

.room_table_s th,
.room_table th {
  width: 130px;
  background: var(--color-bg-alt);
}

/* =================================================
   お部屋タイプ内の個別ルーム名カード（room-name-grid）
================================================= */
.room-type-meta {
  font-weight: 600;
}

.room-type-meta__price {
  color: var(--color-accent-dark);
  font-size: 1.9rem;
  margin: 0 4px;
}

.room-type-jump {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 1100px;
}

.room-type-jump a {
  display: inline-block;
  width: 320px;
  padding: 16px 20px;
  border: 1px solid var(--color-accent-dark);
  color: var(--color-accent-dark);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.room-type-jump a:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

@media (max-width: 767px) {
  .room-type-jump {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-inline: 24px;
  }

  .room-type-jump a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

.room-name-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.room-name-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.room-name-card {
  background: #fff;
  border: 1px solid var(--color-border);
  text-align: center;
  padding-bottom: 20px;
}

.room-name-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.room-name-card__floor {
  margin-top: 14px;
  font-size: 1.3rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}

.room-name-card__name {
  font-size: 2rem;
  margin-top: 2px;
}

.room-name-card__desc {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-top: 6px;
  padding-inline: 12px;
}

.room-name-card__link {
  margin-top: 12px;
}

.room-name-card__link a,
.room-name-card__link button {
  font-size: 1.4rem;
  color: var(--color-accent-dark);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  cursor: pointer;
}

/* =================================================
   お部屋モーダル（各ルーム名の詳細ポップアップ）
================================================= */
.room-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

body.room-modal-open {
  overflow: hidden;
}

.room-modal.is-open {
  display: block;
}

.room-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.6);
}

.room-modal__box {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  margin: 6vh auto;
  background: #fff;
  padding: 50px 60px;
}

.room-modal__layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.room-modal__media {
  flex: 0 0 auto;
  width: 52%;
}

.room-modal__content {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 10px;
}

.room-modal__content .room_table_s,
.list-inr .room_table_s {
  margin-top: 4px;
}

.room-modal__content .room_table_s th,
.room-modal__content .room_table_s td,
.list-inr .room_table_s th,
.list-inr .room_table_s td {
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 11px 4px;
  background: none;
  font-size: 1.5rem;
}

.room-modal__content .room_table_s th,
.list-inr .room_table_s th {
  width: 100px;
  color: var(--color-text-light);
  font-weight: 500;
}

.room-modal__content .room_table_s tr:last-child th,
.room-modal__content .room_table_s tr:last-child td,
.list-inr .room_table_s tr:last-child th,
.list-inr .room_table_s tr:last-child td {
  border-bottom: none;
}

.room-modal__media .room-list {
  display: block;
}

.room-gallery__main {
  position: relative;
  margin-bottom: 12px;
}

.room-gallery__mainimg {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.room-gallery__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.room-gallery__thumbs::-webkit-scrollbar {
  display: none;
  height: 0;
}

.room-gallery__thumbarrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.room-gallery__thumbarrow:hover {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: var(--color-accent-dark);
}

.room-gallery__thumbarrow[hidden] {
  display: none;
}

.room-gallery__thumb {
  flex: 0 0 auto;
  width: calc((100% - 30px) / 4);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.room-gallery__thumb.is-active {
  opacity: 1;
}

.room-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
}

.room-modal__ttl {
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .room-modal__box {
    padding: 32px 20px;
    margin: 4vh auto;
    max-height: 92vh;
  }

  .room-modal__layout {
    flex-direction: column;
    gap: 24px;
  }

  .room-modal__media {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .room-name-grid,
  .room-name-grid--2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.button-il a,
.link a {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 32px;
  border: 1px solid var(--color-accent-dark);
  color: var(--color-accent-dark);
  font-size: 1.6rem;
}

.button-il a:hover,
.link a:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.gdlink {
  text-align: center;
}

.tabl_txt {
  font-weight: 600;
  font-size: 1.6rem;
}

/* =================================================
   施設詳細（facility-detail）：見出し＋本文を縦に積む形式
================================================= */
.facility-detail__ttl {
  font-size: 2.2rem;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.facility-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}

.facility-detail__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.facility-detail__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.facility-detail__img--main {
  grid-column: 1 / -1;
}

.facility-detail__row {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.facility-detail__row:first-child {
  padding-top: 0;
}

.facility-detail__label {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.facility-detail__body {
  font-size: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .facility-detail__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

.table_img {
  display: flex;
  gap: 32px;
}

.table_imgbox {
  flex: 1 1 40%;
}

.table_box {
  flex: 1 1 60%;
}

@media (max-width: 767px) {
  .table_img {
    flex-direction: column;
  }
}

/* =================================================
   Card style components (faci / spa / chef)
================================================= */
.faci_expl,
.spa_expl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.faci_box,
.spa_box {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 24px;
}

.spa_box.bgimage001 {
  border-top: 3px solid #c9a97e;
}
.spa_box.bgimage002 {
  border-top: 3px solid #6b7a5e;
}
.spa_box.bgimage003 {
  border-top: 3px solid #a89d85;
}

.fac_img img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .faci_expl,
  .spa_expl {
    grid-template-columns: 1fr;
  }
}

.chef-box {
  padding-block: 48px;
}

.chef-box .sub {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
}

.chef-box-inr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.chef-box-inr-in {
  background: #fff;
  border: 1px solid var(--color-border);
}

.chef-box-inr-in img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.chef_flex {
  padding: 16px 20px 20px;
}

.chef_flex h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.chef_flex .cap {
  font-size: 1.6rem;
}

.chef_flex .txt {
  color: var(--color-text-light);
  font-size: 1.6rem;
}

.chef_flex .room_table_s th,
.chef_flex .room_table_s td {
  font-size: 1.6rem;
  padding: 6px 10px;
}

@media (max-width: 767px) {
  .chef-box-inr {
    grid-template-columns: 1fr;
  }
}

/* =================================================
   Tourism / instagram-style archive cards
================================================= */
.atc02 {
  padding-top: 60px;
}

.food_content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.food_content > li,
.food_content > div {
  position: relative;
  width: calc(25% - 18px);
  margin-bottom: 30px;
  background: #ffffff;
  text-align: left;
}

.top_instagram_img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.top_instagram_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.around_withdog_icon {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
  font-size: 1.6rem;
  padding: 5px 15px;
  border-radius: 0 0 5px 0;
}

.food_content__ttl {
  font-size: 1.6rem;
  padding: 12px 16px 0;
  text-align: left;
}

.food_content p {
  padding: 8px 16px 16px;
  color: var(--color-text-light);
  font-size: 1.6rem;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 900px) {
  .food_content > li,
  .food_content > div {
    width: calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .food_content > li,
  .food_content > div {
    width: 100%;
  }
}

/* 周辺観光ページ：PCは3列で見やすく */
@media (min-width: 901px) {
  .instagram_archive.food_content > li {
    width: calc(33.333% - 16px);
  }
}

/* フッター上：いぬやど掲載施設一覧 */
.inuyado-list {
  background: var(--color-bg-alt);
  padding-block: 48px;
}

.inuyado-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.inuyado-list li {
  /* width: calc(25% - 12px); */
  width: calc(30% - 12px);
  background: #fff;
  border: 1px solid var(--color-border);
}

.inuyado-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  width: 100%;
}

.inuyado-list__img {
  width: 80px;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inuyado-list__name {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .inuyado-list li {
    width: calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .inuyado-list li {
    width: 100%;
  }
}

/* TOPページ：周辺観光スライダー（3件以上でスライド可能） */
.tourism-slider {
  padding-inline: 40px;
  text-align: left;
}

.tourism-slider .swiper-slide {
  background: #ffffff;
}

.tourism-slider .food_content__ttl {
  padding-bottom: 12px;
}

.tourism-slider .swiper-pagination {
  position: static;
  margin-top: 16px;
}

.tourism-slider .swiper-button-prev,
.tourism-slider .swiper-button-next {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(23, 20, 17, 0.18);
  --swiper-navigation-color: var(--color-text);
  --swiper-navigation-size: 14px;
}

/* =================================================
   FAQ
================================================= */
.faq-box {
  background: var(--color-bg-alt);
  text-align: center;
  padding-block: 80px;
}

.faq-wrap {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding-block: 130px;
  text-align: center;
}

.faq-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 43, 36, 0.55);
}

.faq-wrap h2,
.faq-wrap p,
.faq-wrap .link {
  position: relative;
  z-index: 1;
}

.faq-wrap h2,
.faq-wrap p {
  color: #fff;
}

.faq-wrap .link a {
  color: #fff;
  border-color: #fff;
}

.faq-wrap .link a:hover {
  background: #fff;
  color: var(--color-accent-dark);
}

.faq-box .tit {
  font-size: 1.9rem;
}

/* =================================================
   FAQ accordion (Smart Custom Fields faq_list repeater)
================================================= */
.faq-acc {
  background: #fff;
  border: 1px solid var(--color-border);
  margin-bottom: 16px;
  text-align: left;
}

.faq-acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  color: var(--color-text);
}

.faq-acc__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px 20px;
  color: var(--color-text);
}

.faq-acc__a[hidden] {
  display: none;
}

.faq-acc__label {
  flex: 0 0 auto;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1;
}

.faq-acc__q .faq-acc__label {
  color: var(--color-accent);
}

.faq-acc__a .faq-acc__label {
  color: var(--color-accent-dark);
}

.faq-acc__text {
  flex: 1 1 auto;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
}

.faq-acc__q .faq-acc__text {
  font-weight: 600;
}

.faq-acc__icon {
  flex: 0 0 auto;
  position: relative;
  width: 15px;
  height: 15px;
}

.faq-acc__icon::before,
.faq-acc__icon::after {
  content: "";
  position: absolute;
  background: var(--color-accent-dark);
}

.faq-acc__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-acc__icon::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.faq-acc__q[aria-expanded="true"] .faq-acc__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

@media (max-width: 767px) {
  .faq-box {
    padding-block: 40px;
  }

  .faq-wrap {
    padding-block: 64px;
  }

  .faq-acc__q,
  .faq-acc__a {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
  }
}

/* =================================================
   Full width tinted sections / access / room-box
================================================= */
.top_area_bk {
  background: var(--color-bg-alt);
}

/* =================================================
   Access
================================================= */
.top_access {
  padding: 40px 0 30px;
}

.top_access .g_map {
  width: 94%;
  margin: 0 auto 40px;
}

.top_access .g_map img,
.top_access .g_map iframe {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.top_access ul {
  width: 94%;
  margin: 0 auto 20px;
}

.top_access li {
  display: flex;
  color: var(--color-text);
  padding: 20px 0 0;
  border-top: 1px solid var(--color-border);
}

.top_access li:last-child {
  border-bottom: 1px solid var(--color-border);
}

.top_access li h3 {
  font-size: 1.8rem;
  font-weight: 500;
  width: 26%;
  flex: 0 0 26%;
  padding: 0 15px;
}

.top_access li p {
  width: 100%;
  padding: 16px 14px;
}

.top_access li p span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4;
}

.top_access .checkin_box {
  width: 100%;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top_access address {
  font-size: 1.6rem;
  margin-top: 1em;
  text-align: center;
  font-style: normal;
}

.top_access .checkin_ttl {
  text-align: center;
  font-size: 2rem;
}

@media (max-width: 896px) {
  .top_access {
    padding: 10% 0;
  }

  .top_access .g_map,
  .top_access ul {
    width: 100%;
  }

  .top_access li {
    flex-direction: column;
    padding: 26px 0 14px;
  }

  .top_access li h3 {
    width: 100%;
    flex-basis: auto;
  }
}

/* =================================================
   ROOM teaser grid (room-box)
================================================= */
.room-box {
  background: var(--color-bg-blue);
}

.room-box .room-head {
  /* background: #fff; */
  padding-top: 70px;
  padding-bottom: 60px;
}

.room-box .room-head .inr {
  max-width: 1250px;
}

.room-box .room-head .inr .txt {
  text-align: center;
}

.room-box .room-nav {
  /* background: #fff; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.room-box .room-nav li.lg {
  width: auto;
  position: relative;
  margin: 0;
}

.room-box .room-nav li img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.dogsuite_p {
  position: absolute;
  right: 0;
  bottom: 15px;
}

.dogsuite_p p {
  padding: 5px 10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.8rem;
}

.textbox {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(242, 242, 242, 0.9);
  height: 100%;
  width: 90px;
}

.textbox p {
  font-size: 1.6rem;
  padding: 18px;
}

.textbox p .vertical__part {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: inline-block;
}

.vertical__part {
  text-orientation: upright;
}

@media (max-width: 896px) {
  .room-box .room-head {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .room-box .room-nav {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  .room-box .room-nav li.lg {
    width: 100%;
    margin-bottom: 8px;
  }

  .room-box .room-nav li img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .dogsuite_p p {
    font-size: 1.6rem;
  }
}

.top_news ul {
  max-width: 800px;
  margin-inline: auto;
}

.top_news .news-scroll {
  max-width: 800px;
  margin-inline: auto;
  max-height: 150px;
  overflow-y: auto;
}

.top_news .news-scroll ul {
  max-width: none;
}

.top_news li {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.6rem;
}

.top_news time {
  color: var(--color-text-light);
  white-space: nowrap;
}

.top_news li a:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* =================================================
   NEWS (topics card grid)
================================================= */
.topics-box__ttl {
  font-family: var(--font-accent);
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.topics-box__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin-inline: auto;
}

.topics-box__cate {
  text-align: right;
  font-family: var(--font-accent);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.topics-box__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 16px;
}

.topics-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.topics-box__list a:hover .topics-box__img img {
  transform: scale(1.05);
}

.topics-box__headline {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.topics-box__excerpt {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

@media (max-width: 900px) {
  .topics-box__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .topics-box__list {
    grid-template-columns: 1fr;
  }
}

.news-content__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-content p {
  margin-bottom: 1.5em;
}

.news-content img {
  margin-block: 24px;
}

/* =================================================
   Buttons
================================================= */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--color-accent-dark);
  color: var(--color-accent-dark);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.btn:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn.primary {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn.primary:hover {
  opacity: 0.85;
}

.btn-row {
  text-align: center;
  margin-top: 32px;
}

/* =================================================
   Breadcrumbs
================================================= */
.pankuzu {
  padding-block: 16px;
}

.breadcrumbs {
  font-size: 1.6rem;
  color: var(--color-text-light);
}

.breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: underline;
}

/* =================================================
   Footer
================================================= */
footer {
  background: #060709;
  color: #fff;
  padding-block: 56px 24px;
  margin-top: 64px;
}

.ftr_box {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.f-logo > p:first-child a {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: #fff;
  display: inline-block;
}

.f-logo > p:first-child img {
  display: block;
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.f-logo .checkin {
  font-size: 1.6rem;
  opacity: 0.85;
}

.f-logo a {
  color: #fff;
}

.f-logo .linkbar {
  border: 1px solid #fff;
  width: 300px;
  max-width: 100%;
}

.f-logo .linkbar a {
  display: block;
  padding: 10px;
  text-align: center;
}

.f-logo .tel-hours {
  width: 300px;
  max-width: 100%;
  font-size: 1.4rem;
  text-align: center;
}

.f-logo .link2 a {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 12px 30px;
  background: #fff;
  color: #333;
  text-align: center;
}

.f_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.f_menu a {
  font-size: 1.6rem;
  opacity: 0.9;
}

.f_menu a:hover {
  opacity: 1;
  text-decoration: underline;
}

.company {
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  opacity: 0.6;
}

/* LINEアイコン */
.line_icon a img {
  width: 30px;
}

/* Mobile floating contact bar */
.p-mb-contact {
  display: none;
}

@media (max-width: 900px) {
  .p-mb-contact {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
  }

  .p-mb-contact__link,
  .p-mb-contact__link2,
  .p-mb-contact__link3 {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 1.4rem;
  }

  .p-mb-contact__link {
    background: var(--color-accent-dark);
    color: #fff;
  }

  .p-mb-contact__link2 {
    background: var(--color-bg-alt);
  }

  .p-mb-contact__link3 {
    background: var(--color-white);
  }

}

/* Back to top button */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.page-top.is-active {
  opacity: 1;
  pointer-events: auto;
}

.page-top p {
  font-size: 2.4rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .page-top {
    right: 16px;
    bottom: 76px;
    width: 48px;
    height: 48px;
  }
}

/* =================================================
   お食事ページ：会席プラン
================================================= */
.meal-plan-banner {
  position: relative;
  padding: 0;
}

.meal-plan-banner img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  display: block;
}

.meal-plan-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.45);
}

.meal-plan-banner__inr {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.meal-plan-banner__label {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.meal-plan-banner__ttl {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.meal-plan-lead {
  padding-block: 60px;
  background: var(--color-bg-alt);
}

.meal-plan-lead .inr {
  max-width: 760px;
}

.meal-plan-meals__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin-inline: auto;
}

.meal-plan-meals__img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 16px;
}

.meal-plan-meals__item h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.meal-plan-menu {
  background: var(--color-bg-alt);
}

.meal-plan-menu__block {
  max-width: 760px;
  margin: 0 auto 50px;
}

.meal-plan-menu__block:last-child {
  margin-bottom: 0;
}

.meal-plan-menu__list > div {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.meal-plan-menu__list > div:last-child {
  border-bottom: none;
}

.meal-plan-menu__list dt {
  flex: 0 0 auto;
  width: 90px;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.meal-plan-menu__list dd {
  flex: 1 1 auto;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .meal-plan-banner__ttl {
    font-size: 2.4rem;
  }

  .meal-plan-meals__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .meal-plan-menu__list > div {
    flex-direction: column;
    gap: 4px;
  }

  .meal-plan-menu__list dt {
    width: auto;
  }
}
