@charset "utf-8";

:root {
  --zenKaku-font: 'Zen Kaku Gothic New';
  --noto-font: 'Noto Sans JP';

  --base-color: #fff;
  --font-color: #2F2F2F;
  --btn-color: 97, 125, 165;
  --accent-color: #3d6297;
  --accent2-color: #455772;
  --accent3-color: #8a99b1;
  --accent4-color: #6399f1;
  --accent5-color: #b1c6e9;

  --white-color: #fff;
  --gray-color: #C4C4C4;
  --logo-color: #4D4A47;

  --header-h-sp: 70px;
  --header-h-pc: 100px;
  --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(--noto-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.4rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
  color: var(--font-color);
  letter-spacing: 0.05em;
}

img {
  display: block;
  filter: contrast(0.9) brightness(1.1);
}

/* 画像影一括 */
.img-shadow {
  box-shadow: 0px 0px 50px 10px rgba(16, 56, 108, 0.35);
  border-radius: 3px;
  overflow: hidden;
}

/* SPのみ改行 */
.sp-br {
  display: none;
}

@media screen and (max-width:768px) {
  .sp-br {
    display: block;
  }
}

/* SPのみ表示 */
@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

/* PCのみ表示 */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transform: translateY(400px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn {
  width: fit-content;
  background-color: rgba(var(--btn-color), 1);
  border-radius: 3px;
}

.btn a {
  width: 100%;
  height: 100%;
  display: inline-block;
  font-family: var(--noto-font);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white-color);
  text-shadow: none;
  transition: ease-in-out .3s;
  padding: 8px 40px;
}

/* アイコン電話/メール */
.bi-telephone-outbound, .bi-envelope {
  color: var(--font-color);
}

/* ===================================
ヘッダー
====================================== */
.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 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--logo-color);
}

.nav-logo img {
  width: 160px;
  height: auto;
  margin-top: 5px;
}

/* ハンバーガー */
.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-logo {
    text-align: start;
    font-size: 1.2rem;
  }

  .nav-logo img {
    width: 100px;
  }

  /* メニューオーバーレイ（閉時は非表示） */
  .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-wrap {
    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-wrap .nav-list {
    margin: 20px 0;
  }

  .nav-wrap .nav-list li {
    border-bottom: 1px solid var(--gray-color);
  }

  .nav-wrap .nav-list a {
    display: block;
    padding: 14px 20px;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--font-color);
    text-decoration: none;
    transition: ease-in-out 0.3s;
    text-align: center;
  }

  .nav-wrap .btn {
    margin-right: auto;
    margin-left: auto;
  }

  .other-list {
    margin-top: 20px;
  }

  .other-list a {
    width: fit-content;
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    margin-right: auto;
    margin-left: auto;
  }

  .tel, .mail {
    color: var(--accent-color);
  }

  .other-list .sfHotels {
    color: var(--accent4-color);
    font-weight: 300;
  }

  /* アイコン電話/メール */
  .tel i, .mail i {
    font-size: 1.6rem;

    color: var(--accent-color);
    padding-right: 8px;
    vertical-align: middle;
  }

  /* 別タブアイコン */
  .sfHotels i {
    padding-left: 8px;
  }
}

/* hover */
@media (hover: hover) and (pointer: fine) {
  .nav-wrap a:hover {
    opacity: .7;
  }
}

/* ===== PC（769px以上）：space-betweenで常時表示 ===== */
@media (min-width: 769px) {
  .sp-only {
    display: none;
  }

  .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-wrap {
    width: auto;
    /* ← 100%を避ける */
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }

  .menu-header {
    display: none;
  }

  .nav-wrap .btn {
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 10px;
  }

  .nav-wrap .nav-list {
    display: flex;
    align-items: center;
    gap: 3rem;
  }

  .nav-wrap .nav-list li {
    border: 0;
  }

  .nav-wrap .nav-list a {
    padding: 0;
    font-size: 1.6rem;
    font-weight: 300;
    background: transparent;
    color: var(--font-color);
    transition: ease-in-out 0.3s;
  }
}

