@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Helvetica", sans-serif;
  background: #F9F5F1; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s; }
  a:hover {
    opacity: 0.6; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 37px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

.footer {
  background: #000;
  color: #fff;
  padding: 74px 0 13px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 40px 0 10px; } }
  .footer__logo {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 52px; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        flex-direction: column; } }
    .footer__logo .sauna37 {
      display: block;
      width: 136px; }
    .footer__logo .ttne {
      display: block;
      width: 95px; }
      @media only screen and (max-width: 767px) {
        .footer__logo .ttne {
          margin-top: 0; } }
    .footer__logo span {
      font-size: 10px;
      font-size: 1rem;
      margin: 0 37px; }
      @media only screen and (max-width: 767px) {
        .footer__logo span {
          margin: 37px 0; } }
  .footer__copyright {
    font-size: 10px;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer__copyright span {
      display: inline-block;
      margin: 0 7px;
      position: relative;
      top: 1px; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  mix-blend-mode: difference; }
  .header.active {
    opacity: 1;
    visibility: visible; }
  .header__logo {
    display: block;
    width: 150px;
    z-index: +1;
    position: fixed;
    top: 37px;
    left: 37px;
    mix-blend-mode: difference; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 98px;
        top: 22px;
        left: 22px; } }
  .header .hamburger {
    width: 28px;
    height: 24px;
    cursor: pointer;
    position: fixed;
    top: 37px;
    right: 37px;
    mix-blend-mode: difference; }
    @media only screen and (max-width: 767px) {
      .header .hamburger {
        top: 22px;
        right: 22px; } }
    .header .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
      transform: rotate(135deg);
      top: 11px; }
    .header .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
      width: 0;
      opacity: 0; }
    .header .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
      transform: rotate(-135deg);
      bottom: 11px; }
    .header .hamburger__inner {
      width: 28px;
      height: 24px;
      position: relative; }
      .header .hamburger__inner span {
        width: 28px;
        height: 2px;
        display: block;
        background: #fff;
        transition: transform .3s, opacity .3s, width .3s;
        position: absolute; }
        .header .hamburger__inner span:nth-of-type(1) {
          top: 0;
          left: 0; }
        .header .hamburger__inner span:nth-of-type(2) {
          top: 11px;
          right: 0; }
        .header .hamburger__inner span:nth-of-type(3) {
          bottom: 0;
          left: 0; }

.gnav {
  position: fixed;
  width: 100%;
  height: 100svh;
  background: #000;
  color: #fff;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 98; }
  .gnav.is-active {
    opacity: 1;
    visibility: visible; }
  .gnav__text {
    text-align: left; }
    .gnav__text strong {
      display: block;
      font-size: 24px;
      font-size: 2.4rem;
      font-weight: 600;
      text-decoration: underline; }
    .gnav__text p {
      font-size: 24px;
      font-size: 2.4rem;
      margin-top: 24px; }
  .gnav .language {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 74px;
    transform: translate(-50%, 0); }
    .gnav .language li {
      font-size: 16px;
      font-size: 1.6rem; }
      .gnav .language li span {
        cursor: pointer; }
      .gnav .language li:nth-of-type(1):after {
        content: "/";
        margin: 0 5px; }
      .gnav .language li.active span {
        text-decoration: underline; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

/**

 */
body.top .mainvisual {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .mainvisual {
      height: 469px; } }
  body.top .mainvisual.is-active .mainvisual__image img {
    transform: scale(1); }
  body.top .mainvisual.is-active .mainvisual__logo {
    opacity: 1; }
  body.top .mainvisual:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.37);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  body.top .mainvisual__image {
    width: 100%;
    height: 100svh; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__image {
        height: 469px; } }
    body.top .mainvisual__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.1);
      transition: transform 2s; }
  body.top .mainvisual__logo {
    width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: +1;
    opacity: 0;
    transition: opacity 1.5s;
    transition-delay: 2s; }
    @media only screen and (max-width: 767px) {
      body.top .mainvisual__logo {
        width: 80.26666667vw; } }
    body.top .mainvisual__logo img {
      width: 100%; }

