@charset "utf-8";

/*cssのリセット*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, em, img,
ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd,
ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif, serif, "Shippori Mincho";
  line-height: 2;
  margin: 0;
  padding: 0;
  color: #000;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}

img {
  max-width: 100%;
  height: auto;
}

rt {
  text-align: center;
}

/*---------------------------------------------------------
共通定義
---------------------------------------------------------*/
/* スマホのみ改行 */
.sp_br {
  display: none;
}

/* フェードライン */
.separate_fade {
  margin: 1.5rem 0;
  border: 0;
  height: 1.5px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

/* 波紋のボタン */
.btn_wave {
  position: relative;
  display: inline-block;
  /* background: #ffffff; */
  width: fit-content;
  height: fit-content;
  border-radius: 50%;
  color: #ffffff;
  outline: none;
  transition: all .3s;
  text-decoration: none;
}

.btn_wave:hover {
  background: #666;
}

.btn_wave::after,
.btn_wave::before {
  content: '';
  position: absolute;
  left: -25%;
  top: -25%;
  border: 1px solid #fff;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  opacity: 1;
  animation: 1s circleanime linear infinite;
}

.btn_wave::before {
  animation-delay: .5s;
}

@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* 光るボタン */
.btneffect_shining {
  position: relative;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  outline: none;
  transition: all .2s linear;
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #151515d1;
}

.btneffect_shining:hover {
  background-color: #ffffffeb;
  color: #333;
  /* border: 1px solid #fff; */
}

.btnshine {
  position: relative;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

.btnshine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
}

.btnshine:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/*---------------------------------------------------------
フェード系
---------------------------------------------------------*/
/* そのままゆっくり表示 */
.fade {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-800px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(800px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*---------------------------------------------------------
画像ギャラリー
---------------------------------------------------------*/
/* =========================
   共通：間隔と角丸
========================= */
:root {
  --gap: 8px;
  --radius: 16px;
}

/* =========================
   ① HERO（Airbnb風5枚）
   ※スマホ/タブレットでのみ使う
========================= */
.gallery-hero {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap);
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #111;
  margin-bottom: 12px;
}

.hero-tile {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #111;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ヒーローは映え優先でOK */
  display: block;
  transform: scale(1);
  transition: transform .2s ease;
}

.hero-tile:hover img {
  transform: scale(1.03);
}

.hero-tile.main {
  grid-row: 1 / 3;
}

/* 角丸っぽさ */
.gallery-hero .hero-tile:nth-child(1) {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.gallery-hero .hero-tile:nth-child(3) {
  border-top-right-radius: var(--radius);
}

.gallery-hero .hero-tile:nth-child(5) {
  border-bottom-right-radius: var(--radius);
}

/* ② show all ボタン（モバイル用導線） */
.gallery-showall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  cursor: pointer;
  margin: 0 0 12px 0;
}

/* =========================
   ② LIST（均一グリッド）
   ※PCは最初からこれ
========================= */
.gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap);
}

.list-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  /* 均一に見せる核心 */
}

.list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 一覧はcoverでOK */
  display: block;
}

/* =========================
   ③ MODAL
========================= */
.lg-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lg-modal.is-open {
  display: block;
}

.lg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
}

.lg-modal__panel {
  position: absolute;
  inset: clamp(8px, 3vw, 24px);
  background: rgba(0, 0, 0, .92);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1300px;
  margin: auto;
}

.lg-modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.lg-swiper {
  height: 100%;
}

