@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;
}

/* Pages that open with a full-bleed hero cancel the offset so the image
   still runs edge-to-edge behind the translucent fixed header. */
.hero,
.top_slid,
.top_under {
  margin-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);
}

.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 {
  font-size: 1.6rem;
  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-accent);
  letter-spacing: 0.05em;
}

/* 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;
  }

  .hero,
  .top_slid,
  .top_under {
    margin-top: -60px;
  }

  .gnav,
  .site-header__right {
    display: none;
  }

  .site-header {
    height: 60px;
    padding: 0 16px;
  }

  .site-header__logo {
    font-size: 1.6rem;
  }

  .slide-menu-btn {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    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);
  }

  .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;
  }

  .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;
    gap: 12px;
    margin-bottom: 24px;
  }

  .button01,
  .button02 {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 1.6rem;
    flex: 1;
  }

  .button01 {
    background: var(--color-accent-dark);
    color: #fff;
  }

  .button02 {
    border: 1px solid #fff;
    color: #fff;
  }

  .sns-box {
    margin-top: 24px;
    font-size: 1.8rem;
    color: #fff;
  }
}

/* =================================================
   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;
}

/* =================================================
   Hero: full-bleed slider + fixed-width side panel
================================================= */
.hero {
  position: relative;
  padding-right: 260px;
}

.hero__media {
  position: relative;
  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__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: center;
  text-align: center;
  padding: 40px 16px;
}

.hero__panel::before {
  content: "";
  position: absolute;
  top: 64px;
  bottom: 64px;
  left: 12px;
  width: 1px;
  background: var(--color-border);
}

.hero__logo {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  margin-bottom: 40px;
}

.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: 600px;
  }

  .hero__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background: none;
    padding: 0;
  }

  .hero__logo {
    color: #fff;
    text-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);
  }
}

/* =================================================
   空室検索 (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;
}

.room-search-box__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
}

.room-search-box__field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.room-search-box__label {
  font-size: 1.6rem;
  font-weight: 600;
  margin-right: 4px;
}

.room-search-box__field select {
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  padding: 6px 4px;
  font-size: 1.6rem;
  color: var(--color-text);
}

.room-search-box__undecided {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  color: var(--color-text-light);
}

.room-search-box__submit-row {
  text-align: center;
  margin-top: 24px;
}

.room-search-box__submit {
  display: inline-block;
  padding: 14px 56px;
  background: transparent;
  border: 1px solid var(--color-accent-dark);
  color: var(--color-accent-dark);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  cursor: not-allowed;
}

.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: 900px) {
  .room-search-box {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    max-width: none;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .room-search-box .inr {
    max-width: none;
    padding: 24px 20px;
  }

  .room-search-box__row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .room-search-box__submit {
    width: 100%;
  }

  .room-search-box__links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* =================================================
   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 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: 900px) {
  .concept-box {
    height: auto;
  }

  .concept-box__inr {
    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-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: 100%;
    max-width: none;
    min-width: 0;
    margin-top: 56px;
    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: 100px;
}

/* =================================================
   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;
}

.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);
}

.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;
}

.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
================================================= */
.food_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.food_content > li,
.food_content > div {
  position: relative;
  width: 23%;
  margin-bottom: 30px;
  background: #f8f8f8;
  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: 48%;
  }
}

@media (max-width: 480px) {
  .food_content > li,
  .food_content > div {
    width: 100%;
  }
}

/* 周辺観光ページ：PCは3列で見やすく */
@media (min-width: 901px) {
  .instagram_archive.food_content > li {
    width: 31%;
  }
}

/* フッター上：いぬやど掲載施設一覧 */
.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: #f8f8f8;
}

.tourism-slider .swiper-pagination {
  position: static;
  margin-top: 16px;
}

/* =================================================
   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 {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.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-nav {
  /* background: #fff; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.room-box .room-nav li.lg {
  width: 45%;
  position: relative;
  margin: 5px;
}

.room-box .room-nav li img {
  width: 100%;
  height: 400px;
  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: 1.8rem;
}

.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 {
    padding-bottom: 30px;
  }

  .room-box .room-nav li.lg {
    width: 100%;
    margin-bottom: 8px;
  }

  .room-box .room-nav li img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .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;
}

.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 .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;
}

/* 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 {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 1.6rem;
  }

  .p-mb-contact__link {
    background: var(--color-accent-dark);
    color: #fff;
  }

  .p-mb-contact__link2 {
    background: var(--color-bg-alt);
  }
}

/* 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;
}
