@charset "utf-8";

@import "style.css";
@import "color.css";
@import "font.css?20260410_0.0.1";
@import "line-height.css";
@import "margin.css";
@import "padding.css";

:root {
  --bs-font-sans-serif: "Zen Kaku Gothic New", sans-serif;
  --bs-font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --bs-emphasis-color: #000;
  --bs-body-bg: #fff;
  --bs-body-color: #333 !important;
  --bs-body-width: 1366px;
}

/* @media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
} */

/*---------------------------------------------------
font-familyここから
----------------------------------------------------*/
body {
  font-family: var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 1rem;
  color: #222;
  letter-spacing: 0.1em;
  line-height: 30px;
}

/*---------------------------------------------------
リセットCSSここから
----------------------------------------------------*/
header a,
main a,
footer a {
  color: #333 !important;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.ls-none {
  list-style-type: none !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background-color: #fff;
  border: 1px solid #333 !important;
  /* border-radius: 8px !important; */
  -webkit-appearance: none !important;
  appearance: none !important;
  /* height: 56px; */
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: #777;
}

input[type="text"]:focus {
  outline: 0;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
}

button:focus {
  outline: 0;
}

*:focus {
  outline: none;
}

.width-fit-content {
  width: fit-content;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wm-rl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.nav-border {
  border-top: 0.031rem solid #fff;
}

.text-policy {
  color: #70aab3 !important;
}

.sp-only {
  display: block !important;
}

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

/*---------------------------------------------------
 header
----------------------------------------------------*/

.rounded-10 {
  border-radius: 10px;
}

.rounded-20 {
  border-radius: 20px;
}

.ow-50 {
  width: 50%;
}

.w-45 {
  width: 45% !important;
}

.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.px-lg-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.header-wrapper {
  height: fit-content;
  z-index: 9500;

  padding: 13px 13px 16px;
  background-color: #fff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;

  transition:
          opacity 0.4s ease,
          visibility 0s linear 0.4s;
}

/* TOP以外は常に表示 */
.is-sub-page .header-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 767.98px) {
  /* TOPだけ最初は非表示 */
  .is-top-page .header-wrapper {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* 表示時 */
  .is-top-page .header-wrapper.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s linear 0s;
  }
}

.header-wrapper .container-fluid {
  position: relative;
}

.header-logo,
.header-ham {
  z-index: 9900;
}