/* 縦画像でも「とにかく全体表示」：あなたの解決策を正式採用 */
.lg-slide {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.lg-slide img {
  height: 100vh;
  /* ← あなたの解決策 */
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  /* 切らない */
  display: block;
}

/* =========================
   表示切り替え（仕様どおり）
   - PC：hero無し、button無し、list開始
   - <=1024：hero開始、buttonあり、listは後から
========================= */
@media (min-width: 1025px) {
  .gallery-hero {
    display: none;
  }

  .gallery-showall {
    display: none;
  }
}

@media (max-width: 1024px) {

  /* モバイル/タブレットでは一覧の列を少し狭めてもOK */
  .gallery-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/*---------------------------------------------------------
ナビゲーションメニュー
---------------------------------------------------------*/
header #g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

header .circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #000000e0;
  transform: scale(0);
  left: -50px;
  top: -50px;
  transition: all .6s;
}

header .circle-bg.circleactive {
  transform: scale(50);
}

header #g-nav-list {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

header #g-nav.panelactive #g-nav-list {
  display: block;
}

header #g-nav .header_menu {
  width: 100%;
  font-family: serif;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

header #g-nav .header_menu .header_title {
  text-align: center;
}

header #g-nav .header_menu .header_title .header_corporate_logo {
  width: 300px;
}

header #g-nav .header_menu .header_title hr {
  margin: -1rem auto 1.5rem;
  width: 70%;
}

header #g-nav.panelactive ul {
  opacity: 1;
}

header #g-nav.panelactive ul li {
  /* animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0; */
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header #g-nav li {
  text-align: center;
  list-style: none;
}

header #g-nav li a {
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  display: block;
  /* text-transform: uppercase; */
  letter-spacing: 0.1em;
  font-weight: bold;
}

header .openbtn {
  /* position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  cursor: pointer;
  width: 50px;
  height: 50px; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: #151515d1;
}

header .openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

header .openbtn span:nth-of-type(1) {
  top: 20px;
}

header .openbtn span:nth-of-type(2) {
  top: 28px;
}

header .openbtn span:nth-of-type(3) {
  top: 36px;
}

header .openbtn.active span:nth-of-type(1) {
  top: 23px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

header .openbtn.active span:nth-of-type(3) {
  top: 35px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

/* SNS */
header .sns_block {
  width: 40px;
  position: fixed;
  top: 8px;
  right: 15rem;
  z-index: 999;
}

header .sns_block:hover {
  animation-name: header_sns;
  animation-duration: 0.6s;
}

@keyframes header_sns {
  50% {
    opacity: 0.5;
  }
}

/* 予約ボタン */
header .reserve_btn {
  position: fixed;
  top: 0;
  right: 0;
  font-family: serif;
  z-index: 999;
}

/*---------------------------------------------------------
アコーディオン
---------------------------------------------------------*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #555;
  background-color: #ffffffc9;
}

/*アコーディオンタイトル*/
.acd_title {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 1.1rem 1rem 1rem 3rem;
  transition: all .5s ease;
}

/*アイコンの＋と×*/
.acd_title::before,
.acd_title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
}

.acd_title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.acd_title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.acd_title.close::before {
  transform: rotate(45deg);
}

.acd_title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  background: #f3f3f3;
  padding: 3%;
}

/*---------------------------------------------------------
TOPページ
---------------------------------------------------------*/
/* メインビジュアル */
#TOP .visual {
  position: fixed;
  top: 0;
  left: 0;
  width: 101%;
  height: 101vh;
  z-index: -1;
  /* ← 背面に送る */
  overflow: hidden;
}

#TOP .visual video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: blur(0.5px) brightness(1);
}

#TOP .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 0 1rem;
  font-family: math;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: opacity 0.5s ease;
}

#TOP .overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

#TOP .top_corporate_logo {
  width: 400px;
}

/* #TOP .overlay h1 {
  font-size: 3rem;
  letter-spacing: 0.5rem;
}

#TOP .overlay p {
  font-size: 1.5rem;
} */
/* 下のコンテンツエリア */
#TOP .content {
  margin-top: 100vh;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    /* rgba(0, 0, 0, 0.5) 40%, */
    rgba(0, 0, 0, 0.8) 50%,
    /* rgba(0, 0, 0, 0.5) 60%, */
    rgba(0, 0, 0, 0) 100%);
  padding: 20rem 0;
}

