@charset "utf-8";

:root {
  --default-font: "Noto Serif JP", serif;
  --heading-font: "Shippori Mincho", serif;
  --sans-font: "Noto Sans JP", sans-serif;

  --base-color: #F9F5EF;
  --bg-color: #EDE6DB;
  --section-color: #FAEDDD;
  --accent-color: #b45f06;
  --accent2-color: #e0a05c;
  --accent3-color: #efdac3;
  --deco-color: #b46006ca;
  --font-color: #2F2F2F;
  --white-color: #fff;
  --gray-color: #b3b2b2;
  --lightblack-color: #6A6969;
  --logo-color: #4D4A47;

  --pcHeader-height: 104px;
  --spHeader-height: 73px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 62.5%;
}

img {
  display: block;
}

a,
button {
  transition: ease-in-out 0.3s;
}

.sp-br {
  display: none;
}

.scroll-margin {
  scroll-margin-top: var(--pcHeader-height);
}

@media (max-width: 768px) {
  .scroll-margin {
    scroll-margin-top: var(--spHeader-height);
  }
  .sp-br {
    display: block;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }

  button:hover {
    opacity: 0.7;
  }
}

/* --------------------
予約ボタン
---------------------- */
.btn {
  width: 160px;
  background: linear-gradient(135deg, #b45f06 0%, color-mix(in srgb, #b45f06, #000 20%) 100%);
  border-radius: 20px;
  transition: ease-in-out 0.3s;
}

.btn .js-open-booking {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--sans-font);
  color: rgba(255, 255, 255, 1);
  padding: 10px 0;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 0.7;
  }
}

/* 画像 */
.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper {
  background-color: var(--base-color);
  font-family: var(--default-font);
  font-weight: 500;
  color: var(--font-color);
  letter-spacing: 0.05em;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

/* 固定予約ボタン（スマホのみ表示） */
.fixed-reserve-btn {
  position: fixed;
  right: 0;
  bottom: 5px;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--sans-font);
  color: rgba(255, 255, 255, 1);
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s ease;
  z-index: 999;
}
.fixed-reserve-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .fixed-reserve-btn {
    display: none;
  }
}

/* =============================
ヘッダー
================================ */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(249, 245, 239, 0.95);
  padding: 10px;
}

/* 上部 */
header .upper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .upper-nav p {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--font-color);
  opacity: 0.8;
}

header .upper-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

header .upper-nav ul a {
  color: var(--lightblack-color);
  font-size: 1.3rem;
  font-weight: 400;
  font-family: var(--sans-font);
}

/* アイコン */
.h-club i {
  padding-right: 5px;
}

.tel i, .mail i {
  color: var(--accent-color);
  padding-right: 5px;
}

header .item-wrap .sp-only a.h-club {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.sp-only .h-club i {
  padding-left: 5px;
}

/* ナビ本体 */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.hd-logo {
  width: 140px;
  height: auto;
}

.hd-logo img {
  width: 100%;
  height: auto;
}

header .item-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}

header .item-wrap ul {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
}

header .item-wrap ul a {
  font-size: 1.6rem;
  color: var(--accent-color);
}

/* SPのみ表示のスタイル */
header .item-wrap p.sp-only {
  font-family: var(--sans-font);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--lightblack-color);
  border-bottom: 1px solid var(--accent-color);
  padding: 5px 15px;
}

header .item-wrap .sp-only ul {
  gap: 10px;
}

header .item-wrap .sp-only a {
  font-family: var(--sans-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--lightblack-color);
}


/* --- ハンバーガーのベース（PCでは非表示） --- */
.hamburger {
  /* モバイルで表示 */
  display: none;
  /* 丸形ボタン */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  /* 配置 */
  position: relative;
  margin-left: auto;
  padding: 0;
  border: none;
  cursor: pointer;
  /* アクセシビリティ */
  outline: none;
}