/* キーボード操作のフォーカス */
: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: 10px;
  bottom: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  z-index: 999;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 8px 50px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}

/* 表示時のクラス */
.fixed-reserve-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background-color: rgba(var(--btn-color), 0.8);
}

/* スマホのみ */
@media (min-width: 768px) {
  .fixed-reserve-btn {
    display: none;
  }
}

/* =================================
.main 装飾
==================================== */
.main-bg {
  width: 100%;
  background-color: #6f89b0;
}

.main {
  width: 98%;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

/* =================================
MV メインビジュアル
==================================== */
.mv {
  width: 100%;
}

.mv-pic {
  width: 100%;
  height: 90vh;
}

.mv-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.between-text {
  margin: -2.5rem auto;
  /* 5remの半分 */
  width: fit-content;
  position: relative;
  z-index: 1;
  color: #000;
}

.between-text h2 {
  font-family: var(--noto-font);
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.05em;
  text-shadow: 0 8px 15px rgba(255, 255, 255, 1);
}

.between-text .ja {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 30px;
  text-align: center;
  letter-spacing: 0.1em;
}

.empty:empty {
  width: 100%;
  height: 50px;
}

/* =======================================
イントロ
========================================== */
.intro {
  width: 100%;
}

.intro-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

/* poi01とテキスト群 */
.intro-main {
  flex: 1;
}

/* pic02とpic03の大枠 */
.intro .picWrap {
  flex: 1;
  display: flex;
  gap: 50px;
}

.intro .pic01 {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.intro .pic01 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.intro .txtWrap {
  width: fit-content;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 80px;
  margin-right: 0;
  margin-left: auto;
  padding-top: 80px;
  padding-right: 20px;
}

/* 縦書きキャッチコピー */
/* .intro-tl {
  width: fit-content;
} */
.intro-tl {
  width: fit-content;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.vertical {
  font-size: 3.2rem;
  font-weight: 400;
  font-family: var(--zenKaku-font);
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.vertical span {
  font-style: italic;
}

.intro .txt {
  width: fit-content;
}

.intro .txt p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 20px;
}

/* picWrap内の写真 */
.intro .pic02 {
  position: relative;
  flex: 4;
}

.intro .pic03 {
  position: relative;
  flex: 5;
}

.intro .pic02 img {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.intro .pic03 img {
  position: absolute;
  bottom: 5rem;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

/* =======================================
共通設定
========================================== */
.c-section {
  padding: 10rem 0;
}

.s-title {
  width: fit-content;
}

.s-title h3 {
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}

.s-title p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 10px;
  text-align: center;
}

/* =======================================
ルーム
========================================== */
.room {
  background-color: #eee;
  overflow: hidden;
}

.room .s-title {
  margin-right: auto;
  margin-left: auto;
}


/* カルーセル */
.swiper.card-swiper {
  overflow: visible;
  padding-right: 1px;
  /* Safariの描画ズレ対策 */
  margin-right: 0;
  margin-left: auto;
  margin-top: 8rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 48px;
  /* ドット分 */
}

.card-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  /* ← これが必要 */
  height: auto;
}

/* ページネーション */
.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  width: 40px;
  height: 60px;
  color: #fff;
  background-color: rgba(51, 69, 95, 0.7);
  border: 1px solid rgba(255, 255, 255, .5);
}

.card-swiper .swiper-button-prev::after,
.card-swiper .swiper-button-next::after {
  font-size: 24px;
  /* 矢印の大きさ */
}

.card-swiper .swiper-button-prev,
.card-swiper .swiper-button-next {
  transition: opacity .3s ease;
}

.card-swiper .swiper-button-prev {
  left: 0;
}

.card-swiper .swiper-button-next {
  right: 0;
}

/* 端に到達した矢印を消す */
.card-swiper .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  /* クリック不可 */
}

/* ページネーション */
.card-swiper .swiper-pagination-bullet {
  width: 24px;
  height: 2px;
  border-radius: 0;
  margin: 0 4px;
}

.card-swiper .swiper-pagination-bullet-active {
  background: var(--accent2-color);
}


/* スライド内容 */
.swiper-slide {
  position: relative;
  background: #fff;
  border-radius: 3px;
  height: 300px;
  overflow: hidden;
}

/* 装飾タイトル */
.deco-tl {
  position: absolute;
  top: 10px;
  left: 0;
  right: auto;
  z-index: 10;
  color: var(--accent2-color);
  background-color: #fff;
  padding: 5px 20px;
  font-size: 1.6rem;
}

/* お部屋予約ボタン */
.room-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(var(--btn-color), 0.8);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.3rem;
  font-weight: 400;
}

