@charset "UTF-8";

body {
  background: url("../../img/top/common/bg_washi.png") repeat top left/auto;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.p-top .c-title_l, 
.c-title_l.is-center {
  text-align: center;
}
.c-title_l {
  margin-bottom: 40px;
}
.c-title_l span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #6d5975;
  margin-bottom: 10px;
}
.p-top .c-title_l span,  
.c-title_l.is-center span{
  margin: 0 auto 10px;
}
.c-title_l span svg{
  max-height: 20px;
} 
.c-title_l h2,
.c-title_l p {
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: var(--color-black);
}
@media (max-width: 600px){/*SP以下 表示*/
  .c-title_l {
    margin-bottom: 30px;
  }
  .c-title_l span {
    font-size: 1.6rem;
  }
  .c-title_l span svg{
  max-height: 18px;
  }
  .c-title_l h2 {
    font-size: 2.4rem;
  }

}/*END SP以下 表示*/
.c-title_m {
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 16px;
}
@media (max-width: 600px){/*SP以下 表示*/
  .c-title_m {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}/*END SP以下 表示*/
.c-link_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 350px;
  min-height:70px;
  width: fit-content;
  padding: 5px 30px;
  letter-spacing: 0.08em;
  color: #fff;
  border-color: var(--color-red);
  background-color: var(--color-red);
}
.c-link_btn.is-arrow {
  min-width: 350px;
  padding: 5px 60px 5px 30px;
}
.c-link_btn.is-arrow::after {
  content: "";
  width: 35px;
  height: 35px;
  background: url(../../img/top/common/arrow01_r.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}
.c-link_btn:hover {
  color: #fff;
  background-color: #AE290E;
}
@media (max-width: 600px){/*SP以下 表示*/

  .c-link_btn {
    min-width: unset;
    width: 90%;
    padding: 20px;
  }
  .c-link_btn.is-arrow {
    min-width: unset;
    padding: 20px 45px 20px 20px;
  }
  .c-link_btn.is-arrow::after {
    content: "";
    width: 29px;
    height: 29px;
  }

}/*END SP以下 表示*/
a.hover-img{
  opacity: 1;
  transition: opacity 0.3s ease;
}
a.hover-img:hover{
  opacity: 0.8;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current{
  border-color: transparent!important;
}
/*		基本設定
-----------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--base-serif);
  color: var(--color-black);
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin: 0 auto;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s linear;
}
a[target=_blank].is-external::after {
  content: "";
  background: url("../../img/top/common/icon_external.svg") no-repeat center center/contain;
  display: inline-block;
  height: 1.2rem;
  width: 1.2rem;
  vertical-align: middle;
  margin-left: 0.3em;
}

@media (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}
@media (min-width: 601px) {
  .is-sp {
    display: none !important;
  }
}
input {
  font-size: 1.6rem; /*iOSズームアップ対策サイズ*/
}

textarea {
  font-size: 1.6rem; /*iOSズームアップ対策サイズ*/
  resize: vertical; /* 縦方向のリサイズを許可 */
}

/* フォーカスが当たった時の青枠を表示しない */
*:focus {
  outline: none;
}

::-moz-selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

::selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

@media (min-width: 601px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
figure {
  will-change: transform; /*safariのoverflow不具合対策*/
}

/*==========フェードイン==========*/
.js-scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

/*
.scroll-up + .scroll-up {
  transition-delay: 0.3s;
}
.scroll-up + .scroll-up + .scroll-up {
  transition-delay: 0.6s;
}
.scroll-up + .scroll-up + .scroll-up + .scroll-up {
  transition-delay: 0.9s;
}*/
.js-scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*		ヘッダー
-----------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  z-index: 999;
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 25px 30px 15px;
  /* END &.l-header */
}
#header.l-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  transition: background-color 0.3s ;
}
#header.l-header.is-bg {
  background-color: rgba(255, 254, 249, 0.9);
}
#header.l-header .l-header_logo {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: auto;
}
#header.l-header .l-header_logo a {
  display: flex;
  align-items: center;
  gap: 16px;
}
#header.l-header .l-header_btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 3%;
}
#header.l-header .l-header_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #000;
  background-color: var(--color-base);
  padding: 8px 30px;
  border: 3px solid transparent;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
