@charset "utf-8";
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/NotoSerifJP-Regular.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 700;
  src: url(/fonts/NotoSerifJP-Bold.otf) format("opentype");
  font-display: swap;
}
:root {
  /* 余白・ギャップの共通システム */
  --primary-color: #c7a957;
  --primary-color-rgb: 199, 169, 87;
  --right-gray: #ccc;
  --font-accent: "Cinzel", serif;
}

* {
  -webkit-appearance: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  font-family: "Noto Serif Japanese", serif, san-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
  max-width: 100%;
  color: #333333;
  box-sizing: border-box;
  line-height: 1.5;
}
body {
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.7;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
button {
  /* ブラウザ固有の見た目を無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}
:where(button:focus-visible) {
  outline: 2px solid var(--primary-color); /* デザインに合わせた色 */
  outline-offset: 2px;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}
.min {
  font-family: "Noto Serif Japanese", "Yu Mincho", serif, san-serif;
  letter-spacing: 0.15em;
  color: #333333;
}
.eng {
  font-family: var(--font-accent);
}
.font-accent {
  font-family: var(--font-accent);
}
.font_size12 {
  font-size: 1.2rem;
}
.font_size13 {
  font-size: 1.3rem;
}
.font_size14 {
  font-size: 1.4rem;
}
.font_size15 {
  font-size: 1.5rem;
}
.font_size_xs {
  font-size: 75%;
}
.font_size_sm {
  font-size: 85%;
}
.font_size_md {
  font-size: 100%;
}
.font_size_lg {
  font-size: 120%;
}
.font_size_xl {
  font-size: 145%;
}
.font_bold {
  font-weight: 600;
}
/*基礎フォントサイズ*/
:root {
  --text-size_lv1: clamp(2.6rem, 2.43rem + 0.44vw, 3rem);
  --text-size_lv2: clamp(2.4rem, 2.23rem + 0.44vw, 2.8rem);
  --text-size_lv3: clamp(2rem, 1.83rem + 0.44vw, 2.4rem);
  --text-size_lv4: 1.8rem;

  --lh-heading: 1.35;
  --lh-base: 1.7;
  --lh-loose: 1.8;
}
.section_heading_1 {
  font-size: var(--text-size_lv1);
  margin-bottom: 0.8em;
  line-height: var(--lh-heading);
  letter-spacing: 0.05em;
}
.section_heading_2 {
  font-size: var(--text-size_lv2);
  margin-bottom: 0.8em;
  line-height: var(--lh-heading);
}
.section_heading_3 {
  font-size: var(--text-size_lv3);
  margin-bottom: 0.7em;
  line-height: var(--lh-heading);
}
.section_heading_4 {
  font-size: var(--text-size_lv4);
  margin-bottom: 0.6em;
  line-height: var(--lh-base);
}

/* 行間のユーティリティクラス */
.lh_heading {
  line-height: var(--lh-heading) !important;
}
.lh_base {
  line-height: var(--lh-base) !important;
}
.lh_loose {
  line-height: var(--lh-loose) !important;
}

/*背景色を持つタイトル*/
.heading_bg-color {
  background-color: #f2f2f2;
  padding: 0.4em;
}
/*

TEXT ALIGN (テキスト配置)
 */

/* --- 0px〜 --- */
body .text_left {
  text-align: left;
}
body .text_center {
  text-align: center;
}
body .text_right {
  text-align: right;
}

/* --- 768px〜 --- */
@media (min-width: 768px) {
  body .tb_text_left {
    text-align: left;
  }
  body .tb_text_center {
    text-align: center;
  }
  body .tb_text_right {
    text-align: right;
  }
}

/* --- 1024px〜 --- */
@media (min-width: 1024px) {
  body .pc_text_left {
    text-align: left;
  }
  body .pc_text_center {
    text-align: center;
  }
  body .pc_text_right {
    text-align: right;
  }
}

/*下層メインビジュアル共通*/
.main_visual {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .main_visual {
    margin-top: 78px;
  }
}

/*下層テキスト共通*/

.page_main_copy {
  font-size: 1.4rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .page_main_copy {
    font-size: 1.5rem;
    text-align: center;
    line-height: 2;
  }
}
/**/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
  /*\*/ /*/
  display: inline-table;
  /* */
}
* html .clearfix {
  height: 1px;
  /*\*/ /*/
  height: auto;
  overflow: hidden;
  /**/
}
.mouseon_alpha a:hover img {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background-color: #fff;
}
/* =======================
		改行 ・出し分け
========================== */
.sp_br {
  display: block; /* SP用改行は表示 */
}
.tb_br,
.pc_br {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp_br {
    display: none; /* SP用改行を非表示 */
  }
  .tb_br {
    display: block; /* TB用改行を表示 */
  }
}
@media only screen and (min-width: 1024px) {
  .tb_br {
    display: none; /* TB用改行を非表示 */
  }
  .pc_br {
    display: block; /* PC用改行を表示 */
  }
}
.w_br {
  word-break: keep-all;
  overflow-wrap: break-word;
}
/* =================================
表示・非表示クラス設定 
==================================== */
/* sr_only: スクリーンリーダー専用 (visually hidden) */
.sr_only {
  position: absolute; /* 絶対位置指定 */
  width: 1px; /* 幅を最小限に */
  height: 1px; /* 高さを最小限に */
  padding: 0;
  margin: -1px; /* 負のマージンで視覚領域の外へ */
  overflow: hidden; /* はみ出した内容を隠す */
  clip: rect(0, 0, 0, 0); /* 旧ブラウザ対応用 */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
  border-width: 0;
}

