@charset "utf-8";

:root {
  --default-font: 'Zen Kaku Gothic New';
  --noto-font: 'Noto Sans JP';

  /* --base-color: #f3f3f3; */
  --base-color: #fcfcfc;
  --font-color: #2F2F2F;
  --accent-color: #398CBE;
  --lightBlue-color: #8ec1d2;
  --btn-color: #005875;
  --white-color: #fff;
  --gray-color: #C4C4C4;
  --lightblack-color: #6A6969;
  --logo-color: #4D4A47;

  --header-h-sp: 56px;
  --header-h-pc: 80px;
  --z-header: 1000;
  --z-panel: 1100;
  --z-button: 1200;
}

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(--default-font);
  font-weight: 500;
  color: var(--font-color);
}

.wrapper {
  background-color: var(--base-color);
}

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;
  }
}

.p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  color: var(--font-color);
  letter-spacing: 0.1em;
}

img {
  display: block;
  filter: contrast(0.9) brightness(1.1);
}

.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);
}

/* #room, #service, #facility {
  scroll-margin-top: 10rem;
} */

/* ===================================
ヘッダー
====================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  width: 100%;
  background-color: rgba(252, 252, 252, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* フォールバック（backdrop-filter未対応時） */
@supports not ((backdrop-filter: blur(3px)) or (-webkit-backdrop-filter: blur(3px))) {
  .site-header {
    background-color: #f3f3f3e6;
  }
}

/* ナビ（SPベース） */
.global-nav {
  height: var(--header-h-sp);
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  /* 左:ロゴ／右:ボタン */
  align-items: center;
}

/* ロゴ */
.nav-logo {
  font-family: var(--noto-font);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
  color: var(--font-color);
  text-decoration: none;
  text-shadow:
    1px 1px 2px #ffffff70, -1px -1px 2px #ffffff70,
    -1px 1px 2px #ffffff70, 1px -1px 2px #ffffff70,
    0 1px 2px #ffffff70, 0 -1px 2px #ffffff70,
    -1px 0 2px #ffffff70, 1px 0 2px #ffffff70;
}

.nav-logo span {
  letter-spacing: 0;
}

/* ハンバーガー */
.hamburger {
  display: inline-flex;
  -webkit-appearance: none;
  appearance: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 23px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-button);
  touch-action: manipulation;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--font-color);
  border-radius: 10px;
  transition: transform .25s ease, opacity .2s ease, background-color .2s ease;
}

/* 開いた時の × アイコン */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* ===== SP（768px以下）：オーバーレイで隠す→開時に表示 ===== */
@media (max-width: 768px) {
  .global-nav {
    height: var(--header-h-sp);
    padding: 0 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  /* メニューオーバーレイ（閉時は非表示） */
  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: var(--z-panel);
    display: grid;
    place-items: start center;
    padding-top: 0;
    background-color: rgba(255, 255, 255, 0.95);

    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;

    min-height: 100vh;
    /* fallback */
    min-height: 100svh;
    /* iOS small viewport */
    min-height: 100dvh;
    /* dynamic viewport */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* 開時に表示（隣接セレクタの前提） */
  .hamburger[aria-expanded="true"]+.nav-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, visibility 0s;
  }

  /* SP */
  .nav-list {
    width: min(90%, 640px);
    list-style: none;
    margin-top: var(--header-h-sp);
    padding: 20px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }

  .menu-header img {
    width: 80px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }

  .nav-list ul {
    margin: 20px 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--lightBlue-color);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    display: block;
    padding: 14px 20px;
    font-family: var(--default-font);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--font-color);
    text-decoration: none;
    transition: ease-in-out 0.3s;
    text-align: center;
  }

  .hd-btn {
    text-align: center;
  }
}

/* hover */
@media (hover: hover) and (pointer: fine) {
  .nav-list a:hover {
    opacity: .7;
  }
}