/*---------------------------------------------------------
概要
---------------------------------------------------------*/
#TOP .container_about {
  max-width: 1000px;
  margin: 0 auto 5rem;
}

#TOP .container_about .title {
  margin-top: 2rem;
  font-size: 2rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-family: serif;
  font-weight: 500;
}

#TOP .container_about .contents_wrap {
  display: flex;
  justify-content: space-between;
}

#TOP .container_about .contents_wrap .contents_img {
  padding: 5rem 0;
  width: 40%;
  height: 550px;
}

#TOP .container_about .contents_wrap .contents_img img {
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: 25% 50%;
}

#TOP .container_about .contents_wrap .contents_word {
  color: #fff;
  text-align: right;
  font-family: serif;
  line-height: 2.5rem;
}

#TOP .container_about .contents_wrap .contents_word .contents_word_block {
  margin: 3rem 0;
}

#TOP .container_about .contents_wrap .btn_block {
  text-align: center;
}

/*---------------------------------------------------------
ファシリティ
---------------------------------------------------------*/
#TOP .container_facility {
  max-width: 1000px;
  margin: 5rem auto;
}

#TOP .container_facility .title {
  margin-top: 2rem;
  font-size: 2rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-family: serif;
  font-weight: 500;
  text-align: right;
}

#TOP .container_facility .contents_wrap {
  display: flex;
  justify-content: space-between;
}

#TOP .container_facility .contents_wrap .contents_img {
  padding: 5rem 0;
  width: 40%;
  height: 550px;
}

#TOP .container_facility .contents_wrap .contents_img img {
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: 90% 50%;
}

#TOP .container_facility .contents_wrap .contents_word {
  color: #fff;
  font-family: serif;
  line-height: 2.5rem;
}

#TOP .container_facility .contents_wrap .contents_word .contents_word_block {
  margin: 3rem 0;
}

#TOP .container_facility .contents_wrap .btn_block {
  text-align: center;
}

/*---------------------------------------------------------
個別ページ-共通項目
---------------------------------------------------------*/
.page_wrap .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page_wrap .title_wrap .page_title {
  font-family: serif;
  font-weight: 100;
  width: fit-content;
  margin: 0 auto;
  /* position: relative; */
}

.page_wrap .title_wrap .page_title h1 ruby {
  font-size: 3rem;
  color: #636262;
  font-weight: 400;
}

.page_wrap .title_wrap .page_title h1 ruby rt {
  text-align: left;
  margin-left: 3rem;
  color: #c3c3c3;
  font-weight: 200;
}

/* .page_wrap .title_wrap .page_title h1 {
  font-size: 4rem;
  font-family: serif;
  font-weight: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #3f3d3d;
}

.page_wrap .title_wrap .page_title p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5d5d5d38;
  font-size: 5rem;
} */
.page_wrap .title_wrap .page_img {
  width: 50%;
}

.page_wrap .title_wrap .page_img img {
  height: 100vh;
  width: fit-content;
  margin: 0 auto;
  display: block;
}

/*---------------------------------------------------------
ご案内
---------------------------------------------------------*/
#INFO .page_wrap {}

#INFO .page_wrap .contents_info {
  background-color: #ece7de;
  margin: -5rem 0 0 0;
  font-family: serif;
}

#INFO .page_wrap .contents_info .contents_wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
}

#INFO .page_wrap .contents_info .contents_wrap:first-child {
  padding: 10rem 0 5rem;
}

#INFO .page_wrap .contents_info .contents_wrap:last-child {
  padding: 5rem 0 10rem;
}

#INFO .page_wrap .contents_info .contents_wrap .contents_tltle h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2a1806;
  width: 200px;
}

#INFO .page_wrap .contents_info .contents_wrap .contents_tbl {
  width: 100%;
}

#INFO .page_wrap .contents_info .contents_wrap .tbl_row {
  display: flex;
  padding: 1rem 0;
  border-top: 1px solid #999;
}

