@charset "UTF-8";
/* ===================================================================
CSS information
file name  : common.css
style info : 基本・共通設定
=================================================================== */

/* =======================
　基本設定
========================== */
* {
  -webkit-appearance: none;
}
html {
  max-width: 100%;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  background-color: #fff;
  color: #000000;
}
.mouse body a:hover,
.touch body a.touchstart {
  text-decoration: none;
}
body img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-touch-callout: none;
  vertical-align: middle;
}
body .is-auto_img {
  width: auto;
  margin: auto;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
}
/* =======================
	定義
========================== */
/* カラ－　*/
:root {
  /* --primary-color: */
  --yellow: #fdd000;
  --gold: #c9ac5e;
  --red: #cc3333;
  --gray: #cccccc;
  --light_gray: #eeeeee;
}
/* スクロールバー幅の初期値 */
:root {
  --scrollbar-width: 0px;
}
/* =======================
	レイアウト
========================== */
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
@media only screen and (min-width: 768px) {
  .flex_view_pc-tab {
    display: flex;
  }
  .grid_view_pc-tab {
    display: grid;
  }
}
@media only screen and (min-width: 1024px) {
  .flex_view_pc {
    display: flex;
  }
  .grid_view_pc {
    display: grid;
  }
}
.ml_10 {
  margin-left: 10px;
}
.ml_20 {
  margin-left: 20px;
}
.ml_30 {
  margin-left: 30px;
}
.ml_40 {
  margin-left: 40px;
}
.ml_50 {
  margin-left: 50px;
}
.ml_60 {
  margin-left: 60px;
}
.ml_70 {
  margin-left: 70px;
}
.ml_80 {
  margin-left: 80px;
}
.ml_90 {
  margin-left: 90px;
}
.mr_10 {
  margin-right: 10px;
}
.mr_20 {
  margin-right: 20px;
}
.mr_30 {
  margin-right: 30px;
}
.mr_40 {
  margin-right: 40px;
}
.mr_50 {
  margin-right: 50px;
}
.mr_60 {
  margin-right: 60px;
}
.mr_70 {
  margin-right: 70px;
}
.mr_80 {
  margin-right: 80px;
}
.mr_90 {
  margin-right: 90px;
}
.mt_10 {
  margin-top: 10px;
}
.mt_20 {
  margin-top: 20px;
}
.mt_30 {
  margin-top: 30px;
}
.mt_40 {
  margin-top: 40px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_60 {
  margin-top: 60px;
}
.mt_70 {
  margin-top: 70px;
}
.mt_80 {
  margin-top: 80px;
}
.mt_90 {
  margin-top: 90px;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 60px;
}
.mb_70 {
  margin-bottom: 70px;
}
.mb_80 {
  margin-bottom: 80px;
}
.mb_90 {
  margin-bottom: 90px;
}
/* =======================
	font
========================== */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%;
}
body {
  font-size: clamp(16px, 1rem + 0.1vw, 18px);
  font-weight: 400;
  background-color: #fff;
  color: #000000;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}
em {
  font-style: normal;
  letter-spacing: 0.1rem;
}
input,
select,
textarea {
  font-size: 100%;
}
body,
pre,
input,
textarea,
select {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-weight: normal;
  line-height: 1.4;
}
h1 {
  font-size: clamp(2.6rem, calc(2rem + 1.6vw), 5.2rem);
}

h2 {
  font-size: clamp(2rem, calc(2rem + 0.8vw), 3.4rem);
}

h3 {
  font-size: clamp(2rem, calc(2rem + 0.6vw), 3.4rem);
}
h4 {
  font-size: clamp(1.6rem, calc(1.5rem + 0.24vw), 1.8rem);
}
.text_xs {
  font-size: 80%;
}
.text_s {
  font-size: 90%;
}
.text_m {
  font-size: 100%;
}
.text_l {
  font-size: 110%;
}
.text_xl {
  font-size: 120%;
}
.text_2xl {
  font-size: 150%;
}
.text_3xl {
  font-size: 200%;
}
.font_bold {
  font-weight: 600;
}
.section_heading {
  text-align: center;
}
.section_heading {
  margin-bottom: 1em;
}
/* =======================
		改行 ・出し分け
========================== */
.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がここで非表示になる */
}
/* =======================
　 a　リンク (共通リセットとアクティブ/ホバーの定義)
========================== */
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
*:active {
  color: inherit;
  text-decoration: none;
}
*:link,
*:visited {
  color: inherit;
}
.is-hover-underline {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.is-hover-effect {
  cursor: pointer;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  .is-hover-effect:hover {
    opacity: 0.7;
  }
  .is-hover-underline:hover {
    text-decoration: none;
    opacity: 1;
  }
}
.external_link::after,
.btn_primary[target="_blank"]::after {
  width: 0.8em;
  height: 0.9em;
  display: inline-block;
  content: "";
  background-size: contain;
  vertical-align: middle;
  background-image: url(/image/common/ic_externalLink.svg);
  margin-left: 4px;
  transform: translateY(-0.05em);
  background-repeat: no-repeat;
}
.external_link_w[target="_blank"]::after {
  width: 0.8em;
  height: 0.9em;
  display: inline-block;
  content: "";
  background-size: contain;
  vertical-align: middle;
  background-image: url(/image/common/ic_externalLink_w.svg);
  margin-left: 4px;
  transform: translateY(-0.05em);
  background-repeat: no-repeat;
}
.btn.external_link[target="_blank"]::after,
.btn.external_link_w[target="_blank"]::after {
  transform: none;
}
/* =======================
	　ボタン
========================== */
.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_primary {
  background: var(--yellow);
  padding: 1em;
  border-radius: 10px;
  display: inline-block;
  position: relative;
}
.btn_primary .icon_arrow {
  position: absolute;
  bottom: 1.5em;
  right: 16px;
}
.btn_primary:has(> .icon_arrow) {
  padding: 1em 80px;
}
.btn_large {
  width: 100%;
}
.btn_full {
  width: 100%;
  height: 100%;
  padding-inline: unset;
}

.btn_box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .btn_box {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: row;
  }
  .btn_box .btn {
    max-width: 352px;
  }
}
/* ---------------------------------
 * Iタグの疑似要素 (矢印の線)
 * --------------------------------- */
