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

body {
  font-family: "EB Garamond", serif;
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.01em;
  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: 768px) {
  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: 425px) {
  .xs_disp-b {
    display: block;
  }
}

@media screen and (min-width: 425px) {
  .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: 1000px) {
  .md_disp-b {
    display: block;
  }
}

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

@media screen and (min-width: 1280px) {
  .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-viewも一緒に指定)
--------------------------------------*/
/*
// fade in
.view-fadeIn {
	opacity: 0;
	animation: view-fadeIn 1s ease(in-out-cubic) both;
}
@keyframes view-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
*/
/*
// slide up
.view-slideUp {
	opacity: 0;
	animation: view-slideUp 1s ease(in-out-cubic) both;
}
@keyframes view-slideUp {
	0% {
		opacity: 0;
		transform: translate(0, 35px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide ro right
.view-slideIn-l {
	opacity: 0;
	animation: view-slideIn-l .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-l {
	0% {
		opacity: 0;
		transform: translate(35px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
*/
/*
// slide left
.view-slideIn-r {
	opacity: 0;
	animation: view-slideIn-r .6s ease(in-out-cubic) both;
}
@keyframes view-slideIn-r {
	0% {
		opacity: 0;
		transform: translate(-35px, 0);
	}
	100% {
		opacity: 0;
		transform: translate(0, 0);
	}
}
*/
/*======================================
	Program
======================================*/
/* Header
--------------------------------------*/
.js-mainNav {
  display: none;
}

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

.js-burgerToggle.active .line:nth-of-type(1) {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.js-burgerToggle.active .line:nth-of-type(2) {
  opacity: 0;
}
.js-burgerToggle.active .line:nth-of-type(3) {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

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

.js-mask {
  display: none;
}

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

/* animation display
--------------------------------------*/
.js-view.on {
  opacity: 1;
}

/*======================================
	Header
======================================*/
.l_header {
  width: 100%;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l_header .l_header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 40px;
  margin: auto;
}
.l_header .site-title {
  width: 100px;
  z-index: 100;
}
.l_header .site-title a {
  display: block;
}

/* Main Menu
--------------------------------------*/
.main-nav {
  overflow-y: scroll;
  z-index: -1;
}
.main-nav .main-menu {
  position: fixed;
  top: auto;
  right: 50%;
  bottom: 50%;
  left: auto;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
.main-nav .item a {
  color: white;
}

/* Burger Toggle
--------------------------------------*/
.burger-toggle {
  display: inline-block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.burger-toggle .line {
  width: 30px;
  height: 1.5px;
  background-color: #000;
  margin: auto;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s cubic-bezier;
  transition: all 0.2s cubic-bezier;
}
.burger-toggle .line:nth-of-type(1) {
  top: -10px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.burger-toggle .line:nth-of-type(2) {
  top: 0;
}
.burger-toggle .line:nth-of-type(3) {
  top: 10px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.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: calc(1280px - (70px * 2));
	padding: 0 70px;
	margin: 0 auto;
}
*/
/*
.l-sec-inner {
	padding: 60px 0;
}
*/
/*======================================
	Footer
======================================*/
/*======================================
	Top
======================================*/
/*		Lead
--------------------------------------*/
.lead {
  height: 100svh;
  background-color: #000;
}
.lead__link {
  height: 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;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.lead__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.2s ease, transform 0.4s ease;
  transition: opacity 0.2s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lead__link:hover::before {
    opacity: 0.8;
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.lead__content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lead__url {
  padding-top: 12px;
}
@media screen and (min-width: 768px) {
  .lead__url {
    padding-top: 32px;
  }
}
.lead__url::after {
  content: "↗︎";
  padding-left: 0.3846153846em;
}
.lead__bg--hotel::before {
  background: url("../img/bg_jinroku-hotel.webp") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .lead__bg--hotel::before {
    background: url("../img/bg_jinroku-hotel_lg.webp") no-repeat center center/cover;
  }
}
.lead__logo--hotel {
  width: 92px;
}
@media screen and (min-width: 768px) {
  .lead__logo--hotel {
    width: 160px;
  }
}
.lead__bg--sauna {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4D82A2), to(#04101E));
  background-image: linear-gradient(to bottom, #4D82A2 0%, #04101E 100%);
}
.lead__bg--sauna::before {
  background: url("../img/bg_jinroku-sauna.webp") no-repeat center center/cover;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .lead__bg--sauna::before {
    background: url("../img/bg_jinroku-sauna_lg.webp") no-repeat center center/cover;
  }
}
.lead__logo--sauna {
  width: 101px;
}
@media screen and (min-width: 768px) {
  .lead__logo--sauna {
    width: 160px;
  }
}
.lead__bg--kajitsu::before {
  background: url("../img/bg_jinroku-kajitsu.webp") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .lead__bg--kajitsu::before {
    background: url("../img/bg_jinroku-kajitsu_lg.webp") no-repeat center center/cover;
  }
}
.lead__logo--kajitsu {
  width: 64px;
}
@media screen and (min-width: 768px) {
  .lead__logo--kajitsu {
    width: 100px;
  }
}/*# sourceMappingURL=main.css.map */