#header.l-header .l-header_btn a:hover {
  color: #000;
  color: var(--color-base);
  background-color: #fff;
  border-color: currentColor;
}
/* .l-header .gt_selector,
.l-header_language select{
  margin: 0!important;
}
.l-header .gtranslate_wrapper select,
.l-header_language select{
  padding: 0.3em;
  color: var(--color-black);
  background-color: #fff;
  border:1px solid #D2D2D2;
  border-radius: 0;
} */
 .l-header_language{
  font-family: var(--base-sans-serif);
  align-self: flex-start;
  min-width: 150px;
  padding: 8px 35px 8px 10px; 
  background-color: #fff;
  border:1px solid #D2D2D2;
  position: relative;
  cursor: pointer;
 }
 @media (max-width: 600px){/*SP以下 表示*/
  .l-header_language{
    align-self: center;
    min-width: auto;
    max-width: 130px;
    width: 40%;
    padding: 5px 30px 5px 7px;
   } 
 }/*END SP以下 表示*/
 .l-header_language::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 100%;
  border-left: 1px solid #D2D2D2;
  background: url(../../img/top/common/arrow_u_gray.svg) no-repeat center center / 50% auto;
 }
 @media (max-width: 600px){/*SP以下 表示*/
  .l-header_language::after{
    width: 25px;
  }
 }/*END SP以下 表示*/
 .l-header_language > span{
  display: block;
  font-size: 12px;
 }
 @media (max-width: 600px){/*SP以下 表示*/
  .l-header_language > span{
    font-size: 10px;
   } 
 }/*END SP以下 表示*/
.l-header_language ul{
  display: block;
  opacity: 0;
  height: 0;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border:1px solid #D2D2D2;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
.l-header_language.is-open ul{
  opacity: 1;
  height: auto;/* calc-size()未対応のブラウザのためのフォールバック */
  height: calc-size(auto, size);
}
.l-header_language ul li a{
  display: block;
  font-size: 12px;
  padding: 5px 10px;
}
@media (max-width: 600px){/*SP以下 表示*/
  .l-header_language ul li a{
    font-size: 10px;
  }
}/*END SP以下 表示*/
.l-header_language ul li a:hover{
  background-color: #f2f2f2;
}
/* END #header */
@media (max-width: 900px) {
  #header.l-header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 5px 65px 5px 20px;
    display: flex;
    align-items: center;
    min-height: 60px;
    gap: 10px;

    /* END #header */
  }

  #header.l-header .l-header_logo {
    max-width: 145px;
    width: 50%;
    flex-shrink: 0;
    font-size: 5vw;
  }
  #header.l-header .l-header_logo * {
    font-size: 3vw;
  }
  .l-header_language{
    max-width: 45%;
  }
  .l-header_language select{
    width: 100%;
  }
  .gt_selector {
    font-size: 1rem;
    font-size: clamp(8px, 1.000px + 2.5vw, 11px);
    letter-spacing: 0;
  }
}
/*		グローバルナビゲーション
-----------------------------------------------------*/
#global-nav.l-nav {
  gap: 30px;
  /* END & ul */
}
#global-nav.l-nav .l-nav_logo {
  display: none;
  color: var(--color-black);
}
#global-nav.l-nav{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 15px;
}
#global-nav.l-nav ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px 30px;
}
#global-nav.l-nav ul li {
  font-family: var(--mplus-font);
  transform: var(--Jaggy-clear);
  text-align: center;
  color: var(--color-black);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