.icon_arrow {
  position: relative;
  transition: transform 0.2s ease-out;
  background: #000;
  width: 64px;
  height: 2px;
  display: inline-block;
  vertical-align: baseline;
  margin-left: 2em;
}
.icon_arrow::before {
  content: "";
  position: absolute;
  right: 0;
  background-color: #000;
  transition: transform 0.2s ease-out;
  height: 2px;
  width: 24px;
  transform-origin: 100% 50%;
  transform: rotate(25deg); /* 左上へ */
}
/* ---------------------------------
 * Hover時の動作 (AタグがHoverしたら、Iタグの子要素が動く)
 * --------------------------------- */
a:has(.icon_arrow):hover .icon_arrow {
  transform: translateX(0.5em);
}
/* ---------------------------------
 * Hover時の動作
 * --------------------------------- */
.is-hover_arrow:hover::before {
  transform: translateX(5px);
}
.is-hover_arrow:hover::after {
  transform: rotate(25deg) translate(5px, -2px);
}
*:has(.is-hover_arrow) .is-hover_arrow:hover::before {
  transform: translateX(5px);
}
*:has(.is-hover_arrow) .is-hover_arrow:hover::after {
  transform: rotate(25deg) translate(5px, -2px);
}
/* =======================
		Accordion details summary
========================== */
.accordion_js-summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

.accordion_js-summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.accordion_js-summary_inner {
  cursor: pointer;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding-inline: 24px;
  position: relative;
}
.accordion_js-icon {
  display: block;
  position: absolute;
  width: 22px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
  right: 0;
}
/* is-openedクラスが付与されたときのスタイル */
.accordion_js-details.is-opened .accordion_js-icon {
  transform: rotate(180deg);
}
/* アイコンのバーのスタイル */
.accordion_js-icon::before,
.accordion_js-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 13px;
  height: 1px;
  background-color: var(--gray);
}
.accordion_js-icon::before {
  left: 0;
  transform: rotate(45deg);
}
.accordion_js-icon::after {
  right: 0;
  transform: rotate(-45deg);
}

/* --------アコーディオンの中身のスタイル-------- */
.accordion_js-content {
  overflow: hidden;
}

.accordion_js-content_inner {
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: left;
}