#INFO .page_wrap .contents_info .contents_wrap .tbl_row .tbl_head {
  width: 30%;
  color: #827968;
}

#INFO .page_wrap .contents_info .contents_wrap .tbl_row .tbl_body {
  width: 70%;
}

/*---------------------------------------------------------
施設情報
---------------------------------------------------------*/
#FACILITY .page_wrap .contents_facility {
  background-color: #ece7de;
  margin: -5rem 0 0 0;
  font-family: serif;
}

#FACILITY .page_wrap .contents_facility-exterior-wrap {
  max-width: 1200px;
  margin: 5rem auto;
}

#FACILITY .page_wrap .contents_facility-exterior {
  width: 90%;
  margin: 0 auto;
  padding: 10rem 0 5rem;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_facility-exterior-title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_facility-exterior-title h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2a1806;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_facility-exterior-title .title_border {
  border-top: 1px solid #555;
  width: 80px;
  margin-right: 1rem;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 5rem 0;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_left .contents_exterior-subtitle {
  padding: 3rem 0;
  position: relative;
  padding-right: 3rem;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_left .contents_exterior-subtitle h3 {
  font-family: math;
  color: #3d3d3de8;
  font-size: 3.5rem;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_left .contents_exterior-img {
  width: 70%;
  margin-left: -10rem;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 5rem 0;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_right .contents_exterior-subtitle {
  /* padding: 3rem 0;
  position: relative;
  margin-left: 5rem; */
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_right .contents_exterior-subtitle h3 {
  font-family: math;
  color: #e7c8a8e8;
  font-size: 3.5rem;
  text-shadow: 1px 1px 0 #3d3d3de8, -1px -1px 0 #3d3d3de8, -1px 1px 0 #3d3d3de8, 1px -1px 0 #3d3d3de8, 0 1px 0 #3d3d3de8, 0 -1px 0 #3d3d3de8, -1px 0 0 #3d3d3de8, 1px 0 0 #3d3d3de8;
}

#FACILITY .page_wrap .contents_facility-exterior .contents_exterior_right .contents_exterior-img {
  width: 70%;
  margin-right: -10rem;
}

/* 館内設備 */
#FACILITY .page_wrap .contents_facility-amenity {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10rem;
}

#FACILITY .page_wrap .contents_facility-amenity .contents_facility-amenity-title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

#FACILITY .page_wrap .contents_facility-amenity .contents_facility-amenity-title h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2a1806;
}

#FACILITY .page_wrap .contents_facility-amenity .contents_facility-amenity-title .title_border {
  border-top: 1px solid #555;
  width: 80px;
  margin-right: 1rem;
}

#FACILITY .page_wrap .contents_facility-amenity .contents_facility-amenity-img-wide {
  width: 60%;
  text-align: center;
}

#FACILITY .page_wrap .contents_facility-amenity .left {
  margin: 0 0 0 0;
}

#FACILITY .page_wrap .contents_facility-amenity .right {
  margin: 0 0 0 auto;
}

#FACILITY .page_wrap .contents_facility-amenity .contents_facility-amenity-img-wide p {
  color: #000000b5;
}

