@charset "utf-8";

:root {
  --noto-font: "Noto Sans JP", sans-serif;
  --serif-font: "Noto Serif JP", serif;

  --blue: #57B3C4;
  --dull-blue: #4B9FAF;
  --green: #B7BD00;
  --deep-green: #535500;
  --dull-green: #91A55A;
  --orange: #C86B37;
  --pink: #E6816D;
  --beige: #CDB893;
  --yellow: #FFC600;
  --light-blue: #C7E8F2;

  --font-color: #212121;
  --title-color: #7F7F7F;
  --logo-color: #4D4A47;
  --gray-color: #F2F2F2;

  --header-h-sp: 73.2px;
  --header-h-pc: 66.4px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h-sp);
  /* 固定ヘッダー分のアンカーずれ解消 */
  /* overscroll-behavior-y: none; */
}

@media (min-width: 1081px) {
  html {
    scroll-padding-top: var(--header-h-pc);
  }
}


body {
  font-size: 62.5%;
  width: 100%;
  font-family: var(--noto-font);
  font-weight: 500;
  color: var(--font-color);
  /* overscroll-behavior-y: none; */
}

/* ハンバーガーナビ背景スクロール防止 */
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;
}

@media screen and (max-width:768px) {
  .sp-br {
    display: block;
  }
}

.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 {
  position: relative;
  width: 100%;
  letter-spacing: 0.05em;
}

/* ----------固定予約ボタン--------- */
.fixed-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: fit-content;
}

.fixed-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 230px;
  height: 78px;
  background-color: #fff;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  margin-right: 0;
  margin-left: auto;
}

.fixed-btn .txt {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}

.fixed-btn .txt span {
  display: block;
  font-size: 1.4rem;
}

.fixed-icon {
  width: 23px;
}

/* ----ホバー設定----- */
.fixed-btn a:hover {
  background-color: var(--blue);
  color: #fff;
}

.fixed-btn a:hover .txt {
  display: none;
}

/* アイコンを白くして少し大きく */
.fixed-btn a:hover .fixed-icon {
  width: 28px;
}

.fixed-btn a:hover .fixed-icon img {
  filter: brightness(0) invert(1);
  /* SVGを白色に */
}

/* 各ページ色変更 */
/* room */
/* .fixed-btn a {
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
} */

/* .fixed-btn .txt {
  color: var(--orange)
} */

/* .fixed-btn a:hover {
  background-color: var(--orange);
} */


/* =====================
共通ボタン
======================== */
.more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  min-width: 120px;
  height: 34px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}

.more-button__text {
  white-space: nowrap;
}