/* 部屋画像 */
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  opacity: 0.9;
}

/* 部屋詳細 */
.slide-txtWrap {
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 50px;
  /* 予約ボタンの高さ分 */
}

.slide-txtWrap .cont {
  margin-bottom: 30px;
}

.slide-txtWrap h4 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.slide-txtWrap .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 10px 20px;
}

.slide-txtWrap .info li {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--logo-color);
}

.slide-txtWrap .info li i {
  font-size: 1.8rem;
  margin-right: 8px;
  vertical-align: middle;
}

.slide-txtWrap .info li img {
  display: inline;
  width: 25px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}


/* =======================================
レストラン
========================================== */
.restaurant {
  width: 95%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;

}

.restaurant .r-sec {
  display: flex;
}

.restaurant .r-sec01 {
  align-items: flex-start;
}

.restaurant .r-sec .pic01 img,
.restaurant .r-sec .pic02 img {
  opacity: 0.9;
}

.restaurant .r-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.restaurant .r-sec01 .txt {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  padding: 0 8rem 0;
}

.restaurant .r-sec02 .txt {
  padding: 0 8rem 0;
}

.restaurant .txt .p {
  line-height: 1.8;
}

/* r-sec01 */
.restaurant .r-sec01 .picWrap {
  flex: 2;
  width: 100%;
}

.restaurant .r-sec01 .cont {
  flex: 3;
  width: 100%;
}

/* r-sec02 */
.restaurant .r-sec02 {
  align-items: center;
  margin-top: 5rem;
}

.restaurant .r-sec02 .picWrap {
  flex: 2;
  width: 100%;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  aspect-ratio: 3 / 2;
  /* ← 全体を3:2に固定 */
  width: 100%;
  overflow: hidden;
}

/* メニュー */
.menu-wrap {
  flex: 3;
  width: 100%;
}

.menu-wrap svg {
  color: var(--accent-color);
  width: 18px;
  height: auto;
  margin-left: 5px;
}

.menu-wrap p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.restaurant .menu dt {
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 15px 0 10px;
  border-bottom: 1px solid var(--accent-color);
  padding: 0 5px 3px;
}

.restaurant .menu dd {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}



/* 詳細 */
.restaurant .detail {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 16px;
}

.restaurant .detail dt,
.restaurant .detail dd {
  font-size: 1.4rem;
  font-weight: 400;
}

/* =======================================
境界線
========================================== */
.horizon {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 1;
}

.horizon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =======================================
お知らせ
========================================== */
.news {
  margin-right: auto;
  margin-left: auto;
}

.news .s-title {
  margin-right: auto;
  margin-left: auto;
}

.news-list {
  margin-top: 3rem;
}

.news dl {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.news dt {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 15px 3rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gray-color);
  cursor: pointer;
}

.news dt span {
  font-size: 1.6rem;
  font-weight: 300;
  padding-right: 10px;
}

