/*======================================
	Common
======================================*/
html {
  font-size: 100%;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#4D82A2), color-stop(10%, #04101E), color-stop(40%, #04101E), color-stop(60%, #1F6590), to(#04101E));
  background: linear-gradient(to bottom, #4D82A2 0%, #04101E 10%, #04101E 40%, #1F6590 60%, #04101E 100%);
  font-family: "Baskerville", "Zen Old Mincho", serif;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  -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: 1200px) {
  body {
    font-size: 0.9375rem;
  }
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

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

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: 768px) {
  .sm_disp-b {
    display: block;
  }
}

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

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

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

@media screen and (min-width: 1400px) {
  .xl_disp-n {
    display: none;
  }
}
/*======================================
	Animation
======================================*/
/* Display
--------------------------------------*/
.js-textLoading,
.js-textDisplay {
  visibility: hidden;
}

.js-textLoading.show,
.js-textDisplay.show {
  visibility: visible;
}

.js-textLoading .char,
.js-textDisplay .char {
  display: inline-block;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: translateX(12px) skewX(-30deg);
          transform: translateX(12px) skewX(-30deg);
  will-change: transform, filter, opacity;
}

.js-textLoading .char.show,
.js-textDisplay .char.show {
  -webkit-animation: textSkew 0.8s ease-out forwards;
          animation: textSkew 0.8s ease-out forwards;
}

@-webkit-keyframes textSkew {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(12px) skewX(-30deg);
            transform: translateX(12px) skewX(-30deg);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateX(0) skewX(0deg);
            transform: translateX(0) skewX(0deg);
  }
}

@keyframes textSkew {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translateX(12px) skewX(-30deg);
            transform: translateX(12px) skewX(-30deg);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateX(0) skewX(0deg);
            transform: translateX(0) skewX(0deg);
  }
}
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-animation: view-fadeIn 1s ease forwards;
          animation: view-fadeIn 1s ease forwards;
}

@-webkit-keyframes view-fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes view-fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*======================================
	Program
======================================*/
/* Header
--------------------------------------*/
.js-burgerNav {
  display: none;
}

.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-focus-trap {
  visibility: hidden;
}

/* mask
--------------------------------------*/
.js-blurMask {
  display: none;
}

/* accordion
--------------------------------------*/
.js-accToggle.open::after {
  -webkit-transform: rotate(90deg) scale(0, 1) !important;
          transform: rotate(90deg) scale(0, 1) !important;
}

/* 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.show {
  opacity: 1;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.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;
}

.reveal-display.show,
.reveal-delay.show,
.reveal-delay--lr.show {
  opacity: 1;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*======================================
	Header
======================================*/
.l_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  mix-blend-mode: difference;
  pointer-events: none;
}
.l_header .l_header__inner {
  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;
  padding: 16px 20px;
  margin: auto;
}
@media screen and (min-width: 1200px) {
  .l_header .l_header__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 26px;
  }
}
.l_header .site-title {
  width: 60px;
  line-height: 0;
}
@media screen and (min-width: 1200px) {
  .l_header .site-title {
    width: 90px;
  }
}
.l_header .site-title a {
  display: block;
}
.l_header .site-title img {
  vertical-align: middle;
}

/* Main Menu
--------------------------------------*/
.burger-nav {
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#4D82A2), to(#04101E));
  background: linear-gradient(to bottom, #4D82A2 0%, #04101E 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow-y: auto;
}

.burger-nav__inner {
  padding: 137px 20px 56px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .burger-nav__inner {
    padding: 150px 40px 52px;
  }
}
@media screen and (min-width: 1200px) {
  .burger-nav__inner {
    padding: 150px 90px 52px;
  }
}
.burger-nav__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 137px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, black), to(transparent));
          mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  position: fixed;
  top: 0;
  left: 0;
}

.burger-nav__logo {
  width: 61px;
  line-height: 1;
  position: fixed;
  top: 23px;
  left: 20px;
}

.burger-nav__main-list {
  margin-bottom: 65px;
}
.burger-nav__main-list .list-item {
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .burger-nav__main-list .list-item {
    margin-bottom: 20px;
  }
}
.burger-nav__main-list .list-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-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-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .burger-nav__main-list .list-link:hover {
    opacity: 0.6;
  }
}
.burger-nav__main-list .list-main {
  margin-bottom: 0.12em;
}
.burger-nav__main-list .list-sub {
  letter-spacing: 0.1em;
}