.more-button__arrow {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.more-button__arrow::before,
.more-button__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.more-button__arrow::before {
  left: 0;
}

.more-button__arrow::after {
  left: 5px;
}

/* ダーク */
.more-button--dark {
  color: #212121;
}

@media (hover: hover) and (pointer: fine) {

  .more-button--dark:hover,
  .more-button--dark:focus-visible {
    color: #e3e3e3;
    background-color: #212121;
  }
}

/* ホワイト */
.more-button--white {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {

  .more-button--white:hover,
  .more-button--white:focus-visible {
    color: #797979;
    background-color: #fff;
  }
}

/* =====================
ヘッダー
===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 30px;
}

.header__logo a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--font-color);
}

.header__logo a span {
  font-size: 1.4rem;
}

/* -------------------------
   Nav (PC)
------------------------- */
.header .nav__list {
  display: flex;
  gap: 30px;
}

.header .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 14px;
  color: var(--font-color);
  border-radius: 9999px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

/* 黒丸＋▶アイコン（通常時は幅0で非表示） */
.header .nav__link::before {
  content: "";
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #212121;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><polygon points='2,1 7,4 2,7' fill='%23ffffff'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 8px;
  opacity: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

/* ホバー時：ピル背景＋アイコン表示 */
.header .nav__link:hover {
  background-color: #E0E0E0;
  opacity: 1;
  /* 既存の opacity: 0.6 を打ち消し */
}

.header .nav__link:hover::before {
  opacity: 1;
}

/* PCでは英字だけ表示（お好みで .nav__ja を表示に切替可） */
.header .nav__en {
  display: none;
}

/* PCではSPメニュー用の要素は非表示 */
.header .nav__logo,
.header .nav__reserve {
  display: none;
}

/* ハンバーガーボタン (PCでは非表示) */
.hamburger {
  display: none;
}

/* -------------------------
   SP (1080px以下)
------------------------- */
/* 切り替え幅を変更する際はmain.jsも変更 */
@media (max-width: 1080px) {

  .header__inner {
    padding: 15px 20px;
  }

  .header__logo a {
    font-size: 1.5rem;
  }

  .header__logo a span {
    font-size: 1.3rem;
  }

  /* ハンバーガーボタン表示 */
  .hamburger {
    display: block;
    position: relative;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
  }

  .hamburger__bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition: transform 0.3s, opacity 0.3s, top 0.3s, background 0.3s;
  }

  .hamburger__bar:nth-child(1) {
    top: 2px;
  }

  .hamburger__bar:nth-child(2) {
    top: 11px;
  }

  .hamburger__bar:nth-child(3) {
    top: 20px;
  }

  /* ハンバーガー展開時 (× 表示) */
  .hamburger.is-active .hamburger__bar {
    background: #fff;
  }

  .hamburger.is-active .hamburger__bar:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }

  .hamburger.is-active .hamburger__bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active .hamburger__bar:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
  }

  /* ===== SPナビゲーション ===== */
  .header .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    z-index: 105;
    display: flex;
    flex-direction: column;
  }

  .header .nav.is-open {
    transform: translateX(0);
  }

  .header .nav__bg {
    width: 90%;
    background: var(--green);
    margin-right: 0;
    margin-left: auto;
    padding: 80px 30px 40px;
    box-shadow: -20px 20px 0px 0px #535500;
  }

  .header .nav__list {
    display: block;
    position: relative;
    z-index: 1;

  }

  .header .nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .header .nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5px;
    color: #fff;
    font-size: 15px;
  }

  .header .nav__link {
    background-color: transparent;
    border-radius: 0;
  }

  .header .nav__link::before {
    display: none;
  }

  .header .nav__en {
    display: inline-block;
    letter-spacing: 0.08em;
  }

  .header .nav__ja {
    font-size: 13px;
  }

  /* ロゴ (SPメニュー内) */
  .header .nav__logo {
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 40px;
  }

  .header .nav__logo-main {
    width: 120px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }

  /* 予約ボタン */
  .header .nav__reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    margin: 30px -30px -40px;
    /* nav paddingを打ち消して全幅表示 */
    color: #666666;
  }

  .header .nav__reserve-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #666666;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
  }

  .header .nav__reserve-text {
    text-align: left;
    line-height: 1.4;
  }

  .header .nav__reserve-ja {
    display: block;
    font-size: 14px;
  }

  .header .nav__reserve-en {
    display: block;
    font-size: 12px;
    text-align: center;
    color: #666;
  }

  /* メニュー展開中は body スクロール禁止 */
  body.is-menu-open {
    overflow: hidden;
  }
}

header .zigzag {
  position: absolute;
  top: 100%;
  /* ヘッダーのすぐ下に配置 */
  left: 0;
}

.zigzag {
  width: 100%;
  height: 31px;
  /* PC時の深さ */
  display: block;
  pointer-events: none;
  /* クリックを透過 */
}

@media (max-width: 1080px) {
  .zigzag {
    height: 20px;
  }

  /* SPは浅めに */
}

/* =====================
フッター
======================== */
footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem 0;
}

footer .ft-zigzag-box {
  width: 100%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
}

footer .ft-zigzag-box {
  width: 100%;
  height: auto;
}

footer .inner {
  width: 70%;
}

footer .ft-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 5rem 0;
}

footer .ft-tl {
  margin-bottom: 3rem;
}

footer .ft-tl a {
  width: fit-content;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--font-color);
}

footer .ft-tl a img {
  width: 120px;
  height: auto;
}

footer .info address {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 3rem;
}

footer .info address a {
  color: var(--font-color);
}

footer .info ul {
  width: 340px;
  border: 1px solid var(--deep-green);
  border-radius: 10px;
  padding: 20px;
}

footer .info li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  text-align: end;
}

footer .info li:not(:last-child) {
  margin-bottom: 3rem;
}

footer .info li span {
  font-size: 1.4rem;
}

/* ナビ */
footer .nav__list {
  width: 360px;
  display: block;
  padding: 0;
}

