@charset "UTF-8";
/*======================================
	Common
======================================*/
html {
  font-size: 100%;
}

body {
  background-color: #E1D4CC;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-size: 0.875rem;
  color: #222222;
  line-height: 1.8;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 0.9375rem;
  }
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
}
a.--disabled {
  pointer-events: none !important;
  opacity: 0.4 !important;
}

button {
  color: #222222;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

picture {
  display: block;
}

ol, ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th, table tr td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

/*		Accessibility
--------------------------------------*/
:focus-visible {
  outline: auto !important;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/*		display
--------------------------------------*/
.xs_disp-b {
  display: none;
}
@media screen and (min-width: 480px) {
  .xs_disp-b {
    display: block;
  }
}

@media screen and (min-width: 480px) {
  .xs_disp-n {
    display: none;
  }
}
.sm_disp-b {
  display: none;
}
@media screen and (min-width: 576px) {
  .sm_disp-b {
    display: block;
  }
}

@media screen and (min-width: 576px) {
  .sm_disp-n {
    display: none;
  }
}
.md_disp-b {
  display: none;
}
@media screen and (min-width: 768px) {
  .md_disp-b {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .md_disp-n {
    display: none;
  }
}
.lg_disp-b {
  display: none;
}
@media screen and (min-width: 992px) {
  .lg_disp-b {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .lg_disp-n {
    display: none;
  }
}
.xl_disp-b {
  display: none;
}
@media screen and (min-width: 1200px) {
  .xl_disp-b {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .xl_disp-n {
    display: none;
  }
}
/*======================================
	Animation
======================================*/
/*		Slider
--------------------------------------*/
.b_slide-half .swiper-slide-prev img,
.b_slide-half .swiper-slide-active img {
  -webkit-animation: zoomIn 8s linear forwards;
          animation: zoomIn 8s linear forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*======================================
	Program
======================================*/
/* Header
--------------------------------------*/
.js-header.active {
  background-color: transparent !important;
}
.js-header.active .site-title a {
  background: url("../svg/logo_sm_w.svg") no-repeat center center/contain;
}
.js-header.active .l_header__btn-reservation {
  color: #E1D4CC;
  border-color: #E1D4CC;
}

.js-burgerMenu {
  display: none;
}

.js-burgerMenu.active {
  display: block;
}

.js-burgerToggle.active .line {
  background-color: #E1D4CC;
}
.js-burgerToggle.active .line:nth-of-type(1) {
  top: 5px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.js-burgerToggle.active .line:nth-of-type(2) {
  width: 100%;
  top: 5px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.js-burgerToggle.active .text {
  color: #E1D4CC;
}

.js-focus-trap {
  visibility: hidden;
}

.js-mask {
  display: none;
}

.js-mask.active {
  display: block;
}

/* accordion
--------------------------------------*/
.js-acoLabel.open .b_aco-main__toggle::after {
  -webkit-transform: rotate(90deg) scale(0, 1);
          transform: rotate(90deg) scale(0, 1);
}

/* animation display
--------------------------------------*/
.reveal {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-mask-image: linear-gradient(170deg, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(170deg, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-position: 0 100%;
          mask-position: 0 100%;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-mask-position 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-mask-position 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, mask-position 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, mask-position 1.2s ease-out, transform 1.2s ease-out, -webkit-mask-position 1.2s ease-out, -webkit-transform 1.2s ease-out;
  will-change: opacity, transform, mask-position;
}

.reveal--lr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(33%, #000), color-stop(66%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to right, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(33%, #000), color-stop(66%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to right, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, mask-position 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, mask-position 0.8s ease-out, transform 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  will-change: opacity, transform, mask-position;
}

.reveal-display,
.reveal-delay {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-mask-image: linear-gradient(170deg, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(170deg, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-position: 0 100%;
          mask-position: 0 100%;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, mask-position 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, mask-position 0.8s ease-out, transform 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  will-change: opacity, transform, mask-position;
}

.reveal-delay--lr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(33%, #000), color-stop(66%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to right, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(33%, #000), color-stop(66%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to right, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, mask-position 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, mask-position 0.8s ease-out, transform 0.8s ease-out, -webkit-mask-position 0.8s ease-out, -webkit-transform 0.8s ease-out;
  will-change: opacity, transform, mask-position;
}

.js-reveal.show,
.js-revealBurger.show {
  opacity: 1;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*======================================
	Header
======================================*/
.l_header {
  width: 100%;
  background-color: rgba(225, 212, 204, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  pointer-events: none;
}
.l_header .l_header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 15px;
  margin: auto;
}
@media screen and (min-width: 992px) {
  .l_header .l_header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 30px 12px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .l_header .l_header__inner {
    padding: 10px 30px 10px 24px;
  }
}
.l_header .site-title {
  z-index: 100;
  line-height: 0;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.l_header .site-title a {
  display: block;
  width: 80px;
  height: 38px;
  background: url("../svg/logo.svg") no-repeat center center/contain;
  pointer-events: all;
}
@media screen and (min-width: 1200px) {
  .l_header .site-title a {
    width: 90px;
    height: 42px;
  }
}

.l_header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.l_header__btn-reservation {
  font-size: 0.75rem;
  color: #222222;
  line-height: 1.2;
  border: 1px solid #222222;
  padding: 4px 5px 3px;
  pointer-events: all;
}
@media screen and (min-width: 576px) {
  .l_header__btn-reservation {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  .l_header__btn-reservation {
    font-size: 0.9375rem;
  }
}

/* Burger Menu
--------------------------------------*/
.burger-menu {
  width: 100%;
  height: 100svh;
  background: url("../img/bg_menu_sp.webp") no-repeat center center/cover;
  background-color: rgba(34, 34, 34, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  z-index: 99;
}
@media screen and (min-width: 992px) {
  .burger-menu {
    background: url("../img/bg_menu.webp") no-repeat center center/cover;
  }
}
.burger-menu .main-menu {
  position: fixed;
  top: auto;
  right: 50%;
  bottom: 50%;
  left: auto;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
.burger-menu .item a {
  color: #E1D4CC;
  pointer-events: all;
}

.burger-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100svh;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .burger-menu__inner {
    padding: 60px 20px;
  }
}

.burger-nav {
  max-width: 248px;
  width: 100%;
  padding: 150px 0 96px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .burger-nav {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 150px 0 40px;
    margin: 0;
  }
}

.burger-nav__main-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.25rem;
  margin-bottom: 64px;
}
@media screen and (min-width: 992px) {
  .burger-nav__main-list {
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.5625rem;
    margin-bottom: 0;
  }
}
.burger-nav__main-list .item {
  color: #E1D4CC;
  letter-spacing: 0.2em;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .burger-nav__main-list .item {
    margin-right: 3.2258064516vw;
  }
}
@media screen and (min-width: 992px) {
  .burger-nav__main-list .item:first-child {
    margin-right: 0;
  }
}
.burger-nav__main-list .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.burger-nav__main-list .en {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  padding-left: 6px;
  margin-top: 13px;
}
.burger-nav__main-list .c_icon-arrow {
  margin-top: 8px;
}

.burger-nav__sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .burger-nav__sub-list {
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 40px;
  }
}
.burger-nav__sub-list .item {
  font-size: 16px;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .burger-nav__sub-list .item {
    font-size: 18px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 992px) {
  .burger-nav__sub-list .item:last-child {
    margin-bottom: 0;
  }
}

.burger-nav__meta-list {
  font-size: 0.8125rem;
}
@media screen and (min-width: 992px) {
  .burger-nav__meta-list {
    font-size: 0.9375rem;
    padding-left: 40px;
  }
}
.burger-nav__meta-list .item {
  color: #E1D4CC;
  line-height: 1.57;
}
.burger-nav__meta-list .item:first-child {
  margin-bottom: 1.4615384615em;
}
.burger-nav__meta-list .item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 19px;
}
.burger-nav__meta-list .item-links > * + *::before {
  content: "/";
  padding: 0 0.2857142857em;
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle {
  display: inline-block;
  width: 30px;
  height: 23px;
  margin-left: 22px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  pointer-events: all;
}
@media screen and (min-width: 576px) {
  .burger-toggle {
    width: 35px;
    height: 28px;
  }
}
@media screen and (min-width: 992px) {
  .burger-toggle {
    margin-left: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .burger-toggle:hover .line:nth-of-type(2) {
    width: 100%;
  }
}
.burger-toggle .line {
  width: 100%;
  height: 1px;
  background-color: #222222;
  margin: auto;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.burger-toggle .line:nth-of-type(1) {
  top: 2px;
}
.burger-toggle .line:nth-of-type(2) {
  width: 20px;
  top: 7px;
}
@media screen and (min-width: 576px) {
  .burger-toggle .line:nth-of-type(2) {
    width: 25px;
    top: 8px;
  }
}
.burger-toggle .text {
  color: #222222;
  font-size: 12px;
  line-height: 1;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 576px) {
  .burger-toggle .text {
    font-size: 16px;
  }
}
.burger-toggle .visually-hidden {
  color: #fff;
}

/*======================================
	Contents
======================================*/
.l_container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_container {
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .l_container {
    max-width: 1280px;
    padding: 0 90px;
  }
}

/*		Page
--------------------------------------*/
.l_page-inner {
  padding-top: 62px;
}

.l_page-title {
  width: 100%;
  padding: 72px 0 62px;
}
@media screen and (min-width: 768px) {
  .l_page-title:not(.pc-show) {
    display: none;
  }
}
.l_page-title .main {
  padding-left: 0.56em;
}

/*		Section
--------------------------------------*/
.l_sec {
  padding-top: 34px;
}
@media screen and (min-width: 1200px) {
  .l_sec {
    padding-top: 56px;
  }
}
.l_sec .c_img-wrap {
  margin: 30px 0 16px;
}

.l_sec__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l_sec__inner .l_sec__sub-content {
  width: 51px;
}
@media screen and (min-width: 768px) {
  .l_sec__inner .l_sec__sub-content {
    width: 50%;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l_sec__inner .l_sec__sub-content {
    padding-right: 50px;
  }
}
.l_sec__inner .l_sec__main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 22px;
}
@media screen and (min-width: 768px) {
  .l_sec__inner .l_sec__main-content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .l_sec__inner .l_sec__main-content {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l_sec__inner .l_sec__main-content {
    padding-left: 50px;
  }
}

.l_sec__img-wrap {
  margin-top: 45px;
}
@media screen and (min-width: 992px) {
  .l_sec__img-wrap {
    margin-top: 72px;
  }
}
@media screen and (min-width: 1200px) {
  .l_sec__img-wrap {
    margin-top: 100px;
  }
}
.l_sec__img-wrap picture {
  display: block;
}
.l_sec__img-wrap > * + * {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .l_sec__img-wrap > * + * {
    margin-top: 12px;
  }
}

/*		Line
--------------------------------------*/
.l_line-box {
  position: relative;
}
.l_line-box::before {
  content: "";
  width: 2px;
  height: 100%;
  background: url("../svg/line.svg") repeat-y center center/cover;
  position: absolute;
  top: 0;
  left: 71px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l_line-box::before {
    left: calc(50vw - 1px);
  }
}

.l_line-box__top-illust,
.l_line-box__bottom-illust {
  display: block;
  background-position: center center;
  background-size: contain;
  position: absolute;
}

/*======================================
	Footer
======================================*/
.l_footer {
  margin-top: 58px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .l_footer {
    margin-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  .l_footer {
    margin-top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .l_footer {
    margin-top: 160px;
    margin-bottom: 40px;
  }
}

.l_footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1px #4C4948;
  padding-top: 35px;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .l_footer__nav {
    margin-bottom: 60px;
  }
}

.l_footer__menu:first-child {
  margin-right: 74px;
}
.l_footer__menu .list-item {
  padding: 0.7142857143em 0;
}

.copyright {
  display: block;
  font-size: 0.625rem;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .copyright {
    font-size: 0.75rem;
  }
}

/*======================================
	Component
======================================*/
/*		Button
--------------------------------------*/
.c_btn-wrap--center {
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn-wrap:hover a {
    opacity: 0.6;
  }
}

.c_btn-main {
  display: inline-block;
  line-height: 1.6;
  position: relative;
}
.c_btn-main::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c_btn-main--vertical {
  min-height: 105px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
.c_btn-main--vertical::after {
  width: 1px;
  height: 100%;
  top: 0;
  bottom: auto;
}
.c_btn-main--disabled {
  pointer-events: none;
}

.c_btn-bg {
  width: 100%;
  aspect-ratio: 375/180;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c_btn-bg {
    aspect-ratio: 1090/400;
    max-height: 400px;
  }
}
@media screen and (min-width: 992px) {
  .c_btn-bg {
    width: calc(100% - 90px);
    margin-right: 90px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c_btn-bg:hover::before {
    opacity: 0.3;
  }
  .c_btn-bg:hover a {
    opacity: 1;
  }
}
.c_btn-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #222222;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c_btn-bg--disabled {
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn-bg--disabled:hover a {
    opacity: 1;
  }
}

.c_btn-bg__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c_btn-bg__inner {
    padding: 30px 32px;
  }
}
.c_btn-bg__inner .c_btn-main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c_btn-bg__inner .c_heading-lv1 {
  display: block;
}

/*		Icon
--------------------------------------*/
.c_icon-arrow {
  display: block;
  width: 28px;
  height: 28px;
  background: url("../svg/icon_arrow.svg") no-repeat center center/contain;
}

/*		Heading
--------------------------------------*/
.c_heading-wrap--center {
  text-align: center;
}

.c_heading-lv1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.c_heading-lv1 .main {
  font-size: 1.5625rem;
  line-height: 1.2;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media screen and (min-width: 768px) {
  .c_heading-lv1 .main {
    font-size: 35px;
  }
}
@media screen and (min-width: 992px) {
  .c_heading-lv1 .main {
    font-size: 40px;
  }
}
.c_heading-lv1 .main span {
  display: inline-block;
  letter-spacing: -0.35em;
  line-height: 1;
  text-orientation: upright;
  -webkit-transform: translate(0.04em, -0.2em);
          transform: translate(0.04em, -0.2em);
}
.c_heading-lv1 .sub {
  font-size: 0.9375rem;
  line-height: 1.4;
  padding-top: 0.1333333333em;
  padding-left: 0.5333333333em;
}
@media screen and (min-width: 768px) {
  .c_heading-lv1 .sub {
    font-size: 1.25rem;
    padding-top: 0.1em;
    padding-left: 0.4em;
  }
}
@media screen and (min-width: 1200px) {
  .c_heading-lv1 .sub {
    font-size: 1.5625rem;
    padding-top: 0.32em;
    padding-left: 0.32em;
  }
}
.c_heading-lv1--left {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}
@media screen and (min-width: 768px) {
  .c_heading-lv1--left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 28px;
  }
}
.c_heading-lv1--left .main {
  line-height: 1;
}

.c_heading-lv2 {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 1.1111111111em;
}
@media screen and (min-width: 768px) {
  .c_heading-lv2 {
    font-size: 1.5625rem;
    margin-bottom: 0.8em;
  }
}
@media screen and (min-width: 1200px) {
  .c_heading-lv2 {
    font-size: 1.875rem;
    margin-bottom: 1.44em;
  }
}
.c_heading-lv2--vertical {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  line-height: 1;
}

.c_heading-lv3 {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 0.75em;
}
@media screen and (min-width: 768px) {
  .c_heading-lv3 {
    font-size: 1.25rem;
    margin-bottom: 0.6em;
  }
}
@media screen and (min-width: 1200px) {
  .c_heading-lv3 {
    font-size: 1.5625rem;
    margin-bottom: 1.12em;
  }
}
.c_heading-lv3--vertical {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  line-height: 1;
}
.c_heading-lv3--underline {
  display: inline-block;
  padding-bottom: 6px;
  position: relative;
}
.c_heading-lv3--underline::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c_heading-bracket {
  width: 100%;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 992px) {
  .c_heading-bracket {
    font-size: 1.5625rem;
    margin-bottom: 0.8em;
  }
}
@media screen and (min-width: 1200px) {
  .c_heading-bracket {
    font-size: 30px;
    margin-bottom: 0.6666666667em;
  }
}
.c_heading-bracket::before, .c_heading-bracket::after {
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
}
.c_heading-bracket::before {
  content: "(";
  display: inline-block;
  padding-right: 1em;
}
.c_heading-bracket::after {
  content: ")";
  display: inline-block;
  padding-left: 1em;
}

/*		Body
--------------------------------------*/
.c_body-main {
  text-align: justify;
}
.c_body-main--vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}

.c_body-lv2 {
  font-size: 0.75rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c_body-lv2 {
    font-size: 0.8125rem;
  }
}
.c_body-lv2--vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
.c_body-lv2--vertical span {
  display: inline-block;
  text-orientation: upright;
  letter-spacing: -0.1em;
  -webkit-transform: translateX(0.0833333333em);
          transform: translateX(0.0833333333em);
}

.c_body-lv3 {
  font-size: 0.625rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c_body-lv3 {
    font-size: 0.6875rem;
  }
}

.c_body-bracket {
  display: inline-block;
  -webkit-transform: translateX(-0.1428571429em);
          transform: translateX(-0.1428571429em);
}
.c_body-bracket::before, .c_body-bracket::after {
  display: inline-block;
}
.c_body-bracket::before {
  content: "【";
  -webkit-transform: translateX(-0.2142857143em);
          transform: translateX(-0.2142857143em);
}
.c_body-bracket::after {
  content: "】";
  -webkit-transform: translateX(0.2142857143em);
          transform: translateX(0.2142857143em);
}

/*		Image
--------------------------------------*/
.c_img-wrap {
  width: 100%;
  display: block;
  aspect-ratio: 335/220;
  height: 100%;
}
.c_img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*		Logo
--------------------------------------*/
.c_logo-box > * + * {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .c_logo-box > * + * {
    margin-left: 20px;
  }
}

.c_logo {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.c_logo--ig {
  width: 20px;
  height: 20px;
  background-image: url("../svg/icon_ig.svg");
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  .c_logo--ig {
    width: 30px;
    height: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c_logo--ig:hover {
    opacity: 0.6;
  }
}
.c_logo--x {
  width: 18px;
  height: 20px;
  background-image: url("../svg/icon_x.svg");
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  .c_logo--x {
    width: 26px;
    height: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c_logo--x:hover {
    opacity: 0.6;
  }
}
.c_logo--kujira {
  width: 145px;
  height: 51px;
  background-image: url("../svg/logo_kujira.svg");
}

/*======================================
	Block
======================================*/
/*		Fv
--------------------------------------*/
.b_page-fv {
  width: 100%;
  aspect-ratio: 375/264;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 576px) {
  .b_page-fv {
    aspect-ratio: 375/200;
  }
}
@media screen and (min-width: 768px) {
  .b_page-fv {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 992px) {
  .b_page-fv {
    height: calc(100svh - 58px);
    aspect-ratio: auto;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .b_page-fv {
    margin-bottom: 150px;
  }
}

/*		Table of Contents
--------------------------------------*/
.b_toc {
  width: 100%;
}

.b_toc__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #222222;
  padding: 0.8571428571em 0.8571428571em 0.9285714286em;
  margin-bottom: 10px;
  position: relative;
}
.b_toc__link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  position: absolute;
  right: 12px;
  bottom: calc(50% - 2px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.b_toc__link:last-child {
  margin-bottom: 0;
}

/*		Slider
--------------------------------------*/
.b_slider-main .swiper-slide {
  max-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.b_slider-main .slider-pagination {
  text-align: right;
  padding: 0 15px 6px 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .b_slider-main .slider-pagination {
    padding: 0 25px 16px 0;
  }
}
.b_slider-main .swiper-pagination-bullet {
  width: 20px;
  height: 1px;
  background-color: #fff;
  border-radius: 0;
  margin: 0 !important;
}
@media screen and (min-width: 992px) {
  .b_slider-main .swiper-pagination-bullet {
    width: 25px;
  }
}

.b_slide-half {
  height: 50%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .b_slide-half {
    width: 50%;
    height: 100%;
  }
}
.b_slide-half .swiper-slide img {
  width: 100%;
  height: 50svh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (min-width: 992px) {
  .b_slide-half .swiper-slide img {
    width: 100%;
    height: 100vh;
  }
}

/*		Accordion
--------------------------------------*/
.b_aco-main__list-item {
  width: 100%;
  border-bottom: 1px solid #B1B1B1;
}

.b_aco-main__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 12px 0;
}

.b_aco-main__label-text {
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .b_aco-main__label-text {
    font-size: 1rem;
  }
}

.b_aco-main__toggle {
  display: block;
  width: 12px;
  height: 12px;
  position: relative;
}
.b_aco-main__toggle::before, .b_aco-main__toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
  margin: auto;
  position: absolute;
  inset: 0;
}
.b_aco-main__toggle::after {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.b_aco-main__dl .panel-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.75rem;
  line-height: 1.4;
  border-bottom: 1px solid #B1B1B1;
  padding: 1.0833333333em 0 1em;
}
@media screen and (min-width: 768px) {
  .b_aco-main__dl .panel-list__item {
    font-size: 0.8125rem;
    padding: 1.2em 0 1.1333333333em;
  }
}
.b_aco-main__dl .panel-list__item:first-child {
  padding-top: 0;
}
.b_aco-main__dl .panel-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.b_aco-main__dl .item-head {
  width: 72px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .b_aco-main__dl .item-head {
    width: 100px;
  }
}
.b_aco-main__dl .item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.b_aco-main__panel {
  display: none;
  padding: 12px 0;
}
.b_aco-main__panel .c_body-lv2 {
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .b_aco-main__panel .c_body-lv2 {
    margin-top: 15px;
  }
}

.b_aco-main__caption-box {
  border-top: 1px solid #B1B1B1;
  padding-top: 8px;
  margin: 19px 0 0;
}
@media screen and (min-width: 576px) {
  .b_aco-main__caption-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 576px) {
  .b_aco-main__img-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.b_aco-main__img-wrap {
  text-align: right;
  margin-bottom: 5px;
}
.b_aco-main__img-wrap img {
  width: 100%;
}

.b_aco-main__img-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.6875rem;
}
@media screen and (min-width: 576px) {
  .b_aco-main__img-caption {
    margin: 0 0 0 20px !important;
  }
}
@media screen and (min-width: 768px) {
  .b_aco-main__img-caption {
    font-size: 0.8125rem;
  }
}
.b_aco-main__img-caption > * + * {
  margin-left: 10px;
}
@media screen and (min-width: 576px) {
  .b_aco-main__img-caption > * + * {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .b_aco-main--sp .b_aco-main__list-item {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .b_aco-main--sp .b_aco-main__label {
    cursor: default;
  }
}
@media screen and (min-width: 768px) {
  .b_aco-main--sp .b_aco-main__toggle {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b_aco-main--sp .b_aco-main__panel {
    display: block;
  }
}

/*		Card
--------------------------------------*/
.b_card-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 12px;
}
@media screen and (min-width: 768px) {
  .b_card-main {
    gap: 32px 40px;
  }
}
.b_card-main .card-item {
  width: calc(50% - 6px);
}
@media screen and (min-width: 768px) {
  .b_card-main .card-item {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 992px) {
  .b_card-main .card-item {
    width: calc(33.3333333333% - 26.6666666667px);
  }
}
.b_card-main .card-thumb {
  aspect-ratio: 162/122;
  margin-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .b_card-main .card-thumb {
    margin-bottom: 20px;
  }
}
.b_card-main .card-thumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.b_card-main .card-meta {
  margin-bottom: 0.4166666667em;
}
.b_card-main .card-meta > *:last-child::after {
  content: "";
}
.b_card-main .card-data::after {
  content: "｜";
}
.b_card-main .card-category::after {
  content: ",";
}
.b_card-main .card-title {
  font-size: inherit;
  line-height: 1.4;
}

/*		Pagination
--------------------------------------*/
.b_archive-pagination {
  width: 100%;
  text-align: center;
  position: relative;
}
.b_archive-pagination .prev,
.b_archive-pagination .next {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
}
.b_archive-pagination .prev {
  -webkit-transform: translateY(-1px) rotate(135deg);
          transform: translateY(-1px) rotate(135deg);
  margin-right: 6px;
}
.b_archive-pagination .next {
  -webkit-transform: translateY(-1px) rotate(-45deg);
          transform: translateY(-1px) rotate(-45deg);
  margin-left: 6px;
}

.b_post-pagination__wrap {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .b_post-pagination__wrap {
    margin-top: 100px;
  }
}

.b_post-pagination {
  display: inline-block;
  position: relative;
}
.b_post-pagination a {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .b_post-pagination a:hover {
    opacity: 0.5;
  }
}
.b_post-pagination .prev,
.b_post-pagination .next {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.b_post-pagination .prev a::before,
.b_post-pagination .next a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  position: absolute;
  bottom: 50%;
}
.b_post-pagination .prev {
  left: -80px;
}
.b_post-pagination .prev a::before {
  left: -16px;
  -webkit-transform: translateY(50%) rotate(135deg);
          transform: translateY(50%) rotate(135deg);
}
.b_post-pagination .next {
  right: -80px;
}
.b_post-pagination .next a::before {
  right: -16px;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

/*		List
--------------------------------------*/
.b_list-main {
  border-top: 1px solid #B1B1B1;
}
.b_list-main .list-item {
  border-bottom: 1px solid #B1B1B1;
  padding: 14px 0 13px;
}
@media screen and (min-width: 1200px) {
  .b_list-main .list-item {
    padding: 20px 0 19px;
  }
}
.b_list-main .list-meta {
  line-height: 1.4;
  margin-bottom: 0.2857142857em;
}
.b_list-main .list-meta > *:last-child::after {
  content: "";
}
.b_list-main .list-category::after {
  content: ",";
}
.b_list-main .list-title {
  line-height: 1.4;
}
.b_list-main .list-date::after {
  content: "｜";
  padding-left: 0.2857142857em;
}

/*		Slider
--------------------------------------*/
/*		Flex
--------------------------------------*/
.l_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 480px) {
  .xs_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 576px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .xl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
._ai-b {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

._ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

._ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

._ai-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (min-width: 480px) {
  .xs_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xs_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xs_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xs_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xs_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 576px) {
  .sm_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .sm_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sm_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .sm_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sm_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .md_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .md_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .md_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .md_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .md_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 992px) {
  .lg_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .lg_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lg_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .lg_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .lg_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 1200px) {
  .xl_ai-b {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .xl_ai-c {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .xl_ai-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .xl_ai-fs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .xl_ai-s {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
._jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

._jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

._jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

._jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

._jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 480px) {
  .xs_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xs_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xs_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xs_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xs_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 576px) {
  .sm_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sm_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sm_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sm_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sm_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .md_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .md_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .md_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .md_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .md_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .lg_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lg_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .lg_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .lg_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .lg_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .xl_jc-c {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .xl_jc-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .xl_jc-fs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .xl_jc-sa {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .xl_jc-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
._fxw-n {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

._fxw-w {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

._fxw-wr {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

@media screen and (min-width: 480px) {
  .xs_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xs_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xs_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (min-width: 576px) {
  .sm_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sm_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sm_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (min-width: 768px) {
  .md_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .md_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .md_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (min-width: 992px) {
  .lg_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .lg_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lg_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .xl_fxw-n {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xl_fxw-w {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .xl_fxw-wr {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
._fxd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._fxd-cr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

._fxd-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

._fxd-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 480px) {
  .xs_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xs_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xs_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xs_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 576px) {
  .sm_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sm_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sm_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sm_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .md_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .md_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .md_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .md_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .lg_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lg_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .lg_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .lg_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .xl_fxd-c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xl_fxd-cr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .xl_fxd-r {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xl_fxd-rr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
._ac-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

._ac-fe {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

._ac-fs {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

._ac-s {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

._ac-sa {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

._ac-sb {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

@media screen and (min-width: 480px) {
  .xs_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xs_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xs_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xs_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xs_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xs_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (min-width: 576px) {
  .sm_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .sm_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .sm_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .sm_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .sm_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .sm_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .md_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .md_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .md_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .md_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .md_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .md_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .lg_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .lg_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .lg_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .lg_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .lg_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .lg_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .xl_ac-c {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .xl_ac-fe {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .xl_ac-fs {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .xl_ac-s {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .xl_ac-sa {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .xl_ac-sb {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
}
._ord1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

._ord2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

._ord3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

._ord4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

._ord5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

._ord6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

._ord7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

._ord8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

._ord9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

._ord10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

@media screen and (min-width: 480px) {
  .xs_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xs_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xs_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xs_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xs_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xs_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xs_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xs_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xs_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xs_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (min-width: 576px) {
  .sm_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sm_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sm_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .sm_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .sm_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .sm_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .sm_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .sm_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .sm_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .sm_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (min-width: 768px) {
  .md_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .md_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .md_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .md_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .md_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .md_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .md_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .md_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .md_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .md_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (min-width: 992px) {
  .lg_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .lg_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .lg_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .lg_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .lg_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .lg_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .lg_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .lg_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .lg_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .lg_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
@media screen and (min-width: 1200px) {
  .xl_ord1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xl_ord2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xl_ord3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xl_ord4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xl_ord5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xl_ord6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .xl_ord7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .xl_ord8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .xl_ord9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .xl_ord10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
}
/*		grid
--------------------------------------*/
.l_grid {
  display: grid;
}
.l_grid.--col1 {
  grid-template-columns: repeat(1, 1fr);
}
.l_grid.--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.l_grid.--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.l_grid.--col4 {
  grid-template-columns: repeat(4, 1fr);
}
.l_grid.--col5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (min-width: 480px) {
  .l_grid.xs--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l_grid.xs--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid.xs--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid.xs--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid.xs--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 576px) {
  .l_grid.sm--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l_grid.sm--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid.sm--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid.sm--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid.sm--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .l_grid.md--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l_grid.md--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid.md--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid.md--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid.md--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .l_grid.lg--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l_grid.lg--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid.lg--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid.lg--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid.lg--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .l_grid.xl--col1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l_grid.xl--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l_grid.xl--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .l_grid.xl--col4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .l_grid.xl--col5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/*======================================
	Utility
======================================*/
/*		Text
--------------------------------------*/
.u_text-vertical--en {
  text-orientation: upright;
  letter-spacing: -0.1em;
  -webkit-transform: translateX(0.1em);
          transform: translateX(0.1em);
}

/*======================================
	Top
======================================*/
/*		Loading
--------------------------------------*/
.loading {
  width: 100%;
  height: 100%;
  background-color: #E1D4CC;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loading__logo {
  display: none;
  width: 100px;
  height: 100px;
  background: url("../svg/logo_lg.svg") no-repeat center center/contain;
  margin: auto;
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 768px) {
  .loading__logo {
    width: 160px;
    height: 160px;
  }
}

/*		Common
--------------------------------------*/
.top__sec {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .top__sec {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 992px) {
  .top__sec {
    margin-bottom: 120px;
  }
}

/*		fv
--------------------------------------*/
.fv {
  height: calc(100svh - 58px);
  position: relative;
}
@media screen and (min-width: 992px) {
  .fv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.fv__logo {
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, calc(50% + 16px));
          transform: translate(50%, calc(50% + 16px));
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .fv__logo {
    -webkit-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
}
.fv__logo img {
  width: 114px;
}
@media screen and (min-width: 992px) {
  .fv__logo img {
    width: 157px;
  }
}

/*		Intro
--------------------------------------*/
.top .l_page-title {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .top .l_page-title {
    width: 143px;
    padding-bottom: 0;
  }
}
.top .l_line-box {
  margin: 100px 0;
  padding-bottom: 55px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top .l_line-box {
    margin: 120px 0;
  }
}
@media screen and (min-width: 1200px) {
  .top .l_line-box {
    margin: 150px 0;
  }
}
.top .l_line-box__top-illust {
  width: 41px;
  height: 67px;
  background-image: url("../img/illust_man.webp");
  top: -68px;
  left: 35px;
}
@media screen and (min-width: 768px) {
  .top .l_line-box__top-illust {
    left: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .top .l_line-box__top-illust {
    width: 46px;
    height: 75px;
    background-image: url("../img/illust_man_pc.webp");
  }
}
.top .l_line-box__bottom-illust {
  width: 52px;
  height: 71px;
  background-image: url("../img/illust_men.webp");
  bottom: -60px;
  left: 26px;
}
@media screen and (min-width: 768px) {
  .top .l_line-box__bottom-illust {
    bottom: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .top .l_line-box__bottom-illust {
    width: 75px;
    background-image: url("../img/illust_men_pc.webp");
    height: 103px;
    bottom: -110px;
  }
}

@media screen and (min-width: 768px) {
  .top__intro .l_sec__sub-content {
    display: none;
  }
}
.top__intro .l_sec__main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .top__intro .l_sec__main-content {
    padding-top: 80px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .top__intro .l_sec__main-content {
    padding-top: 150px;
  }
}

@media screen and (min-width: 768px) {
  .top__intro-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .top__text-area {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 40px;
  }
}

.top__intro-body {
  min-height: 360px;
  letter-spacing: 0.07em;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .top__intro-body {
    min-height: 386px;
  }
}

.top__intro-img01 {
  aspect-ratio: 228/308;
  max-width: 228px;
  margin: 0 auto 75px;
}
@media screen and (min-width: 768px) {
  .top__intro-img01 {
    width: 50%;
    max-width: 400px;
    margin: 0 40px 0 0;
  }
}

.top__intro-img02 {
  width: 100%;
  aspect-ratio: 375/190;
}
@media screen and (min-width: 768px) {
  .top__intro-img02 {
    aspect-ratio: 1090/400;
    max-height: 400px;
  }
}
@media screen and (min-width: 992px) {
  .top__intro-img02 {
    padding-right: 90px;
  }
}

/*		stay
--------------------------------------*/
@media screen and (min-width: 768px) {
  .stay {
    max-width: 1280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-right: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 992px) {
  .stay {
    padding-right: 90px;
  }
}
@media screen and (min-width: 768px) {
  .stay .l_container {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .stay .l_sec__inner {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.stay .c_img-wrap {
  aspect-ratio: 355/264;
  padding-left: 20px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .stay .c_img-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 55%;
    max-height: 490px;
    padding: 0;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .stay .c_heading-lv1 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 40px;
  }
}
.stay .c_heading-lv1 .main {
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .stay .c_heading-lv1 .main {
    margin-right: 10px;
  }
}
@media screen and (min-width: 992px) {
  .stay .c_heading-lv1 .main {
    margin-right: 12px;
  }
}
@media screen and (min-width: 768px) {
  .stay .c_body-lv2--vertical {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 992px) {
  .stay .c_body-lv2--vertical {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .stay .l_sec__sub-content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .stay .l_sec__main-content {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    width: 100%;
    padding-left: 0;
  }
}
.stay .honkan__body {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .stay .honkan__body {
    width: 100%;
    max-width: 390px;
  }
}

.stay__honkan {
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .stay__honkan {
    margin-bottom: 100px;
  }
}

/*		Lead
--------------------------------------*/
.lead {
  margin-bottom: 64px;
}
@media screen and (min-width: 992px) {
  .lead {
    margin-bottom: 84px;
  }
}
@media screen and (min-width: 1200px) {
  .lead .c_heading-lv2 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .lead .c_btn-wrap {
    text-align: left;
  }
}
.lead .c_btn-main {
  margin-top: 20px;
}

@media screen and (min-width: 1200px) {
  .lead__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.lead__link {
  width: 100%;
  aspect-ratio: 335/150;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 25px 28px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .lead__link {
    aspect-ratio: 335/110;
    padding: 25px 40px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .lead__link {
    width: calc(50% - 5px);
    aspect-ratio: 335/150;
  }
  .lead__link:nth-child(even) {
    margin-left: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .lead__link:hover::before {
    opacity: 1;
  }
}
.lead__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #8C8989;
  opacity: 0.5;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lead__link .c_heading-lv2 {
  margin-bottom: 0;
}

.lead__shoku {
  background-image: url("../img/top_lead-shoku.webp");
}
@media screen and (min-width: 768px) {
  .lead__shoku {
    background-image: url("../img/top_lead-shoku_pc.webp");
  }
}

.lead__kanmi {
  background-image: url("../img/top_lead-kanmi.webp");
}
@media screen and (min-width: 768px) {
  .lead__kanmi {
    background-image: url("../img/top_lead-kanmi_pc.webp");
  }
}
@media screen and (min-width: 992px) {
  .lead__kanmi .lead__logo img {
    width: 80px;
  }
}

.lead__sauna {
  background-image: url("../img/top_lead-sauna.webp");
}
@media screen and (min-width: 768px) {
  .lead__sauna {
    background-image: url("../img/top_lead-sauna_pc.webp");
  }
}
@media screen and (min-width: 992px) {
  .lead__sauna img {
    width: 100px;
  }
}

.lead__history {
  background-image: url("../img/top_lead-history.webp");
}
@media screen and (min-width: 768px) {
  .lead__history {
    background-image: url("../img/top_lead-history_pc.webp");
  }
}

/*		Schedule
--------------------------------------*/
.schedule__intro .c_heading-lv2 {
  margin-bottom: 0.4444444444em;
}
@media screen and (min-width: 768px) {
  .schedule__intro .c_heading-lv2 {
    margin-bottom: 0.96em;
  }
}
@media screen and (min-width: 768px) {
  .schedule__intro .l_sec__sub-content {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .schedule__intro .l_sec__main-content {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .schedule__intro .l_sec__inner {
    width: 50%;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .schedule__intro .l_sec__inner {
    padding-right: 50px;
  }
}

@media screen and (min-width: 768px) {
  .schedule__intro-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.schedule__intro-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .schedule__intro-imgs {
    width: 50%;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .schedule__intro-imgs {
    padding-left: 50px;
  }
}

.schedule__intro-img {
  aspect-ratio: 1/1;
}

.schedule {
  background-image: url("../img/top_schedule.webp");
}
@media screen and (min-width: 768px) {
  .schedule {
    background-image: url("../img/top_schedule_pc.webp");
  }
}

/*		News
--------------------------------------*/
.news .b_list-main {
  margin-bottom: 25px;
}
.news .l_sec__sub-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .news .l_sec__sub-content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.news .news__illust {
  width: 40px;
  height: 54px;
  background: url("../img/illust_wemen.webp") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .news .news__illust {
    background: url("../img/illust_wemen_pc.webp") no-repeat center center/contain;
    width: 62px;
    height: 84px;
  }
}

/*		Access
--------------------------------------*/
.access iframe {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 490px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  margin-bottom: 36px;
}
@media screen and (min-width: 992px) {
  .access iframe {
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 768px) {
  .access .c_body-lv2 {
    font-size: 0.9375rem;
  }
}

.access__list-title::before, .access__list-title::after {
  display: inline-block;
  -webkit-transform: translateY(-0.0833333333em);
          transform: translateY(-0.0833333333em);
}
.access__list-title::before {
  content: "[";
  padding-right: 0.1666666667em;
}
.access__list-title::after {
  content: "]";
  padding-left: 0.1666666667em;
}

/*		Reservation
--------------------------------------*/
.reservation {
  color: #fff;
  background-image: url("../img/top_reservation.webp");
}
@media screen and (min-width: 768px) {
  .reservation {
    background-image: url("../img/top_reservation_pc.webp");
  }
}
.reservation .c_btn-main::after {
  background-color: #fff;
}

/*======================================
	About
======================================*/
/*		fv
--------------------------------------*/
.about-fv {
  background-image: url("../img/about_fv.webp");
}
@media screen and (min-width: 768px) {
  .about-fv {
    background-image: url("../img/about_fv_pc.webp");
  }
}

/*		Intro
--------------------------------------*/
@media screen and (min-width: 1200px) {
  .about-intro .c_body-main {
    font-size: 1.125rem;
  }
}

.about-intro__caption {
  text-align: right;
}

/*		nakaoke
--------------------------------------*/
.about-nakaoke .c_img-wrap {
  aspect-ratio: 262/157;
}

/*======================================
	Stay
======================================*/
/*		Common
--------------------------------------*/
@media screen and (min-width: 768px) {
  .stay-sp-only {
    display: none;
  }
}

.stay-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .stay-pc-only {
    display: block;
    margin-bottom: 88px;
  }
  .stay-pc-only .l_sec__sub-content {
    padding-right: 40px;
  }
  .stay-pc-only .b_toc {
    padding-right: 28px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .stay-pc-only {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .stay-head .c_body-main {
    max-height: 260px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .stay-head .c_body-main {
    line-height: 2;
    max-height: 230px;
  }
}

/*		fv
--------------------------------------*/
.stay-fv {
  background-image: url("../img/stay_fv.webp");
}
@media screen and (min-width: 768px) {
  .stay-fv {
    background-image: url("../img/stay_fv_pc.webp");
  }
}

.page-title__stay {
  padding-bottom: 9px;
}

/*		map
--------------------------------------*/
.stay-map {
  margin-top: 52px;
}

.stay-map__wrap {
  max-width: 266px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .stay-map__wrap {
    max-width: 366px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
.stay-map__wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*		Table of Contents
--------------------------------------*/
.b_toc {
  margin-bottom: 72px;
}

/*		Slider
--------------------------------------*/
.stay-slider {
  background-color: #E1D4CC;
  margin: 50px auto 20px;
}
@media screen and (min-width: 768px) {
  .stay-slider {
    margin: 80px auto 40px;
  }
}
@media screen and (min-width: 992px) {
  .stay-slider {
    margin: 100px auto 52px;
  }
}
@media screen and (min-width: 1200px) {
  .stay-slider {
    margin: 120px auto 60px;
  }
}

/*		Body
--------------------------------------*/
@media screen and (min-width: 768px) {
  .stay-type .c_heading-lv3--vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-bottom: 6px;
  }
}
.stay-type .c_body-lv2--vertical {
  -webkit-transform: translate(-3px, -8px);
          transform: translate(-3px, -8px);
}
@media screen and (min-width: 768px) {
  .stay-type .c_body-lv2--vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: translate(-0.4615384615em, 0);
            transform: translate(-0.4615384615em, 0);
  }
}
@media screen and (min-width: 992px) {
  .stay-type .c_body-lv2--vertical {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .stay-type .c_body-lv2--vertical span {
    text-orientation: sideways;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    letter-spacing: 0;
  }
}

@media screen and (min-width: 768px) {
  .stay-type__body {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .stay-type__body {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .stay-type__architecture {
    border-bottom: none;
  }
}
.stay-type__architecture .b_aco-main__caption-box {
  border-top: none;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .stay-type__architecture .b_aco-main__caption-box {
    padding-top: 0;
  }
}

.stay-honkan {
  padding-top: 0;
}

.stay-aco {
  margin-top: 8px;
}

.stay-bekkan {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .stay-bekkan {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .stay-bekkan {
    margin-top: 150px;
  }
}

/*======================================
	Facility
======================================*/
/*		fv
--------------------------------------*/
.facility-fv {
  background-image: url("../img/facility_fv.webp");
}
@media screen and (min-width: 768px) {
  .facility-fv {
    background-image: url("../img/facility_fv_pc.webp");
  }
}

/*		map
--------------------------------------*/
.facility-map {
  margin: 0 0 60px;
}
@media screen and (min-width: 1200px) {
  .facility-map {
    margin: 0 0 100px;
  }
}

.facility-map__wrap {
  max-width: 266px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .facility-map__wrap {
    max-width: 366px;
  }
}
.facility-map__wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*		Intro
--------------------------------------*/
.facility-intro {
  display: none;
}
@media screen and (min-width: 768px) {
  .facility-intro {
    display: block;
  }
}

/*		Section
--------------------------------------*/
.facility-sec {
  margin-bottom: 90px;
}
@media screen and (min-width: 1200px) {
  .facility-sec {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .facility-sec .c_heading-bracket {
    width: 50%;
    text-align: left;
    padding-right: 40px;
  }
}
.facility-sec .c_img-wrap {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .facility-sec .c_img-wrap {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .facility-sec .c_img-wrap {
    margin-bottom: 60px;
  }
}
.facility-sec .c_heading-lv3--vertical {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .facility-sec .c_heading-lv3--vertical {
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .facility-sec .c_heading-lv3--vertical {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 1200px) {
  .facility-sec .c_heading-lv3--vertical {
    font-size: 30px;
  }
}
.facility-sec .c_heading-lv3--vertical span {
  display: inline-block;
  text-orientation: upright;
  letter-spacing: -0.2em;
  -webkit-transform: translateX(0.05em);
          transform: translateX(0.05em);
  padding-bottom: 0.1em;
}
.facility-sec .c_btn-wrap--center {
  width: 100%;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .facility-sec .c_btn-wrap--center {
    width: 50%;
    text-align: left;
    padding-left: 22px;
    margin: 28px 0 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .facility-sec .c_btn-wrap--center {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .facility-sec .c_btn-wrap--center {
    padding-left: 50px;
    margin: 36px 0 0 auto;
  }
}

/*		History
--------------------------------------*/
.facility-sauna {
  padding-top: 40px;
}

/*		History
--------------------------------------*/
.facility-history__sub-title {
  padding-left: 0.1666666667em;
}
@media screen and (min-width: 768px) {
  .facility-history__sub-title {
    padding-left: 0;
    margin: 20px auto 0;
  }
}

/*======================================
	Schedule
======================================*/
/*		fv
--------------------------------------*/
.schedule-fv {
  background-image: url("../img/schedule_fv.webp");
}
@media screen and (min-width: 768px) {
  .schedule-fv {
    background-image: url("../img/schedule_fv_pc.webp");
  }
}

/*		Intro
--------------------------------------*/
.schedule-intro {
  margin-bottom: 38px;
}
@media screen and (min-width: 992px) {
  .schedule-intro {
    margin-bottom: 72px;
  }
}
@media screen and (min-width: 1200px) {
  .schedule-intro {
    margin-bottom: 120px;
  }
}

/*		Section
--------------------------------------*/
.schedule-sec {
  padding: 40px 0;
}
.schedule-sec .c_heading-wrap--center {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .schedule-sec .c_heading-wrap--center {
    text-align: left;
    margin-bottom: 20px;
  }
}
.schedule-sec .c_heading-lv1 {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .schedule-sec .c_heading-lv1 {
    width: 50%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .schedule-sec .c_heading-lv1 .main {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.schedule-sec .c_heading-lv2 {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 992px) {
  .schedule-sec .c_heading-lv2 {
    font-size: 1.5625rem;
  }
}
.schedule-sec .c_heading-lv3--underline {
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .schedule-sec .c_heading-lv3--underline {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .schedule-sec .c_heading-lv3--underline {
    font-size: 1.125rem;
  }
}

.schedule-sec__list-item {
  width: 100%;
  margin-bottom: 25px;
}
.schedule-sec__list-item .c_img-wrap {
  aspect-ratio: 335/146;
  max-height: 413px;
  margin-bottom: 2px;
}
@media screen and (min-width: 992px) {
  .schedule-sec__list-item .c_img-wrap {
    aspect-ratio: 335/126;
  }
}
.schedule-sec__list-item .c_body-main {
  text-align: right;
}

/*======================================
	News Single
======================================*/
.news-single {
  padding-top: 120px;
}
@media screen and (min-width: 768px) {
  .news-single {
    padding-top: 150px;
  }
}
@media screen and (min-width: 992px) {
  .news-single {
    padding-top: 180px;
  }
}
.news-single .l_container {
  max-width: 900px;
}

.news-single__meta > *:last-child::after {
  content: "";
}

.news-single__category::after {
  content: ",";
}

.news-single__content .wp-block-pullquote {
  padding: 0;
  margin: 0;
}
.news-single__content .c_heading-lv2 {
  margin-bottom: 2em;
}
.news-single__content > * {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .news-single__content > * {
    margin-bottom: 40px;
  }
}
.news-single__content > *:last-child {
  margin-bottom: 0;
}
.news-single__content p {
  text-align: justify;
}
.news-single__content a {
  color: #737373;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .news-single__content a:hover {
    opacity: 0.5;
  }
}
.news-single__content h2 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 2em 0 0.75em;
}
@media screen and (min-width: 768px) {
  .news-single__content h2 {
    font-size: 1.25rem;
    margin: 1.6em 0 0.6em;
  }
}
.news-single__content ul li {
  list-style-type: "・";
  list-style-position: inside;
}
.news-single__content ul li::marker {
  padding-right: 0.3571428571em;
}
.news-single__content ol li {
  list-style-type: decimal;
  list-style-position: inside;
}
.news-single__content .wp-block-quote {
  border-left: 4px solid #222222;
  padding-left: 16px;
}
.news-single__content .wp-block-quote p {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news-single__content .wp-block-quote p {
    font-size: 0.9375rem;
  }
}
.news-single__content .wp-block-quote cite {
  color: #737373;
  font-size: 0.75rem;
  font-style: normal;
  text-align: right;
  margin-top: 1.3333333333em;
}
@media screen and (min-width: 768px) {
  .news-single__content .wp-block-quote cite {
    font-size: 0.8125rem;
  }
}

.news-single__meta {
  margin-bottom: 0.8333333333em;
}

.news-single__date::after {
  content: "｜";
}

/*======================================
	FAQ
======================================*/
.faq__list-aco .b_aco-main__list-item:first-of-type {
  border-top: 1px solid #B1B1B1;
}

/*======================================
	Contact
======================================*/
.contact__desc {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .contact__desc {
    margin-bottom: 120px;
  }
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
}
.contact__form .box {
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
}
.contact__form .box.num {
  width: 150px;
}
.contact__form .box.date {
  width: calc(50% - 105px);
  margin-left: 30px;
}
.contact__form .box p {
  margin-bottom: 10px;
  color: #222222;
}
.contact__form .box p span {
  font-size: 1em;
  margin-left: 6px;
  color: #222222;
}
.contact__form .wpcf7-form-control-wrap {
  width: calc(100% - 120px);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  color: #222222;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
  border: none;
  padding: 10px;
  margin: 0 0 2px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}
.contact__form .contact-form .box.select p {
  margin-top: 20px;
}
.contact__form _:lang(x)::-moz-placeholder,
.contact__form .contact-form .box.select p {
  margin-top: 9px;
}
.contact__form _:lang(x) + _:-webkit-full-screen-document,
.contact__form .contact-form .box.select p {
  margin-top: 14px;
}
.contact__form .contact-form .box.textarea {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.contact__form .box.textarea {
  margin-bottom: 30px;
}
.contact__form .contact-form .box.textarea p,
.contact__form .contact-form .box.textarea .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}
.contact__form input:focus,
.contact__form select:focus {
  outline: 0;
}
.contact__form textarea:focus {
  outline: 0;
}
.contact__form select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  margin-bottom: 0;
  color: #222222;
  background: no-repeat 99% center/30px 15px url(assets/img/svg/down-arrow-w.svg);
}
.contact__form select option {
  font-size: 0.8125rem;
}
.contact__form textarea {
  width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 10px 20px;
  line-height: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0px;
  border: 1px solid rgba(34, 34, 34, 0.2);
}
.contact__form input[type=submit] {
  width: auto;
  height: auto;
  cursor: pointer;
  color: var(--main-bk);
  font-size: 0.75rem;
  padding: 8px 50px;
  border: 1px solid #222222;
  margin: 0 auto;
}
.contact__form input[type=submit]:hover {
  opacity: 0.75;
}
.contact__form input[type=radio] {
  cursor: pointer;
  border: none;
  appearance: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  outline: none;
  margin: 0;
  width: 15px;
  height: 15px;
  background-color: #222222;
  padding: 2px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-radius: 50%;
}
.contact__form input[type=radio]:checked::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--main-yellow);
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
}
.contact__form .submit-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.contact__form .page .main-container p.recaptch-policy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  margin-bottom: 40px;
}
.contact__form .grecaptcha-badge {
  visibility: hidden;
}
.contact__form .wpcf7 form.invalid .wpcf7-response-output,
.contact__form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact__form .wpcf7 form.payment-required .wpcf7-response-output,
.contact__form .wpcf7 form.sent .wpcf7-response-output {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 0.75rem;
  border: none;
  color: red;
}
.contact__form .wpcf7 form.sent .wpcf7-response-output {
  color: #222222;
}
.contact__form .submit-wrapper {
  width: 100%;
  position: relative;
  text-align: center;
}
.contact__form .wpcf7-spinner {
  position: absolute !important;
  top: 0;
  right: 0;
}
.contact__form .wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
}

/*======================================
	Unique
======================================*/
/*		404
--------------------------------------*/
@media screen and (min-width: 768px) {
  .not-found .c_heading-lv1 .main {
    font-size: 35px;
  }
}

.not-found__text-box {
  max-width: 590px;
  margin: 60px auto 0;
}
.not-found__text-box .c_body-main {
  margin: 0 auto 20px;
}

/*======================================
	Helper
======================================*/
/*		display
--------------------------------------*/
.hp_disp-ib {
  display: inline-block;
}

.hp_disp-b {
  display: block;
}

.hp_link-remove {
  pointer-events: none;
}

/*		margin
--------------------------------------*//*# sourceMappingURL=main.css.map */