/* ------------------------------------- */
/* デバイス別              */
/* ------------------------------------- */

/*　SP　*/
/* _on系: TBとPCはデフォルトで非表示 */
body .tb_on,
body .pc_on {
  display: none;
}
/* _on系: SPはデフォルトで表示 */
body .sp_on {
  display: block; /* 汎用的な block を指定。要素の特性に応じて inline-block, flex に変更可 */
}
/* _none系: SPで非表示 (sp_none) */
body .sp_none {
  display: none;
}
/* _none系: SPで表示 (tb_none, pc_none) */
body .tb_none,
body .pc_none {
  display: block; /* SP, TB, PCのどれかで表示するものはデフォルトで表示 */
}

/*　TB　768　*/
@media screen and (min-width: 768px) {
  /* _on系: SP非表示, TB表示 */
  body .sp_on {
    display: none;
  }
  body .tb_on {
    display: block;
  }
  /* .pc_on は none のまま */

  /* _none系: SP表示, TB非表示 */
  body .sp_none {
    display: block;
  } /* SP_noneがここで表示に切り替わる */
  body .tb_none {
    display: none;
  } /* TB_noneがここで非表示になる */
  /* .pc_none は block のまま */
}

/*　PC　1024　*/
@media screen and (min-width: 1024px) {
  /* _on系: TB非表示, PC表示 */
  body .tb_on {
    display: none;
  }
  body .pc_on {
    display: block;
  }

  /* _none系: TB表示, PC非表示 */
  body .tb_none {
    display: block;
  } /* TB_noneがここで再表示に切り替わる */
  body .pc_none {
    display: none;
  } /* PC_noneがここで非表示になる */
}
/* ------------------------------------- */
/* 言語別別              */
/* ------------------------------------- */
.language_on {
  display: none;
}