footer .nav__item:not(:last-child) {
  margin-bottom: 15px;
}

footer .nav__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin-left: auto;
  padding: 10px 15px;
  box-sizing: border-box;
  color: var(--font-color);
  border-bottom: 1px solid var(--font-color);
  transition: width 0.4s ease, color 0.3s ease, border-color 0.3s ease;
}

/* 青背景（右端起点で左方向へ伸びる） */
footer .nav__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  /* ← 右端を起点に固定 */
  width: 100%;
  /* 通常時：幅0 */
  height: 100%;
  transform: scaleX(0);
  transform-origin: right center;
  background-color: var(--blue);
  transition: transform 0.4s ease;
  z-index: 0;
}

/* テキストを青背景の上に重ねる */
footer .nav__en,
footer .nav__ja {
  position: relative;
  z-index: 1;
}

footer .nav__en {
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.08em;
}

footer .nav__ja {
  font-size: 1.6rem;
  font-weight: 700;
}


@media (hover: hover) and (pointer: fine) {

  /* ホバー時 */
  footer .nav__link:hover {
    width: 360px;
    color: #fff;
    border-bottom: none;
    /* border-bottom-color: var(--blue); */
  }

  footer .nav__link:hover::before {
    transform: scaleX(1);
  }
}

/* その他規約など */
.notice {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 3.2rem;
  padding: 8rem 0;
}

.notice a {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--font-color);
}

.copylight {
  text-align: center;
  font-size: 1.4rem;
}


/* **********************************
 トップページ
 ********************************** */
/* =====================
MV
======================== */
.mv {
  position: relative;
  width: 100%;
  height: 100dvh;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  overflow: hidden;
}

.mv-bg {
  position: relative;
  z-index: 2;
}

.mv-cont {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.mv-tl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: fit-content;
  color: #fff;
  z-index: 10;
}

.mv-tl img {
  width: 150px;
  margin-bottom: 3rem;
}

.mv-tl div {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.vertical {
  font-size: 3.2rem;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow: 0px 4px 4px #00000040;
}

.illust-mv {
  position: absolute;
  left: 5%;
  right: auto;
  bottom: 0;
  transform: rotateY(180deg);
  z-index: 2;
}

/* =====================
top feature
======================== */
.feature {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  opacity: 0.8;
  margin-top: 10rem;
  padding: 0 3rem;
}

.feature p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: var(--deep-green);
}

.feature p span {
  white-space: nowrap;
}

/* =====================
top intro
======================== */
.top-intro {
  width: 100%;
  padding: 15rem 0;
}

.top-intro .cont {
  width: 40%;
  margin-right: auto;
  margin-left: auto;
}

.top-intro .sub-catch {
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--dull-blue);
  color: #fff;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
}

.top-intro .tl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2;
  white-space: nowrap;
  text-align: center;
  color: var(--dull-blue);
  padding: 3rem 0;
}

.top-intro .txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
}

.top-intro p span {
  color: var(--green);
}

.top-intro .illust-box {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-right: auto;
  margin-left: auto;
  margin-top: -15rem;
}

/* =====================
about
======================== */
.about {
  width: 100%;
  padding-bottom: 15rem;
}

.about .inner {
  position: relative;
  width: 90%;
  background-color: var(--green);
  border-radius: 30px 0 0 30px;
  margin-right: 0;
  margin-left: auto;
}

.about .inner::before {
  position: absolute;
  top: -10px;
  left: -10px;
  content: url("../img/vector/about-deco.svg");
  transform: scale(1);
}

.about .inner-hd {
  position: relative;
  display: block;
  width: fit-content;
  color: #fff;
  padding: 8rem 20px 0 10rem;
}

.about .sub-catch {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
}

.about .tl {
  font-size: 2.8rem;
  font-weight: 700;
}

.about .illust {
  position: absolute;
  right: -199px;
  bottom: 0;
  width: 199px;
}

.about .card-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 5rem 5%;
  margin-top: 8rem;
  padding: 0 5rem 8rem 10rem;
}

.about .card {
  flex: 0 0 calc((100% - 10%) / 3);
  background-color: #fff;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  padding: 50px 30px;
  box-shadow: -20px 20px 0px 0px #535500;
}

.about .card h4 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.about .card p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}

.about .card .pic {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin: 3rem 0;
}