/* 温泉・サウナ */
#FACILITY .page_wrap .contents_facility-spa {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10rem;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-title h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2a1806;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-title .title_border {
  border-top: 1px solid #555;
  width: 80px;
  margin-right: 1rem;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap {
  max-width: 1200px;
  margin: 5rem auto 0;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-bath {
  display: flex;
  align-items: center;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-bath img {
  width: 60%;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-bath .contents_facility-spa-bath-note {
  margin-left: -7rem;
  line-height: 2.5rem;
  background-color: #ffffffa3;
  padding: 3rem 2rem;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-sauna {
  margin-top: 5rem;
  position: relative;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-sauna img {
  width: 70%;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-sauna .contents_facility-spa-sauna-note {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: table;
  background-color: #ffffffa3;
  padding: 3rem;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-sauna .contents_facility-spa-sauna-note .warning {
  margin: 0.5rem 0;
  color: #8f0606;
}

#FACILITY .page_wrap .contents_facility-spa .contents_facility-spa-wrap .contents_facility-spa-sauna .right {
  margin: -3rem 0 0 22rem;
}

/* アクセス */
#FACILITY .page_wrap .contents_facility-map {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10rem;
}

#FACILITY .page_wrap .contents_facility-map .contents_facility-map-title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

#FACILITY .page_wrap .contents_facility-map .contents_facility-map-title h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2a1806;
}

#FACILITY .page_wrap .contents_facility-map .contents_facility-map-title .title_border {
  border-top: 1px solid #555;
  width: 80px;
  margin-right: 1rem;
}

/* ===== Map Section Base ===== */
.map-section {
  padding: clamp(24px, 4vw, 56px) 0
}

.map-wrap {
  max-width: 1200px;
  margin: 0 auto
}

.map-title {
  font-size: clamp(22px, 2.4vw, 34px);
  margin: 0
}

.map-sub {
  font-size: 1.2rem;
  margin: 6px 0 14px;
  opacity: .75
}

.map-static-like {
  margin: 2rem 0;
  height: 500px;
  position: relative;
  height: clamp(240px, 32vw, 420px);
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18)
}

.map-static-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(.98)
}

.map-click-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px
}

.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, .55) 0%,
    rgba(0, 0, 0, .1) 45%,
    rgba(0, 0, 0, .65) 100%)
}

.map-info {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 6px;
  z-index: 3
}

.map-label {
  width: fit-content;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 12px
}

.map-name {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600
}

.map-addr {
  font-size: 13px;
  line-height: 1.5;
  opacity: .9
}

.map-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #111;
  font-size: 13px;
  font-weight: 600
}

.map-meta {
  margin: 14px 0 0;
  list-style: none;
  padding: 0;
  font-size: 13px;
  opacity: .9
}

/* .map-toggle {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(0, 0, 0, .02);
  font-weight: 600;
  cursor: pointer
}

.map-collapse {
  overflow: hidden
}

.map-collapse-inner {
  padding-top: 12px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease
}

.map-collapse.is-open .map-collapse-inner {
  transform: translateY(0);
  opacity: 1
}

.map-iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px
}

.map-section.is-rovaniemi .map-overlay {
  background: linear-gradient(135deg,
    rgba(8, 40, 26, .6) 0%,
    rgba(0, 0, 0, .1) 45%,
    rgba(8, 40, 26, .7) 100%)
} */
/* ここ追加：CTAのSVGが巨大化するのを潰す */
.map-cta svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px;
  display: block;
}

/* CTA自体も “中身幅” に固定して暴走を防ぐ */
.map-cta {
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.map-click-layer {
  z-index: 2;
}

.map-info {
  z-index: 3;
  position: absolute;
}

/* 既にabsoluteならOK */
/* CTA以外はクリックさせない（誤タップ防止） */
.map-info {
  pointer-events: none;
}

.map-cta {
  pointer-events: auto;
}

/*---------------------------------------------------------
クーサモ棟
---------------------------------------------------------*/
#KUUSAMO .page_wrap {}

#KUUSAMO .page_wrap .contents_kuusamo {
  background-color: #212121;
  margin: -5rem 0 0 0;
}

/* #KUUSAMO .page_wrap .contents_kuusamo .contents_wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 5rem 0;
} */
#KUUSAMO .page_wrap .contents_kuusamo .contents_note {
  padding: 10rem 0 5rem;
  text-align: center;
  font-weight: 300;
  font-family: serif;
  color: #fff;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_note .bilingual-jp,
#KUUSAMO .page_wrap .contents_kuusamo .contents_note .bilingual-en {
  margin: 2rem 0;
}

#KUUSAMO .page_wrap .sub_title {
  text-align: center;
  font-family: serif;
}

