@charset "utf-8";

:root {
  --noto-font: 'Noto Sans JP';
  --shippori-font: "Shippori Mincho B1", serif;

  --base-color: #CEC6B0;
  --accent-color: #FFB702;
  --btn-color: #A99B39;
  --btn-blue: linear-gradient(90deg, #0076C5 0%, #57ADE7 77.88%, #96D5FF 100%);


  --green: #29782F;
  --orange: #F9B000;
  --purple: #851845;
  --brown: #744703;


  --font-color: #5A5A5A;
  --title-color: #7F7F7F;
  --logo-color: #4D4A47;
  --gray-color: #F2F2F2;

  --header-h-sp: 62px;
  --header-h-pc: 72.8px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h-sp);
  /* 固定ヘッダー分のアンカーずれ解消 */
}

@media (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-h-pc);
  }
}


body {
  font-size: 62.5%;
  width: 100%;
  font-family: var(--noto-font);
  font-weight: 500;
  color: #fff;
}

/* ハンバーガーナビ背景スクロール防止 */
body.is-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.1em;
}

a, button {
  transition: ease-in-out .3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover, button:hover {
    opacity: 0.7;
  }
}

img {
  display: block;
  /* filter: contrast(0.9) brightness(1.1); */
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nomal {
  width: 100%;
  height: auto;
}

.sp-br {
  display: none;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transform: translateY(150px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.small {
  display: block;
  font-size: 1.4rem;
  margin-top: 10px;
}

/* ======== 全体 ======== */
.wrapper {
  background-color: var(--base-color);
}

/* =====================
ヘッダー
===================== */
header {
  position: fixed;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 64px;
  background-color: var(--base-color);
}

.hd-logo {
  color: #fff;
  font-family: var(--shippori-font);
  font-weight: 500;
  font-size: 2rem;
  white-space: nowrap;
}

header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.4rem;
}

header nav ul {
  display: flex;
  justify-content: space-between;
  gap: 3.4rem;
}

header nav ul li a {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #fff;
  border-bottom: 2px solid transparent;
  transition: border-color .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  header nav ul li a:hover {
    opacity: 1;
    border-bottom-color: #fff;
  }
}

/* ---------ハンバーガー -------- */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  width: 44px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger:active {
  opacity: 0.7;
}

.hamburger:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

/* --------閉じた状態------- */
/* 共通 */
.hamburger span {
  display: block;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

/* 1本目：左 */
.hamburger span:nth-child(1) {
  width: 70%;
  align-self: flex-start;
}

/* 2本目：中央 */
.hamburger span:nth-child(2) {
  width: 100%;
  align-self: center;
}

/* 3本目：右 */
.hamburger span:nth-child(3) {
  width: 70%;
  align-self: flex-end;
}


/* --------開いた状態-------- */
.hamburger.is-open {
  position: relative;
  z-index: 10000;
  justify-content: center;
  /* 中央に寄せる */
}

.hamburger.is-open span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  align-self: center;
  transform-origin: center;
}

/* 上 → ／ */
.hamburger.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(35deg);
}

/* 中 → 消す */
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

/* 下 → ＼ */
.hamburger.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-35deg);
}


/* SP */
@media screen and (max-width: 960px) {
  header {
    padding: 16px 20px;
  }

  header nav {
    justify-content: flex-end;
    gap: 0;
  }

  /* メニュー非表示（まだ開閉しない） */
  header nav ul {
    display: none;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }
}

/* -------------
  メニュー全体
---------------- */
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: var(--base-color);
  z-index: 9998;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* 表示用 */
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/* -------中央レイアウト------- */
.sp-menu__inner {
  display: flex;
  height: calc(100% - 80px);
  /* 下のボタン分を引く */
  /* padding: 80px 24px 0; */
}

/* 左：ロゴ */
.sp-menu__left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-menu__left img {
  max-width: 140px;
}

/* 右：メニュー */
.sp-menu__right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;

}

.sp-menu__right ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 3rem;
  border-left: 2px solid #fff;
}

.sp-menu__right a {
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.08em;
}


/* SP予約ボタン */
.sp-menu__bottom {
  position: fixed;
  /* ← absolute → fixed に変更 */
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}

.sp-menu__bottom .btn {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--btn-color);
  text-align: center;
  padding: 15px 0;
}