/* ===== about内 aタグボタン ===== */
.about .card a {
  position: relative;
  /* アイコンの絶対配置の基準 */
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 20px 12px 60px;
  /* 左側にアイコン分のスペース確保 */
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--font-color);
  text-decoration: underline;
  text-underline-offset: 6px;
  background-color: transparent;
  transition: padding 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

/* 円形アイコン（絶対配置でX軸方向にスライド） */
.about .card a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  /* 通常時：左端 */
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: 50%;
  background-color: #212121;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><polygon points='3,1 8,5 3,9' fill='%23ffffff'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  transform: translateY(-50%);
  /* 垂直中央 */
  transition: left 0.4s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* ホバー時 */
@media (hover: hover) and (pointer: fine) {
  .about .card a:hover {
    padding: 12px 60px 12px 20px;
    /* 左右反転（縦は変えない） */
    background-color: #212121;
    color: #fff;
    text-decoration: none;
  }

  .about .card a:hover::before {
    left: calc(100% - 12px - 36px);
    /* 右端へスライド */
    background-color: transparent;
    border-color: #fff;
  }
}


/* =====================
cta-box
======================== */
.cta-box {
  position: relative;
  width: 100%;
  background-color: var(--blue);
  padding: 12rem 0;
  overflow: hidden;
}

/* 上下のストライプ帯（共通指定） */
.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  /* 帯の厚み */
  z-index: 1;
  background-image: repeating-linear-gradient(24deg,
      #ffffff 0,
      #ffffff 18px,
      /* 白線の太さ（素材の実測値） */
      transparent 18px,
      transparent 35px
      /* 周期62px（隙間は下地の青が透ける） */
    );
}

.cta-box::before {
  top: 0;
}

.cta-box::after {
  bottom: 0;
}

.cta-box .cont {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  color: #fff;
}

.cta-box .cont {
  width: fit-content;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  color: #fff;
  margin-right: auto;
  margin-left: auto;
}

.cta-box .pic {
  width: 266px;
  margin-right: auto;
  margin-left: auto;
}

.cta-box .tl {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.cta-box .desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
}

/* ボタン */
.cv-btn {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 10px 0;
}

.cv-btn i {
  font-size: 1.8rem;
  margin-right: 10px;
}

.cv-btn.white {
  color: var(--blue);
  border: 1px solid var(--blue);
  background-color: #fff;
}

.cv-btn.blue {
  color: #fff;
  border: 2px solid #fff;
}

@media (hover: hover) and (pointer: fine) {
  .cv-btn:hover {
    box-shadow: 4px 4px 4px 0px #284B5E inset;
  }
}

/* =====================
top-facilities
======================== */
.top-facilities {
  padding-bottom: 10rem;
}

.top-facilities .hd {
  position: relative;
  width: 100%;
  padding: 15rem 3rem;
  overflow: hidden;
}

.top-facilities .tl span {
  display: block;
  font-size: 1.8rem;
  text-align: start;
}

.top-facilities .tl {
  width: fit-content;
  font-size: 2.8rem;
  font-weight: 600;
  margin-right: auto;
  margin-left: auto;
}

.top-facilities .hd::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 15px;
  left: 15px;
  width: 200px;
  height: 200px;

  background-image: url('../img/vector/facilities-lt.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.top-facilities .hd::after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  content: url('../img/vector/facilities-rt.svg');
  transform: scale(0.8);
}

/* カード */
.top-facilities .card-box {
  display: flex;
  flex-wrap: wrap;
}

.top-facilities .card {
  position: relative;
  flex: 0 0 calc(100% / 3);
  aspect-ratio: 1 / 1;
  color: #fff;
  background: #78471C80;
}

/* 画像にマスク */
.top-facilities .img-mask {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-facilities .img-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 71, 28, 0.5);
  pointer-events: none;
}

.top-facilities .card .cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 70%;
  height: 100%;
  display: flex;
  flex-flow: column;
  gap: 5%;
  justify-content: center;
}

.top-facilities .card h3 {
  font-size: 2.4rem;
  font-weight: 700;
}

.top-facilities .ja-tl {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.top-facilities .ja-tl::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
}

