


/* ==================================================================
【共通】基本設定
================================================================== */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  /* color: #000; */
  /* color: #ff0000; */
  /* color: #3a2e25; */
  color: #3a2e25;
  overflow-x: hidden;
  /* background: #ffffff  !important; */   /* 白 */
  /* background: #fbfaf5  !important; */   /* 生成り色 */
  /* background: #fffffc  !important; */   /* 胡粉色 */
  /* background: #fffff9  !important; */   /* ミルキーホワイト */
  background: #fffff9  !important;   /* ミルキーホワイト */
}




/* ==================================================================
【共通】トップの黒グラデ
================================================================== */
.top-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.54) 10%,
      rgba(0,0,0,0.44) 20%,
      rgba(0,0,0,0.35) 30%,
      rgba(0,0,0,0.27) 40%,
      rgba(0,0,0,0.20) 50%,
      rgba(0,0,0,0.14) 60%,
      rgba(0,0,0,0.09) 70%,
      rgba(0,0,0,0.05) 80%,
      rgba(0,0,0,0.02) 90%,
      rgba(0,0,0,0.00) 100%
  );
  /* z-index: 50; */
  z-index: 9998;
}



/* ==================================================================
【共通】左上ロゴ
================================================================== */
.site-logo {
  position: fixed;
  top: 15px;
  left: 20px;
  height: 33px;
  pointer-events: auto;
  z-index: 9999;

  opacity: 0;
  transition: opacity 1.5s ease;

}

/* 表示状態 */
.site-logo.show {
  opacity: 1;
}




/* ==================================================================
【共通】右上ナビゲーション（1/3）
================================================================== */
.header-nav {
  position: fixed;
  top: 22px;
  right: 170px;  /* ← ご予約ボタンより左に配置 */
  display: flex;
  gap: 25px;
  z-index: 9999;

  opacity: 0;
  transition: opacity 1.5s ease;

}

/* 表示状態 */
.header-nav.show {
  opacity: 1;
}



/* ==================================================================
【共通】右上ナビゲーション（2/3）
================================================================== */
.header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 1;
  transition: opacity 0.2s;
}







/* ==================================================================
【共通】右上ナビゲーション（3/3）
================================================================== */
.header-nav a:hover {
  opacity: 0.6;
}



/* ==================================================================
【共通】右上ナビゲーション（スマホ）
================================================================== */
@media (max-width: 768px) {
  .header-nav a {
    color: #222;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 14px;
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }
  .header-nav a {
    opacity: 0;
  }
  .header-nav.active a {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
  }
}








/* ==================================================================
【共通】予約ボタン（1/2）
================================================================== */
.reserve-button {
  position: static;
  top: 15px;
  right: 60px;
  padding: 6px 12px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  z-index: 9999;
  border-radius: 4px;
  transition: all 0.3s ease;

  opacity: 0;
  transition: opacity 1.5s ease;

}

/* 表示状態 */
.reserve-button.show {
  opacity: 1;
}

/* ==================================================================
【共通】予約ボタン（2/2）
================================================================== */
.reserve-button:hover,
.reserve-button.active {
  background: #fff;
  color: #000;
}

/* ==================================================================
【共通】予約ボタン_プルダウンメニュー追加
================================================================== */
.booking-wrapper {
  position: fixed;
  top: 15px;
  right: 60px;
  z-index: 9999;
}
.reserve-menu {


  position: absolute;
  top: 35px;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(5px);
  border-radius: 6px;
  min-width: 120px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  overflow: hidden;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition: all 0.25s ease;

}


.reserve-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.reserve-menu a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  text-align: center;
  transition: color 0.2s ease;
}
.reserve-menu a:hover {
  background: #e8e3da;
  color: #888;

}

@media (max-width: 768px) {
  .booking-wrapper {
    right: 45px;
  }
}


/* ==================================================================
【共通】予約ボタン（スマホ）
================================================================== */
@media (max-width: 768px) {
  .reserve-button {
    right: 45px;   /* ☰（三本線）の左側に配置 */
  }
}












/* ==================================================================
【共通】言語選択ボタン
================================================================== */
.lang-switch {
  position: fixed;
  top: 21px;
  right: 155px;  /* ← ここが重要（予約の左） */
  font-size: 12px;
  color: #fff;
  z-index: 9999;
  opacity: 0;
  transition: opacity 1.5s ease;
}
/* 表示用（他と合わせる） */
.lang-switch.show {
  opacity: 1;
}
.lang-switch a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.lang-switch a:hover {
  opacity: 0.6;
}
.lang-switch span {
  margin: 0 5px;
  opacity: 0.7;
}
.lang-switch a.active {
  font-weight: bold;
  font-size: 14px;
}
@media (max-width: 768px) {
  .lang-switch {
    right: 127px;
  }
  .lang-switch span {
    margin: 0 3px;
  }
}