#global-nav.l-nav ul li span {
  display: block;
}
#global-nav.l-nav ul li:not(.l-nav_tickets) a {
  display: block;
  color: var(--color-black);
  line-height: 1.3;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-red);
  position: relative;
}
#global-nav.l-nav ul li:not(.l-nav_tickets) a::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--color-red);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
#global-nav.l-nav ul li:not(.l-nav_tickets) a:hover::after {
  width: 100%;
}
#global-nav.l-nav ul li.l-nav_tickets a {
  color: #fff;
  padding: 2px 10px;
  background-color: var(--color-red);
}
#global-nav.l-nav ul li.l-nav_tickets a:hover {
  color: #fff;
  background-color: #AE290E;
}
#global-nav.l-nav ul li a.icon-tickets{
  display: flex;
  align-items: center;
  gap: 5px;
}
#global-nav.l-nav ul li a.icon-tickets::before {
  flex-shrink: 0;
 content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 25 / 22;
  margin-right: 0.3em;
  background-color: #fff;
  -webkit-mask-image: url("../../img/top/common/icon_ticket.svg");
  mask-image: url("../../img/top/common/icon_ticket.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}


#global-nav.l-nav ul li a.icon-onsen{
  display: flex;
  align-items: center;
  gap: 5px;
}
#global-nav.l-nav ul li a.icon-onsen::before {
  flex-shrink: 0;
 content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 20 / 17;
  margin-right: 0.3em;
  background-color: var(--color-red);
  -webkit-mask-image: url("../../img/top/common/icon_onsen.svg");
  mask-image: url("../../img/top/common/icon_onsen.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
#global-nav.l-nav ul li a:hover {
  color: var(--color-base);
}
#global-nav.l-nav .l-nav_contact_tel {
  display: none;
  color: #fff;
  margin-bottom: 15px;
}
#global-nav.l-nav .l-nav_contact_tel span {
  display: block;
  font-size: 4.4rem;
  font-size: clamp(3rem, -0.266rem + 11.667vw, 4.4rem);
  letter-spacing: 0.05em;
  line-height: 1;
}
#global-nav.l-nav .l-nav_contact_tel span::before {
  content: "";
  display: inline-block;
  width: 25px;
  width: clamp(16px, -7.333px + 8.333vw, 26px);
  aspect-ratio: 100/138;
  margin-right: 0.3em;
  background-color: currentColor;
  -webkit-mask-image: url("../../img/top/common/icon_tel.svg");
  mask-image: url("../../img/top/common/icon_tel.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
#global-nav.l-nav .l-nav_contact_tel small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 7px;
  margin-top: 15px;
  border-top: 1px solid #fff;
}
#global-nav.l-nav .l-header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  color: #fff;
  background-color: #333;
  background-color: var(--color-red);
  border: 2px solid transparent;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}
#global-nav.l-nav .l-header_btn:hover {
  color: #333;
  color: var(--color-red);
  border-color: currentColor;
  background-color: #fff;
}
#global-nav.l-nav .l-header_btn:hover::after {
  transform: translateY(3px);
}

/* END #global-nav */
@media (max-width: 900px) {
  #global-nav.l-nav {
    pointer-events: none;
    opacity: 0;

    flex-flow: column nowrap;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    width: 100%;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    padding: 80px 0 50px;
    background-color: rgba(255, 255, 255, .95);
    transition: opacity 0.4s ease-in-out;
    flex-direction: column;
    gap: 0;

  }
  #global-nav.is-show {
    pointer-events: all;
    opacity: 1;
  }

  #global-nav.l-nav ul,
  #global-nav ul {
    width: 100%;
    gap: 0;
    margin: 0 auto;
    flex-direction: column;
    overflow-y: auto;
  }
  
  #global-nav.l-nav ul li:not(.l-nav_tickets) {
    text-align: left;
    max-width: 600px;
    width: 90%;
    border-bottom: 1px solid #B9B9B9;
  }
  #global-nav.l-nav ul li:not(.l-nav_tickets) a {
    position: relative;
    letter-spacing: 0.08em;
    padding: 20px;
    border:none;
    transition: all 0.2s linear;
  }
  #global-nav.l-nav ul li:not(.l-nav_tickets) a:after {
    display: none;
  }
  #global-nav.l-nav ul li:not(.l-nav_tickets) span {
    display: inline-block;
  }
  #global-nav.l-nav ul li.l-nav_tickets {
    width: 100%;
    margin-top: 30px;
  }
  #global-nav.l-nav ul li.l-nav_tickets a {
    max-width: 320px;
    width: 90%;
    font-size: 1.8rem;
    padding: 12px 20px;
    margin: 0 auto;
  }
} /*  END Break Point  */
/*		メニューボタン
-----------------------------------------------------*/
.l-header_toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  background-color: #333;
  background-color: var(--color-red);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 999;
  box-sizing: border-box;
  transition: all 0.2s linear;
  cursor: pointer;
}
.l-header_toggle > span {
  display: block;
  position: relative;
  width: 19px;
  height: 2px;
  padding: 0;
  line-height: 1;
  margin: 10px auto;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s linear;
}
.l-header_toggle > span::before, .l-header_toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 19px;
  height: 2px;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.2s linear;
}
.l-header_toggle > span::before {
  top: -7px;
}
.l-header_toggle > span::after {
  top: 7px;
}
.l-header_toggle > small {
  display: block;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 13px;
}
.l-header_toggle.is-active > span {
  background-color: transparent;
}
.l-header_toggle.is-active > span::before {
  background-color: #fff;
  top: -6.8px;
  right: 2px;
  transform: rotate(-45deg);
  transform-origin: right bottom;
}
.l-header_toggle.is-active > span::after {
  background-color: #fff;
  top: 6.8px;
  right: 2px;
  transform: rotate(45deg);
  transform-origin: right top;
}