/* ===== PC（769px以上）：space-betweenで常時表示 ===== */
@media (min-width: 769px) {
  .global-nav {
    height: var(--header-h-pc);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    /* ロゴ左／メニュー右 */
    align-items: center;
    column-gap: 32px;
  }

  .hamburger {
    display: none;
  }

  /* メニューは通常フロー＆常時表示 */
  .nav-panel {
    position: static;
    inset: auto;
    z-index: auto;
    display: flex;
    gap: 20px;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
    padding: 0;
    background: none;

    /* 右側のメニューを“内容幅”で収める */
    flex: 0 0 auto;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: auto;
    /* ← 100%を避ける */
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }

  .menu-header {
    display: none;
  }

  .nav-list ul {
    display: flex;
    align-items: center;
    gap: 4rem;
  }

  .nav-list li {
    border: 0;
  }

  .nav-list a {
    padding: 0;
    font-size: 1.8rem;
    font-weight: 500;
    background: transparent;
    color: var(--font-color);
    transition: ease-in-out 0.3s;
  }
}

/* 予約ボタン（PCスタイルに統一） */
.hd-btn .js-open-booking {
  font-family: var(--noto-font);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white-color);
  background: linear-gradient(-225deg, #398CBE 0%, #398CBE 50%, #8ec1d2 100%);
  text-shadow: none;
  display: inline-block;
  padding: 8px 50px;
  transition: ease-in-out .3s;
}
@media (hover: hover) and (pointer: fine) {
  .hd-btn .js-open-booking:hover {
    opacity: 0.7;
  }
}

/* キーボード操作のフォーカス */
:focus-visible {
  outline: 3px solid rgba(46, 142, 250, .6);
  outline-offset: 2px;
}

/* 動きに敏感なユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}

/* メニュー開時の背面スクロール停止（JSで .no-scroll を付与） */
body.no-scroll {
  overflow: hidden;
}

/* 開いている間の画面スクロール停止 */
body.no-scroll {
  overflow: hidden;
}

/* =================================
固定予約ボタン（スマホのみ表示）
==================================== */

.fixed-reserve-btn {
  position: fixed;
  right: 5px;
  bottom: 5px;
  padding: 8px 50px;
  font-family: var(--noto-font);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white-color);
  background: linear-gradient(-225deg, #398CBE 0%, #398CBE 50%, #8ec1d2 100%);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s ease;
  z-index: 999;
}

/* 表示時のクラス */
.fixed-reserve-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* スマホのみ */
@media (min-width: 768px) {
  .fixed-reserve-btn {
      display: none;
  }
}
/* =================================
MV メインビジュアル
==================================== */
.mv {
  /* position: relative; */
  width: 100%;
  height: auto;
  padding-top: 64px;
  /* ヘッダー高さ分 */
}

.mv-heading {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.mv-heading-inner {
  display: flex;
  align-items: start;
  gap: 32px;
}

/* ホテルロゴ */
.mv-logo {
  width: 130px;
}

.mv-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mv-type {
  font-size: 128px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: var(--logo-color);
}

.mv-type span {
  font-size: 115px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}

@media screen and (min-width:769px) {
  .mv-cont {
    position: relative;
    width: 100%;
    height: fit-content;
    margin-top: -40px;
    z-index: 1;
  }
}

/* --------SWIPER-------- */
.mv-cont .mv-media {
  width: 95%;
  margin-right: 0;
  margin-left: auto;
  border-radius: 300px 0 0 20px;
  overflow: hidden;
}

.mv-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width:769px) {
  .mv-media {
    aspect-ratio: 16 / 9;
  }
}

/* -------------------
装飾使いまわし
---------------------- */
.deco {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.deco div:empty:nth-child(1) {
  width: 20px;
  height: 20px;
  background-color: #8d0384;
}

.deco div:empty:nth-child(2) {
  width: 20px;
  height: 20px;
  background-color: #F9C270;
}

/* =======================================
main イントロ
========================================== */
.intro {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10rem;
  padding: 10rem 0;
}

.intro-txt {
  width: 60%;
  margin: 0 auto;
}

.intro-txt h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 8rem;
  font-family: var(--noto-font);
  font-weight: 500;
}