.news dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 1.6rem;
  font-weight: 400;
  box-sizing: border-box;
  background-color: rgb(246, 246, 246);
}

.dd-inner {
  padding: 30px 3rem;
}


.news dd p {
  line-height: 1.8;
}

.news dd p:not(:last-child) {
  margin-bottom: 10px;
}



@media (max-width: 768px) {
  .news dl {
    width: 90%;
  }

  .news dt span {
    display: block;
    font-size: 1.6rem;
    padding-right: 0;
    line-height: 1.8;
  }

  .news dt {
    padding: 15px;
  }
}

/* =======================================
アクセス
========================================== */
.access {
  width: 100%;
  background-color: #eee;
}

.access-inner {
  display: flex;
  flex-flow: column;
  gap: 5rem;
  width: 90%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.access .s-title {
  margin-right: auto;
  margin-left: auto;
}

/* -------アクセス内容ここから------ */

/* ------アクセスルート----- */
.access-route {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: start;
  gap: 5rem;
}

.access-route .bg {
  background-color: #fff;
  border-radius: 3px;
  padding: 20px 30px;
}

.route-tl {
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.route-tl i {
  font-size: 2.8rem;
  margin-right: 10px;
  color: var(--logo-color);
}

.route-subtl {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 10px;
  border-bottom: 1px solid #d1d1d1;
}

/* 特定の箇所だけマージン入れたい */
.mt {
  margin-top: 30px;
}

.access-route .p {
  margin-bottom: 20px;
}

.access-route .p a {
  color: var(--accent4-color);
}

.access-route dd {
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 3rem;
}

.access-route dd a {
  color: var(--accent4-color);
}

/* オススメ欄 */
.recommend {
  border-left: 2px solid var(--accent-color);
  padding: 10px 0 0 20px;
  margin-top: 3rem;
}

.recommend h6 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.recommend h6 i {
  font-size: 1.4rem;
}

.recommend p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
}

.recommend a {
  color: var(--accent4-color);
}

.arrow-b {
  position: relative;
  display: inline-block;
  width: 10.9px;
  height: 5.9px;
  vertical-align: middle;
}

.arrow-b::before,
.arrow-b::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--accent4-color);
  transform-origin: 50% calc(100% - 0.5px);
}

.arrow-b::before {
  transform: rotate(45deg);
}

.arrow-b::after {
  transform: rotate(-45deg);
}

/* ------マップ群------ */
.gmap {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #c0c0c0;
  width: 70%;
}

.gmap iframe {
  aspect-ratio: 16 / 9;
}

/* ------住所------ */
.ac-address {
  flex: 0 0 auto;
  border-left: 1px solid var(--accent-color);
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ac-address h4 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.ac-address i {
  padding-right: 5px;
}

.ac-address address {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--font-color);
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.ac-address address a {
  display: block;
  color: var(--font-color);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.ac-address address a i {
  padding-right: 8px;
}

.gmap-link {
  width: fit-content;
  display: block;
  color: var(--accent4-color);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 10px;
}

.gmap-link i {
  color: var(--accent4-color);
  padding-left: 8px;
}

/* ======================================
フッター
========================================= */
footer {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f9f9f9;
  margin-top: 10rem;
}

.ft-inner {
  width: 70%;
  height: auto;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: var(--font-color);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.ft-left {
  width: fit-content;
}

.ft-right {
  align-items: flex-start;
  gap: 15%;
}

/* フッター ホテル情報 */
.ft-left .ft-logo {
  display: block;
  max-width: 160px;
  margin-bottom: 3rem;
}

.ft-left .ft-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.ft-left h3 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.ft-left address {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 2rem;
}

.ft-left address div {
  margin-bottom: 3rem;
}

.ft-left address a {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--accent-color);
}

.ft-left address a i {
  padding-right: 8px;
  color: var(--accent-color);
}

/* フッター ナビ */
.ft-navWrap p {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--font-color);
}

.ft-nav {
  display: flex;
  flex-flow: column;
  gap: 10px 30px;
  margin-top: 3rem;
}

.ft-nav a {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--font-color);
  transition: ease-in-out .3s;
}