.top-facilities .ja-tl span {
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-facilities .card .txt {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
}

/* 装飾 */
.top-facilities .card::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  width: 76px;
  height: 76px;

  background-image: url('../img/vector/facilities-card-deco-rt.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.top-facilities .card::after {
  content: "";
  position: absolute;
  z-index: 10;
  left: 15px;
  bottom: 15px;
  width: 76px;
  height: 76px;

  background-image: url('../img/vector/facilities-card-deco-bl.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* =====================
top-access
======================== */
.top-access {
  background-color: var(--blue);
  padding: 10rem 0;
}

.top-access .inner {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

/* =====================
共通ルート欄
======================== */
.route {
  color: #fff;
}

.route .tl {
  font-size: 3.4rem;
}

.route .ja-tl {
  font-size: 1.6rem;
  margin-bottom: 5rem;
}

.route .cont {
  display: flex;
  gap: 5rem 5%;
}

.route .gmap,
.route .list {
  flex: 1;
}

.route .gmap {
  height: 450px;
  border-radius: 4px;
  overflow: hidden;
}

.route .list h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.route ul li {
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}

.route ul li div:first-child {
  margin-bottom: 10px;
}

/* =====================
top-news
======================== */
.top-news {
  padding: 10rem 0;
}

.top-news .inner {
  display: flex;
  gap: 10%;
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.top-news .tl {
  font-size: 3.4rem;
}

.top-news .ja-tl {
  font-size: 1.6rem;
}

.news-mordal li:not(:last-child) {
  margin-bottom: 3rem;
}

.news-mordal .date {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-mordal div {
  font-size: 1.6rem;
  font-weight: 400;
}

/* =====================
お知らせモーダル
======================== */
.news-mordal .news-item {
  cursor: pointer;
}

.news-mordal .news-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

/* モーダル全体（オーバーレイ含む） */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* 非表示状態 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 開いた状態 */
.news-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* 背景の暗幕 */
.news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* 中身のボックス */
.news-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px 40px;
  box-sizing: border-box;
  /* 開くときに少し下からせり上がる演出 */
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.news-modal.is-open .news-modal__dialog {
  transform: translateY(0);
}

/* 閉じるボタン */
.news-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--font-color);
  background: transparent;
  border: none;
  cursor: pointer;
}

.news-modal__date {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 10px;
}

.news-modal__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.news-modal__img {
  margin-bottom: 24px;
}

.news-modal__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.news-modal__img:empty {
  display: none;
}

.news-modal__body {
  font-size: 1.6rem;
  line-height: 1.9;
}

.news-modal__body p:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* SP調整 */
@media (max-width: 768px) {
  .news-modal__dialog {
    padding: 50px 24px 30px;
  }

  .news-modal__title {
    font-size: 1.9rem;
  }
}

/* =====================
top-deco-box
======================== */
.top-deco-box .empty:empty {
  width: 100%;
  height: 130px;
  background-color: var(--blue);
}

/* **********************************
 下層共通
********************************** */
.c-sec {
  max-width: 1100px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

/* -----------共通intro --------*/
/* .c-intro {
  padding-top: calc(var(--header-h-pc) + 5rem);
} */
/* 
@media screen and (max-width:1080px) {
  .c-intro {
    padding-top: calc(var(--header-h-sp) + 5rem);
  }
} */

.c-mv {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 2;
  overflow: hidden;
  border-radius: 4px;
}

.c-txt {
  position: relative;
  max-width: 1100px;
  width: 90%;
  color: #fff;
  text-align: center;
  padding-bottom: 10rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 5rem;
}

.c-tl h2 {
  font-size: 4rem;
  font-weight: 700;
}

.c-tl span {
  font-size: 1.6rem;
}

.c-catch {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 5rem;
}

.c-desc {
  font-size: 1.8rem;
  line-height: 2.4;
  margin-top: 5rem;
}


/* ---------------------------
サブタイトルデザイン
----------------------------- */
.c-sub-tlWrap .c-sub-tl {
  font-size: 3.6rem;
  font-weight: 700;
}

.c-sub-tlWrap .ja-tl {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.c-sub-tlWrap .ja-tl::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
}

.c-sub-tlWrap .ja-tl span {
  font-size: 2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --------------------------
共通セクション　メイン画像
------------------------------ */
.c-pic {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
}


/* ---------------------------
キャプション付きスライダー 
------------------------------ */
.caption-slider {
  width: 100%;
  margin: 0 auto 60px;
  box-sizing: border-box;
}

/* 画像とキャプションを縦並びにする */
.caption-slider .swiper-slide figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.caption-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
}

/* 画像の真下のキャプション */
.caption-slider .swiper-slide figcaption {
  margin-top: 10px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: end;
  color: #fff;
}

/* ページネーションがキャプションと重ならないよう余白を確保 */
.caption-slider .swiper-pagination {
  position: static;
  margin-top: 12px;
}

/* ナビゲーション（矢印）を白に */
.caption-slider .swiper-button-prev,
.caption-slider .swiper-button-next {
  color: #fff;
}

/* ページネーション（ドット）を白に */
.caption-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  /* 非アクティブは少し薄く */
}

.caption-slider .swiper-pagination-bullet-active {
  opacity: 1;
  /* アクティブははっきり白く */
}


/* **********************************
 page bath
************************************* */
.bath .bg {
  background-color: var(--blue);
  color: #fff;
}

.bath .c-intro .more-button {
  margin-right: auto;
  margin-left: auto;
  margin-top: 5rem;
}

/* ------------------------
温泉
--------------------------- */
.onsen {
  position: relative;
  padding: 0 0 10rem;
  color: #fff;
}

/* ---------共通デザイン色変更-------- */
.onsen .c-sub-tlWrap .c-sub-tl,
.onsen .c-sub-tlWrap .ja-tl {
  color: #fff;
}

/* ------------------------
温泉セクション上部
--------------------------- */
.onsen .upper {
  padding-bottom: 10rem;
}

.onsen .upper .c-sub-tlWrap {
  margin-bottom: 5rem;
}

.onsen .upper .cont h4 {
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 1em;
  margin-top: 5rem;
}

.onsen .upper .cont p {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 2;
  margin-top: 5rem;
}

/* -------ポイント------ */
.pointWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.point h5 {
  font-size: 2.4rem;
  font-weight: 500;
}

.point ul {
  counter-reset: step;
  margin-top: 5rem;
}

.point li {
  font-size: 2rem;
  font-weight: 400;
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.point li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

/* ------------------------
温泉セクション下部
--------------------------- */
.onsen .under {
  padding: 10rem 0;
}

.onsen .under h4 {
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 1em;
  margin-bottom: 5rem;
}

.onsen .caption-slider .swiper-slide figcaption {
  text-align: center;
}

/* 詳細 */
.onsen .detail {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5%;
}

.onsen .detail div {
  flex: 1;
}

.onsen .detail dt {
  width: 130px;
  background-color: #fff;
  color: var(--blue);
  font-size: 1.8rem;
  border-radius: 30px;
  text-align: center;
  padding: 3px 0;
  margin-right: auto;
  margin-left: auto;
}

.onsen .detail dd {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin-top: 15px;
}

/* 下部境界線 */
.onsen .bottom-horizon {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 15px;
  transform: translateY(50%);
  z-index: 2;
}

/* ------------------------
サウナ
--------------------------- */
.sauna {
  position: relative;
  z-index: 10;
  padding: 5rem 0 0;
}

/* 共通デザイン 色フォント変更 */
.sauna .c-sub-tlWrap .c-sub-tl {
  font-family: var(--serif-font);
  font-weight: 500;
}

.sauna .c-sub-tlWrap .ja-tl::before {
  background: var(--font-color);
}

.sauna .c-pic {
  margin-top: 5rem;
}

/* sauna text */
.sauna .cont h4 {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-top: 5rem;
}

.sauna .cont p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 5rem;
}

.sauna .cont ul {
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  text-align: end;
  margin-top: 5rem;
}

.sauna .cont figcaption {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  text-align: end;
  margin-top: 15px;
  letter-spacing: 0.1em;
}

.sauna .cont figcaption h5 {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: end;
  letter-spacing: 0.1em;
}

.sauna .cont figcaption span {
  font-size: 1.8rem;
}

/* サウナ point */
.sauna .point h5 {
  color: var(--blue);
}

.sauna .point li {
  color: var(--blue);
}

.sauna .point li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

/* ------------------------
price
--------------------------- */
.price {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 15rem 0;
}

/* ===== ページタイトル ===== */
.price__title {
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--font-color);
}

/* ===== 営業時間 ===== */
.price__hours {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  font-size: 1.8rem;
}

/* ===== 各料金セクション ===== */
.price-section {
  margin-top: 8rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid var(--font-color);
}

.price-section__heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ===== テーブル ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 12px 0;
  vertical-align: middle;
}

.price-table thead th {
  font-weight: 700;
  border-bottom: 1px solid var(--font-color);
}

/* 列幅：区分 / 対象 / 料金（右寄せ） */
.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  width: 38%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  width: 38%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
  width: 24%;
  text-align: right;
  white-space: nowrap;
}

/* ------------------------
amenity
--------------------------- */
.amenity {
  position: relative;
  color: #fff;
  padding: 15rem 0;
}

.amenity-deco {
  width: 100%;
  position: absolute;
  right: 0;
  top: -15px;
  transform: translateY(-50%);
}

.amenity .c-sec {
  border: 3px solid #fff;
  border-radius: 30px;
  padding: 5rem 3rem;
}

.amenity .tl {
  margin-bottom: 5rem;
}

.amenity h3 {
  font-size: 3.6rem;
  text-align: center;
}

.amenity p {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}

.amenity li {
  font-size: 1.8rem;
}

.amenity li span {
  font-size: 1.6rem;
}

/* **********************************
 page room
************************************* */

/* 本体 */
.room .bg {
  background-color: var(--orange);
  color: #fff;
}

.room .c-txt::after {
  content: "";
  position: absolute;
  z-index: 10;
  right: 5%;
  top: -100px;
  width: 100px;
  height: 162px;

  background-image: url('../img/room/illust.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.room-type {
  padding: 10rem 0;
}

/* カード */
.room .card-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 15px;
}

.room .card {
  position: relative;
  flex: 0 0 calc((100% - 15px) / 2);
  aspect-ratio: 1 / 1;
  color: #fff;
  background: #78471C80;
  border-radius: 4px;
  overflow: hidden;
}

/* 画像にマスク */
.room .img-mask {
  width: 100%;
  height: 100%;
  position: relative;
}

.room .img-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 71, 28, 0.5);
  pointer-events: none;
}