/* ==================================================================
【共通】ハンバーガー
================================================================== */
.hamburger {
  display: block !important;
  position: fixed;
  top: 14px;
  right: 15px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  z-index: 10006;
  cursor: pointer;

  opacity: 0;
  transition: opacity 1.5s ease;

}

/* 表示状態 */
.hamburger.show {
  opacity: 1;
}


/* ==================================================================
【共通】ハンバーガー（三本線）
================================================================== */
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: 0.3s;
}


/* ==================================================================
【共通】ハンバーガー（三本線→×）
================================================================== */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ==================================================================
【共通】ハンバーガー（×の色を変更）
================================================================== */
.hamburger.active span {
  background: #222;   /* ナビ文字色と同じ */
}


/* ==================================================================
【共通】ハンバーガー（スマホ）
================================================================== */
@media (max-width: 768px) {
  .hamburger {
    right: 10px;
    left: auto;  
    transform: none;
    display: block;
  }
  .mobile-nav-logo {
    text-align: center;
    margin: 10px 0 25px;
    margin-bottom: 0px;
  }
  .mobile-nav-logo img {
    width: 160px;
    height: auto;
    display: inline-block;
  }
}


/* ==================================================================
【共通】ハンバーガー（画面を最前面にする）
================================================================== */
.mobile-nav {
  z-index: 10005;
}






/* ==================================================================
【共通】ハンバーガーボタン押下げ時のメニュー画面（PC）
================================================================== */
.header-nav {
  display: none;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    color: #222;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 120px;
    padding-left: 40px;
    gap: 28px;
    transform: translateX(100%);   /* ← 初期は画面外 */
    transition: transform 0.4s ease;
    z-index: 10001;
}

.mobile-nav.active {
  transform: translateX(0);
}
@media (min-width: 769px) {
  .mobile-nav-logo img {
    width: 200px;   /* 好きなサイズに調整 */
    height: auto;

    opacity: 0;
    transform: translateX(10px);
    transition: 
      opacity 1.5s ease, 
      transform 1.5s ease;
      color 0.2s ease;
    transition-delay: 0s;
  }

  .mobile-nav.active .mobile-nav-logo img {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
  }

  .mobile-nav.active .mobile-nav-logo img:hover {
    color: #888; /* ※imgなので実際は効かない場合あり（後で説明） */
  }

  .mobile-nav a {
    color: #222;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
  }
  .mobile-nav .mobile-navrule123 {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .mobile-nav .mobile-navrule123 a {
    font-size: 13px;
    letter-spacing: -0.1px;
    color: #222;
    text-decoration: none;
  }
  .mobile-nav .mobile-navrule123 {
    margin-top: 10px !important; 
  }

  .mobile-nav a {
    opacity: 0;
    transform: translateX(10px);
    transition: 
      opacity 1.5s ease, 
      transform 1.5s ease;
      color 0.2s ease;
    transition-delay: 0s;
  }

  .mobile-nav.active a {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
  }

  .mobile-nav.active a:hover {
    color: #888;
  }


}



/* ==================================================================
【共通】ハンバーガーボタン押下げ時のメニュー画面（スマホ）
================================================================== */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    color: #222;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 120px;
    padding-left: 40px;
    gap: 28px;
    transform: translateX(100%);   /* ← 初期は画面外 */
    transition: transform 0.4s ease;
    z-index: 10001;
  }
  .mobile-nav.active {
    transform: translateX(0);      /* ← 表示 */
  }
  .mobile-nav-logo img {
    width: 200px;   /* 好きなサイズに調整 */
    height: auto;
  }
  .mobile-nav a {
    color: #222;
    /* font-size: 16px; */
    letter-spacing: 2px;
    text-decoration: none;
  }
  .mobile-nav .mobile-navrule123 {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
  }
  .mobile-nav .mobile-navrule123 a {
    font-size: 12px;
    letter-spacing: -0.1px;
    color: #222;
    text-decoration: none;
  }
  .mobile-nav .mobile-navrule123 {
    margin-top: 10px !important; 
  }
}












/* ==================================================================
【共通】ハンバーガー（画面表示時の背景オーバーレイ）
================================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);  /* 黒半透明 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10000;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


































/* ==================================================================
【共通】ヘッダー画像＆ヘッダー左下タイトル
================================================================== */
.header-other {
  position: relative;
  height: 65vh;
  overflow: hidden;
}