.hamburger:focus-visible {
  /* 白のフォーカスリングで視認性UP */
  box-shadow:
    0 2px 10px rgba(0, 0, 0, .12),
    0 0 0 3px #fff,
    0 0 0 5px color-mix(in srgb, var(--accent-color) 70%, #000 30%);
}

.hamburger:hover {
  filter: brightness(1.05);
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

/* 線の縦位置（中央を基準） */
.hamburger span:nth-child(1) {
  top: calc(50% - 4px);
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: calc(50% + 4px);
}

/* 開いた状態：白のXに変形 */
.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

/* モバイルメニューのアニメーション用 基本状態（PC時は従来のフレックス）*/
#global-nav {
  transition: transform .3s ease;
}

/* --- 768px以下のレイアウト --- */
@media (max-width: 768px) {
  header .upper-nav {
    display: none;
  }

  header nav {
    align-items: center;
    margin-top: 0;
  }

  .hd-logo {
    width: 140px;
  }

  /* ハンバーガーを表示 */
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    /* メニューより上 */
  }

  /* メニューは画面からスライドインするオーバーレイ */
  header .item-wrap {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 360px);
    /* 右側パネル幅 */
    background: #fff;
    /* ここはブランドカラーに合わせてOK */
    box-shadow: -8px 0 24px rgba(0, 0, 0, .1);
    padding: 90px 24px 32px;
    /* 上部はヘッダーと被らないよう余白 */
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 2.4rem;

    transform: translateX(100%);
    /* 初期は画面外 */
  }

  header .item-wrap.is-open {
    transform: translateX(0);
    /* 開いた状態 */
  }

  /* 縦メニュー化 */
  header .item-wrap ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  header .item-wrap ul li {
    text-align: center;
  }

  header .item-wrap ul a {
    font-size: 1.6rem;
    color: var(--accent-color);
  }

  /* 予約ボタンは横幅いっぱい */
  header .btn {
    width: 100%;
  }

  /* メニュー展開中に背景のスクロールを止める */
  body.no-scroll {
    overflow: hidden;
    touch-action: none;
  }
}

/* =============================
MV メインビジュアル
================================ */
.mv {
  width: 100%;
  height: 100vh;
}

.mv .inner {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mv img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center top; */
  filter: brightness(0.9);
  z-index: 2;
}

.mv .txtwrap {
  position: absolute;
  top: calc(50% + (var(--pcHeader-height, 0px) / 2));
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  color: var(--white-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .75), 1px 1px 4px rgba(0, 0, 0, .5), 1px 1px 7px rgba(0, 0, 0, .25);
  z-index: 3;
  text-align: center;
}
.mv .catch {
  font-family: var(--sans-font);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
}

.mv h1 {
  font-family: var(--default-font);
  font-size: 4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--white-color);
}


.mv .grand-open {
  /* font-family: var(--sans-font); */
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 30px;
  padding: 0 20px;
}

/* =============================
イントロ
================================ */
.intro {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 5rem 0;
}

.intro .pic {
  width: 25%;
}

.intro .inner {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.intro .txt {
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: start;
}

.intro h2 {
  font-size: 3.6rem;
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 2;
  color: var(--logo-color);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, .75), 1px 1px 4px rgba(255, 255, 255, .5), 1px 1px 7px rgba(255, 255, 255, .25);
}

.intro .btn {
  width: 280px;
  margin-top: 3rem;
}

.intro .btn a {
  font-size: 1.6rem;
}

.intro .pic01 {
  position: relative;
  z-index: 2;
  height: auto;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
}

.intro .pic01 img {
  object-position: center;
}

.intro .pic-wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 50%;
  height: 100%;
}

.intro .pic02 {
  position: relative;
  width: 70%;
  z-index: 4;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.intro .pic02 img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
}

.intro .pic03 {
  position: relative;
  width: 100%;
  z-index: 1;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
}

/* -----------------------------
観光紹介
-------------------------------- */
.intro-2 {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: var(--accent3-color);
  padding: 8rem 0 10rem;
}

.intro-2 .inner {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.intro-2 .sightseeing {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 5rem;
}

.sightseeing-p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: var(--default-font);
  font-weight: 400;
  text-align: center;
}

.intro-2 .card-box {
  display: flex;
  justify-content: space-between;
  gap: 2rem 3%;
  margin-top: 8rem;
}

.intro-2 .card-box li {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .5);
}

.intro-2 .card-box .pic {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  opacity: 0.9;
}

.intro-2 .card-box .txt {
  width: 100%;
  height: 100%;
  padding: 15px 10px;
}