.room .card .cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 70%;
  height: 100%;
  display: flex;
  flex-flow: column;
  gap: 5%;
  justify-content: center;
}

.room .card h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

.room .card .txt {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
  text-align: center;
}

.room .card .more-button {
  margin-right: auto;
  margin-left: auto;
}

/* -------room-amenitiy------- */
.room-amenitiy {
  display: flex;
  gap: 10%;
  margin-top: 5rem;
}

.room-amenitiy .tl h3 {
  font-family: var(--serif-font);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.room-amenitiy .tl p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 10px;
}

.room-amenitiy .txt {
  font-size: 1.6rem;
  font-weight: 400;
}

.room-amenitiy .txt small {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 10px;
}

/* -------room-info------- */
.room-info {
  padding: 10rem 0;
  color: #fff;
}

.room-info .tl h3 {
  font-size: 3.2rem;
  font-weight: 400;
}

.room-info .tl p {
  font-size: 1.6rem;
  font-weight: 500;
}

.room-info dl {
  margin-top: 5rem;
}

.room-info dl div {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  padding-top: 20px;
}

.room-info dt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 10px;
}

.room-info dd {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
}

/* **********************************
 page facilities
************************************* */
.facilities .bg {
  background-color: var(--beige);
  color: #fff;
}

.facilities .c-txt::after {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 76px;
  height: 76px;

  background-image: url('../img/vector/facilities-card-deco-bl.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleY(-1);
}

.fc-view {
  position: relative;
  padding-bottom: 10rem;
}

.fc-view h3 {
  font-size: 3.2rem;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-bottom: 10px;
  margin-bottom: 5rem;
}

.fc-view .inner {
  max-width: 900px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

/* 上下のストライプ帯（共通指定） */

.fc-view::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  /* 帯の厚み */
  z-index: 1;
  background-image: repeating-linear-gradient(24deg,
      #ffffff 0,
      #ffffff 18px,
      /* 白線の太さ（素材の実測値） */
      transparent 18px,
      transparent 35px
      /* 周期62px（隙間は下地の青が透ける） */
    );
}

/* -----------フロアマップ---------- */
.fc-map {
  padding: 10rem 0;
}

.fc-map .floor2 {
  max-width: 768px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}

.fc-map .floor1 {
  max-width: 768px;
  width: 100%;
}

.fc-map .iconBox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 5rem;
}