/* =======================
		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;
}
/* =======================
	　ヘッダー
========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: rgb(149 157 165 / 30%) 0px 3px 9px;
  padding-right: var(--scrollbar-width);
}
.header_content {
  display: grid;
  background-color: #fff;
  grid-auto-flow: column;
  grid-template-columns: auto 0 58px 58px 58px;
  align-items: center;
  height: 55px;
  column-gap: 2px;
}
.header_logo {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-auto-flow: column;
  grid-template-columns: 34px minmax(auto, 170px);
  height: 100%;
  padding: 0 12px;
  max-width: fit-content;
}
.header_language {
  position: relative;
  background-color: var(--gray);
  width: 100%;
  height: 100%;
}
.header_language_trigger {
  display: flex;
  flex-direction: column;
  padding: 8px 4px;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  line-height: 1.2;
  font-size: 1.4rem;
}
.header_language_trigger > img {
  width: 17px;
}
.header_language > .header_language_list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: grid;
  background-color: #eeeeeedd;
  width: 100%;
  text-align: center;
  position: absolute;
  width: 120%;
  right: 0;
  width: fit-content;
}
.header_language.is-open > .header_language_list {
  max-height: 100px;
  padding-bottom: 4px;
}
.header_language_item {
  padding: 0.5em 1.3em 0.5em;
  cursor: pointer;
}
.header_language_item.is-selected {
  position: relative;
}
.header_language_item.is-selected::before {
  content: "●";
  color: var(--yellow);
  font-size: 0.5em;
  position: absolute;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
}
.header_reserve {
  width: 100%;
  height: 100%;
}
.header_reserve_btn {
  display: flex;
  flex-direction: column;
  padding: 7px 4px;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.4;
  background-color: var(--yellow);
  letter-spacing: 0;
}
.header_reserve_btn > img {
  width: 24px;
}
.header_inlineNav {
  visibility: hidden;
  height: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .header_content {
    display: grid;
    grid-template-columns: auto 1fr 58px min(10%, 120px) 58px;
    max-width: 1920px;
    margin: auto;
  }
  .header_inlineNav {
    visibility: initial;
    height: 100%;
    padding: initial;
    display: flex;
    justify-content: flex-end;
  }
  .header_inlineNav_list {
    display: flex;
    grid-auto-flow: column;
    height: 100%;
    justify-content: flex-end;
    margin-right: 20px;
  }
  .header_inlineNav_item {
    height: 100%;
  }
  .header_inlineNav_link {
    width: 100%;
    height: 100%;
    padding: 0 min(1.5vw, 40px);
  }
  .header_reserve_btn {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: inherit;
    font-size: inherit;
  }
}
/* ---------------------------------------
　ハンバーガーメニュートリガー
/* -------------------------------------- */

