@charset "utf-8";
/* CSS Document */

/*================================
  Base
================================*/
body {
  min-width: auto;
  background-color: #0f0f0f;
  color: #fff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.56;
}

.font-mincho {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
}
:root {
  --mincho: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.7;
  }
}

/*スマホ、PCの表示振り分け*/
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.pd0{padding: 0!important;}

/*PCは最低1000px想定と割り切る*/
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1000px;
  }
}

/*================================
  Lower Page Title
================================*/
.lower-page-title h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}

.lower-page-title h1 .en {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
}

.lower-page-title h1 .ja {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
}

/* 
下層ページタイトル：
<header class="lower-page-title">
  <h1><span class="en">SPA</span><span class="ja">大浴場</span></h1>
</header>
*/
/*================================
  Header
================================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 930;
  width: 100%;
  height: 96px;
  background: transparent;
  pointer-events: none;
}

.site-header__inner {
  height: 100%;
  padding: 28px 36px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-header__logo,
.site-header__logo a,
.menu-toggle {
  pointer-events: auto;
}

.site-header__logo {
  margin: 0;
}

.site-header__logo img {
  display: block;
  width: 220px;
  height: auto;
}

/* hamburger wave */
/* hamburger wave */
/* hamburger wave */
.menu-toggle {
  position: relative;
  width: 74px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent !important;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.menu-toggle:focus,
.menu-toggle:active,
.menu-toggle:hover {
  background: transparent !important;
  outline: none;
  box-shadow: none;
}
.menu-toggle::before {
  transform: scale(1);
  transform-origin: center center;
  transition:
    opacity 0.25s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle:hover::before {
  transform: scaleX(0.86) scaleY(0.92);
}

.menu-toggle span {
  position: absolute;
  right: 0;
  width: 74px;
  height: 1px;
  display: block;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.45s ease;
}

/* 通常時の波線画像 */
.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/common/icon-menu-wave.svg") center center / contain no-repeat;
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* ばってん用 */
.menu-toggle span:nth-child(1) {
  top: 29px;
}

.menu-toggle span:nth-child(2) {
  display: none;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

body.is-menu-open .menu-toggle::before {
  opacity: 0;
}

body.is-menu-open .menu-toggle span:nth-child(1),
body.is-menu-open .menu-toggle span:nth-child(3) {
  opacity: 1;
}

body.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(18deg);
}

body.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-18deg);
}

/*================================
  Fixed Reserve
================================*/
.fixed-reserve {
  position: fixed;
  right: 0;
  top: 335px;
  z-index: 950;
  width: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-left: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background-color: rgba(15, 15, 15, 0.65);
}

.fixed-reserve a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  padding: 14px 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-decoration: none;
  writing-mode: vertical-rl;
	width: 100%;
}

.fixed-reserve a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.fixed-reserve a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/*================================
  Global Menu
================================*/
.global-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 940;
  width: 480px;
  height: 100vh;
  background-color: #0f0f0f;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 0;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

body.is-menu-open .global-menu {
  transform: translateX(0);
}

.global-menu__inner {
  position: relative;
  min-height: 100%;
  padding: 86px 70px 54px;
}

.global-menu__close {
  position: absolute;
  top: 45px;
  right: 30px;
  width: 74px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.global-menu__close span {
  position: absolute;
  left: 0;
  top: 19px;
  width: 74px;
  height: 1px;
  background-color: #fff;
}

.global-menu__close span:nth-child(1) {
  transform: rotate(14deg);
}

.global-menu__close span:nth-child(2) {
  transform: rotate(-14deg);
}

.global-menu__ship {
  margin: 0 auto 22px;
  text-align: center;
}

.global-menu__ship img {
  width: 130px;
  height: auto;
}

/* menu list */
.global-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 58px;
  row-gap: 25px;
}

.global-menu__list li {
  margin: 0;
}