.fc-map .iconBox li {
  width: 224px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
}

.fc-map .iconBox li img {
  width: 44px;
  height: auto;
}

/* -----------ホール---------- */
.fc-hall {
  padding: 10rem 0 0;
}

.fc-hall h3 {
  font-size: 3.2rem;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.fc-hall .info {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: 400;
  margin-top: 10px;
}

.fc-hall .info small {
  font-size: 1.6rem;
}

.fc-hall-pic {
  max-width: 900px;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-top: 5rem;
  border-radius: 4px;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}

/* 料金表 */
.fc-hall .price-section {
  margin-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #fff;
}

.fc-hall .price-section:last-child {
  border: none;
}

.fc-hall .price-table thead th {
  font-weight: 700;
  border-bottom: 1px solid #fff;
}

.rental-cv {
  margin-top: 5rem;
}

.rental-cv p {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}

.rental-cv .more-button {
  margin-right: auto;
  margin-left: auto;
}

/* ---------多目的ルーム--------- */
.rental-space {
  padding: 10rem 0;
}


/* **********************************
 page sightseeing
************************************* */
.sightseeing .bg {
  background-color: var(--dull-green);
}

.sightseeing .c-intro {
  position: relative;
}

.sightseeing .c-txt {
  z-index: 20;
  padding-bottom: 15rem;
  /* イラストの高さ分 */
}

.sightseeing .c-desc {
  text-shadow: 0px 4px 4px var(--dull-green);
}

.sightseeing .c-txt img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: auto;
  transform: translateY(-50%);
}