#KUUSAMO .sub_title h2 ruby {
  font-size: 2.5rem;
  color: #636262;
  font-weight: 400;
  letter-spacing: 3px;
}

#KUUSAMO .sub_title h2 ruby rt {
  color: #c3c3c3;
  font-weight: 200;
  letter-spacing: 0;
}

#KUUSAMO .sub_title hr {
  width: 100px;
  margin: 2rem auto;
}

#KUUSAMO .contents_kuusamo .gallery_kuusamo {
  padding: 2rem 0 10rem;
  margin: 0 auto;
  max-width: 1200px;
}

#KUUSAMO .contents_kuusamo .layout_kuusamo {
  padding: 5rem 0 10rem;
  margin: 0 auto;
  max-width: 1200px;
}

/* #KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_gallery-1 {
  display: inline-block;
  width: 100%;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_gallery-1 img {
  max-width: 100%;
  vertical-align: bottom;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_gallery-2 {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(2, 1fr);
  margin: 1rem auto;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_gallery-3 {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem auto;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_blueprint {
  margin: 5rem auto;
  display: flex;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_blueprint .blueprint_Word {
  width: 50%;
  color: #fff;
  font-family: serif;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_blueprint .blueprint_Word .list_row {
  list-style: none;
  display: flex;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_blueprint .blueprint_Word .title {
  margin-right: 1rem;
}

#KUUSAMO .page_wrap .contents_kuusamo .contents_wrap .kuusamo_blueprint .blueprint_img {
  width: 50%;
} */
/*---------------------------------------------------------
ロヴァニエミ棟
---------------------------------------------------------*/
#ROVANIEMI .contents_rovaniemi {
  background-color: #f5f2e6;
  margin: -5rem 0 0 0;
}

#ROVANIEMI .page_wrap .contents_note {
  padding: 15rem 0 5rem;
  text-align: center;
  font-weight: 300;
  font-family: serif;
  color: #353535;
}

#ROVANIEMI .page_wrap .contents_note .bilingual-jp,
#ROVANIEMI .page_wrap .contents_note .bilingual-en {
  margin: 2rem auto;
  max-width: 1200px;
}

#ROVANIEMI .page_wrap .sub_title {
  text-align: center;
  font-family: serif;
}

#ROVANIEMI .sub_title h2 ruby {
  font-size: 2.5rem;
  color: #636262;
  font-weight: 400;
  letter-spacing: 3px;
}

#ROVANIEMI .sub_title h2 ruby rt {
  color: #c3c3c3;
  font-weight: 200;
  letter-spacing: 0;
}

#ROVANIEMI .sub_title hr {
  width: 100px;
  margin: 2rem auto;
}

#ROVANIEMI .contents_rovaniemi .gallery_rovaniemi {
  padding: 2rem 0 10rem;
  margin: 0 auto;
  max-width: 1200px;
}

#ROVANIEMI .contents_rovaniemi .layout_rovaniemi {
  padding: 5rem 0 10rem;
  margin: 0 auto;
  max-width: 1200px;
}

/*---------------------------------------------------------
関連施設
---------------------------------------------------------*/
#RELATED .contents_related {
  background-color: #fbefea;
  margin: -5rem 0 0 0;
}

#RELATED .page_wrap .contents_note {
  padding: 15rem 0 5rem;
  text-align: center;
  font-weight: 300;
  font-family: serif;
  color: #353535;
}

#RELATED .page_wrap .contents_note .bilingual-jp,
#RELATED .page_wrap .contents_note .bilingual-en {
  margin: 2rem 0;
}

#RELATED .page_wrap .sub_title {
  text-align: center;
  font-family: serif;
}

#RELATED .sub_title h2 ruby {
  font-size: 2.5rem;
  color: #636262;
  font-weight: 400;
  letter-spacing: 3px;
}

#RELATED .sub_title h2 ruby rt {
  color: #c3c3c3;
  font-weight: 200;
  letter-spacing: 0;
}