.sp-menu__bottom .btn i {
  font-size: 20px;
  margin-left: 10px;
}

@media screen and (min-width: 960px) {
  .sp-menu {
    display: none !important;
  }
}

/* =====================
固定予約ボタン
======================== */
.fixed-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 980;
}

.fixed-btn a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.5em;
  writing-mode: vertical-rl;
  background-color: var(--btn-color);
  border: 2px solid #fff;
  padding: 35px 10px;
}

.fixed-btn a i {
  font-size: 20px;
  margin-top: 10px;
}

.fixed-btn a .bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
  vertical-align: 0;
}

/* =====================
MV
======================== */

.mv {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  /* safari */
}

.mv-pic {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  filter: brightness(0.8);
}

.mv-pic img {
  object-position: center top;
}

.mv-logo {
  position: absolute;
  top: calc((100% + var(--header-h-pc)) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  width: 200px;
  height: auto;
}

.mv-txt {
  width: fit-content;
  white-space: nowrap;
  position: absolute;
  bottom: 5rem;
  right: auto;
  left: 5rem;
  z-index: 2;
  font-family: var(--shippori-font);
  font-weight: 500;
  font-size: 3.4rem;
  color: #fff;
  text-align: end;
  text-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.mv-txt span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}

/* =====================
intro
======================== */
.intro {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: end;
  background: linear-gradient(180deg, rgba(206, 198, 176, 0) 0%, rgba(206, 198, 176, 0.95) 38%, #CEC6B0 100%);
  padding-top: 40rem;
}

.intro .pic {
  width: 50%;
  aspect-ratio: 5 / 1;
  overflow: hidden;
}

.intro .txt {
  position: relative;
  width: 40%;
}

/* スクロールアニメーション */

.scroll_down {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateY(-100%);
}

.scroll_down span {
  display: block;
  position: absolute;
  left: -8px;
  bottom: 510px;
  color: #fff;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation:
    circlemove 2.5s ease-in-out infinite,
    cirlemovehide 2.5s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 500px;
  }

  100% {
    bottom: 0px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 500px;
  background: #fff;
}
/* ENDスクロールアニメーション */

.intro .txt p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2.8;
  text-align: center;
  margin-bottom: 10rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.intro-logo {
  width: 20%;
  margin-right: auto;
  margin-left: auto;
}

/* =====================
サブナビゲーション
======================== */
.sub-nav {
  width: 100%;
  margin-top: 15rem;
}

.sub-nav ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-nav ul li {
  width: 20%;
  border-right: 1px solid #fff;
}

.sub-nav ul li:last-child {
  border: none;
}

.sub-nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 400;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.sub-nav ul li a:hover {
  background-color: #fff;
  color: var(--font-color);
}

/* ========== キーイラスト ========== */
.key-illust {
  width: 100%;
  margin-top: 10rem;
}

/* =====================
共通
======================== */
.c-tl {
  width: fit-content;
  font-size: 4rem;
  font-family: var(--shippori-font);
  font-weight: normal;
  white-space: nowrap;
}

.c-tl span {
  font-size: 1.8rem;
  font-family: var(--noto-font);
}

.c-p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.link-btn {
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0 5px 8px 5px;
}

.link-btn img {
  display: inline-block;
  margin-left: 8px;
}

.link-btn i {
  margin-left: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .link-btn:hover {
    color: var(--brown);
    border-bottom: 1px solid var(--brown);
  }
}

.sub-c-tl {
  width: fit-content;
  font-size: 2.8rem;
  font-family: var(--shippori-font);
  font-weight: normal;
  white-space: nowrap;
}

.sub-c-tl span {
  display: block;
  font-size: 1.8rem;
  font-family: var(--noto-font);
}

/* =====================
ルーム
======================== */
.room {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15rem;
}

.room section {
  flex: 2;
  display: flex;
  flex-flow: column;
  gap: 3rem;
}

.room .c-tl span {
  margin-left: 15px;
}

.room .pic-wrap {
  flex: 3;
}

.room .pic {
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.room .pic:not(:last-child) {
  margin-bottom: 15px;
}

/* -------タブメニュー -------*/
.roomTabs {
  margin-top: 10rem;
}

/* タブボタン */
.tab_buttons {
  width: fit-content;
  display: flex;
  gap: 3rem;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 3px;
  margin-right: auto;
  margin-left: auto;
}

.tab_btn {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 10px 20px;
  color: var(--brown);
  border-bottom: 2px solid var(--brown);
  cursor: pointer;
}

.tab_btn.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}

@media (hover: hover) and (pointer: fine) {
  .tab_btn:hover {
    opacity: 1;
    color: #fff;
    border-bottom: 2px solid #fff;
  }
}

/* タブ中身 */
.tab_contents {
  position: relative;
  transition: height .3s ease;
}

.tab_content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); */
  width: 90%;
  /* max-width: 1100px; */

  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;

  background-color: #fff;
  color: var(--brown);
}