.header_navTrigger {
  margin: auto;
  inset: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  padding: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.header_navTrigger_inner {
  position: relative;
  width: 32px;
  height: 25px;
}
.header_navTrigger_bar {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.header_navTrigger_bar:nth-child(1) {
  top: 0;
}
.header_navTrigger_bar:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.header_navTrigger_bar:nth-child(3) {
  bottom: 0;
}
.is-open .header_navTrigger_bar:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
  translate: 0 -50%;
}
.is-open .header_navTrigger_bar:nth-child(2) {
  width: 0;
  left: 50%;
  translate: 0;
}
.is-open .header_navTrigger_bar:nth-child(3) {
  top: 50%;
  bottom: initial;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
  translate: 0 -50%;
}
/* ---------------------------------------
 * ハンバーガーメニュー (モーダル -  CSS)
 * -------------------------------------- */
.globalNav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #fff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding-right: var(--scrollbar-width);
  display: none;
}
/* JSによって .is-open クラスが付与されたとき */
.globalNav_overlay.is-open {
  opacity: 1;
  visibility: visible;
}
html.scrollable {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}
.globalNav {
  width: 100%;
  max-width: 1000px;
  padding-inline: min(10%, 20px);
  margin-top: 90px;
  overflow-y: auto;
  margin-inline: auto;
}
.globalNav > * + * {
  margin: 40px 0 60px;
}
.globalNav_main_list {
  width: 100%;
  margin: auto;
  list-style: none;
}
.globalNav_main_item {
  float: none;
  position: static;
  border-top: 1px solid #bbbbbb;
  width: 100%;
  padding: 0;
  text-align: left;
  line-height: 5rem;
}
.globalNav_main_link {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  padding-inline: 20px;
}
.globalNav_main_item:last-child {
  border-bottom: 1px solid #bbbbbb;
}
.globalNav_main_item .is-v-center {
  display: inline-block;
  padding: 0 0 0 20px;
}
.globalNav_btn_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-auto-rows: 47px;
  gap: 16px;
}
.globalNav_btn_item {
  border: solid #bbbbbb 1px;
  text-align: center;
  font-size: min(3.4vw, 1.2rem);
}
.globalNav_btn_link {
  height: 100%;
  width: 100%;
  line-height: 1.5;
}
.globalNav_sub_list {
  display: flex;
  gap: 10px 16px;
  font-size: 1.4rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.globalNav_sub_item {
  min-width: calc(50% - 8px);
  justify-content: space-between;
  gap: 10px 2%;
}
.globalNav_sub_link::before {
  content: ">";
  padding-right: 0.5em;
}
.globalNav_lang_list {
  display: flex;
  justify-content: center;
}
.globalNav_lang_item {
  width: 25%;
  text-align: center;
  line-height: 1.1;
}
.globalNav_lang_item a {
  display: block;
  width: 100%;
}
.globalNav_lang_item.selected {
  color: var(--gray);
}
.globalNav_lang_item:not(:first-child) {
  border-left: 1px solid var(--gray);
}
@media screen and (min-width: 768px) {
  .globalNav {
    padding: 20px 50px;
  }
}
@media screen and (min-width: 1024px) {
  .globalNav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "main btn"
      "main utility" /* 1行目: main（左）と btn（右） */
      "sub utility";
    gap: 30px 50px;
    padding: 20px 50px;
  }
  .globalNav > * {
    margin-block: 0;
  }
  .globalNav_main {
    grid-area: main;
  }
  .globalNav_btn {
    grid-area: btn;
  }
  .globalNav_sub {
    grid-area: sub;
  }
  .globalNav_utility {
    grid-area: utility;
  }
  .globalNav_sub_list {
    font-size: 1.6rem;
  }
  .globalNav_btn_item {
    font-size: 1.6rem;
  }
  .globalNav_btn_link {
    padding-inline: 1em;
  }
  .globalNav_lang_item {
    width: 40%;
  }
}
/* 	ハンバーガーメニュー表示時のチャットボットズレを防ぐ　*/
/* div#tripla-app {
  transform: translateX(calc(0px - var(--scrollbar-width)));
} */