.header-logo a img {
  width: 44px;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.header-ham {
  padding: 10px 0;
}

.ham-box {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

@media (any-hover: hover) {
  .ham-box:hover {
    opacity: 0.6;
  }
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  background-color: #000;
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  opacity: 1;
}

.ham-bar {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.5s;
}

.ham-bar::before {
  content: "";
  top: -8px;
  transition: 0.4s;
}

.ham-bar::after {
  content: "";
  top: 8px;
  transition: 0.4s;
}

.is-active .ham-bar {
  background-color: transparent !important;
}

.is-active .ham-bar::before {
  transform: translateY(8px) rotate(45deg);
  transition: 0.4s;
}

.is-active .ham-bar::after {
  transform: translateY(-8px) rotate(-45deg);
  transition: 0.4s;
}

.ham-drawer {
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0;
  pointer-events: none;
  z-index: 9800;
  transition: opacity 0.4s ease;
  overflow: hidden;
  position: relative;
}

.ham-drawer.is-active {
  opacity: 1;
  pointer-events: auto;
}

.no-scrollbar {
  /* Firefox */
  scrollbar-width: none;
  /* IE / 旧 Edge */
  -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.is-fixed {
  overflow: hidden;
}

.ham-drawer-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  overflow-y: auto;
  scrollbar-gutter: stable;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  background-color: var(--main-orange);
}

.ham-drawer-sub-wrapper {
  height: max-content;
  min-height: max(100svh, 852px);
  padding-top: max(230px, 49vw);
  padding-bottom: 160px;
  position: relative;
}

.ham-drawer.is-active .ham-drawer-wrapper {
  opacity: 1;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 32px 44px;
}

.nav-item a {
  letter-spacing: 0.3em;
  font-weight: 500;
}

.ham-nav-btn {
  height: 60px;
}

.ham-drawer-wrapper::before {
  content: "";
  background-image: url("../images/common/ham_top_sp.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 390 / 192;
  position: absolute;
  top: 0;
  left: 0;
}

.ham-drawer-sub-wrapper::after {
  content: "";
  background-image: url("../images/common/ham_bottom_sp.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 390 / 216;
  max-width: 390px;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (min-width: 360px) {
  .ham-drawer-inner {
    position: relative;
  }

  .ham-drawer-inner::before {
    content: "";
    background-image: url("../images/common/ham_center_left_sp.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 42 / 72;
    max-width: 42px;
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    transform: translateY(-50%);
  }
}

@media (min-width: 576px) {
  .nav-grid {
    grid-template-columns: repeat(3, max-content);
  }
}

@media (min-width: 768px) {
  .header-wrapper {
    padding: 40px 0 16px;
    background-color: transparent;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
  }

  .header-logo a img {
    width: 74px;
  }

  .header-logo {
    position: static;
    transform: unset;
  }

  .header-ham {
    padding: 0;
  }

  .ham-box {
    width: 74px;
    height: 74px;
    cursor: pointer;
    border: 1px solid #222;
    border-radius: 50rem;
  }

  .ham-bar,
  .ham-bar::before,
  .ham-bar::after {
    background-color: #000;
    position: absolute;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    opacity: 1;
  }

  .ham-bar {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    transition: 0.4s;
  }

  .ham-bar::before {
    content: "";
    top: -8px;
    transition: 0.4s;
  }

  .ham-bar::after {
    content: "";
    top: 8px;
    transition: 0.4s;
  }

  .is-active .ham-bar {
    background-color: transparent !important;
  }

  .is-active .ham-bar::before {
    transform: translateY(8px) rotate(45deg);
    transition: 0.4s;
  }

  .is-active .ham-bar::after {
    transform: translateY(-8px) rotate(-45deg);
    transition: 0.4s;
  }

  .ham-drawer-sub-wrapper {
    padding-top: max(calc((100vh - 230px) / 2), 327px);
    padding-bottom: max(calc((100vh - 230px) / 2), 327px);
  }

  .ham-nav-btn {
    height: 76px;
  }

  .ham-drawer-sub-wrapper {
    display: flex;
    align-items: center;
  }

  .ham-drawer-wrapper::before {
    content: "";
    background-image: url("../images/common/ham_top_left_pc.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 34vw;
    aspect-ratio: 491 / 285;
    max-width: 491px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .ham-drawer-wrapper::after {
    content: "";
    background-image: url("../images/common/ham_top_right_pc.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 56.5vw;
    aspect-ratio: 813 / 317;
    max-width: 813px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .ham-drawer-sub-wrapper::before {
    content: "";
    background-image: url("../images/common/ham_bottom_left_pc.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 38vw;
    aspect-ratio: 548 / 256;
    max-width: 548px;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .ham-drawer-sub-wrapper::after {
    content: "";
    background-image: url("../images/common/ham_bottom_right_pc.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 34.6vw;
    aspect-ratio: 498 / 276;
    max-width: 498px;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .ham-drawer-inner {
    position: relative;
  }

  .ham-drawer-inner::before {
    content: "";
    background-image: url("../images/common/ham_center_left_pc.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 9.8vw;
    aspect-ratio: 141 / 142;
    max-width: 141px;
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    transform: translateY(-50%);
  }

  .nav-grid {
    grid-template-columns: repeat(4, max-content);
  }

  .ham-nav-btn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 78px;
  }
}

@media (min-width: 992px) {
  .w-lg-45 {
    width: 45% !important;
  }

  .ow-lg-50 {
    width: 50% !important;
  }
}

@media (min-width: 1200px) {
  .nav-grid {
    grid-template-columns: repeat(5, max-content);
    gap: 24px 86px;
  }
}

/*---------------------------------------------------
 footer
----------------------------------------------------*/

/*上部へ ボタン*/
html,
body {
  overflow-x: clip;
}

.back-to-top-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 1000;
}

.back-to-top {
  position: absolute;
  top: -61px;
  right: -48px;
  transform: translateY(-100%) rotate(0deg);
  z-index: 1000;
  width: 166px;
  height: 125px;
  padding: 0;
  border: 0;
  background: url("../images/common/back_to_top.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  transition: 0.4s;
}

@media (any-hover: hover) {
  .back-to-top:hover {
    transform: translateY(-100%) rotate(-10deg);
  }
}

.page-whiteout {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.2s ease,
    visibility 0s linear 0.9s;
}

.page-whiteout.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.4s ease,
    visibility 0s linear 0s;
}

@media screen and (min-width: 992px) {
  .back-to-top {
    position: absolute;
    top: -108px;
    right: 32px;
    width: 193px;
    height: 145px;
  }
}

/*サウナストーンカルーセル*/

.loop-gallery {
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

.loop-track {
  display: flex;
  width: max-content;
  animation: loop-slide 28s linear infinite;
  will-change: transform;
}

.loop-list {
  display: flex;
  align-items: center;
  gap: 17.5px;
  margin: 0 17.5px 0 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.loop-item {
  flex-shrink: 0;
}

.loop-item img {
  display: block;
  object-fit: cover;
}

.loop-stone01 {
  width: 81.5px;
  height: 76px;
}

.loop-stone02 {
  width: 80.9px;
  height: 72.2px;
}

.loop-stone03 {
  width: 77.6px;
  height: 74.9px;
}

.loop-stone04 {
  width: 76px;
  height: 70.5px;
}

.loop-stone05 {
  width: 81.5px;
  height: 76px;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 2));
  }
}

@media screen and (min-width: 992px) {
  .loop-track {
    animation: loop-slide 36s linear infinite;
  }

  .loop-list {
    gap: 30px;
    margin: 0 30px 0 0;
  }

  .loop-stone01 {
    width: 137.2px;
    height: 128px;
  }

  .loop-stone02 {
    width: 136.3px;
    height: 121.6px;
  }

  .loop-stone03 {
    width: 130.8px;
    height: 126.2px;
  }

  .loop-stone04 {
    width: 128px;
    height: 118.8px;
  }

  .loop-stone05 {
    width: 137.2px;
    height: 128px;
  }
}

/*フッター内容*/

.footer-logo-img {
  width: 100%;
  max-width: 124px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 20px 44px;
}

@media screen and (min-width: 576px) {
  .footer-nav-grid {
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width: 768px) {
  .footer-nav-grid {
    grid-template-columns: repeat(4, max-content);
  }
}

@media screen and (min-width: 992px) {
  .footer-nav-grid {
    grid-template-columns: repeat(5, max-content);
    gap: 24px 44px;
  }
}

@media screen and (min-width: 1200px) {
  .footer-nav-grid {
    gap: 24px 86px;
  }
}

/*---------------------------------------------------
 order
----------------------------------------------------*/

.os-order-1 {
  order: 1 !important;
}

.os-order-2 {
  order: 2 !important;
}

.os-order-3 {
  order: 3 !important;
}

.os-order-4 {
  order: 4 !important;
}

.os-order-5 {
  order: 5 !important;
}

.os-order-6 {
  order: 6 !important;
}

.os-order-7 {
  order: 7 !important;
}

.os-order-8 {
  order: 8 !important;
}

.os-order-9 {
  order: 9 !important;
}

.os-order-10 {
  order: 10 !important;
}

.os-order-11 {
  order: 11 !important;
}

.os-order-12 {
  order: 12 !important;
}

@media screen and (min-width: 992px) {
  .os-order-lg-1 {
    order: 1 !important;
  }

  .os-order-lg-2 {
    order: 2 !important;
  }

  .os-order-lg-3 {
    order: 3 !important;
  }

  .os-order-lg-4 {
    order: 4 !important;
  }

  .os-order-lg-5 {
    order: 5 !important;
  }

  .os-order-lg-6 {
    order: 6 !important;
  }

  .os-order-lg-7 {
    order: 7 !important;
  }

  .os-order-lg-8 {
    order: 8 !important;
  }

  .os-order-lg-9 {
    order: 9 !important;
  }

  .os-order-lg-10 {
    order: 10 !important;
  }

  .os-order-lg-11 {
    order: 11 !important;
  }

  .os-order-lg-12 {
    order: 12 !important;
  }
}

@media (hover: hover) {
}

/*---------------------------------------------------
 404
----------------------------------------------------*/

@media screen and (min-width: 992px) {
}

/*-------------------------
breadcrumb
-------------------------*/
.breadcrumb {
  position: absolute;
  top: 0;
  left: 24px;
}
.breadcrumb li {
  position: relative;
}

.breadcrumb li > * {
  color: #fff !important;
}

.breadcrumb li:not(:first-of-type) {
  padding-left: 8px;
}

.breadcrumb li:not(:first-of-type)::before {
  position: absolute;
  content: "";
  border-right: 0.094em solid #fff;
  border-bottom: 0.094em solid #fff;
  width: 0.45em;
  height: 0.45em;
  top: 0.85em;
  left: -7px;
  transform: translateY(-0.5em) rotate(-45deg);
}

@media screen and (min-width: 992px) {
  .breadcrumb {
    position: static;
  }

  .breadcrumb li > * {
    color: #222 !important;
  }

  .breadcrumb li:not(:first-of-type)::before {
    border-color: #222;
  }
}