.sightseeing .c-intro .illustBox img:nth-child(1) {
  position: absolute;
  right: 5%;
  top: calc(var(--header-h-pc) + 31px);
  width: 100px;
  height: auto;
}

.sightseeing .c-intro .illustBox img:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  height: auto;
}

.sightseeing .route {
  padding: 10rem 0;
}

/* ----------------------------
観光案内
------------------------------- */
.localWrap {
  padding: 10rem 0;
}

/* 背景色あり文字色変更 */
.localWrap.bg {
  color: #fff;
}

.local {
  line-height: 2;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  box-sizing: border-box;
}

.local * {
  box-sizing: border-box;
}

/* ---------- 左サイドカラム（PC） ---------- */
.local__aside {
  display: flex;
  flex-direction: column;
}

.local__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.local__lead {
  margin: 0;
  color: var(--dull-green);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
}
/* 背景色あり文字色変更 */
.localWrap.bg .local__lead {
  color: #fff;
}

/* 斜めストライプ */
.local__stripes {
  width: 166px;
  height: 44px;
  color: var(--dull-green);
}
/* 背景色あり文字色変更 */
.localWrap.bg .local__stripes {
  color: #fff;
}

.local__stripes svg {
  display: block;
  width: 100%;
  height: 100%;
}

.local__connector {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
}

.local__line {
  flex: 1;
  width: 1px;
  min-height: 80px;
  background: var(--dull-green);
  margin-bottom: 24px;
}
/* 背景色あり文字色変更 */
.localWrap.bg .local__line {
  background: #fff;
}

.local__badge {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  background: var(--dull-green);
  color: #fff;
  border: 1px solid var(--dull-green);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}
/* 背景色あり文字色変更 */
.localWrap.bg .local__badge {
  background: #fff;
  color: var(--dull-green);
  border: 1px solid #fff;
}

/* ---------- 右メインカラム ---------- */
.local__main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.local__title {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--font-color);
  letter-spacing: .04em;
}

/* 背景色あり文字色変更 */
.localWrap.bg .local__title {
  border-bottom: 2px solid #fff;
}

.local__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
  margin: 28px 0;
}

.local__subtitle {
  margin: 0 0 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.local__text {
  text-align: center;
  font-size: 1.6rem;
}


/* **********************************
 page inquiry
************************************* */
.inquiry .bg {
  background-color: var(--light-blue);
  color: var(--font-color);
  padding: 15rem 0;
}

.inquiry-header {
  text-align: center;
  padding-bottom: 5rem;
}

.inquiry-header .more-button {
  margin-right: auto;
  margin-left: auto;
  margin-top: 5rem;
}

.formBox {
  max-width: 900px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 4px;
  overflow: hidden;
}