#RELATED .sub_title hr {
  width: 100px;
  margin: 2rem auto;
}

#RELATED .gallery_bigtitle {
  font-family: serif;
  color: #353535;
  font-size: 2rem;
  font-weight: 500;
  margin: 5rem auto;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid;
}

#RELATED .gallery-title {
  font-family: serif;
  color: #353535;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 2rem 0;
}

#RELATED .contents_related .gallery_related {
  padding: 0 0 10rem;
  margin: 0 auto;
  max-width: 1200px;
}

/*---------------------------------------------------------
FAQ
---------------------------------------------------------*/
.page_wrap .title_wrap .faq p {
  line-height: 6rem;
}

#FAQ .page_wrap .contents_faq {
  background-color: #ece7de;
  margin: -5rem 0 0 0;
  font-family: serif;
}

#FAQ .page_wrap .contents_faq-area {
  width: 1000px;
  margin: 0 auto;
  padding: 10rem 0;
}

/*---------------------------------------------------------
お問い合わせ
---------------------------------------------------------*/
#CONTACT .page-title_wrap {
  position: relative;
  margin: 0 auto 8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#CONTACT .page-title_wrap h2 {
  font-size: 2rem;
  position: absolute;
  z-index: 2;
  left: 3rem;
  bottom: -38px;
}

#CONTACT .page-title_wrap p {
  position: absolute;
  font-size: 6rem;
  z-index: 1;
  color: #b2a6cd47;
}

#CONTACT .contact_wrap {
  background-color: #e6f3ef9c;
  margin-top: -5rem;
}

#CONTACT .contact_wrap .contact_inputarea {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem;
  font-family: serif;
}

#CONTACT .contact_info {
  text-align: center;
}

#CONTACT .wrap {
  margin: 0 auto;
}

#CONTACT .wrap form {
  width: 50%;
  margin: 5rem auto;
}

#CONTACT .wrap form .form_con {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
}

#CONTACT .wrap form .form_con .ind {
  color: #bb0101;
  vertical-align: middle;
  margin-left: 0.5rem;
}

#CONTACT .wrap form .form_con input {
  height: 25px;
  margin-top: 1rem;
}

#CONTACT .wrap form .form_con textarea {
  height: 250px;
  margin-top: 1rem;
  resize: none;
}

#CONTACT .wrap form .form_con #agreePolicy {
  width: 20px;
  margin-top: 0;
  margin-right: 0.5rem;
}

#CONTACT .wrap form .form_con #agreePolicy:hover,
#CONTACT .wrap form .form_btn #submitBtn {
  cursor: pointer;
}

#CONTACT .wrap form .form_con .privacy {
  display: flex;
  align-items: center;
  justify-content: center;
}

#CONTACT .wrap form .form_con .privacy_note {
  text-align: center;
}

#CONTACT .wrap form .form_con .privacy_note a {
  color: #240ab5;
}

#CONTACT .wrap form .form_btn {
  margin: 0 auto;
  width: fit-content;
}

#CONTACT .wrap form .form_btn #submitBtn {
  padding: 0.5rem 1.5rem;
  background-color: #fff;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* プライバシーポリシー */
.privacy {
  color: #555;
  line-height: 2rem;
}

.privacy h2 {
  font-size: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.privacy .privacy-block {
  margin: 1rem 0;
}

.privacy .privacy-block ol {
  margin-left: 1rem;
}

/*---------------------------------------------------------
モーダル
---------------------------------------------------------*/
/*infoエリアをはじめは非表示*/
#info {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 1200px;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*---------------------------------------------------------
フッター
---------------------------------------------------------*/
#FOOTER {
  background-color: #000;
  padding: 5rem 0 3rem;
  color: #fff;
  text-align: center;
  line-height: 2rem;
}

#FOOTER .footer_contactarea {
  display: flex;
  justify-content: center;
}

#FOOTER .footer_contactarea p {
  margin: 0 0.5rem;
}

#FOOTER a {
  color: #fff;
}