@media (hover: hover) and (pointer: fine) {
  .ft-nav li a:hover {
    opacity: 0.7;
  }
}

/* フッター 予約ボックス */
.ft-book {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid var(--accent5-color);
  border-radius: 5px;
  padding: 10px 20px;
}

.ft-book-btn {
  width: 200px;
  text-align: center;
}

.ft-book-btn a {
  padding: 8px 0;
}

/* 会員リンク */
.ft-member {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0;
  padding-top: 10px;
}

.ft-member li {
  width: fit-content;
  vertical-align: middle;
}

.ft-member a {
  font-family: var(--noto-font);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-color);
  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);
}

.ft-sfhotels {
  display: block;
  color: var(--accent3-color);
  font-family: var(--noto-font);
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 10px;
  /* text-align: center; */
}

.ft-sfhotels i {
  padding-left: 8px;
}

.ft-right p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 10px;
}

/* 佐渡関連ホテル */
.sado-hotels {
  margin-top: 3rem;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid var(--accent5-color);
  border-radius: 5px;
}

.sado-hotels h4 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--font-color);
  text-align: center;
  margin-bottom: 10px;
}

.sado-hotels a {
  display: block;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--accent-color);
}

.arrow-r {
  position: relative;
  display: inline-block;
  width: 3.8px;
  height: 6.7px;
  vertical-align: middle;
  margin-left: 10px;
}

.arrow-r::before,
.arrow-r::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 5px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--accent-color);
  transform-origin: calc(100% - 0.5px) 50%;
}

.arrow-r::before {
  transform: rotate(45deg);
}

.arrow-r::after {
  transform: rotate(-45deg);
}

/* 境界線 */
footer hr {
  width: 60%;
  border-color: var(--accent3-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(--noto-font);
  font-size: 1.2rem;
  font-weight: 300;
  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: var(--accent2-color);
  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: var(--accent3-color);
  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(--accent-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(--noto-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;
  }
}


/* ============================
下層ページ　共通
=============================== */
/* -------下層MV------ */
.under-mv {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 5rem;
}

.u-mv-pic {
  width: 100%;
  height: 100%;
}

.under-mv .u-mv-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.u-mv-tl {
  width: 100%;
  position: absolute;
  top: calc(50% + (var(--header-h-pc) / 2));
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(252, 252, 252, 0.8);
  padding: 0 15px;
}


@media screen and (max-width:768px) {
  .u-mv-tl {
    position: absolute;
    top: calc(50% + (var(--header-h-sp) / 2));
  }
}

/* 下層メイン共通 */
.u-main {
  padding: 10rem 0;
}
.u-section {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

/* 下層ボタン共通 */
.u-btn {
  width: fit-content;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid var(--accent-color);
  transition: ease-in-out .3s;
  margin-right: auto;
  margin-left: auto;
}

.u-btn a {
  width: 100%;
  height: 100%;
  display: inline-block;
  font-family: var(--noto-font);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-color);
  text-shadow: none;
  transition: ease-in-out .3s;
  padding: 8px 40px;
}

/* 下層MV下テキスト */
.u-top-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--font-color);
  letter-spacing: 0.05em;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .u-btn:hover {
    background-color: rgba(var(--btn-color),1);
    opacity: 1;
  }
  .u-btn:hover a {
    color: #fff;
    opacity: 1;
  }
}


/* ============================
お問い合わせ
=============================== */
.inquiry p {
  text-align: center;
}

.form-mailer {
  margin-top: 5rem;
}
.inquiry a {
  color: var(--accent4-color);
}

/* サンクス */
.thanks .u-btn {
  margin-top: 5rem;
}