.intro-txt span {
  letter-spacing: 0;
}

.intro-txt p {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  font-family: var(--default-font);
  margin-bottom: 3rem;
}

.intro-txt p:last-child {
  margin-bottom: 0;
}

/* ------ご予約はこちらから------ */
.book-btn {
  width: fit-content;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: ease-in-out .5s;
}

.book-btn .js-open-booking {
  padding: 10px 84px;
  /* background-color: var(--accent-color); */
  background: linear-gradient(-225deg, #398CBE 0%, #398CBE 50%, #8ec1d2 100%);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--noto-font);
  color: var(--white-color);
  transition: ease-in-out .5s;
}

@media (hover: hover) and (pointer: fine) {
  .book-btn:hover {
    opacity: 0.7;
  }
}

/* --------------------------------------------
パララックス
---------------------------------------------- */
.p-index__eyecatch {
  position: relative;
  overflow: hidden;
  background-color: rgb(0 0 0 / 0.3);
  width: 99%;
  border-radius: 300px 0 0 20px;
  aspect-ratio: 16 / 9;
  margin-right: 0;
  margin-left: auto;
}

@media (min-width: 769px) {
  .p-index__eyecatch {
    max-height: 700px;
  }
}

.p-index__eyecatch__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130%;
  backface-visibility: hidden;
}

.p-index__eyecatch__image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: left center;
}

/* =======================================
main 共通設定
========================================== */
@media screen and (min-width:769px) {

  .room,
  #service,
  #facility {
    position: relative;
    width: 90%;
    max-width: 1536px;
    margin-right: auto;
    margin-left: auto;
  }
}

#service,
#facility {
  margin-right: auto;
  margin-left: auto;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

@media screen and (min-width:769px) {
  .title {
    position: sticky;
    top: 30%;
    width: fit-content;
  }
}

.title {
  width: fit-content;
  font-family: var(--noto-font);
}

.title h2 {
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 400;
}

.title .deco {
  justify-content: start;
  margin-top: 20px;
}

.title p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

@media (min-width: 769px) {
  .cont-body {
    width: 60%;
    margin-top: -100px;
  }
}

.cont-body {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 80px;
  margin-right: 0;
  margin-left: auto;
  margin-top: 3rem;
}

.line {
  max-width: 467px;
  min-width: 250px;
}

.line img {
  display: block;
  width: 100%;
  height: auto;
}



/* =======================================
main　サービス
========================================== */
.sv-item div img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 200px 5px 5px 5px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}

.sv-item .txt-item {
  padding: 20px 0 0 0;
}

.sv-item .txt-item h3 {
  font-family: var(--default-font);
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
  color: var(--font-color);
  padding-left: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent-color);
}

.sv-item .txt-item .p {
  padding: 0 20px;
}

.sv-item .txt-item small {
  display: block;
  line-height: 1.5;
}

.sv-info {
  width: 70%;
  border: 1px solid var(--gray-color);
  background-color: rgba(255, 255, 255, 1);
  padding: 10px 0 10px 20px;
  margin-top: 20px;
}

.sv-info dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--font-color);
}

.sv-info dt {
  flex: 1;
}

.sv-info dd {
  flex: 3;
}

/* =======================================
main　ルーム
========================================== */
.room-bg {
  /* background-color: #FFFEF0; */
  background-color: #e4e4e4;
  padding: 12rem 0;
}

.room-item {
  width: 100%;
  overflow: hidden;
  border-radius: 200px 5px 5px 5px;
  background-color: #fff;
  padding-bottom: 50px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}

.room-item .room-slider img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.room-item .pic-cs {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: #adadad;
  aspect-ratio: 16 / 9;
  font-size: 3rem;
  color: #fff;
}

.room-cont {
  display: flex;
  flex-flow: column;
  gap: 20px;
  padding: 50px 50px 0 50px;
}

