@charset "UTF-8";
/*=================================================================================*/
/** 768px未満 スマホサイズ画面 ＜これが基本＞ **/
/*=============================
	全体共通
=============================*/
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --banner-height: 0;
}

.en {
  font-family: "Barlow Condensed", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.jp {
  font-family: "Noto Sans JP", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.eg {
  font-family: "EB Garamond", serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  font-family: "Noto Serif JP", serif;
}

.flex {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .flex {
    flex-direction: row;
  }
}

/*==================
  電話番号タップ
==================*/
a.telLink0 {
  cursor: pointer;
  pointer-events: auto;
  text-decoration: underline;
  color: #000000;
}
@media (min-width: 768px) {
  a.telLink0 {
    display: inline-block;
    cursor: default;
    pointer-events: none;
    text-decoration: none;
  }
}

svg {
  height: auto;
  max-height: 100%;
}

img[src$=".svg"] {
  width: auto;
}

.disp_p {
  display: none; /*PC時だけ表示*/
}
@media (min-width: 768px) {
  .disp_p {
    display: block;
  }
}
.disp_p { /*PC時・タブレット時表示*/ }

.disp_s {
  display: block; /*スマホ時だけ表示*/
}
@media (min-width: 768px) {
  .disp_s {
    display: none;
  }
}

.disp_pt {
  display: none; /*PC時とタブレット時表示*/
}
@media (min-width: 1200px) {
  .disp_pt {
    display: block;
  }
}

.disp_st {
  display: block; /*スマホ時とタブレット時表示*/
}
@media (min-width: 1200px) {
  .disp_st {
    display: none;
  }
}

.disp_fix {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
}

/*============
nav
=============*/
.nav_s {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  bottom: 0;
  background: #082a54;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 10;
  opacity: 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .nav_s {
    right: -65%;
    width: 65%;
  }
}
@media (min-width: 1200px) {
  .nav_s {
    right: -30%;
    width: 30%;
  }
}

.nav_s::-webkit-scrollbar {
  display: none;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .nav_s {
  right: 0;
  opacity: 1;
}

.nav_s .inner {
  padding: 5em 2em 2em;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .nav_s .inner {
    padding: 6em 3em 3em;
  }
}

.nav_s .inner > ul {
  list-style: none;
  margin: 0;
}

.nav_s .inner > ul > li {
  position: relative;
  padding: 0.7em 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav_s .inner > ul > li > a {
  color: #ffffff;
  text-decoration: none;
  transition-duration: 0.2s;
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav_s .inner > ul > li > a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  /*width: 30px;
  /height: 30px;*/
  transition: all 0.5s;
  cursor: pointer;
  z-index: 30;
  position: relative;
}
@media (min-width: 1100px) {
  .toggle_btn {
    display: none;
  }
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn2 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 36px;
  height: 53px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .openbtn2 {
    width: 72px;
    height: 87px;
  }
}

/*ボタン内側*/
.openbtn2 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 7px;
  height: 2px;
  background-color: #082a54;
}

.openbtn2 span:nth-of-type(1) {
  top: 22px;
  width: 50%;
}
@media (min-width: 768px) {
  .openbtn2 span:nth-of-type(1) {
    top: 34px;
    width: 40%;
  }
}

.openbtn2 span:nth-of-type(2) {
  top: 27px;
  width: 50%;
}
@media (min-width: 768px) {
  .openbtn2 span:nth-of-type(2) {
    top: 44px;
    width: 40%;
  }
}

/*チェック状態で線が回転して×に*/
#menu-toggle:checked ~ .toggle_btn .openbtn2 span:nth-of-type(1) {
  top: 20px;
  left: 7px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  #menu-toggle:checked ~ .toggle_btn .openbtn2 span:nth-of-type(1) {
    top: 34px;
  }
}

#menu-toggle:checked ~ .toggle_btn .openbtn2 span:nth-of-type(2) {
  top: 32px;
  left: 7px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  #menu-toggle:checked ~ .toggle_btn .openbtn2 span:nth-of-type(2) {
    top: 47px;
  }
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all 0.5s;
}

#menu-toggle:checked ~ #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  z-index: 2;
  cursor: pointer;
}