/* =======================
　 a　リンク (共通リセットとアクティブ/ホバーの定義)
========================== */
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.btn {
  align-items: center;
  appearance: unset;
  border: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  padding-inline: 1rem;
}
.btn_box {
  display: flex;
  justify-content: center;
  gap: 12px 32px;
  margin-inline: auto;
  flex-direction: row;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .btn_box {
    flex-direction: row;
  }
}
.btn_large {
  width: 100%;
}
.btn_tall {
  height: 100%;
}
:where(.btn_box .btn_large) {
  max-width: 460px;
}
.btn_primary {
  background: #333;
  padding: 10px 25px;
  color: #fff;
  border: 1px solid transparent;
  position: relative;
}
.btn_primary::before {
  content: "";
  background-image: url(/img/common/yazi_white.png);
  background-repeat: no-repeat;
  width: 6px;
  height: 8px;
  background-size: contain;
  position: absolute;
  left: 6px;
}
.btn_primary--gold {
  background: var(--primary-color);
}
.btn_primary--page_link::before {
  background-image: url(/image/common/ic_arrow_w.svg);
  width: 1.2em;
  height: 1.2em;
}
.btn_primary--no_ic {
  padding: 10px;
}
.btn_primary--no_ic::before {
  content: none;
}
.text_link a {
  background-image: url(/img/common/yazi_black.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 6px 8px;
  padding-left: 12px;
  line-height: 2;
  font-size: 1.3rem;
}
.external_link::after {
  width: 0.8em;
  height: 0.9em;
  display: inline-block;
  content: "";
  background-size: contain;
  vertical-align: middle;
  background-image: url(/img/common/img_externalLink.svg);
  margin-left: 3px;
  margin-right: 2px;
  transform: translateY(-0.05em);
  background-repeat: no-repeat;
  margin-bottom: 0.1em;
}
.external_link_w {
  background-image: url(/img/common/img_externalLink_w.svg);
}
.is-underline-hover-remove {
  text-decoration: underline;
}
.is-hover-effect {
  cursor: pointer;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  .btn:hover {
    opacity: 0.7;
  }
  .is-underline-hover-remove:hover {
    text-decoration: none;
    opacity: 1;
  }
  .is-hover-effect:hover {
    opacity: 0.7;
  }
}
/*余白管理*/

/* ==========================================================================
  MARGIN (外側余白)
 ========================================================================== */
:root {
  --space-none: 0;

  /* ▼ レスポンシブ余白の定義 (スマホの最小値 〜 PCの最大値) */
  --space-xs: clamp(8px, 1vw + 4px, 12px);
  --space-sm: clamp(16px, 1.5vw + 10px, 24px);
  --space-md: clamp(24px, 2vw + 16px, 40px);
  --space-lg: clamp(32px, 3vw + 20px, 60px);
  --space-xl: clamp(40px, 4vw + 24px, 80px);
  --space-2xl: clamp(48px, 5vw + 28px, 120px);
}
/* ----------------------------------------------------
  固定値ユーティリティ (Fixed Margins)
  ※ コンポーネントの内側の小さな隙間などに使用
---------------------------------------------------- */
.mt_none {
  margin-top: 0;
}
.mt_4 {
  margin-top: 4px;
}
.mt_8 {
  margin-top: 8px;
}
.mt_16 {
  margin-top: 16px;
}
.mt_24 {
  margin-top: 24px;
}
.mt_32 {
  margin-top: 32px;
}
.mt_40 {
  margin-top: 40px;
}

.mb_none {
  margin-bottom: 0;
}
.mb_4 {
  margin-bottom: 4px;
}
.mb_8 {
  margin-bottom: 8px;
}
.mb_16 {
  margin-bottom: 16px;
}
.mb_24 {
  margin-bottom: 24px;
}
.mb_32 {
  margin-bottom: 32px;
}
.mb_40 {
  margin-bottom: 40px;
}
/* ----------------------------------------------------
  可変値ユーティリティ (Fluid Margins)
  ※ 大きなブロック間など、PCで広く取りたい場所に使用
  ※ clamp()で自動計算されるため、tb_やpc_のメディアクエリは不要！
---------------------------------------------------- */
.mt_xs {
  margin-top: var(--space-xs);
}
.mt_sm {
  margin-top: var(--space-sm);
}
.mt_md {
  margin-top: var(--space-md);
}
.mt_lg {
  margin-top: var(--space-lg);
}
.mt_xl {
  margin-top: var(--space-xl);
}
.mt_2xl {
  margin-top: var(--space-2xl);
}
.mb_xs {
  margin-bottom: var(--space-xs);
}
.mb_sm {
  margin-bottom: var(--space-sm);
}
.mb_md {
  margin-bottom: var(--space-md);
}
.mb_lg {
  margin-bottom: var(--space-lg);
}
.mb_xl {
  margin-bottom: var(--space-xl);
}
.mb_2xl {
  margin-bottom: var(--space-2xl);
}
/* ----------------------------------------------------
  GAPユーティリティ (Flex/Grid用)
---------------------------------------------------- */
/* 固定値 GAP */
.gap_none {
  gap: 0;
}
.gap_8 {
  gap: 8px;
}
.gap_16 {
  gap: 16px;
}
.gap_24 {
  gap: 24px;
}

/* 可変値 GAP (メディアクエリ不要) */
.gap_xs {
  gap: var(--space-xs);
}
.gap_sm {
  gap: var(--space-sm);
}
.gap_md {
  gap: var(--space-md);
}
.gap_lg {
  gap: var(--space-lg);
}
.gap_xl {
  gap: var(--space-xl);
}
/* ----------------------------------------------------
  0リセット用ユーティリティ (デバイス別)
  ※ レイアウトの折り返し等で、特定のデバイスだけ余白を消したい場合に使用
---------------------------------------------------- */
/* 全デバイス共通で消す */
.mt_none {
  margin-top: 0;
}
.mb_none {
  margin-bottom: 0;
}
.gap_none {
  gap: 0;
}

/* --- 768px〜：タブレット以上で消す --- */
@media (min-width: 768px) {
  .tb_mt_none {
    margin-top: 0;
  }
  .tb_mb_none {
    margin-bottom: 0;
  }
  .tb_gap_none {
    gap: 0;
  }
}

/* --- 1024px〜：PC以上で消す --- */
@media (min-width: 1024px) {
  .pc_mt_none {
    margin-top: 0;
  }
  .pc_mb_none {
    margin-bottom: 0;
  }
  .pc_gap_none {
    gap: 0;
  }
}
/* ----------------------------------------------------
   大セクション間の共通余白
---------------------------------------------------- */
:where(.main_section) {
  /* デフォルトは大きな余白を使用 */
  margin-top: var(--space-xl);
}
/* =======================
		container
========================== */
.container {
  width: 90%;
  max-width: 1100px;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
.container_narrow_width {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.topicpath {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.topicpath li {
  float: left;
  margin: 0 7px 0 0;
}
select,
input {
  -webkit-appearance: none;
}
/* ==========================================
   ディスプレイ
   ========================================== */
/* Display Mode */
.block {
  display: block;
}
.inline_block {
  display: inline-block;
}
.inline {
  display: inline;
}
/* =======================
	レイアウト 
  
  / flex / grid
========================== */

/* --- Flexbox --- */
.flex {
  display: flex;
}
.flex_column {
  display: flex;
  flex-direction: column;
}
.flex_wrap {
  display: flex;
  flex-wrap: wrap;
}
.justify_center {
  justify-content: center;
}
.items_center {
  align-items: center;
}
/*grid*/
.grid {
  display: grid;
}

/* TB以上で等幅横並び (grid) */
@media (min-width: 768px) {
  .tb_grid_column {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

/* PC以上で横並び(grid)  */
@media (min-width: 1024px) {
  .pc_grid_column {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}
/* =======================
		table
========================== */
table.tbl_basic {
  width: 100%;
  border-top: 1px solid #9aa7c1;
  border-bottom: 1px solid #9aa7c1;
}

table.tbl_basic tr th,
table.tbl_basic tr td {
  padding: 10px 15px;
  vertical-align: top;
  font-weight: normal;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
  table.tbl_basic tr th,
  table.tbl_basic tr td {
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  table.tbl_basic tr th,
  table.tbl_basic tr td {
    padding: 0.5em;
  }
}

@media only screen and (min-width: 1101px) {
  table.tbl_basic tr th,
  table.tbl_basic tr td {
    font-size: 116%;
  }
}

@media print {
  table.tbl_basic tr th,
  table.tbl_basic tr td {
    font-size: 116%;
  }
}

.ie8 table.tbl_basic tr th,
.ie8 table.tbl_basic tr td {
  font-size: 116%;
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
  table.tbl_basic tr th,
  table.tbl_basic tr td {
    font-size: 108%;
  }
}

table.tbl_basic tr th {
  text-align: center;
  white-space: nowrap;
}

table.tbl_basic tr th span {
  display: block;
  padding: 0.2em 0.5em;
  background: #4f9d82;
  color: #fff;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  -ms-border-radius: 2em;
  -o-border-radius: 2em;
  border-radius: 2em;
  letter-spacing: 0.06em;
}
/* ==========================================================================
   common.JS連動スタイル (機能用スタイル)
   JSと連動して動くための土台設定
   ========================================================================== */
.js-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.js-accordion-content > * {
  min-height: 0;
}
/* 開いた時 */
.js-accordion-content.is-open {
  grid-template-rows: 1fr;
}
/* =======================
		.to_top
========================== */
.to_top {
  width: 90%;
  max-width: 1100px;
  text-align: right;
  margin: 60px auto 0;
}
.to_top a {
  background-image: url(/img/common/yazi_black.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 6px 8px;
  padding-left: 12px;
  line-height: 2;
  font-size: 1.3rem;
}
/* /* ==========================================================================
  Header Base
========================================================================== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease;
}

/* ==========================================================================
  Header SP (Mobile)
========================================================================== */
.header-sp {
  height: 60px;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.2s ease-in;
}
.header-sp.is-fixed {
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease-in;
}
.header-sp.is-open {
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease-in;
}

/* --- トップエリア --- */
.header-sp_top {
  display: grid;
  grid-template-columns: 1fr 98px 70px;
  height: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ロゴ */
.header-sp_logo_img--black {
  display: none;
}
.header-sp.is-fixed .header-sp_logo_img--white,
.header-sp.is-open .header-sp_logo_img--white,
body:has(.ornaments) .header-sp_logo_img--white {
  display: none;
}
.header-sp.is-fixed .header-sp_logo_img--black,
.header-sp.is-open .header-sp_logo_img--black,
body:has(.ornaments) .header-sp_logo_img--black {
  display: block;
}
.header-sp_logo_link {
  display: block;
  padding: 10px 0 0 17px;
  width: 134px;
}

/* 予約ボタン */
.header-sp_reserve_inner {
  display: none;
  width: 100%;
  height: 100%;
}
.header-sp_reserve_link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  font-size: 1.4rem;
  background-color: var(--primary-color);
}

/* 言語選択 */
/* WOVN 共通 */
.wovn-switch {
  text-align: center;
  display: inline-block;
}
.wovn-languages_trigger {
  position: relative;
  padding: 10px 5px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.wovn-languages_trigger:before {
  content: "";
  background-image: url(/image/common/img_language_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 14px;
  height: 14px;
}
.wovn-accordion-content_inner {
  display: grid;
  gap: 4px;
}
.wovn-accordion-item {
  position: relative;
  padding: 10px 2px;
}
.wovn-accordion-item.selected::before {
  content: "●";
  color: #fff;
  font-size: 0.6em;
  position: absolute;
  left: 6px;
  top: 50%;
  translate: 0 -50%;
}
/* SP言語選択 */
.header-sp_lang {
  position: absolute;
  color: #fff;
  right: 100px;
  top: 14px;
}
.header-sp_lang-inner {
  background-color: rgba(var(--primary-color-rgb), 0.5);
}
.header-sp.is-fixed .header-sp_lang,
.header-sp.is-open .header-sp_lang {
  opacity: 0;
  transition: all 0.2s ease-in;
  visibility: hidden;
}
.header-sp_lang_item.selected::before {
  color: #fff;
}

/* メニューボタン */
.header-sp_menu {
  background-color: #fff;
}
.header-sp_menu_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
}
.header-sp_menu_inner {
  width: 35px;
  height: 17px;
  position: relative;
}
.header-sp_menu_bar {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--primary-color);
  transition: 0.35s ease-in-out;
}
.header-sp_menu_bar:nth-child(1) {
  top: 0;
}
.header-sp_menu_bar:nth-child(2) {
  top: 8px;
}
.header-sp_menu_bar:nth-child(3) {
  top: 16px;
}

/* メニューオープン時の×印 */
.header-sp.is-open .header-sp_menu_bar:nth-child(1) {
  top: 9px;
  transform: rotate(315deg);
}
.header-sp.is-open .header-sp_menu_bar:nth-child(2) {
  width: 0;
  left: 50%;
}
.header-sp.is-open .header-sp_menu_bar:nth-child(3) {
  top: 9px;
  transform: rotate(-315deg);
}

/* --- SP: グローバルナビ (sp-gnav) --- */
.sp-gnav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  display: none;
  background-color: rgba(255, 255, 255, 1);
  overflow-y: auto;
}
.sp-gnav {
  padding: 90px 0;
  display: grid;
  grid-template-columns: 8% 1fr 8%;
  gap: 40px 0;
}
.sp-gnav > * {
  grid-column: 2;
}
.header.is-open .sp-gnav {
  opacity: 1;
  visibility: visible;
}

.sp-gnav_main-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--right-gray);
}
.sp-gnav_item {
  border-bottom: 1px solid var(--right-gray);
}
.sp-gnav_target {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 1.4rem;
  text-align: left;
  background: none;
  border: none;
}
.sp-gnav_accordion-inner.is-open {
  padding-bottom: 20px;
}
.sp-gnav_sub-list {
  padding-left: 16px;
  font-size: 1.2rem;
}
.sp-gnav_sub-link {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  position: relative;
}
.sp-gnav_sub-link::before {
  background: #666666;
  content: " ";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  z-index: -1;
}

/* アコーディオンの矢印 */
.sp-gnav_accordion {
  position: relative;
}
.sp-gnav_accordion::before,
.sp-gnav_accordion::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 8px;
  border-top: 1px solid #666666;
  transition: transform 0.3s ease-in-out;
  width: 12px;
  top: 50%;
}
.sp-gnav_accordion::before {
  transform: translate(-50%) rotate(90deg);
}
.sp-gnav_accordion::after {
  transform: translateX(-50%);
}
.sp-gnav_accordion[aria-expanded="true"]::before {
  transform: translate(-50%) rotate(180deg);
}
.sp-gnav_accordion[aria-expanded="true"]::after {
  opacity: 0;
}
/* コンタクト */
.sp-gnav_contact {
  grid-column: 1 / -1;
  padding-inline: 8%;
  background-color: #f8f8f8;
  padding: 16px 0;
  text-align: center;
}
.sp-gnav_contact a {
  color: var(--primary-color);
  font-size: 2.4rem;
}
.sp-gnav_contact-note {
  font-size: 1.4rem;
  display: block;
}
/* サポートリンク */
.sp-gnav_support-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-auto-rows: 47px;
  gap: 16px;
}
.sp-gnav_support-item {
  border: 1px solid var(--right-gray);
  text-align: center;
  font-size: 1.2rem;
}
.sp-gnav_support-link {
  padding: 4px;
  height: 100%;
  width: 100%;
  line-height: 1.5;
}
/* SNSリンク */
.sp-gnav_social {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.sp-gnav_social-item {
  max-width: 45px;
}
/* 言語導線 */
.sp-gnav_lang-list {
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  display: grid;
}
.sp-gnav_lang-item {
  text-align: center;
  line-height: 1.1;
  font-size: 1.3rem;
  padding: 4px;
}
.sp-gnav_lang-item:not(:first-child) {
  border-left: 1px solid var(--right-gray);
}
.sp-gnav_lang-item.selected {
  color: var(--primary-color);
}
/* ==========================================================================
   Header PC (Desktop)
========================================================================== */
.header-pc {
  display: none;
  background: #fff;
}

@media (min-width: 1024px) {
  .header-pc {
    display: block;
    height: 78px;
  }

  .header-pc_inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: min(16%, 180px) auto;
    align-items: center;
    gap: 10px 40px;
    width: 97%;
    height: 78px;
  }
  .header-pc_nav {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 12px 20px;
    align-items: center;
    justify-content: end;
    height: 100%;
  }
  /* --- PC トップナビ (pc-nav-top) --- */
  .pc-nav-top {
    justify-self: end;
    align-self: end;
  }
  .pc-nav-top_list {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 1.2rem;
  }
  .pc-nav-top_lang-list {
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
  }
  .pc-nav-top_target {
    padding: 0 8px;
    border-left: 1px solid var(--right-gray);
  }
  .pc-nav-top_lang {
    position: relative;
  }
  .pc-nav-top_lang-inner {
    display: grid;
    gap: 4px;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .pc-nav-top_social-icon {
    width: 17px;
  }
  .pc-nav-top_lang-trigger:before {
    background-image: url(/image/common/img_language_b.svg);
  }
  .pc-nav-top_lang-list-inner {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .pc-nav-top_lang-item.selected::before {
    color: #333333;
  }
  /* --- PC グローバルナビ (pc-gnav) --- */
  .pc-gnav {
    height: 100%;
  }
  .pc-gnav_list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(max-content, 1fr);
    padding: 0;
    height: 100%;
  }
  .pc-gnav_item {
    font-size: clamp(1.4rem, 1.17rem + 0.22vw, 1.6rem);
  }
  .pc-gnav_target {
    position: relative;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }
  .pc-gnav_item:last-child .pc-gnav_target {
    padding-right: 0;
  }
  /* ホバー時の下線アニメーション */
  .pc-gnav_accordion-trigger::after,
  .pc-gnav_sub-target > span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s;
  }
  .pc-gnav_sub-target > span::after {
    height: 2px;
  }
  .pc-gnav_sub-target > span {
    position: relative;
  }
  .pc-gnav_accordion-trigger:hover::after,
  .pc-gnav_sub-target:hover > span::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* PCサブメニュー（メガメニュー形式） */
  .pc-gnav_sub-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    height: 97px;
  }
  .pc-gnav_sub-item {
    height: 100%;
  }
  .pc-gnav_sub-target {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2em;
    position: relative;
  }
  .pc-gnav_item:hover .pc-gnav_sub-list {
    opacity: 1;
    visibility: visible;
  }

  /* --- PC 予約ボタン --- */
  .header-pc_reserve {
    grid-area: 1 / 2 / 3 / 3;
  }
  .header-pc_reserve-btn {
    padding: 1em;
    min-width: 142px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 1.6rem;
  }
}

/*----------------------------------------
	.recommend_plan
----------------------------------------*/
.recommend_plan_title {
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
  margin-bottom: 10px;
}
.recommend_plan_wrap {
  display: grid;
}
.recommend_plan_item + .recommend_plan_item {
  border-top: 1px solid #e5e5e5;
}
.recommend_plan_item {
  display: grid;
  grid-template:
    "image name" auto
    "image text" 1fr
    / 35% 1fr;
  gap: 5px 16px;
  padding: 20px 2px;
}
.plan_img {
  grid-area: image;
}
.plan_name {
  grid-area: name;
  padding: 0;
  color: #ab8334;
  font-weight: bold;
  line-height: 1.6;
}
.plan_text {
  grid-area: text;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .recommend_plan_wrap {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    column-gap: 16px;
  }
  .recommend_plan_item {
    grid-template: inherit;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding: 0;
  }
  .recommend_plan_item + .recommend_plan_item {
    border-top: none;
  }
  .plan_img,
  .plan_name,
  .plan_text {
    grid-area: initial;
  }
}
/* =======================
	　.bestrate
========================== */
.bestrate_box {
  background-color: #ad9248;
  padding: 1.2em 0.5em;
  margin: 30px auto 0px;
  font-weight: 600;
  box-sizing: border-box;
  line-height: 1.35;
  text-box: trim-both cap alphabetic;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25em 1em;
}
.bestrate_box_title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}
.bestrate_box_text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
}
.tripla_tourbuilder {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .bestrate_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7em 0.5em;
  }
}
/*----------------------------------------
	.service
----------------------------------------*/
.service_list {
  display: grid;
  row-gap: 40px;
}
.service_img {
  margin-bottom: 15px;
}
.service_info {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .service_list {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    column-gap: 16px;
  }
  .service_item {
    grid-auto-flow: row;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
}
/* =======================
footer
========================== */
.footer_inner.section_inner {
  width: 100%;
  border-top: 1px solid var(--right-gray);
  padding: 0;
  text-align: center;
}

/* サイト内リンク (SP: アコーディオン) */
.footer_nav {
  padding: 10px 0;
}
.footer_nav_trigger {
  font-weight: bold;
  font-size: 1.5rem;
  padding: 4px 0;
  width: 100%;
  text-align: center;
}
.footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
}
.footer_nav_link {
  display: block;
  line-height: 2.3;
  padding: 4px 8px;
}