.intro-2 .card-box h4 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.intro-2 .card-box p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.intro-2 .card-box .sightseeing-ac {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-top: 15px;
}

.intro-2 .card-box .sightseeing-ac span {
  display: block;
  font-size: 1.4rem;
  color: var(--accent-color);
}

.intro-2 .card-box .sightseeing-ac span i {
  font-size: 1.6rem;
  color: var(--deco-color);
}


/* =============================
共通パーツ
================================ */
.c-tl {
  font-size: 3.6rem;
  color: var(--accent-color);
  font-weight: 400;
  margin-bottom: 30px;
}

.c-p {
  font-size: 1.8rem;
  line-height: 2.5;
  font-family: var(--heading-font);
  font-weight: 400;
}

.c-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10%;
  width: 270px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-family: var(--sans-font);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent2-color);
  padding: 10px 0 10px 25px;
  margin-top: 5rem;
}

@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    border: 1px solid var(--accent2-color);
    opacity: 1;
  }
}

/* 下矢印 */
.b-arrow {
  position: relative;
  display: inline-block;
  width: 9.5px;
  height: 5.2px;
}

.b-arrow::before,
.b-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 7px;
  border-radius: 9999px;
  background-color: var(--accent2-color);
  transform-origin: 50% calc(100% - 0.5px);
}

.b-arrow::before {
  transform: rotate(45deg);
}

.b-arrow::after {
  transform: rotate(-45deg);
}

/* =============================
客室
================================ */
.room {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: var(--bg-color);
  padding-bottom: 10rem;
}

.room .border {
  width: 100%;
  aspect-ratio: 16 / 5;
  opacity: 0.7;
}

.room-cont {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-cont .pic {
  width: 40%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
}

.room-cont .cont-wrap .txt {
  width: 80%;
  margin: 0 auto;
}

.room-cont .cont-wrap .pic {
  width: 40%;
  aspect-ratio: 3 / 2;
  margin-right: auto;
  margin-left: auto;
  margin-top: 8rem;
}

/* ---------------------
ルームリスト
------------------------ */
.room-list {
  width: 100%;
  overflow: hidden;
}

.type-tl {
  font-size: 2.8rem;
  color: var(--accent-color);
  font-weight: 400;
  text-align: center;
}

.type-subtl {
  width: 200px;
  font-size: 1.6rem;
  font-family: var(--sans-font);
  text-align: center;
  color: #fff;
  background-color: var(--accent2-color);
  font-weight: 400;
  padding: 5px 0;
  border-radius: 30px;
  margin-right: auto;
  margin-left: auto;
}

/* ------静的なルームリスト------ */
/* Swiperと同じスタイルを再現 */
.room-ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  padding-left: 5rem;
  padding-right: 5rem;
  margin-top: 5rem;
}

.room-ul .card-style {
  width: calc((100% - 48px) / 3);
  height: auto;
}

.room-ul .card-style .card-txt {
  height: auto;
}

/* ---共通スタイル 静的リスト・swiper--- */
.roomSrider {
  width: 100%;
  margin-top: 5rem;
}

.card-style {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
}

/* 部屋画像 */
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  opacity: 0.9;
}

.card-txt {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 20px 25px;
}

.card-txt h4 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.card-txt .txt p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  color: var(--logo-color);
}

.card-txt table {
  width: 100%;
  border-collapse: collapse;
}

.card-txt th, .card-txt td {
  font-family: var(--sans-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--lightblack-color);
  text-align: start;
  border-bottom: 1px solid #d9d9d9;
}

.card-txt th {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
}

.card-txt td {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
}


/* --------Swiperカルーセル--------- */

.swiper.card-swiper {
  overflow: visible;
  padding-right: 1px;
  /* Safariの描画ズレ対策 */
  margin-right: 0;
  margin-left: auto;
  margin-top: 5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 48px;
  /* ドット分 */
}

.card-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
}

/* ページネーション */
.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  width: 40px;
  height: 60px;
  color: #fff;
  background-color: var(--accent2-color);
  border: 1px solid rgba(255, 255, 255, .5);
}

.card-swiper .swiper-button-prev::after,
.card-swiper .swiper-button-next::after {
  font-size: 24px;
  /* 矢印の大きさ */
}