body.top .whole {
  position: relative;
  margin-top: 100vh;
  background: #F9F5F1; }
  @media only screen and (max-width: 767px) {
    body.top .whole {
      margin-top: 469px; } }

body.top .intro {
  padding: 222px 0 111px;
  color: #0D0C0A; }
  @media only screen and (max-width: 767px) {
    body.top .intro {
      padding: 74px 0 55px; } }
  body.top .intro .inner {
    max-width: 1040px; }
  body.top .intro__text {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 2;
    font-weight: 300;
    font-family: "Helvetica", sans-serif; }
    @media only screen and (max-width: 767px) {
      body.top .intro__text {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.7; } }
    body.top .intro__text a {
      text-decoration: underline; }

body.top .map {
  padding: 111px 0 222px; }
  @media only screen and (max-width: 767px) {
    body.top .map {
      padding: 55px 0 75px; } }
  body.top .map .inner {
    max-width: 1160px; }
    @media only screen and (max-width: 767px) {
      body.top .map .inner {
        padding: 0 32px; } }
  body.top .map__title {
    font-size: 50px;
    font-size: 5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 26px;
    font-family: "Anton", sans-serif; }
    @media only screen and (max-width: 767px) {
      body.top .map__title {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.5;
        margin-bottom: 11px; } }
  body.top .map__category {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 920px; }
    body.top .map__category li {
      margin: 0 18px 12px;
      font-size: 22px;
      font-size: 2.2rem;
      cursor: pointer; }
      @media only screen and (max-width: 767px) {
        body.top .map__category li {
          font-size: 14px;
          font-size: 1.4rem;
          margin: 0 5px 10px; } }
      body.top .map__category li.active {
        text-decoration: underline;
        color: #AE931D; }
  body.top .map__images {
    margin-top: 36px;
    margin-bottom: 34px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .map__images {
        margin: 36px -18px 22px; } }
    body.top .map__images > div {
      transition: opacity .3s, visibility .3s;
      width: 100%;
      height: 100%; }
      body.top .map__images > div:nth-of-type(n+2) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0; }
      body.top .map__images > div.active {
        opacity: 1;
        visibility: visible; }
  body.top .map__list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }
    body.top .map__list ul li {
      font-size: 22px;
      font-size: 2.2rem;
      line-height: 2;
      font-family: "Helvetica", sans-serif;
      font-weight: 200;
      margin-right: 5px; }
      @media only screen and (max-width: 767px) {
        body.top .map__list ul li {
          font-size: 12px;
          font-size: 1.2rem;
          margin-right: 4px; } }
      body.top .map__list ul li:last-of-type:after {
        content: none; }
      body.top .map__list ul li:after {
        content: " / ";
        position: relative;
        top: 1px; }
      body.top .map__list ul li span {
        margin-left: 0.1em; }
  body.top .map .attention {
    display: block;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 200;
    margin-top: 8px;
    margin-bottom: 37px; }
    @media only screen and (max-width: 767px) {
      body.top .map .attention {
        font-size: 10px;
        font-size: 1rem;
        margin-top: 9px;
        margin-bottom: 18px; } }

body.top .cont {
  counter-reset: number 0; }
  body.top .cont .attention {
    display: block;
    text-align: right;
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 33px;
    margin-bottom: 18px; }
    @media only screen and (max-width: 767px) {
      body.top .cont .attention {
        font-size: 12px;
        font-size: 1.2rem;
        padding-right: 16px;
        margin-bottom: 14px; } }
  body.top .cont .saunaList {
    min-height: 100svh; }
    body.top .cont .saunaList__box.fade {
      opacity: 0;
      transform: translate(0, 30px);
      animation: fade 1s .2s forwards; }

@keyframes fade {
  0% {
    opacity: 0;
    transform: translate(0, 30px); }
  100% {
    opacity: 1;
    transform: translate(0, 0px); } }
    body.top .cont .saunaList__box:nth-of-type(2n) .saunaList__info__left {
      order: 2; }
      body.top .cont .saunaList__box:nth-of-type(2n) .saunaList__info__left .number {
        text-align: right; }
    body.top .cont .saunaList__box:nth-of-type(2n) .saunaList__info__right {
      order: 1; }
    body.top .cont .saunaList__image {
      position: relative; }
      body.top .cont .saunaList__image:after {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        background: rgba(0, 0, 0, 0.22);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: +1;
        pointer-events: none; }
      body.top .cont .saunaList__image__slider .swiper-slide {
        width: 100vw;
        height: 56.22254758vw;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          body.top .cont .saunaList__image__slider .swiper-slide {
            height: 124.8vw; } }
        body.top .cont .saunaList__image__slider .swiper-slide img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center; }
        body.top .cont .saunaList__image__slider .swiper-slide.swiper-slide-active-prev img {
          animation: zoomOut 5s linear 0s 1 normal both; }
        body.top .cont .saunaList__image__slider .swiper-slide.swiper-slide-duplicate-active img, body.top .cont .saunaList__image__slider .swiper-slide.swiper-slide-active img {
          animation: zoomOut 5s linear 0s 1 normal both; }
        body.top .cont .saunaList__image__slider .swiper-slide.stop img {
          animation-name: none; }
        body.top .cont .saunaList__image__slider .swiper-slide.start img {
          animation: zoomOut 5s linear 0s 1 normal both; }