/* 採用情報 */
.footer_recruit {
  border-top: 1px solid var(--right-gray);
  padding: 20px 0;
}
.footer_recruit_img {
  width: 230px;
}

/* グループリンク */
.footer_group {
  border-top: 1px solid var(--right-gray);
  padding: 30px 0;
}
.footer_group_top {
  width: 23%;
  max-width: 100px;
  margin: 0 auto;
}
.footer_group_list {
  display: grid;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 900px;
}
.footer_group_link {
  display: flex;
  padding: 10px 4px;
  border: 1px solid var(--right-gray);
  justify-content: center;
  align-items: center;
}

/* SNS */
.footer_social {
  margin: 0 auto 35px;
}
.footer_social_list {
  display: flex;
  gap: 25px;
  justify-content: center;
}
.footer_social_item {
  width: 11%;
  max-width: 45px;
}

/* ホテル情報 */
.footer_info {
  padding: 20px 0;
  border-top: 1px solid var(--right-gray);
  border-bottom: 1px solid var(--right-gray);
}
.footer_info > p {
  margin: 5px 0;
}

/* 運営会社・コピーライト */
.group_footer {
  width: 70px;
  margin: 15px auto 10px;
}
.footer_copyright {
  padding: 0 0 15px;
  font-size: 1rem;
  text-align: center;
  display: block;
  letter-spacing: 0px;
}