/* 背景をここに移す */
.header-other::before {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--bg) center/cover no-repeat;

  opacity: 0;
  transition: opacity 1s ease;

  z-index: 1;
}

/* 表示 */
.header-other.show::before {
  opacity: 1;
}



.header-other-title {
  position: absolute;
  left: 40px;
  bottom: 35px;
  display: flex;              
  flex-direction: column;     
  align-items: center;        
  color: #fff;
  z-index: 5;
  pointer-events: none;
  font-family: serif;
  line-height: 1.1;

  opacity: 0;
  transition: opacity 1.5s ease;

}

/* 表示状態 */
.header-other-title.show {
  opacity: 1;
}

/* 英字 ACCESS */
.header-other-title .header-other-title-en {
  display: block;
  font-size: 75px;
  font-weight: 500;
  letter-spacing: 2px;
}
/* 日本語 アクセス */
.header-other-title .header-other-title-ja {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  letter-spacing: 2px;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .header-other-title {
    position: absolute;
    left: 25px;
    bottom: 20px;
  }
  .header-other-title .header-other-title-en {
    font-size: 28px !important;
  }
  .header-other-title .header-other-title-ja {
    font-size: 14px !important;
  }
}













/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */





/* ==================================================================
【共通】フッター（全体）
================================================================== */
.site-footer {
  width: 100%;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
  background-image: url("../images/footer.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 14px;
  flex-direction: column;     /* ← 縦並びにする */
  align-items: center;        /* ← 横方向中央 */
  text-align: center;         /* ← 文字中央 */
  margin-top: 180px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}
.site-footer * {
  position: relative;
  z-index: 1;
}
.footer-logo-img {
  width: 250px;
  opacity: 1;
  margin-top: 20px;
}
.site-footer a {
  color: #fff;
}


/* ==================================================================
【Home】フッター
================================================================== */
.home-page .site-footer {
  margin-top: 0;
}


/* ==================================================================
【共通】フッター（住所、電話番号、メール、チェックイン・アウト）
================================================================== */
.footer-info-block {
  opacity: 1;
  flex-shrink: 0;
  min-width: 260px;
  margin-left: 0;
  margin-top: 0;
}
.footer-info-block p {
  margin: 6px 0;      /* ← 基本行間（右と一致） */
  line-height: 1.4;
}
.footer-info-block p:nth-of-type(2) {
  margin-top: 4px;
}
.footer-info-block p:nth-of-type(1) {
  margin-bottom: 4px;
}



/* ==================================================================
【共通】フッター（メニュー）
================================================================== */
.footer-menu {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: auto;
  margin-right: 0;
  padding-top: 0;
  margin: 0;
  justify-content: center;
}
.footer-menu a {
  text-decoration: none;
}
.footer-menu a:hover {
  opacity: 0.6;
  transition: opacity 0.2s;
}


/* ==================================================================
【共通】フッター（宿泊約款、利用規約、プライバシーポリシー）
================================================================== */
.footer-rule123 {
    display: flex;        /* 追加 */
    align-items: center;
    font-size: 11px;      /* 修正 */
    gap: 3px;
    margin-bottom: -30px;
}
.footer-link {
    text-decoration: none;
}
.footer-link:hover {
    text-decoration: none;
}
.footer-rule123 a:not(:last-child)::after {
    content: " |";
    margin: 0 8px;
}
.footer-rule123 a:hover {
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.2s;
}
@media (max-width: 768px) {
  .footer-rule123 {
    margin-top: 10px;
    margin-bottom: -15px;
  }
}


/* ==================================================================
【共通】フッター（コピーライト）
================================================================== */
.footer-copy {
  right: 150px;
  bottom: 15px;
  font-size: 11px;
  opacity: 0.6;
  position: static;
  width: 100%;
  text-align: center;
  margin-top: 0;
}



/* ==================================================================
【共通】フッター（スマホ）
================================================================== */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;   /* ← 縦並び */
    gap: 25px;
    padding: 30px 20px;
  }
  .footer-logo-img {
    width: 250px;
  }
  .footer-menu {
    margin-left: 0;
    flex-wrap: wrap;
    flex-direction: column;   /* ← 横 → 縦に変更 */
    align-items: center;      /* ← 中央揃え */
    gap: 12px;                /* ← 間隔調整（好みでOK） */
  }
  .footer-copy {
    /* text-align: left; */
    font-size: 11px;
  }
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */












