.tab_content.active {
  opacity: 1;
  pointer-events: auto;
}

/* 上部レイアウト */
.tab_content {
  padding: 5rem;
}

.tab_content h3 {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 10px;
  margin-bottom: 2rem;
}

.tab_content h3 span {
  font-size: 1.4rem;
  margin-left: 16px;
}

.room_box {
  display: flex;
  gap: 5rem 5%;
  margin-bottom: 5rem;
}

.room_img {
  flex: 1;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.room_text {
  flex: 1;
}

.room_text p {
  font-size: 1.8rem;
}

.room_text ul {
  margin: 3rem 0;
}

.room_text li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  padding-left: 22px;
}

.room_text li::before {
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  content: '●';
  font-size: 12px;
  vertical-align: middle;
}

/* 各種ボタン */
.room-btn {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 10px;
}

.btn-01 {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-02 {
  background-color: var(--purple);
  border: 2px solid var(--purple);
  margin-top: 2rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn-01:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
  }

  .btn-02:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--purple);
    border: 2px solid var(--purple);
  }
}

.room_text .btn:not(:last-child) {
  margin-bottom: 15px;
}

/* -------アコーディオン------- */
.accordion_btn {
  width: 100%;
  padding: 15px;
  font-size: 1.4rem;
  background: #eee;
  border: none;
  cursor: pointer;

  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

/* ＋マーク */
.accordion_btn::after {
  content: "+";
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s;
}

/* 開いた時 */
.accordion_btn.active::after {
  transform: rotate(45deg);
  /* ＋ → ×風 */
}

.accordion_content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* 開いた状態 */
.accordion_content.open {
  opacity: 1;
  overflow: visible;
}

/* カード一覧 */
.room_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 20px;
  padding-top: 5rem;
}

.room_card {
  width: calc(50% - 10px);
  padding: 15px 15px 3rem;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
  color: var(--blue-color);
}

.room_card .room-pic {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.room_list .cont {
  margin-top: 15px;
}

.room_list .cont h4 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.room_list .cont .room-txt-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
}

.room_list .cont .item {
  border-bottom: 1px solid var(--gray-color);
  padding: 10px;
}

.room_list .cont .people {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
}

.room_list .cont .people img {
  width: 16px;
  height: auto;
}

.room_list .detail-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.room_list .detail-list li {
  font-size: 1.4rem;
}

.amenities-tl {
  width: fit-content;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  background-color: var(--base-color);
  color: #fff;
  padding: 8px 30px;
  margin: 3rem auto;
  border-radius: 30px;
  opacity: 0.6;
}

.room-amenities {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  margin-bottom: 3rem;
}

.room-amenities figure img {
  display: block;
  width: 50px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.room-amenities figcaption {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 5px;
}

.room-t-btn {
  width: fit-content;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  color: #fff;
  background-color: var(--purple);
  padding: 8px 30px;
  margin-right: auto;
  margin-left: auto;
}


/* =====================
サービス
======================== */
.service {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20rem;
}

.sv-head {
  display: flex;
  gap: 5%;
  padding: 0 20px 5rem;
  border-bottom: 1px solid #fff;
}

.sv-head .c-tl {
  flex: 0 0 auto;
}

.sv-head .c-p {
  flex: 1;
}

.service .c-tl span {
  display: block;
  text-align: center;
}

/* サービスリスト */
.sv-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 10%;
  margin-top: 10rem;
}

.sv-list li {
  width: calc((100% - 20%) / 3);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 15px;
}