.burger-nav__sub-list {
  margin-bottom: 28px;
}
@media screen and (min-width: 992px) {
  .burger-nav__sub-list {
    margin-bottom: 40px;
  }
}
.burger-nav__sub-list .list-item {
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
@media screen and (min-width: 992px) {
  .burger-nav__sub-list .list-item {
    margin-bottom: 12px;
  }
}
.burger-nav__sub-list .list-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .burger-nav__sub-list .list-link:hover {
    opacity: 0.6;
  }
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle {
  display: inline-block;
  width: 40px;
  height: 23px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .burger-toggle {
    width: 35px;
    height: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .burger-toggle {
    width: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .burger-toggle:hover .line:nth-of-type(2) {
    width: 100%;
  }
}
.burger-toggle .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  inset: 0 0 0 auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.burger-toggle .line:nth-of-type(1) {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.burger-toggle .line:nth-of-type(2) {
  width: 28px;
  top: 10px;
}
@media screen and (min-width: 1200px) {
  .burger-toggle .line:nth-of-type(2) {
    width: 30px;
  }
}
.burger-toggle .visually-hidden {
  color: #fff;
}

/* Mask
--------------------------------------*/
.mask {
  width: 100%;
  height: 100vh;
  background-color: #000;
  cursor: pointer;
  opacity: 0.5;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: -2;
  -webkit-transition: inherit;
  transition: inherit;
}

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

.l_sec {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .l_sec {
    padding: 60px 0;
  }
}

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

.l_footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 38px;
}
@media screen and (min-width: 992px) {
  .l_footer__nav {
    margin-bottom: 60px;
  }
}

.l_footer__menu:first-child {
  margin-right: 74px;
}
.l_footer__menu .list-item {
  padding: 0.7142857143em 0;
}
.l_footer__menu .list-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l_footer__menu .list-link:hover {
    opacity: 0.6;
  }
}

.copyright {
  display: block;
  font-size: 0.625rem;
  font-family: "Zen Old Mincho", serif;
  margin-top: 12px;
}
@media screen and (min-width: 992px) {
  .copyright {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1400px) {
  .copyright {
    font-size: 0.75rem;
  }
}

/*======================================
	Component
======================================*/
/*		Button
--------------------------------------*/
.c_btn-main {
  display: inline-block;
  padding-bottom: 0.0714285714em;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .c_btn-main:hover::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.c_btn-main::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/*		Section Title
--------------------------------------*/
.c_heading-lv1 {
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .c_heading-lv1 {
    font-size: 40px;
  }
}

.c_heading-lv2 {
  font-size: 1.5625rem;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 1200px) {
  .c_heading-lv2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.c_heading-lv2--bar {
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}

.c_heading-lv3 {
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .c_heading-lv3 {
    font-size: 1.25rem;
  }
}

.c_heading-wrap {
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .c_heading-wrap {
    margin-bottom: 60px;
  }
}
.c_heading-wrap .c_heading-lv1 {
  margin-bottom: 4px;
}
@media screen and (min-width: 1200px) {
  .c_heading-wrap .c_heading-lv1 {
    margin-bottom: 10px;
  }
}
.c_heading-wrap--abs {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
}
@media screen and (min-width: 992px) {
  .c_heading-wrap--abs {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c_heading-wrap--abs {
    padding: 0 90px;
  }
}

.c_heading-multiply {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_heading-multiply .top {
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .c_heading-multiply .top {
    font-size: 1.5625rem;
  }
}
.c_heading-multiply .shape {
  width: 17px;
  height: 17px;
  margin: 4px 0 8px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .c_heading-multiply .shape {
    margin: 8px 0 15px;
  }
}
.c_heading-multiply .shape::before, .c_heading-multiply .shape::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  inset: 0;
}
.c_heading-multiply .shape::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c_heading-multiply .shape::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c_heading-multiply .bottom {
  font-size: 1.25rem;
  line-height: 1.2;
  border: 1px solid #fff;
  padding: 0.15em 0.65em 0.05em 0.7em;
}
@media screen and (min-width: 1200px) {
  .c_heading-multiply .bottom {
    font-size: 1.4375rem;
    padding: 0.2608695652em 0.6956521739em 0.1304347826em 0.7391304348em;
  }
}

/*		Body
--------------------------------------*/
.c_body-main {
  text-align: justify;
}

.c_body-lv2 {
  font-size: 0.75rem;
  text-align: justify;
  line-height: 1.4;
}
@media screen and (min-width: 1200px) {
  .c_body-lv2 {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}

.c_body-underline {
  text-decoration: underline;
}

.c_body-bracket::before, .c_body-bracket::after {
  display: inline-block;
  -webkit-transform: translateY(-0.0714285714em);
          transform: translateY(-0.0714285714em);
}
.c_body-bracket::before {
  content: "[";
  padding-right: 0.1428571429em;
}
.c_body-bracket::after {
  content: "]";
  padding-left: 0.1428571429em;
}

/*		Label
--------------------------------------*/
.c_label {
  display: inline-block;
  color: #0D3246;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: #fff;
  text-align: center;
  padding: 0.1666666667em 0.6666666667em 0.0555555556em;
}
@media screen and (min-width: 992px) {
  .c_label {
    padding: 0.3333333333em 0.6666666667em 0.2222222222em;
  }
}
@media screen and (min-width: 1200px) {
  .c_label {
    font-size: 1.375rem;
    padding: 0.2727272727em 0.5454545455em 0.1818181818em;
  }
}
.c_label--sm {
  font-size: 0.875rem;
  padding: 0.2142857143em 0.4285714286em 0.0714285714em;
}
@media screen and (min-width: 1200px) {
  .c_label--sm {
    font-size: 0.9375rem;
    padding: 0.2em 0.4em 0.0666666667em;
  }
}

/*		Image
--------------------------------------*/
.c_img-wrap {
  display: block;
  aspect-ratio: 335/230;
  width: 100%;
}
.c_img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c_img-wrap--wide {
  width: calc(100% + 40px);
  aspect-ratio: 335/205;
  margin: 0 -20px;
}
@media screen and (min-width: 992px) {
  .c_img-wrap--wide {
    width: calc(100% + 80px);
    margin: 0 -40px;
  }
}

/*		Logo
--------------------------------------*/
.c_logo-box > * + * {
  margin-left: 15px;
}

.c_logo {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.c_logo--kujira {
  width: 145px;
  height: 51px;
  background-image: url("../svg/logo_kujira.svg");
}
@media screen and (min-width: 1200px) {
  .c_logo--kujira {
    width: 209px;
    height: 74px;
  }
}
.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: 992px) {
  .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: 992px) {
  .c_logo--x {
    width: 26px;
    height: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c_logo--x:hover {
    opacity: 0.6;
  }
}

/*		Media
--------------------------------------*/
.c_media-v1 {
  margin-bottom: 90px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c_media-v1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .c_media-v1 {
    margin-bottom: 140px;
  }
}
.c_media-v1:last-child {
  margin-bottom: 0;
}

.c_media-v1__title {
  margin-bottom: 0;
  position: absolute;
  top: -48px;
  left: 0px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .c_media-v1__title {
    top: -60px;
  }
}

.c_media-v1__title-sub {
  letter-spacing: 0.1em;
  margin-bottom: 0.2777777778em;
}
@media screen and (min-width: 1200px) {
  .c_media-v1__title-sub {
    margin-bottom: 0.5em;
  }
}

.c_media-v1__img {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .c_media-v1__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .c_media-v1__body {
    width: 40%;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c_media-v1__body {
    margin-left: 60px;
  }
}

.c_media-v2 {
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .c_media-v2 {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 992px) {
  .c_media-v2 {
    margin-bottom: 80px;
  }
}

.c_media-v2__img {
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .c_media-v2__img {
    margin-bottom: 32px;
  }
}

/*======================================
	Block
======================================*/
/*		List
--------------------------------------*/
.b_list-dl {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
}
.b_list-dl--row .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #fff;
  padding: 0.7142857143em 0 0.8571428571em;
}
@media screen and (min-width: 1200px) {
  .b_list-dl--row .list-item {
    padding: 1.0666666667em 0 1.2em;
  }
}
.b_list-dl--row .list-head {
  min-width: 84px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .b_list-dl--row .list-head {
    margin-right: 32px;
  }
}
@media screen and (min-width: 992px) {
  .b_list-dl--row .list-head {
    min-width: 110px;
  }
}
@media screen and (min-width: 1200px) {
  .b_list-dl--row .list-head {
    min-width: 170px;
  }
}
.b_list-dl--col {
  border-top: 1px solid #fff;
}
.b_list-dl--col address {
  font-style: normal;
}
.b_list-dl--col .list-item {
  display: block;
  border-bottom: 1px solid #fff;
  padding: 0.7142857143em 0 0.8571428571em;
}
@media screen and (min-width: 1200px) {
  .b_list-dl--col .list-item {
    padding: 1.0666666667em 0 1.2em;
  }
}

.b_list-acc {
  width: 100%;
  border-top: 1px solid #fff;
}
.b_list-acc .list-item {
  border-bottom: 1px solid #fff;
}
.b_list-acc .item-toggle {
  display: block;
  width: 100%;
  color: #fff;
  text-align: left;
  padding: 1.0714285714em 0 1em;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .b_list-acc .item-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.b_list-acc .item-toggle::before, .b_list-acc .item-toggle::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.b_list-acc .item-toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.b_list-acc .item-panel {
  display: none;
  padding-bottom: 1.0714285714em;
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .b_list-acc .item-panel {
    padding-bottom: 1.0666666667em;
  }
}

/*		Slider
--------------------------------------*/
.b_slider-normal .swiper-slide {
  width: 88%;
  aspect-ratio: 300/230;
}
@media screen and (min-width: 768px) {
  .b_slider-normal .swiper-slide {
    width: 40%;
  }
}
.b_slider-normal .swiper-slide picture {
  display: block;
}
.b_slider-normal .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.b_slider-v2 {
  position: relative;
}
.b_slider-v2 .swiper-slide picture {
  aspect-ratio: 335/230;
}
.b_slider-v2 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b_slider-v2 .slider-pagination__wrap {
  aspect-ratio: 335/230;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .b_slider-v2 .slider-pagination__wrap {
    aspect-ratio: auto;
    height: 100%;
  }
}
.b_slider-v2 .slider-pagination {
  text-align: right;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 10;
  pointer-events: all;
}
@media screen and (min-width: 480px) {
  .b_slider-v2 .slider-pagination {
    padding: 0 10px 8px 0;
  }
}
@media screen and (min-width: 768px) {
  .b_slider-v2 .slider-pagination {
    right: 0;
    bottom: 0;
    padding: 0;
  }
}
.b_slider-v2 .swiper-pagination-bullet {
  width: 20px;
  height: 1px;
  background-color: #fff;
  border-radius: 0;
  margin: 0 0 0 2px !important;
}
@media screen and (min-width: 1200px) {
  .b_slider-v2 .swiper-pagination-bullet {
    width: 25px;
  }
}

/*		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: 768px) {
  .sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1400px) {
  .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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: 1400px) {
  .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);
  }
}

/*		List
--------------------------------------*/
/*======================================
	Top
======================================*/
/*		fv
--------------------------------------*/
.fv {
  position: relative;
  margin-bottom: 82px;
}
@media screen and (min-width: 1200px) {
  .fv {
    margin-bottom: 130px;
  }
}
.fv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100svh;
  background: url("../img/fv.webp") no-repeat center center/cover;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 480px) {
  .fv::before {
    background: url("../img/fv_lg.webp") no-repeat center center/cover;
  }
}

.fv__main-container {
  height: calc(100svh - 52px);
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .fv__main-container {
    height: calc(100svh - 64px);
  }
}
@media screen and (min-width: 1200px) {
  .fv__main-container {
    height: calc(100svh - 80px);
  }
}

.fv__logo {
  display: none;
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.fv__title {
  margin-bottom: 35px;
}
@media screen and (min-width: 992px) {
  .fv__title {
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title {
    margin-bottom: 65px;
  }
}

.fv__body {
  line-height: 2.2;
}
@media screen and (min-width: 1200px) {
  .fv__body {
    font-size: 1.125rem;
  }
}

/*		trip
--------------------------------------*/
.trip {
  padding-top: 120px;
}
@media screen and (min-width: 992px) {
  .trip {
    padding-top: 160px;
  }
}

.trip__inner {
  background-color: #1E384C;
  padding: 42px 0 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .trip__inner {
    padding: 52px 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .trip__inner {
    padding: 72px 0;
  }
}
@media screen and (min-width: 1200px) {
  .trip__inner {
    padding: 94px 0;
  }
}

.trip__title-wrap {
  position: absolute;
  top: -54px;
}
@media screen and (min-width: 1200px) {
  .trip__title-wrap {
    top: -70px;
  }
}

@media screen and (min-width: 768px) {
  .trip__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.trip__img {
  margin-bottom: 27px;
}
@media screen and (min-width: 768px) {
  .trip__img {
    width: 55%;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .trip__img {
    margin-right: 60px;
  }
}

@media screen and (min-width: 768px) {
  .trip__text-box {
    width: 45%;
  }
}

.trip__body {
  margin-top: 1.8571428571em;
}

/*		information
--------------------------------------*/
.information__label-box {
  width: 100%;
  margin-bottom: 16px;
}
.information__label-box > * {
  width: 50%;
}
.information__label-box > * + * {
  margin-left: 9px;
}
@media screen and (min-width: 992px) {
  .information__label-box > * + * {
    margin-left: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .information__label-box > * + * {
    margin-left: 40px;
  }
}

.information__body {
  margin-bottom: 2.1428571429em;
}
@media screen and (min-width: 992px) {
  .information__body {
    margin-bottom: 3.4285714286em;
  }
}
@media screen and (min-width: 1200px) {
  .information__body {
    margin-bottom: 4em;
  }
}

.information__day-trip__title {
  margin-bottom: 0.12em;
}

.information__stay-title {
  margin-bottom: 25px;
}
@media screen and (min-width: 1200px) {
  .information__stay-title {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .information__stay-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.information__stay-img {
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .information__stay-img {
    width: 50%;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .information__stay-img {
    margin-right: 60px;
  }
}

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

.information__stay-body {
  margin-bottom: 1.0714285714em;
}

.information__stay-illust {
  aspect-ratio: 303/150;
  width: 76.2666666667%;
  max-width: 310px;
  margin: 45px -10px 0 auto;
}
@media screen and (min-width: 768px) {
  .information__stay-illust {
    margin-bottom: 0;
  }
}
.information__stay-illust img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*		Room
--------------------------------------*/
.room {
  padding-bottom: 20px;
}

.room__title {
  margin-bottom: 93px;
}
@media screen and (min-width: 1200px) {
  .room__title {
    margin-bottom: 130px;
  }
}

/*		Water Bath
--------------------------------------*/
.waterbath__title-box {
  margin-bottom: 33px;
}

.waterbath__title {
  margin-bottom: 12px;
}

.waterbath__illust {
  width: 89.552238806%;
  max-width: 100px;
}

@media screen and (min-width: 768px) {
  .waterbath__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .waterbath__content > * {
    width: 33.3333333333%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .waterbath__content > * + * {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .waterbath__content > * + * {
    margin-left: 40px;
  }
}

.waterbath__illust02 {
  display: block;
  max-width: 286px;
  width: 100%;
  margin: 52px -20px 0 auto;
}

/*		TOTONOI
--------------------------------------*/
.totonoi__slider {
  padding-left: 20px;
  margin-bottom: 26px;
}
@media screen and (min-width: 992px) {
  .totonoi__slider {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .totonoi__slider {
    max-width: 1280px;
    padding: 0 90px;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 1200px) {
  .totonoi__slider .swiper {
    margin-right: calc(50% - 50vw);
  }
}

/*		Drink
--------------------------------------*/
.drink {
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .drink {
    padding-top: 120px;
  }
}

.drink__inner {
  background-color: #1E384C;
  padding: 32px 0 40px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .drink__inner {
    padding: 52px 0;
  }
}
@media screen and (min-width: 1200px) {
  .drink__inner {
    padding: 80px 0;
  }
}

.drink__title-wrap {
  top: -50px;
}
@media screen and (min-width: 1200px) {
  .drink__title-wrap {
    top: -70px;
  }
}

.drink__body {
  margin-bottom: 1.7857142857em;
}
@media screen and (min-width: 1200px) {
  .drink__body {
    margin-bottom: 3.7142857143em;
  }
}

.drink__slider {
  margin-bottom: 15px;
}

.drink__media {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .drink__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .drink__media-img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .drink__media-text-box {
    width: 40%;
    margin-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .drink__media-text-box {
    margin-left: 60px;
  }
}

/*		Deals
--------------------------------------*/
.deals {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .deals {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 992px) {
  .deals {
    padding-bottom: 32px;
  }
}

.deals__title {
  margin-bottom: 1em;
}
@media screen and (min-width: 1200px) {
  .deals__title {
    margin-bottom: 40px;
  }
}

.deals__label {
  margin-bottom: 1.3571428571em;
}

.deals__body {
  margin: 0.8571428571em 0 0.7142857143em;
}
@media screen and (min-width: 1200px) {
  .deals__body {
    margin: 0.8571428571em 0 2.2857142857em;
  }
}

/*		faq
--------------------------------------*/
@media screen and (min-width: 768px) {
  .faq {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 992px) {
  .faq {
    padding-bottom: 40px;
  }
}

.faq__title {
  margin-bottom: 1em;
}

/*		access
--------------------------------------*/
.access iframe {
  aspect-ratio: 1/1;
  width: 100%;
  max-height: 490px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .access iframe {
    margin-bottom: 40px;
  }
}

.access__title {
  margin-bottom: 24px;
}
@media screen and (min-width: 1200px) {
  .access__title {
    margin-bottom: 32px;
  }
}

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

/*		link disable
--------------------------------------*/
.hp_link-disable {
  pointer-events: none;
}/*# sourceMappingURL=main.css.map */