@keyframes zoomOut {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }
      body.top .cont .saunaList__image__text {
        width: calc(100% - 148px);
        position: absolute;
        left: 74px;
        bottom: 74px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        color: #fff;
        z-index: +4; }
        @media only screen and (max-width: 767px) {
          body.top .cont .saunaList__image__text {
            display: block;
            width: calc(100% - 44px);
            left: 22px;
            bottom: 22px; } }
        body.top .cont .saunaList__image__text > div {
          font-family: "Anton", sans-serif;
          width: 43.85245902%; }
          @media only screen and (max-width: 767px) {
            body.top .cont .saunaList__image__text > div {
              width: 100%; } }
          body.top .cont .saunaList__image__text > div .number {
            font-size: 24px;
            font-size: 2.4rem;
            display: block;
            margin-bottom: 11px; }
            @media only screen and (max-width: 767px) {
              body.top .cont .saunaList__image__text > div .number {
                font-size: 14px;
                font-size: 1.4rem;
                margin-bottom: 5px; } }
            body.top .cont .saunaList__image__text > div .number:before {
              counter-increment: number 1;
              content: counter(number, decimal-leading-zero); }
          body.top .cont .saunaList__image__text > div .name {
            font-size: 50px;
            font-size: 5rem;
            line-height: 1.22; }
            @media only screen and (max-width: 767px) {
              body.top .cont .saunaList__image__text > div .name {
                font-size: 37px;
                font-size: 3.7rem;
                line-height: 1.21621622;
                display: block;
                margin-bottom: 11px; } }
        body.top .cont .saunaList__image__text .catch {
          max-width: 49.91803279%;
          font-family: "Helvetica", sans-serif;
          font-size: 20px;
          font-size: 2rem;
          line-height: 1.2;
          font-style: italic; }
          @media only screen and (max-width: 767px) {
            body.top .cont .saunaList__image__text .catch {
              width: 100%;
              font-size: 10px;
              font-size: 1rem; } }
    body.top .cont .saunaList__text {
      padding: 74px 74px 222px;
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.top .cont .saunaList__text {
          padding: 22px 22px 111px;
          flex-direction: column; } }
      body.top .cont .saunaList__text__info {
        width: 50.81967213%; }
        @media only screen and (max-width: 767px) {
          body.top .cont .saunaList__text__info {
            width: 100%;
            order: 2;
            margin-top: 22px; } }
        body.top .cont .saunaList__text__info .description {
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 1.20833333;
          margin-bottom: 45px; }
          @media only screen and (max-width: 767px) {
            body.top .cont .saunaList__text__info .description {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.5;
              margin-bottom: 30px; } }
        body.top .cont .saunaList__text__info .title {
          font-size: 24px;
          font-size: 2.4rem;
          font-weight: 600;
          margin-bottom: 12px; }
          @media only screen and (max-width: 767px) {
            body.top .cont .saunaList__text__info .title {
              font-size: 17px;
              font-size: 1.7rem; } }
        body.top .cont .saunaList__text__info .account {
          font-size: 17px;
          font-size: 1.7rem;
          line-height: 1.17647059;
          color: #FF0069;
          display: block;
          margin-bottom: 3px; }
          @media only screen and (max-width: 767px) {
            body.top .cont .saunaList__text__info .account {
              font-size: 12px;
              font-size: 1.2rem; } }
        body.top .cont .saunaList__text__info .place {
          font-size: 17px;
          font-size: 1.7rem;
          line-height: 1.17647059;
          color: #4A89F3;
          display: block;
          margin-bottom: 3px; }
          @media only screen and (max-width: 767px) {
            body.top .cont .saunaList__text__info .place {
              font-size: 12px;
              font-size: 1.2rem; } }
        body.top .cont .saunaList__text__info .url {
          font-size: 17px;
          font-size: 1.7rem;
          line-height: 1.17647059;
          text-decoration: underline;
          word-break: break-all; }
          @media only screen and (max-width: 767px) {
            body.top .cont .saunaList__text__info .url {
              font-size: 12px;
              font-size: 1.2rem; } }
      body.top .cont .saunaList__text__thumbnail {
        width: 39.91803279%; }
        @media only screen and (max-width: 767px) {
          body.top .cont .saunaList__text__thumbnail {
            width: 100%;
            order: 1; } }
        body.top .cont .saunaList__text__thumbnail ul {
          display: flex;
          flex-wrap: wrap; }
          body.top .cont .saunaList__text__thumbnail ul.disable {
            pointer-events: none; }
          body.top .cont .saunaList__text__thumbnail ul li {
            width: calc((100% - 9.0349076%) / 3);
            margin-right: 4.5174538%;
            opacity: 0.37;
            transition: opacity .3s;
            cursor: pointer; }
            body.top .cont .saunaList__text__thumbnail ul li:nth-of-type(3n) {
              margin-right: 0; }
            body.top .cont .saunaList__text__thumbnail ul li.active {
              opacity: 1; }
            body.top .cont .saunaList__text__thumbnail ul li > div {
              padding-top: 100%;
              position: relative; }
            body.top .cont .saunaList__text__thumbnail ul li img {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: center center; }
    body.top .cont .saunaList .no-result {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100svh;
      font-size: 24px;
      font-size: 2.4rem; }