/*==========================
	ヘッダー
=========================***/
/* ===== .navi ===== */
.navi {
  padding-inline: 1.2em 0;
  box-sizing: border-box;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background: #fff !important;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .navi {
    padding-inline: 1.7em 0;
    background: rgba(255, 255, 255, 0.5) !important;
  }
}
.navi.is-sub {
  background: #fff !important;
}

.black .navi {
  background: rgba(0, 0, 0, 0.8);
}

/* ===== .navi>ul ===== */
.navi > ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* ===== .navi>ul>li（共通） ===== */
.navi > ul > li {
  /*padding:0 1em;*/
  box-sizing: border-box;
}

.navi > ul > li a {
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.navi > ul > li a:hover {
  color: #FFFFFF;
}

.navi > ul > li a:hover img {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

.navi a {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.navi a:hover {
  color: #FFFFFF;
}

/* ===== .navi>ul>li:nth-child(1) ===== */
.navi > ul > li:nth-child(1) { /*1600 245*/
  max-width: 113px;
  width: 100%;
  margin: 0 1%;
}
@media (min-width: 768px) {
  .navi > ul > li:nth-child(1) {
    max-width: 162px;
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .navi > ul > li:nth-child(1) {
    max-width: 162px;
    width: 20%;
    margin: 1.1em 1%;
  }
}

/* ===== .navi>ul>li:nth-child(2) ===== */
.navi > ul > li:nth-child(2) {
  margin-left: 0.9%;
}

.navi > ul > li:nth-child(2) .header-nav__lang {
  display: none;
  flex-direction: column;
  gap: 0.2em;
}
@media (min-width: 1100px) {
  .navi > ul > li:nth-child(2) .header-nav__lang {
    display: flex;
  }
}

.navi > ul > li:nth-child(2) > .header-nav__lang > a {
  display: flex;
  color: #082A54;
}
.navi > ul > li:nth-child(2) > .header-nav__lang > a::before {
  content: "-";
  display: inline-block;
  color: #082A54;
  margin-right: 1em;
}

/* ===== .navi>ul>li:nth-child(3) ===== */
.navi > ul > li:nth-child(3) {
  max-width: 430px;
  width: 30%;
}
@media (max-width: 1099px) {
  .navi > ul > li:nth-child(3) {
    width: 0;
    max-width: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 1100px) {
  .navi > ul > li:nth-child(3) {
    max-width: none;
    width: auto;
    flex: 1;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .navi > ul > li:nth-child(3) {
    max-width: 1050px;
    width: 74%;
    margin-left: auto;
  }
}

/* ===== .navi>ul>li:nth-child(4) ===== */
@media (max-width: 1099px) {
  .navi > ul > li:nth-child(4) {
    flex: 1;
    width: auto;
    max-width: none;
  }
}

/* .navi a { color: #fff } (specificity [0,1,1]) に勝つため .navi を前置 */
.navi .header-nav__link {
  display: block;
  padding: 0.3em 0.875vw;
  color: #082a54;
  text-decoration: none;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
@media (min-width: 1400px) {
  .navi .header-nav__link {
    font-size: 13px;
    padding: 0.3em 1.8125vw;
  }
}
@media (min-width: 1600px) {
  .navi .header-nav__link {
    padding: 0.3em 29px;
  }
}
.navi .header-nav__link:hover {
  color: #082a54;
}

.hmb_block a {
  display: block;
}

.hmb_block a.toggle {
  cursor: pointer !important;
}

.hmb_block .inner {
  width: 100%;
  padding: 0.5em 0 1em;
}

.hmb_block .inner li {
  padding: 0.5em 0;
}

.hmb_block .hmb_block_title .hmb_h3 {
  display: block;
  padding: 0 3em 0 0;
  position: relative;
}

.hmb_block .hmb_block_title .hmb_h3:after {
  position: absolute;
  content: "";
  background: url("../img/common/hbg_plus.svg") no-repeat;
  background-size: contain;
  width: 9px;
  height: 6px;
  top: 50%;
  right: 2%;
  transform: translate(-50%, -50%);
}

.hmb_block .hmb_block_title.active .hmb_h3:after {
  position: absolute;
  content: "";
  background: url("../img/common/hbg_mainasu.svg") no-repeat;
  background-size: contain;
  width: 9px;
  height: 6px;
  top: 50%;
  right: 2%;
  transform: translate(-50%, -50%);
}

.head00 {
  width: 100%;
  margin: -1px auto 0;
  /*background:#000000;*/
  /*box-shadow: 0px 6px 2px -2px rgba(0,0,0,0.23);*/
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .head00 {
    box-shadow: none;
    background: none;
  }
}

.navi_cont {
  margin-left: 0;
}
@media (min-width: 768px) {
  .navi_cont {
    margin-left: 2em;
  }
}

.navi_cont > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1099px) {
  .navi_cont > ul {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

.navi_cont > ul > li:nth-child(1) {
  width: 62%;
  padding: 0.1em 1% 0 0;
  max-width: 1000px;
}
@media (min-width: 1200px) {
  .navi_cont > ul > li:nth-child(1) {
    width: 61%;
    padding: 0.1em 0 0 0;
    max-width: 1000px;
  }
}

.navi_cont > ul > li:nth-child(2) {
  padding: 0;
  max-width: 36px;
  min-width: 36px;
}
@media (min-width: 768px) {
  .navi_cont > ul > li:nth-child(2) {
    max-width: 50px;
    min-width: 50px;
  }
}
@media (min-width: 1100px) {
  .navi_cont > ul > li:nth-child(2) {
    display: none;
  }
}

@media (max-width: 1099px) {
  .navi_cont > ul > li:nth-child(3) {
    width: auto;
    max-width: none;
    padding: 0;
  }
}

/* 既存の li:nth-child(1) width: 62% / display:none を上書き */
.navi_cont > ul > li.header-cta {
  display: flex;
  align-items: stretch;
  width: auto;
  max-width: none;
  padding: 0;
}

.navi_cont_btn > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

.navi_cont_btn > ul > li {
  padding: 0 1em;
  box-sizing: border-box;
}

.foot__logoWrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.foot_logo {
  max-width: 204px;
  min-width: 204px;
  width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .foot_logo {
    max-width: 204px;
    min-width: unset;
  }
}
@media (min-width: 990px) {
  .foot_logo {
    max-width: 204px;
    min-width: 204px;
  }
}

.foot_logo > a:hover {
  opacity: 1;
}

.foot__lang {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  transform: translateY(4px);
}

.foot__langLink {
  display: flex;
  text-decoration: none;
  white-space: nowrap;
}
.foot__langLink::before {
  content: "-";
  display: inline-block;
  color: #fff;
  margin-right: 1em;
}

.foot__detailsWrap {
  padding-left: 0.8em;
}

.foot__tel {
  max-width: 198px;
  width: 100%;
}
.foot__tel > a:hover {
  opacity: 1;
}

.foot__details {
  font-size: 11px;
  line-height: 1.82;
  letter-spacing: 0.1em;
  color: #fff;
}

.foot_icon > ul {
  justify-content: flex-start;
}

.foot__telList {
  display: flex;
  gap: 0.5em;
}

.footer .foot__telItem {
  text-decoration: none;
}

.foot__sns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot__snsItem {
  max-width: 53px;
  width: 100%;
}
.foot__snsItem > a:hover {
  opacity: 1;
}

.nav_s .foot03_01 > ul {
  justify-content: center;
}

.child {
  display: none;
}

/*===============================
  下固定バナー
===============================*/
.kote_bg {
  width: 100%;
  position: fixed;
  z-index: 5;
  bottom: 0;
}

.kote_block_bg img {
  width: 100%;
  height: 100%;
}

.kote_s > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.kote_s > ul > li {
  width: 80%;
  max-width: 430px;
  margin: 0 auto 0.5em;
}

@media (min-width: 768px) {
  .cv_block > ul > li {
    width: 40%;
    margin: 0 1%;
  }
}

/* ドロワーが開いているとき、被る要素を非表示 */
body:has(#menu-toggle:checked) #page_tops,
body:has(#menu-toggle:checked) .fixedBanner {
  visibility: hidden;
}

/***  ページTOP  ***/
#page_tops {
  position: fixed;
  display: block;
  width: auto;
  max-width: 15%;
  z-index: 50000;
  bottom: 1.5em;
  right: 1em;
}
@media (min-width: 768px) {
  #page_tops {
    bottom: 2em;
    right: 1em;
  }
}
@media (min-width: 1200px) {
  #page_tops {
    width: auto;
  }
}

/*==========================
	フッター
=========================***/
.footer .sub00 {
  max-width: 1104px;
  width: 94%;
  margin-inline: auto;
}

.foot_block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 1%;
}

.foot_blockimg {
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
  order: 2;
}
@media (min-width: 768px) {
  .foot_blockimg {
    width: auto; /*1200 264*/
    margin: 0;
    order: 1;
  }
}

.foot_blocktext {
  width: 90%;
  margin: 0 auto;
  order: 1;
  font-size: 93%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .foot_blocktext {
    flex: 1;
    width: auto;
    margin: 0 0 0 5%;
    order: 2;
  }
}
@media (min-width: 990px) {
  .foot_blocktext {
    margin: 0 0 0 9%;
  }
}

.sns_block {
  order: 2;
  padding: 0 0 1em 0;
}
@media (min-width: 768px) {
  .sns_block {
    width: 100%;
    order: 1;
    padding: 1em 0;
    border-bottom: #9E9E9E 1px solid;
  }
}

.foot01_01 {
  display: flex;
  flex-direction: column;
  width: 100%;
  order: 1;
  padding: 0 0 3em;
}
@media (min-width: 768px) {
  .foot01_01 {
    flex-direction: row;
    justify-content: space-between;
    order: 2;
    padding-block: 0.2em 0;
  }
}

.foot01_01 a {
  display: block;
  padding: 0 0.5em;
  box-sizing: border-box;
  color: #808080;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .foot01_01 a {
    display: inline-block;
    padding: 0;
  }
}
.foot01_01 a.is-icon::after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon_outlink_white.svg") center/contain no-repeat;
  width: 11.6px;
  height: 11.6px;
  margin-left: 14.6px;
}

.foot01_01 a:hover {
  color: #A28E80;
}

.foot01_01 > ul:nth-child(2) > li > a::before, .foot01_01 > ul:nth-child(3) > li > a::before {
  content: "-";
  display: inline-block;
  color: #fff;
  margin-right: 1em;
}

.foot01_01 > ul > li {
  width: 100%;
  padding: 0.5em 0;
  border-bottom: 1px solid #FFFFFF;
}
@media (min-width: 768px) {
  .foot01_01 > ul > li {
    padding: 0;
    border: none;
  }
}

.foot01_01 > ul > li > a {
  font-size: 11px;
  line-height: 2.82;
  letter-spacing: 0.1em;
  font-weight: normal;
  color: #fff;
}

.foot01_01 .hmb_block .inner li {
  padding: 0.3em 0;
}

.sns_block > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.sns_block > ul > li {
  width: 96%;
  margin: 0 2% 1em;
}
@media (min-width: 768px) {
  .sns_block > ul > li {
    width: 48%;
    margin: 0 1% 1em;
  }
}

.sns01_01 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

.sns01_01img {
  width: 0;
}
@media (min-width: 768px) {
  .sns01_01img {
    width: 25%;
  }
}

.sns01_01text {
  width: 100%;
  padding: 0 1em;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .sns01_01text {
    width: 75%;
    padding: 0 1em;
    box-sizing: border-box;
  }
}

@media (min-width: 768px) {
  .sns01_01text > dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}

.sns01_01text > dl > dt {
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .sns01_01text > dl > dt {
    width: 100%;
  }
}

.sns01_01text > dl > dd {
  display: inline-block;
  padding: 0 0 0 1em;
  box-sizing: border-box;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .sns01_01text > dl > dd {
    width: 100%;
    padding: 0.5em 0;
  }
}

.footer__bottom {
  text-align: center;
}

/* =============================================
   ヘッダー追加スタイル
   ブレークポイント: 1100px以上でPCナビを表示
   理由: 5項目（最長「交通案内・周辺施設」含む）＋
         電話番号エリアが1行に収まる最小幅として設定
   ============================================= */
/*======================================
  PCグローバルナビ
======================================*/
.header-nav__pc {
  display: none;
}
@media (min-width: 1100px) {
  .header-nav__pc {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 2%;
  }
}

.header-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.header-nav__item {
  white-space: nowrap;
}

/*======================================
  PCナビ：電話番号エリア
======================================*/
.header-nav__tel {
  display: flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
  padding: 0 0.5em;
}
.header-nav__tel-icon {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  /* svg はネイビーのため .black 時に白にフィルタ */
}
.black .header-nav__tel-icon {
  filter: brightness(0) invert(1);
}
.header-nav__tel-number {
  color: #082a54;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.black .header-nav__tel-number {
  color: #ffffff;
}

/*======================================
  tel アイコン SVG 幅の上書き
  img[src$=".svg"] { width: auto } (specificity [0,1,1]) に勝つため
  img タグ＋クラスセレクター (specificity [0,1,1]) で cascade 順で後勝ち
======================================*/
.header-nav__tel .header-nav__telLink {
  display: flex;
  flex-direction: column;
  max-width: 10vw;
  min-width: 10vw;
  color: #082a54;
}
@media (min-width: 1400px) {
  .header-nav__tel .header-nav__telLink {
    max-width: 10.5vw;
    min-width: 10.5vw;
  }
}
@media (min-width: 1600px) {
  .header-nav__tel .header-nav__telLink {
    max-width: 168px;
    min-width: 168px;
  }
}
.header-nav__tel .header-nav__telLink:hover > img {
  transform: translateY(0);
}

.header-nav__telNumberWrap {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

img.header-nav__tel-icon {
  width: 14px;
  height: auto;
}

/*======================================
  SP言語切替（英語ページ・中国語ページ）
======================================*/
.header-sp-nav__item--lang {
  display: flex;
  gap: 1em;
  padding: 0.7em 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-sp-nav__link--lang {
  text-align: center;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  padding: 0.3em 0.8em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  transition: background 0.2s ease;
}
.header-sp-nav__link--lang:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* 言語切替 li には nav_s の li デフォルトpadding/border を上書き */
.nav_s .inner > ul > li.header-sp-nav__item--lang {
  padding: 0;
  border-bottom: none;
  padding-top: 1em;
}

/*======================================
  SPナビ下部ロゴ
======================================*/
.header-sp-nav__logo {
  margin-top: 2em;
  width: 60%;
  max-width: 180px;
}
.header-sp-nav__logo img {
  width: 100%;
  height: auto;
  /* ネイビーロゴを白に */
  filter: brightness(0) invert(1);
}

/*======================================
  団体予約・宿泊予約ボタン
======================================*/
.header-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 71.5px;
  min-width: 71.5px;
  width: 100%;
  min-height: 53px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .header-cta__btn {
    max-width: 143px;
    min-width: 143px;
    min-height: 87px;
  }
}
@media (min-width: 1100px) {
  .header-cta__btn {
    max-width: 8.9375vw;
    min-width: 8.9375vw;
    font-size: 0.85rem;
    padding: 0;
  }
}
@media (min-width: 1600px) {
  .header-cta__btn {
    max-width: 143px;
    min-width: 143px;
  }
}
.header-cta__btn:hover {
  opacity: 0.7;
  color: #ffffff;
}
.header-cta__btn--group {
  background: #082a54;
}
.header-cta__btn--stay {
  background: #9b0b00;
  gap: 9px;
}
@media (min-width: 768px) {
  .header-cta__btn--stay::after {
    content: "";
    display: inline-block;
    background: url("../img/common/icon_outlink_white.svg") center/contain no-repeat;
    width: 10px;
    height: 10px;
  }
}

/*======================================
  電話アイコン丸ボタン（SP用）
  PC(1100px+)では header-nav__tel で表示するため非表示
======================================*/
.header-cta__tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 53px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  padding-inline: 14px 7px;
}
@media (min-width: 768px) {
  .header-cta__tel-btn {
    height: 87px;
    padding-inline: 28px 14px;
  }
}
@media (min-width: 1100px) {
  .header-cta__tel-btn {
    display: none;
  }
}

img.header-cta__tel-icon {
  width: 18px;
  height: auto;
}
@media (min-width: 768px) {
  img.header-cta__tel-icon {
    width: 36px;
  }
}