.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  transition: opacity .3s ease;
}

.card-swiper .swiper-button-prev {
  left: 0;
}

.card-swiper .swiper-button-next {
  right: 0;
}

/* 端に到達した矢印を消す */
.card-swiper .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  /* クリック不可 */
}

/* ページネーション */
.card-swiper .swiper-pagination-bullet {
  width: 24px;
  height: 2px;
  border-radius: 0;
  margin: 0 4px;
}

.card-swiper .swiper-pagination-bullet-active {
  background: var(--accent2-color);
}

/* Swiper特有のスタイル */
/* .swiper-slide.card-style {
  height: 300px;
  overflow: hidden;
} */


/* -----空室ボタン----- */
.ac-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  font-family: var(--sans-font);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent2-color);
  border: 1px solid var(--accent2-color);
  padding: 10px 0;
}

@media (hover: hover) and (pointer: fine) {
  .ac-btn:hover {
    background-color: #f9f3ec;
    opacity: 1;
  }
}

/* -----右向き矢印----- */
.r-arrow {
  position: relative;
  display: inline-block;
  width: 5.2px;
  height: 9.5px;
}

.r-arrow::before,
.r-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--accent2-color);
  transform-origin: calc(100% - 0.5px) 50%;
}

.r-arrow::before {
  transform: rotate(45deg);
}

.r-arrow::after {
  transform: rotate(-45deg);
}

/* =============================
朝食
================================ */
.breakfast {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: var(--base-color);
  padding: 8rem 0;
}

.breakfast .cont-wrap {
  width: 60%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.breakfast .pic {
  width: 40%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
}

.breakfast .cont-wrap .txt {
  width: 70%;
  padding: 10rem 0;
  margin: 0 auto;
}

.breakfast .pic-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  width: 80%;
}

.breakfast .pic-wrap .pic01,
.breakfast .pic-wrap .pic02 {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
}

/* 時間など詳細 */
.detail {
  width: fit-content;
  background-color: rgba(255, 255, 255, .7);
  padding: 10px 20px;
  border: 1px solid var(--accent2-color);
  border-radius: 10px;
  margin-top: 2rem;
}

.detail dl {
  display: flex;
}

.detail dt, .detail dd {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: var(--notoSans-font);
  line-height: 2;
}

.detail dt {
  flex: 0 0 auto;
}

.detail dt::before {
  content: '|';
  color: var(--accent2-color);
  font-weight: 600;
  padding-right: 5px;
}

.detail dd {
  flex: 1;
  padding-left: 16px;
}


/* =============================
アクセス
================================ */
.access {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #FAEDDD;
  padding-bottom: 15rem;
}

.access .border {
  width: 100%;
  aspect-ratio: 16 / 5;
  opacity: 0.7;
}

/* アクセス本文 */
.access .content {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 8rem;
}

.access .c-p {
  font-size: 1.6rem;
}

.access address {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: var(--sans-font);
  color: var(--logo-color);
  border-left: 1px solid var(--accent-color);
  padding: 20px;
  margin: 20px 0;
}

.guide {
  display: flex;
  flex-flow: column;
  gap: 20px;
  margin-top: 3rem;
}

.guide .guide-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .9);
  border: 1px solid var(--accent3-color);
  border-radius: 10px;
}

.icon-locat {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background-color: var(--accent2-color);
  padding: 5px;

}

.icon-locat i {
  font-size: 12px;
  height: auto;
  color: #fff;
  vertical-align: middle;
}

.guide dt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.guide dd {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.8;
  color: var(--font-color);
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.guide dd:last-child {
  margin-bottom: 0;
}


/* .guide dd::before {
  display: inline-block;
  content: '・';
  position: absolute;
  vertical-align: middle;
  left: 18px;
} */

/* .guide dt::before {
  display: inline-block;
  content: '';
  background-image: url('../img/location.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 8px;
} */

/* グーグルマップ */
.access .gmap {
  width: 100%;
  height: 440px;
  margin-top: 5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--font-color), transparent 90%);
  border: 1px solid var(--accent3-color);
}

/* =============================
フッター
================================ */
footer {
  position: relative;
  z-index: 2;
  width: 100%;
  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* ページトップボタン */
.page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -45px;
  right: 0;
  width: 45px;
  height: 45px;
  background-color: var(--accent2-color);
  border: 1px solid rgba(180, 95, 6, 0.4);
  border-radius: 50%;
}