/* =======================
	　footer
========================== */
.footer_content {
  margin-top: 20px;
  border-block: 1px solid var(--gray);
}
.footer_content > * + * {
  border-top: 1px solid var(--gray);
}
.footerContent_inner {
  width: 90%;
  margin: auto;
  padding: 30px 0;
  max-width: 1000px;
}
.footerNav_trigger {
  display: block;
  padding: 13px 0;
  text-align: center;
  cursor: pointer;
  font-family: monospace;
  font-weight: bold;
  position: relative;
  background-color: inherit;
  width: 100%;
  border: none;
  color: #000;
}
.footerNav_trigger::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(50% + 4em);
  border-top: 2px solid #000;
  transition: transform 0.3s ease-in-out;
  width: 12px;
  top: 45%;
  transform: translate(-50%, 0) rotate(90deg);
}
.footerNav_trigger::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(50% + 4em);
  border-top: 2px solid #000;
  transition: transform 0.3s ease-in-out;
  width: 12px;
  top: 45%;
  transform: translate(-50%);
}
.footerNav_trigger.is-active::before {
  transform: translate(-50%) rotate(180deg);
}
.footerNav_trigger.is-active::after {
  opacity: 0;
}
.footerNav_item:last-child {
  padding-bottom: 20px;
}
.footerNav_list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding: 0;
}
.footerNav_list.is-open {
  max-height: 1200px;
}
.footerNav_link {
  padding: 10px 0;
  display: block;
}
.footerNav_link:before {
  content: ">";
  padding-right: 0.5em;
}
.footerBanner_list {
  display: grid;
  justify-content: center;
  gap: 12px 8px;
}
.footerBanner_item {
  width: 230px;
  margin: auto;
  display: block;
}
.footerBanner_link {
  display: block;
}
.footerInfo {
  display: grid;
  gap: 20px;
}
.footerInfo_logo {
  display: block;
  width: 230px;
  margin: auto;
}
.footerInfo_contact {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .footerNav_bnr_box {
    grid-auto-flow: column;
  }
  .footerNav {
    display: flex;
    gap: 40px;
    margin: auto;
    padding: 30px 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footerNav_list {
    display: flex;
    column-gap: 0;
    row-gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    max-height: initial;
  }
  .footerNav_trigger {
    display: none; /* PC時はアコーディオンボタンを非表示 */
  }
  .footerNav_link {
    padding: 0 14px;
    border-inline: 1px solid #999;
    margin-right: -1px;
    line-height: 1.1;
  }
  .footerNav_link:before {
    content: none;
  }
  .footerNav_item:last-child {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer_hotel_information {
    justify-content: center;
  }
  .footerNav_bnr_box {
    padding: 0;
    border-top: none;
  }
}
/* =======================
	　コンテンツ幅
========================== */
.contents {
  padding-top: 55px;
  margin-bottom: 100px;
}
.section_wrap {
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
.section_wrap + .section_wrap {
  margin-top: 65px;
}
.section_wrap {
  width: 90%;
  max-width: 1000px;
}
.section_wrap_large {
  width: 100%;
  max-width: 1920px;
}
@media screen and (min-width: 768px) {
  .section_wrap + .section_wrap {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .section_wrap + .section_wrap {
    margin-top: 100px;
  }
}
/* =======================
	　下層メインビジュアル
========================== */
.mainVisual {
  position: relative;
}
.mainVisual_img img {
  max-width: unset;
  object-fit: cover;
  width: 100%;
  min-height: 140px;
  height: auto;
}
.mainVisual_heading {
  position: absolute;
  inset: 0;
  margin: auto;
  height: fit-content;
  text-align: center;
  text-shadow: 0.2em 0 1em rgba(0, 0, 0, 0.5), 0 0.2em 1em rgba(0, 0, 0, 0.5), -0.2em 0 1em rgba(0, 0, 0, 0.5), 0 -0.2em 1em rgba(0, 0, 0, 0.5);
  color: #fff;
}
/* =======================
	　パンくず
========================== */
.breadcrumb_nav {
  width: 90%;
  max-width: 1000px;
  margin: 10px auto 20px;
}
.breadcrumb_list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumb_link::after {
  content: " >";
  padding: 0 0.5em;
}
@media (any-hover: hover) {
  .breadcrumb_link {
    text-decoration: none;
    flex-wrap: wrap;
  }
}
/* =======================
	　重要なお知らせ
========================== */
.info_list {
  margin: auto;
}
.info_list_item + .info_list_item {
  margin-top: 10px;
}
.info_list_item_text {
  border: 1px solid var(--gray);
  display: block;
  padding-block: 1rem;
  padding-inline: 1.2rem;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}
.info_list_item_text_red {
  border: 1px solid var(--red);
  color: var(--red);
}
/*  アコーディオン型のお知らせ 

　detailsタグに　.info_list_item_text
 */
.info_list_item_text .accordion_js-summary_inner {
  padding-inline: 38px;
}
.info_list_item_text .accordion_js-content_inner {
  padding: 1.2rem 1rem;
  gap: 8px;
  margin-top: 10px;
  border-top: 1px solid #999;
}
.info_list_item_text_red .accordion_js-content_inner {
  border-top: 1px solid var(--red);
  color: var(--red);
}
.info_list_item_text_red .accordion_js-icon::before,
.info_list_item_text_red .accordion_js-icon::after {
  background-color: var(--red);
}
@media (any-hover: hover) {
  a.info_list_item_text:hover {
    opacity: 0.7;
  }
  .info_list_item_text.accordion_js-details .accordion_js-summary:hover .accordion_js-summary_inner {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1024px) {
  .info_list_item + .info_list_item {
    margin-top: 10px;
  }
}
/* =======================
	　館内紹介　service.shtml
========================== */
.service_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service_item {
  background-color: var(--light_gray);
  border-radius: 10px;
  overflow: hidden;
}
.service_text {
  padding: 20px 16px;
}
.service_text > * {
  font-size: 1.4rem;
}
.service_text > * + * {
  margin-top: 4px;
}
.service_heading {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, var(--yellow) 30%, var(--yellow) 100%);
  display: inline;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .service_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .service_heading {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .service_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .service_item {
    width: calc(100% / 4 - 10px);
  }
}