@media (max-width: 900px) {
  .l-header_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
} /*  END Break Point  */
/*		ページタイトル
-----------------------------------------------------*/
#page-title {
  margin-top: 10px;
  padding: 60px 0 0;
  box-sizing: border-box;
}
#page-title > section h2 {
  font-size: 8rem;
  font-weight: normal;
  color: var(--color-font-base);
}

/*  END #page-title  */
@media (max-width: 600pxpx) {
  #page-title {
    padding: 30px 10px;
  }
  #page-title > section h2 {
    font-size: 4rem;
  }
  /*  END #page-title  */
}
/*  END Break Point  */
/*		ページトップ
-----------------------------------------------------*/
#page_top {
  position: fixed;
  bottom: 2%;
  right: 3%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  /*  END & > a  */
}
#page_top > a {
  background: #000;
  width: auto;
  height: auto;
  padding: 12px 20px;
  color: var(--color-theme-base);
  font-weight: bold;
}
#page_top > a:hover {
  text-decoration: none;
}

/*  END #page_top  */
/*		フッター
-----------------------------------------------------*/
.l-footer {
  text-align: center;
  color: #fff;
  background: url(../../img/top/common/footer_bg.png) repeat top left / auto;
  position: relative;
}
.l-footer_main {
  padding: 80px 0;
}
.l-footer_logo {
  margin-bottom: 20px;
}
.l-footer_nav {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.l-footer_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.l-footer_nav ul li{
  position: relative;
}
.l-footer_nav ul li::after{
  content:"";
  display: block;
  width: 1px;
  height: 80%;
  position: absolute;
  top:50%;
  right: -10px;
  transform: translateY(-50%);
  border-right: 1px solid #fff;
}
.l-footer_nav ul li:last-child::after{
  display: none;
}
.l-footer_nav ul a {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
  position: relative;
  transition: all 0.3s;
}
.l-footer_nav ul a::after {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.l-footer_nav ul a:hover::after {
  transform-origin: center top;
  transform: scale(1, 1);
}
.l-footer_nav ul a.icon-onsen::before {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 15 / 12.5;
  margin-right: 0.4em;
  -webkit-mask-image: url('../../img/top/common/icon_onsen.svg');
  mask-image: url('../../img/top/common/icon_onsen.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  background: currentColor;
}
.l-footer_totop {
  position: absolute;
  right: 5%;
  bottom: 25%;
  z-index: 10;
  filter: drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.12));
  transition: all 0.3s ease;
}
.l-footer_totop:hover {
  transform: translateY(-5px);
}
.l-footer_bottom {
  padding: 15px;
  color: var(--color-black);
  background-color: #fff;
}
.l-footer_bottom_flex{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 20px 30px;
}
.l-footer_bottom_banner {
  display: flex;
  gap: 23px;
  justify-content: flex-end;
}
.l-footer .c-copyright .c-copyright__txt small{
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

/*  END #footer  */
@media (max-width: 600px) {
  .l-footer_main{
    padding: 60px 20px 40px;
  }
  
  .l-footer_totop {
    right: 2%;
    bottom: 10%;
  }
  .l-footer_nav ul:first-child li::after {
    display: none;
  }
  .l-footer_nav ul a {
    font-size: 1.2rem;
    padding: 0;
  }
  .l-footer_nav ul a::after {
    display: none;
  }
  

  .l-footer_bottom_flex{
    flex-direction: column;
    gap: 10px;
  }
  .l-footer_bottom_banner {
    gap: 15px;
    justify-content: center;
  }
  
  #footer.l-footer .c-copyright .c-copyright__txt small {
    font-size: 1.2rem;
  }
  /*  END #footer  */
}
/*  END Break Point  *//*# sourceMappingURL=common.css.map */

/* 250715 */
.l-footer_bottom_banner {
	padding-bottom: 15px;
	justify-content: center;
  flex-wrap: wrap;
}

.l-footer_bottom_banner figure {
	border: 1px solid #d7d7d7;
}

@media (max-width: 600px){
  .l-footer_bottom_banner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .l-footer_bottom_banner figure {
    width: 47%;
}
}