.room-cont h3 {
  font-size: 2.4rem;
  font-family: var(--default-font);
  font-weight: 500;
  text-align: center;
  line-height: 1;
  color: var(--font-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 10px;
}

.room-cont h3 span {
  display: block;
  width: fit-content;
  /* background-color: var(--lightBlue-color); */
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 1.6rem;
  padding: 8px 20px;
  border-radius: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

.room-cont .p {
  color: var(--font-color);
}

.room-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.room-icon div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: var(--default-font);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.room-icon div img {
  width: auto;
  height: 20px;
}

.room-item .ep {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* padding: 0 50px; */
}

.room-item .ep li {
  width: calc(100% / 4);
  font-size: 1.6rem;
  font-weight: 400;
  background-color: var(--lightBlue-color);
  color: var(--white-color);
  text-align: center;
  padding: 4px 0;
  border: 1px solid var(--white-color);
}

.point {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 50px;
  box-shadow: none;
  border-radius: 5px;
}

.point .point-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.point-icon img {
  width: 50px;
  height: auto;
}

.point-catch {
  width: fit-content;
  font-size: 1.4rem;
  border-radius: 20px;
  color: #fff;
  background-color: var(--lightBlue-color);
  padding: 5px 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15px;
}

.point h3 {
  font-size: 2.8rem;
  font-family: var(--default-font);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  color: var(--font-color);
  margin-bottom: 30px;
}

.room .point h4 {
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  color: var(--font-color);
  padding-bottom: 5px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--accent-color);
}

.room .point ul {
  margin-top: 10px;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.room .point li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  width: fit-content;
}


/* =======================================
main　施設案内
========================================== */
.facility-bg {
  background-color: #fffefa;
}

.facility-box {
  width: 100%;
  display: flex;
}

.facilty-item {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 30px;
}

.facilty-item div {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* .facilty-item li {
  margin-bottom: 3rem;
} */

.facilty-item div img {
  width: 32px;
  height: auto;
  margin-right: 16px;
}

.facilty-item div .icon-power {
  width: 20px;
  margin: 0 22px 0 6px;
}

.facilty-item p {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--font-color);
  padding-left: 48px;
  margin-top: 10px;
}

.facility hr {
  width: 80%;
  border-color: var(--lightblack-color);
}

/* -------アクセス-------- */
.access {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 30px;
}

.access h3 {
  font-size: 2rem;
  font-weight: 500;
}

.access-img {
  width: 100%;
}

.access-img img {
  width: 100%;
  height: auto;
  border: 1px solid #ebebeb;
}

/* .access-txt {
  margin-top: 30px;
} */

.hotel-info address {
  font-size: 1.6rem;
  font-family: var(--default-font);
  font-weight: 400;
  color: var(--font-color);
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.hotel-info address a {
  color: var(--font-color);
  font-size: 1.6rem;
  font-family: var(--default-font);
  font-weight: 400;
}

.gmap {
  display: block;
  color: var(--font-color);
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: underline;
  margin-top: 5px;
  text-align: end;
}

/* アクセスルート */
.access-route h4 {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0;
  font-family: var(--sans-font);
  text-align: center;
}

.access-route {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: start;
  gap: 30px;
}

.access-route dt {
  width: fit-content;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.access-route dt img {
  width: 28px;
  height: auto;
}

.access-route dd {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 48px;
  margin-bottom: 10px;
}

.access-route dd::before {
  position: absolute;
  left: 28px;
  content: '・';
}

.access-route dd:last-child {
  margin-bottom: 0;
}

.access-route dd div {
  padding-left: 20px;
}

.access-route {
  width: 100%;
}

/* ======================================
フッター
========================================= */
footer {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #add3e15c;
}

.ft-inner {
  width: 90%;
  height: auto;
  max-width: 1536px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  color: var(--font-color);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.ft-item {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-item:first-child {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10%;
}

.ft-item .ft-logo {
  max-width: 80px;
}

.ft-item .ft-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.ft-item h3 {
  font-size: 2rem;
  font-family: var(--default-font);
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.ft-item address {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.ft-item address a {
  color: var(--font-color);
}

.ft-nav {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 15px 32px;
}

.ft-nav a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--font-color);
  transition: ease-in-out .3s;
}

.ft-book {
  background-color: rgba(255,255,255,0.9);
  padding: 10px 20px;
}

.ft-book-btn {
  display: block;
  width: 200px;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  font-weight: 400;
  padding: 8px 0;
  background: linear-gradient(-225deg, #398CBE 0%, #398CBE 50%, #8ec1d2 100%);
  transition: ease-in-out 0.3s;
}

.ft-book-btn button {
  padding: 10px 70px;
}

/* フッター会員リンク */
.ft-member {
  display: flex;
  padding-top: 10px;
}

.ft-member li {
  display: flex;
  align-items: center;
}

.ft-member a {
  display: block;
  color: var(--accent-color);
  font-family: var(--sans-font);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 10px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, .75), 1px 1px 4px rgba(255, 255, 255, .5), 1px 1px 4px rgba(255, 255, 255, .25);
}

@media (hover: hover) and (pointer: fine) {
  .ft-nav li a:hover {
    opacity: 0.7;
  }

  .ft-book-btn:hover {
    opacity: 0.7;
  }

}
footer hr {
  width: 60%;
  border-color: var(--gray-color);
  margin-right: auto;
  margin-left: auto;
}
footer .under {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 0;
}

footer .under a {
  font-family: var(--sans-font);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--lightblack-color);
}

footer .under li:not(:last-child) a::after {
  content: '｜';
  margin-left: 20px;
}

/* --------コピーライト------- */
.copy {
  background-color: #004f69;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

.copy small {
  font-size: 1.3rem;
  font-weight: 400;
}


/* ページトップに戻る */
.page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -45px;
  right: 0;
  width: 45px;
  height: 45px;
  background-color: #c1c1c1;
  opacity: 0.9;
  /* border: 1px solid var(--lightBlue-color); */
}
.arrow {
  position: relative;
  display: inline-block;
  width: 16.1px;
  height: 9.1px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
  width: 2px;
  height: 12px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 0.5px;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
  .page-top:hover {
    opacity: 1;
  }
}

/* --------------------------
トップお知らせ追加
----------------------------- */
.news {
  padding: 5rem 0;
}

.news a {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  color: var(--font-color);
}

/* -------お知らせページ-------- */
.news-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
}

.news-cont {
  width: 100%;
  padding: 5rem 0;
  color: var(--font-color);
}

.news-cont h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 5rem;
}

.news-cont p {
  text-align: center;
  font-size: 1.6rem;
}

.news-cont a {
  width: fit-content;
  display: block;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 5rem;
  color: var(--font-color);
  border-bottom: 1px solid var(--btn-color);
  margin-right: auto;
  margin-left: auto;
}

.news-cont a:hover {
  opacity: 0.7;
}

/* ============================
予約ポップアップ
=============================== */
/* 右下ポップアップ */
.popup {
  position: fixed;
  right: 0;
  bottom: 10px;
  width: 100%;
  max-width: 750px;
  height: auto;
  background-color: var(--accent-color);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(2, 12, 27, .20);
  padding: 16px 10px 12px;
  overflow: visible;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.popup.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .popup-close:hover {
    opacity: 1;
  }
}

/* -----------------------------
triplaウィジェット
-------------------------------- */
#booking .input-container-title-db81ec {
  font-size: 1.2rem;
  line-height: 1;
}

#booking .button-btn-f51c1a {
  border-radius: 30px;
}

/* ポップアップコンテナとtriplaのレスポンシブ */
@media only screen and (max-width: 992px) {
  .popup {
    bottom: 0;
    padding: 16px 0 12px;
  }
}

/* -----------------------------
メンバーリンク
-------------------------------- */
.member {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin-right: auto;
  margin-left: auto;
}

.member li {
  display: flex;
  align-items: center;
}

.member a {
  display: block;
  color: rgba(255, 255, 255, 1);
  font-family: var(--sans-font);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 15px;
  opacity: 0.8;
}

@media (hover: hover) and (pointer: fine) {
  .member a:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 480px) {
  .member a {
    font-size: 1.2rem;
  }
}