@media screen and (min-width: 768px) {
  .footer_recruit {
    display: flex;
    justify-content: center;
    width: auto;
  }
  .footer_group_top {
    width: 15%;
    padding: 0;
  }
  .footer_group_list {
    display: flex;
    justify-content: center;
  }
  .footer_group_item {
    width: 32%;
  }
  .footer_social_item {
    width: 6%;
  }
  .footer_info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .footer_nav {
    padding: 30px 0;
  }
  /* サイト内リンクを横並びに（アコーディオン解除） */
  .footer_nav_content.js-accordion-content {
    grid-template-rows: none;
    overflow: visible;
  }
  .footer_nav_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 0;
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .footer_nav_item {
    line-height: 1.5;
  }
  .footer_nav_link {
    padding: 0 14px;
    border-left: 1px solid var(--right-gray);
    border-right: 1px solid var(--right-gray);
    line-height: 1.5;
    margin-right: -1px;
  }
  .footer_recruit {
    margin: 0 auto 30px;
    padding: 0;
    border-top: none;
  }
  .footer_group {
    padding: 35px 0;
  }
  .footer_group_list {
    margin-top: 30px;
  }
  .footer_group_top {
    width: 100px;
  }
  .footer_social_item {
    width: 4%;
  }
  .footer_corporate {
    margin: 20px auto;
  }
}