.sv-list li h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.sv-list li time {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.sv-list li p {
  font-size: 1.6rem;
  font-weight: 400;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

/* =====================
小セクション共通
======================== */

.c-sec {
  margin-top: 15rem;
}

.c-sec .pic01 {
  width: 90%;
  aspect-ratio: 5 / 1;
}

.c-sec-flex {
  display: flex;
  align-items: center;
  width: 90%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 10rem;
}

.c-sec-flex .txt {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 15rem 10rem;
}

.c-sec-flex .txt::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: '';
  width: 30%;
  height: 100%;
}

.pbbath .c-sec-flex .txt::before {
  background-color: var(--green);
}

.lounge .c-sec-flex .txt::before {
  background-color: var(--orange);
}

.breakfast .c-sec-flex .txt::before {
  background-color: var(--purple);
}

.c-sec-flex .txt>* {
  position: relative;
  z-index: 3;
}

.c-sec-flex .sub-c-tl {
  margin-bottom: 5rem;
}

.c-sec-flex .pic02 {
  flex: 1;
  aspect-ratio: 3 / 2;
}

/* =====================
レストランお食事処
======================== */
.restaurant {
  margin-top: 15rem;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.restaurant .c-tl {
  margin-bottom: 5rem;
}

.restaurant .c-tl span {
  display: block;
}

.restaurant .pic-upper {
  width: 100%;
  aspect-ratio: 23 / 9;
  margin-top: 5rem;
}

.buffe {
  margin-top: 10rem;
  display: flex;
  align-items: center;
  gap: 8rem 10%;
}

.buffe .pic {
  flex: 2;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.buffe section {
  flex: 3;
  display: flex;
  flex-flow: column;
  gap: 3rem;
}

.restaurant .detail-list li {
  display: flex;
  gap: 10%;
  border: 1px solid #fff;
  padding: 10px 0;
}

.restaurant .detail-list li:first-child {
  margin-bottom: 15px;
}

.restaurant .detail-list .list-h,
.restaurant .detail-list .list-d {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.restaurant .detail-list .list-h {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.restaurant .detail-list .list-d {
  flex: 2;
  white-space: nowrap;
}

.restaurant .link-btn {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10rem;
}

/* =====================
施設案内
======================== */
.facility {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15rem;
}

.facilities-list {
  background-color: #fff;
  padding: 3rem;
  border-radius: 30px;
  margin-top: 5rem;
}

.facilities-list li {
  display: flex;
  gap: 2.5rem;
  border-bottom: 1px solid var(--brown);
  padding: 15px 0;
  color: var(--brown);
}

.facilities-list li .icon {
  flex: 0 0 auto;
  width: 22px;
  height: auto;
}

.facilities-list li .icon img {
  width: 100%;
}

.facilities-list h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

.facilities-list p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 10px;
}

/* =====================
会員
======================== */
.member {
  width: 100%;
  margin-top: 10rem;
  padding: 10rem 0;
  transition: ease-in-out .3s;
}

.member .inner {
  width: 80%;
  display: flex;
  align-items: center;
  gap: 8rem 5%;
  margin-right: auto;
  margin-left: auto;
}

.member .cont {
  flex: 2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.member .cont img {
  max-width: 256px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.member .cont h2 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.member .cont .c-p {
  text-align: center;
}

.member .cont a {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0 5px 5px;
}

.member .benefits {
  flex: 3;
}

.benefits-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.benefits-list li {
  width: calc((100% - 3rem) / 2);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: var(--brown);
  transition: ease-in-out .3s;
}

.benefits-list li h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.benefits-icon {
  width: fit-content;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: var(--brown);
  padding: 10px 24px;
  border-radius: 30px;
  transition: ease-in-out .3s;
}

.member .benefits-btn {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  color: #fff;
  background-color: var(--brown);
  border: 2px solid var(--brown);
  margin-top: 5rem;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 15px 24px;
  border-radius: 30px;
}

.member .benefits small {
  text-align: center;
  color: var(--brown);
}

@media (hover: hover) and (pointer: fine) {
  .member:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--brown);
  }

  .member:hover .cont a {
    color: var(--brown);
    border-bottom: 1px solid var(--brown);
  }

  .member:hover .benefits-list li {
    background-color: var(--brown);
    color: #fff;
  }

  .member:hover .benefits-icon {
    background-color: #fff;
    color: var(--brown);
  }

  .member .benefits-btn:hover {
    background-color: #fff;
    color: var(--brown);
    border: 2px solid var(--brown);
  }

}

/* =====================
観光
======================== */
.experience {
  margin-top: 10rem;
}

.exp-head {
  width: 100%;
  position: relative;
}

.exp-head .pic {
  width: 100%;
  aspect-ratio: 7 / 2;
  overflow: hidden;
  opacity: 0.9;
}

.exp-head .c-tl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.exp-head .c-tl span {
  display: block;
  text-align: center;
}

/* 豊川稲荷 */
.toyokawa-shrine {
  width: 90%;
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10rem;
}

.toyokawa-shrine section {
  flex: 2;
  display: flex;
  flex-flow: column;
  gap: 8rem;
}

.toyokawa-shrine h3 {
  font-size: 3.4rem;
  font-family: var(--shippori-font);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
}

.toyokawa-shrine .c-p {
  text-align: center;
}

.toyokawa-shrine .link-btn {
  margin-right: auto;
  margin-left: auto;
}

.toyokawa-map {
  flex: 3;
}

/* ギャラリー */
.exp-gallary {
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 5%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10rem;
}

.exp-gallary .pic {
  flex: 1;
  opacity: 0.85;
}

.exp-gallary .pic:nth-child(odd) {
  aspect-ratio: 4 / 5;
}

.exp-gallary .pic:nth-child(even) {
  aspect-ratio: 3 / 2;
}

/* =====================
アクセス
======================== */
.access {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15rem;
}

.access .c-tl span {
  display: block;
}

.access .inner {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.access .cont {
  display: flex;
  align-items: stretch;
  gap: 8rem 5%;
  margin-top: 5rem;
}

.access .item {
  flex: 1;
}

.access .gmap {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.access .cont address {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.access .cont address a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  margin-top: 10px;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.access .item li {
  display: flex;
  gap: 16px;
}

.access .item li:not(:last-child) {
  margin-bottom: 2rem;
}

.access .item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.access .item .icon img {
  width: 100%;
  height: auto;
}

.access .item .icon i {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
}

.access .item li h3 {
  font-size: 2rem;
  line-height: 2.5;
  margin-bottom: 10px;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

/* -------- ボーダー画像 -------- */
.border-view {
  width: 100%;
  aspect-ratio: 5 / 1;
  margin-top: 10rem;
}

/* =====================
フッター
======================== */
footer {
  padding-bottom: 8rem;
  padding-top: 10rem;
}

footer .inner {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5rem;
}

/* box01 */
footer .box01 {
  display: flex;
}

footer .box01 .info {
  padding-right: 5rem;
}

footer .box01 .ftlogo {
  width: 100px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

footer .box01 h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 10px;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

footer .box01 address {
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

footer .box01 address span {
  display: block;
  margin-top: 3rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

footer .box01 address a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.8;
}

footer .box01 address a i {
  margin-right: 5px;
}

/* フッターナビ */
footer .box01 nav {
  border-left: 1px solid #fff;
  padding-left: 5rem;
}

footer .box01 nav li {
  margin-bottom: 2rem;
}

footer .box01 nav a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.07em;
  padding: 5px 0;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
  border-bottom: 2px solid transparent;
  transition: border-color .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  footer .box01 nav a:hover {
    opacity: 1;
    border-bottom-color: #fff;
  }
}

/* box02 */
footer .box02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem 3rem;
}

footer .box02 .register {
  display: block;
  padding: 20px 30px;
  border-radius: 30px;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--btn-blue);
}

footer .box02 .register span {
  display: block;
  font-size: 1.4rem;
}

footer .box02 .register small {
  font-size: 1.3rem;
}

footer .box02 .btn-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 15px;
  margin-top: 3rem;
}

footer .sfhc-btn {
  display: block;
  font-size: 1.4rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, .2);
  color: #fff;
  letter-spacing: 0.07em;
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 10px 15px;
}

@media (hover: hover) and (pointer: fine) {
  footer .sfhc-btn:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--base-color);
    text-shadow: none;
  }
}

/* 規約リスト */
.terms-list {
  width: 80%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 0;
}

.terms-list a {
  font-family: var(--noto-font);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--brown);
  opacity: 0.8;
}

.terms-list li:not(:last-child) a::after {
  content: '｜';
  margin-left: 20px;
}

/* ページトップ */
footer .page-top {
  width: 30px;
  height: auto;
}

.copyright {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 2rem;
  color: var(--brown);
  opacity: 0.8;
}