body.top .sauna-talk {
  background: #C30025;
  color: #F9F5F1;
  padding: 111px 91px 111px;
  position: relative;
  margin-top: 111px; }
  @media only screen and (max-width: 767px) {
    body.top .sauna-talk {
      padding: 37px 22px 54px; } }
  @media only screen and (max-width: 767px) and (max-width: 767px) {
    body.top .sauna-talk {
      margin-top: 55px; } }
  body.top .sauna-talk__title {
    font-family: "Anton", sans-serif;
    font-size: 51px;
    font-size: 5.1rem;
    position: absolute;
    top: -1px;
    left: -5px; }
    @media only screen and (min-width: 768px) {
      body.top .sauna-talk__title {
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: vertical-rl; } }
    @media only screen and (max-width: 767px) {
      body.top .sauna-talk__title {
        position: static;
        font-size: 24px;
        font-size: 2.4rem;
        margin-bottom: 20px; } }
  body.top .sauna-talk .col2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px; }
    @media only screen and (max-width: 767px) {
      body.top .sauna-talk .col2 {
        flex-direction: column;
        margin-bottom: 27px; } }
    body.top .sauna-talk .col2:last-of-type {
      margin-bottom: 0; }
    body.top .sauna-talk .col2 .text {
      width: 46.875%; }
      @media only screen and (max-width: 767px) {
        body.top .sauna-talk .col2 .text {
          width: 100%;
          order: 1;
          margin-bottom: 36px; } }
      body.top .sauna-talk .col2 .text h3 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.7;
        font-weight: 600;
        margin-bottom: 1.3em; }
        @media only screen and (max-width: 767px) {
          body.top .sauna-talk .col2 .text h3 {
            font-size: 14px;
            font-size: 1.4rem; } }
        body.top .sauna-talk .col2 .text h3 small {
          display: block;
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: 300; }
      body.top .sauna-talk .col2 .text h4 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.7;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.top .sauna-talk .col2 .text h4 {
            font-size: 14px;
            font-size: 1.4rem; } }
      body.top .sauna-talk .col2 .text p {
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.5;
        margin-bottom: 1.4em; }
        @media only screen and (max-width: 767px) {
          body.top .sauna-talk .col2 .text p {
            font-size: 14px;
            font-size: 1.4rem; } }
        body.top .sauna-talk .col2 .text p:last-of-type {
          margin-bottom: 0; }
        body.top .sauna-talk .col2 .text p a {
          text-decoration: underline;
          word-break: break-all; }
    body.top .sauna-talk .col2 .image {
      width: 46.875%; }
      @media only screen and (max-width: 767px) {
        body.top .sauna-talk .col2 .image {
          width: 100%;
          order: 2; } }
      body.top .sauna-talk .col2 .image > div {
        margin-bottom: 11px; }
        body.top .sauna-talk .col2 .image > div:last-of-type {
          margin-bottom: 0; }
        body.top .sauna-talk .col2 .image > div img {
          width: 100%; }
      body.top .sauna-talk .col2 .image .image-col {
        display: flex;
        justify-content: space-between; }
        body.top .sauna-talk .col2 .image .image-col > div {
          width: 49.18918919%; }