/*----------------------------------------
	.pagetop
----------------------------------------*/

.pageTop {
  display: none;
}
@media screen and (min-width: 768px) {
  .pageTop {
    position: fixed;
    right: 20px;
    bottom: 2%;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 9999;
    display: block;
  }
  .pageTop a {
    padding: 14px;
    display: block;
    background-color: rgba(199, 169, 87, 0.6);
  }
  .pageTop a:hover {
    background-color: rgba(199, 169, 87, 0.6);
  }
  .pageTop a img {
    vertical-align: middle;
  }
  .pc_info {
    width: 88%;
  }
}

/* =======================
	　info
========================== */
.info_item_wrap {
  display: grid;
  gap: 15px;
}
.info_item {
  border: 1px #ccc solid;
}
.info_item_link {
  display: block;
  width: 100%;
}
.info_item_title {
  padding: 10px 25px;
  text-align: center;
}
.info_item_accordion_trigger {
  position: relative;
}
.info_item_accordion_trigger::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 2px;
  border-top: 1px solid #333;
  transition: transform 0.3s ease-in-out;
  width: 12px;
  top: 50%;
  transform: translate(-50%) rotate(90deg);
}
.info_item_accordion_trigger::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0px;
  border-top: 1px solid #333;
  transition: transform 0.3s ease-in-out;
  width: 14px;
  top: 50%;
  transform: translateX(-50%);
}
.info_item_accordion_trigger.active::before {
  transform: translate(-50%) rotate(180deg);
}
.info_item_accordion_trigger.active::after {
  opacity: 0;
}
.info_item_accordion_body {
  border-top: 1px #ccc solid;
  display: none;
  margin: 0 3%;
  padding: 10px 0;
}
.info_item_body_inner {
  padding: 10px;
  text-align: left;
}
.info_item_body_txt:last-child {
  margin-bottom: 0;
}
.info_item_body_txt > div {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.info_item_body_txt > div img {
  display: inline-block;
  width: 560px;
  height: auto;
  max-width: none;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .info_item_accordion_trigger::before {
    right: 7px;
  }
  .info_item_accordion_trigger::after {
    right: 5px;
  }
}
/* =======================
		問い合わせ
========================== */

.reservation_box {
  padding: var(--space-sm) min(5%, 40px);
  border: solid 1px #e5e5e5;
  width: 90%;
  margin-inline: auto;
  max-width: 850px;
  background-color: #fff;
}
.reservation_body {
  margin-top: 22px;
}
.reservation_hotel-name {
  font-size: 1.6rem;
}
.reservation_phon {
  font-size: var(--text-size_lv2);
  margin-top: 4px;
}
.reservation_ic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation_ic::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
  height: 1em;
  display: inline-block;
  margin-right: 0.5em;
}
.reservation_phon_link::before {
  background-image: url(../img/common/phon_img_001.gif);
  aspect-ratio: 44 / 79;
}
.reservation_mail_link::before {
  background-image: url(../img/common/mail_img_001.gif);
  aspect-ratio: 13 / 8;
}
.reservation_mail {
  font-size: 1.6rem;
  margin-top: 16px;
}
.reservation_faq {
  margin-top: 16px;
}
/* =======================
		ページリンク
========================== */
.page_link_box {
  line-height: 1.35;
}
.page_link_btn {
  min-width: 165px;
}
@media screen and (min-width: 768px) {
  .page_link_box {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .page_link_btn {
    flex: 1;
  }
}
/* =================================
            .style-wrapper-99c7fa 
    ===================================== */
#tripla-cookie-consent .style-wrapper-99c7fa {
  text-align: center;
  font-family:
    "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #3b3b3b;
  line-height: 1.5;
  letter-spacing: 0;
  font-feature-settings: normal;
  min-width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 13px 15px;
}
#tripla-cookie-consent .style-wrapper-99c7fa a {
  color: #3b3b3b;
  text-decoration: underline;
}
#tripla-cookie-consent .style-wrapper-99c7fa a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
  font-family:
    "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #3b3b3b;
  line-height: 1.5;
  letter-spacing: 0;
  font-feature-settings: normal;
}
#tripla-cookie-consent .style-wrapper-99c7fa {
  text-align: left;
}
#tripla-cookie-consent .style-wrapper-99c7fa .button-btn-f51c1a {
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  #tripla-cookie-consent .style-wrapper-99c7fa {
    display: grid;
    grid-template-columns: auto 0 141px;
    align-items: center;
    column-gap: 13px;
    justify-content: center;
    padding: 13px 35px 13px;
    font-size: 13px;
  }
  #tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
    line-height: 1.3;
    font-size: 14px;
  }
  #tripla-cookie-consent .style-wrapper-99c7fa .button-btn-f51c1a {
    width: 141px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #tripla-cookie-consent .style-wrapper-99c7fa {
    font-size: 14px;
    padding: 10px 55px;
  }
  #tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
    line-height: 1;
  }
}