/* 上矢印 */
.t-arrow {
  position: relative;
  display: inline-block;
  width: 13.3px;
  height: 7.7px;
}

.t-arrow::before,
.t-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 0.5px;
}

.t-arrow::before {
  transform: rotate(45deg);
}

.t-arrow::after {
  transform: rotate(-45deg);
}

/* 内容 */
footer .inner {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  padding: 5rem 0;
}

footer .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem 10%;
  margin-right: auto;
  margin-left: auto;
}

footer .info {
  display: flex;
  align-items: center;
  gap: 5rem;
}

footer .logo {
  width: 100px;
}

footer .info h3 {
  font-family: var(--serif-font);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

footer address {
  display: block;
  font-family: var(--sans-font);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
/* 位置アイコン */
footer address .bi-geo-alt {
  font-size: 20px;
  color: var(--accent-color);
  vertical-align: middle;
  padding-right: 5px;
}

footer .info a {
  display: block;
  color: var(--logo-color);
  margin-top: 5px;
}

.ft-right {
  max-width: 300px;
  width: 100%;
  background-color: rgba(255, 255, 255, .6);
  padding: 15px 10px;
  border: 1px solid var(--accent3-color);
  border-radius: 10px;
}

.ft-right .btn {
  display: block;
}

/* フッター会員リンク */
.ft-member {
  display: flex;
  padding-top: 10px;
}

.ft-member li {
  display: flex;
  align-items: center;
}

.ft-member a {
  display: block;
  color: var(--accent-color);
  font-family: var(--sans-font);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 10px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, .75), 1px 1px 4px rgba(255, 255, 255, .5), 1px 1px 4px rgba(255, 255, 255, .25);
}

/* ボーダー */
footer hr {
  width: 60%;
  margin: 0 auto;
  border-color: var(--accent3-color);
}

/* 日和ホテルズ */
.hotels {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hotels h4 {
  font-size: 1.8rem;
  font-weight: 500;
  /* color: var(--accent-color); */
  color: var(--logo-color);
  text-align: center;
  margin-bottom: 15px;
}

.hotels ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 3%;
}

.hotels a {
  /* font-family: var(--sans-font); */
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--accent-color);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, .75), 1px 1px 3px rgba(255, 255, 255, .5), 1px 1px 4px rgba(255, 255, 255, .25);
}

/* 規約など */
footer .under {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2rem;
}

footer .under a {
  font-family: var(--sans-font);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--lightblack-color);
}

footer .under li:not(:last-child) a::after {
  content: '｜';
  margin-left: 20px;
}

.copy {
  padding: 3rem 0;
  background-color: var(--base-color);
  text-align: center;
  font-family: var(--sans-font);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--logo-color);
}

/* ============================
予約ポップアップ
=============================== */
/* 右下ポップアップ */
/* .popup {
  position: fixed;
  right: 0;
  bottom: 10px;
  width: 100%;
  max-width: 660px;
  height: auto;
  background-color: var(--accent-color);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(2, 12, 27, .20);
  padding: 16px 10px 12px;
  overflow: visible;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.popup.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .popup-close:hover {
    opacity: 1;
  }
} */

/* -----------------------------
triplaウィジェット
-------------------------------- */
/* #booking .input-container-title-db81ec {
  font-size: 1.2rem;
  line-height: 1;
}

#booking .button-btn-f51c1a {
  border-radius: 30px;
} */

/* ポップアップコンテナとtriplaのレスポンシブ */
/* @media only screen and (max-width: 992px) {
  .popup {
    bottom: 0;
    padding: 16px 0 12px;
  }
} */

/* -----------------------------
メンバーリンク
-------------------------------- */
.member {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin-right: auto;
  margin-left: auto;
}

.member li {
  display: flex;
  align-items: center;
}

.member a {
  display: block;
  color: rgba(255, 255, 255, 1);
  font-family: var(--sans-font);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 15px;
  opacity: 0.8;
}

@media (hover: hover) and (pointer: fine) {
  .member a:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 480px) {
  .member a {
    font-size: 1.2rem;
  }
}