.global-menu__list a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.global-menu__list .en {
  display: block;
  font-family: "M PLUS 1p", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.global-menu__list .ja {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.global-menu__list a:hover {
  opacity: 0.72;
}

/* sub */
.global-menu__sub {
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.8;
}

.global-menu__sub li {
  font-size: 14px;
}

.global-menu__sub li:not(:last-child)::after {
  content: "｜";
  margin: 0 0.15em;
}

.global-menu__sub a {
  color: #fff;
  text-decoration: none;
}

.global-menu__sub a:hover {
  opacity: 0.72;
}

/* sns */
.global-menu__sns {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.global-menu__sns img {
  display: block;
  width: 38px;
  height: auto;
}

.global-menu__sns a {
  display: block;
}

.global-menu__sns a:hover {
  opacity: 0.72;
}

/* overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 930;
  /*background-color: rgba(0, 0, 0, 0.25);*/
	  background-color: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.is-menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
.global-menu {
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge旧 */
}

.global-menu::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/*ハンバーガークリックのflashのような状態を解決*/
.menu-toggle,
.global-menu__close {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.menu-toggle:focus,
.menu-toggle:active,
.menu-toggle:hover,
.global-menu__close:focus,
.global-menu__close:active,
.global-menu__close:hover {
  background: transparent;
  outline: none;
  box-shadow: none;
}
/*さらに追加*/
.menu-toggle span,
.menu-toggle span::before {
  pointer-events: none;
}


/* SP */
@media screen and (max-width: 767px) {
  .site-header {
    height: 72px;
  }

  .site-header__inner {
    padding: 20px 20px 0;
  }

  .site-header__logo img {
    width: 176px;
  }

/* hamburger wave */


  .global-menu {
    width: calc(100% - 42px);
    max-width: 480px;
  }

  .global-menu__inner {
    padding: 72px 34px 42px;
  }

  .global-menu__close {
    top: 32px;
    right: 24px;
    width: 56px;
  }

  .global-menu__close span {
    width: 56px;
  }

  .global-menu__ship img {
    width: 168px;
  }

  .global-menu__list {
    column-gap: 30px;
    row-gap: 22px;
  }

  .global-menu__list .en {
    font-size: 20px;
  }

  .global-menu__list .ja {
    font-size: 13px;
  }

  .global-menu__sub {
    margin-top: 44px;
  }

  .fixed-reserve {
    top: auto;
    bottom: 0;
    width: 100%;
    display: flex;
    border-left: 0;
    border-right: 0;
  }

  .fixed-reserve a {
    width: 50%;
    min-height: 48px;
    padding: 10px 0;
    font-size: 14px;
    writing-mode: horizontal-tb;
  }

  .fixed-reserve a + a {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.75);
  }
}

/*================================
  Footer
================================*/
.site-footer {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 80px 70px;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.site-footer__left {
  width: 52%;
}

.site-footer__right {
  width: 38%;
  padding-top: 2px;
}

/* nav */
.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.85;
	max-width: 540px;
}

.site-footer__nav li {
  display: inline;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.site-footer__nav li:not(:last-child)::after {
  content: "｜";
  margin: 0 0.15em;
}

.site-footer__nav a {
  color: #fff;
  text-decoration: none;
}

.site-footer__nav a:hover {
  opacity: 0.7;
}

/* info */
.site-footer__info {
  margin-top: 68px;
}

.site-footer__address {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.site-footer__logo {
  margin: 0;
}

.site-footer__logo img {
  display: block;
  width: 530px;
  max-width: 100%;
  height: auto;
}

/* right */
.site-footer__time {
  margin-bottom: 18px;
}

.site-footer__time p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.site-footer__time span {
  margin-right: 4px;
}

.site-footer__tel {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.05em;
	
}

.site-footer__tel a {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
	white-space: nowrap;
}

.site-footer__bottom {
  margin-top: 106px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.site-footer__sns {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.site-footer__sns img {
  display: block;
  width: 38px;
  height: auto;
}

.site-footer__sns a {
  display: block;
  transition: opacity 0.3s ease;
}

.site-footer__sns a:hover {
  opacity: 0.7;
}

.site-footer__copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #d8d8d8;
  letter-spacing: 0;
}

/* SP */
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 46px 24px 42px;
  }

  .site-footer__inner {
    display: block;
    max-width: none;
  }

  .site-footer__left,
  .site-footer__right {
    width: 100%;
  }

  .site-footer__nav ul {
    display: block;
    line-height: 1.9;
  }

  .site-footer__nav li {
    display: inline;
    font-size: 14px;
  }

  .site-footer__info {
    margin-top: 38px;
  }

  .site-footer__address {
    font-size: 14px;
    line-height: 1.7;
  }

  .site-footer__logo img {
    width: 100%;
    max-width: 420px;
  }

  .site-footer__right {
    margin-top: 40px;
  }

  .site-footer__time p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .site-footer__tel {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .site-footer__tel a {
    display: block;
    margin-top: 4px;
    font-size: 26px;
  }

  .site-footer__bottom {
    margin-top: 38px;
    align-items: flex-start;
  }

  .site-footer__sns {
    justify-content: flex-start;
    gap: 22px;
    margin-bottom: 22px;
  }

  .site-footer__sns img {
    width: 34px;
  }

  .site-footer__copy {
    font-size: 11px;
    line-height: 1.6;
  }
}

/*Googleのセキュリティのやつ*/
.grecaptcha-badge{display: none;}