body.top .our-partners {
  padding: 111px 0px 111px; }
  @media only screen and (max-width: 767px) {
    body.top .our-partners {
      padding: 55px 0; } }
  body.top .our-partners .inner {
    max-width: 100%;
    padding: 0 74px; }
    @media only screen and (max-width: 767px) {
      body.top .our-partners .inner {
        padding: 0 22px; } }
  body.top .our-partners__title {
    font-family: "Anton", sans-serif;
    font-size: 74px;
    font-size: 7.4rem;
    line-height: 1.22972973;
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      body.top .our-partners__title {
        font-size: 37px;
        font-size: 3.7rem;
        margin-bottom: 22px; } }
  body.top .our-partners__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 7.59702725% 40px 6.60611065%;
    background: #fff; }
    @media only screen and (max-width: 767px) {
      body.top .our-partners__list {
        flex-wrap: wrap;
        justify-content: center;
        padding: 40px 3% 22px; } }
    @media only screen and (max-width: 767px) {
      body.top .our-partners__list li {
        width: 28%;
        margin: 0 5%;
        margin-bottom: 18px; } }
    body.top .our-partners__list li:nth-of-type(1) {
      width: 9.8265896%; }
      @media only screen and (max-width: 767px) {
        body.top .our-partners__list li:nth-of-type(1) {
          width: 19.6531792%; } }
    body.top .our-partners__list li:nth-of-type(2) {
      width: 7.679604%; }
      @media only screen and (max-width: 767px) {
        body.top .our-partners__list li:nth-of-type(2) {
          width: 15.359208%; } }
    body.top .our-partners__list li:nth-of-type(3) {
      width: 16.92815855%; }
      @media only screen and (max-width: 767px) {
        body.top .our-partners__list li:nth-of-type(3) {
          width: 33.8563171%; } }
    body.top .our-partners__list li:nth-of-type(4) {
      width: 12.79933939%; }
      @media only screen and (max-width: 767px) {
        body.top .our-partners__list li:nth-of-type(4) {
          width: 25.59867878%; } }
    body.top .our-partners__list li:nth-of-type(5) {
      width: 7.67960363%; }
      @media only screen and (max-width: 767px) {
        body.top .our-partners__list li:nth-of-type(5) {
          width: 15.35920726%; } }

body.top.jp .cont .saunaList__text__info .description {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5; }
  @media only screen and (max-width: 767px) {
    body.top.jp .cont .saunaList__text__info .description {
      font-size: 14px;
      font-size: 1.4rem; } }
