@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
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;
}

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-gray: #44331f;
  --box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.15), -6px -6px 10px #fff;
  --box-shadow-hover: 16px 24px rgba(0, 0, 0, 0.08), 16px 16px 24px #fff;
  --box-shadow-inset: inset 6px 6px 10px rgba(0, 0, 0, 0.05), inset -6px -6px 10px #fff;
  --box-shadow-dark: 6px 6px 10px rgba(0, 0, 0, 0.1), -6px -6px 10px rgba(#fff, 0.2);
}

body {
  color: #44331f;
}

.wrap {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc .sp {
    display: none;
  }
}

/*======================================================================================
  header
======================================================================================*/
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 72px;
  }
}

.header__inner {
  padding-right: 112px;
  padding-left: 112px;
  display: flex;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.header__name {
  font-size: 40px;
  font-weight: 700;
  color: #44331f;
  display: flex;
  align-items: end;
  margin-right: auto;
  height: inherit;
  font-family: "Mochiy Pop One", sans-serif;
  position: relative;
}
.header__name::after {
  content: "サウナドット";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 3px;
  width: 154px;
  font-size: 18px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .header__name {
    font-size: 32px;
  }
  .header__name::after {
    content: "サウナドット";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 9px;
    width: 114px;
    font-size: 14px;
    letter-spacing: 0.2em;
  }
}
.header__name a {
  color: #44331f;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .header__name a {
    padding-bottom: 4px;
  }
}

.header__nav {
  height: inherit;
  font-family: "Mochiy Pop One", sans-serif;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}
.header__item:not(:first-child) {
  margin-left: 32px;
}
@media screen and (max-width: 1024px) {
  .header__item:not(:first-child) {
    margin-left: 19px;
  }
}

.header-instagram {
  width: 25px;
  height: 25px;
}

.header-x {
  width: 25px;
  height: 25px;
}

.header__link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #44331f;
  display: flex;
  align-items: center;
  height: inherit;
  position: relative;
}

.header__link-sauna {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #44331f;
  display: flex;
  align-items: center;
  height: inherit;
  position: relative;
}
.header__link-sauna::after {
  content: "サウナドット";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 13px;
  width: 119px;
  font-size: 11px;
  letter-spacing: -0.05em;
}

.header__btn {
  margin-left: 66px;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  width: 30px;
  height: 25px;
  top: 30px;
  right: 15px;
  cursor: pointer;
}
.hamburger.is-active {
  right: 15px;
}
.hamburger span {
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 4px;
  transition: transform 0.3s;
  background-color: #a66933;
  border-radius: 10px;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
  transition: opacity 0.3s;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
}

.drawer {
  z-index: 5000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/bg.jpg) repeat top center;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer.is-active {
  transform: translateX(0);
}

.drawer__inner {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  height: inherit;
  margin-top: 80px;
}

.drawer__items {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.drawer__items .flex {
  display: flex;
  justify-content: space-between;
  width: 20vw;
  margin: 0 auto;
}

.drawer__item {
  display: inline-block;
}
.drawer__item:not(:first-child) {
  margin-top: 43px;
}

.drawer__item_link {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 16px;
  line-height: 1.875;
  color: #44331f;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.drawer__item_link-sauna {
  position: relative;
}
.drawer__item_link-sauna::after {
  content: "サウナドット";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -22px;
  width: 187px;
  font-size: 22px;
  letter-spacing: 0.4em;
}

.drawer__item_link-title {
  font-size: 50px;
  letter-spacing: 0.2em;
}

.drawer__btn {
  margin-top: 48px;
}

/*======================================================================================
  top
======================================================================================*/
.bg1 {
  background: linear-gradient(to bottom, transparent 0%, transparent 95%, #fff 100%), url(../images/bg.jpg) repeat top center;
  position: relative;
  z-index: 2;
}

.top {
  padding-top: 74px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top {
    margin-bottom: 10vw;
  }
}

.top__box {
  padding: 4vw 5vw 1vw 5vw;
  display: flex;
  position: relative;
  /* アニメーション */
}
@media screen and (max-width: 768px) {
  .top__box {
    display: block;
    padding: 7vw 5vw 1vw 5vw;
  }
}
.top__box .top__left-logo {
  position: absolute;
  bottom: -3vw;
  left: 10vw;
  border-radius: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top__box .top__left-logo {
    bottom: 2vw;
  }
}
.top__box .top__left-img {
  width: 11vw;
  height: 11vw;
  border-radius: 50%;
  animation: rotation 6s linear infinite;
}
@media screen and (max-width: 768px) {
  .top__box .top__left-img {
    width: 25vw;
    height: 25vw;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 769px) {
  .top__left {
    margin-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .top__left {
    text-align: center;
    width: 60vw;
    margin-left: auto;
  }
}
.top__left h2 {
  margin-top: 16px;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 769px) {
  .top__left h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 768px) {
  .top__left h2 {
    font-size: 5.5vw;
    line-height: 9vw;
    letter-spacing: 0.1em;
  }
}
.top__left h2::before {
  content: "";
  background: url(../images/accent.png) no-repeat top center/cover;
  display: inline-block;
  width: 2vw;
  height: 2vw;
  position: absolute;
  top: 0.2vw;
  right: -1.4vw;
}
@media screen and (max-width: 768px) {
  .top__left h2::before {
    width: 5vw;
    height: 5vw;
    top: -1.5vw;
    right: 14vw;
  }
}
.top__left h2 span {
  padding-left: 5vw;
}

.top__right {
  height: 37vw;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top__right {
    height: 100vw;
  }
}

.top__img01 {
  background: url(../images/top01.jpg) no-repeat center center/cover;
}

.top__img02 {
  background: url(../images/top02.jpg) no-repeat center center/cover;
}

.top__img03 {
  background: url(../images/top03.jpg) no-repeat center center/cover;
}

@media screen and (min-width: 769px) {
  .top__img04 {
    background: url(../images/top04.jpg) no-repeat center center/cover;
  }
}
@media screen and (max-width: 768px) {
  .top__img04 {
    background: url(../images/sp-top04.jpg) no-repeat center center/cover;
  }
}

.image {
  animation: image-switch-animation 16s infinite;
  border-radius: 50px;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.image:nth-of-type(1) {
  animation-delay: 0s;
}

.image:nth-of-type(2) {
  animation-delay: 4s;
}

.image:nth-of-type(3) {
  animation-delay: 8s;
}

.image:nth-of-type(4) {
  animation-delay: 12s;
}

/*======================================================================================
  SAUNA.の魅力 about
======================================================================================*/
.about {
  padding-bottom: 90px;
  padding-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 5vw;
    padding-bottom: 20vw;
  }
}

.about__title {
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .about__title {
    margin-bottom: 7.5vw;
  }
}
.about__title::after {
  content: "サウナドット";
  position: absolute;
  left: 12px;
  top: -29px;
  width: 154px;
  font-size: 18px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 32px;
  }
  .about__title::after {
    content: "サウナドット";
    position: absolute;
    left: 1.1vw;
    top: -5vw;
    width: 29vw;
    font-size: 3.2vw;
    letter-spacing: 0.2em;
  }
}

.about__inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .about__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .about__inner {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 769px) {
  .about__text-area {
    width: 40%;
    margin-right: 56px;
    padding-top: 24px;
    padding-left: 10px;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .about__text-area {
    padding-top: 0;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .about__text-area {
    width: 100%;
  }
}

.about__text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-bottom: 16px;
  line-height: 40px;
}
@media screen and (max-width: 1024px) {
  .about__text {
    padding-bottom: 8px;
    line-height: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 3.5vw;
    line-height: 7vw;
    text-align: left;
    padding: 0 4vw;
    margin-bottom: 4.2vw;
  }
}

.about__text2 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  background: linear-gradient(transparent 50%, #f6ce7d 50%);
  width: 240px;
  padding: 0 16px 8px 16px;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about__text2 {
    font-size: 20px;
    width: 221px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .about__text2 {
    font-size: 5vw;
    background: linear-gradient(transparent 59%, #f6ce7d 59%);
    width: 53vw;
    padding: 0 2vw 0vw 2vw;
    margin-bottom: 7vw;
  }
}

@media screen and (min-width: 769px) {
  .about__img {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .about__img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .about__img {
    width: 100%;
    margin-bottom: 5vw;
  }
}
.about__img img {
  border-radius: 20px;
}

/*======================================================================================
  施設案内 gallery01
======================================================================================*/
.gallery01 {
  overflow: hidden;
  padding-bottom: 20px;
  padding-top: 60px;
  background: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gallery01 {
    padding: 5vw 0 2vw;
  }
}

.gallery01__title {
  margin: 0px auto 80px;
}
@media screen and (max-width: 768px) {
  .gallery01__title {
    margin: 0 auto 7.5vw;
  }
}

.gallery01__text {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .gallery01__text {
    margin-top: 2.5vw;
  }
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 100px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 9vw;
  }
}

.l-section .l-inner {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .l-section .l-inner {
    padding-bottom: 12vw;
  }
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  display: grid;
  place-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .swiper .swiper-button-prev,
.swiper .swiper-button-next {
    width: 12vw;
    height: 12vw;
  }
}

.gallery01 .swiper-button-prev,
.gallery01 .swiper-button-next {
  position: absolute;
  z-index: 1;
  bottom: 0;
  transition: transform 0.5s;
}
.gallery01 .swiper-button-prev:hover,
.gallery01 .swiper-button-next:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: transform 0.5s;
}

.gallery01 .swiper-button-prev {
  right: calc(100% + 32px);
  left: -90px;
}
@media screen and (max-width: 768px) {
  .gallery01 .swiper-button-prev {
    left: -9.5vw;
  }
}

@media screen and (min-width: 769px) {
  .gallery01 .swiper-button-next {
    left: calc(100% + 32px);
  }
}
@media screen and (max-width: 768px) {
  .gallery01 .swiper-button-next {
    right: -9.5vw;
  }
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .swiper-button-prev::before,
.swiper-button-next::before {
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 16px;
  height: 16px;
  content: "";
  border: solid rgba(109, 109, 109, 0.695);
  border-width: 3px 3px 0 0;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev::after,
.swiper-button-next::after {
    border-color: #44331f;
  }
}

.swiper-button-prev::after {
  margin-left: 4px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.swiper-main {
  overflow: visible;
}

.swiper-thumb {
  padding-top: 8px;
}

.swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.gallery01 .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  height: 4px;
  margin-top: 20px;
}

.swiper-scrollbar {
  position: relative;
  margin-top: 16px;
}
.swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  content: "";
  background-color: #eee;
  border-radius: 10px;
}

.gallery01 .swiper-scrollbar-drag {
  height: 4px;
  cursor: pointer;
  background-color: #44331f;
  border-radius: 10px;
}

.gallery01 .swiper-scrollbar-drag:active {
  background-color: rgba(68, 51, 31, 0.8431372549);
}

.gallery01 .slide {
  display: block;
  overflow: hidden;
}

.gallery01 .slide-media {
  padding-top: 62.5%;
  border-radius: 5px;
}

.gallery01 .slide-media img {
  -o-object-fit: contain;
  object-fit: contain;
}

.gallery01 .slide-title {
  line-height: 1.6;
  padding: 32px 56px;
}
@media screen and (max-width: 768px) {
  .gallery01 .slide-title {
    padding: 4vw 3.5vw 1vw 3.5vw;
    font-size: 3vw;
    line-height: 7vw;
  }
}
.gallery01 .slide-title span {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .gallery01 .slide-title span {
    font-size: 3.5vw;
  }
}

.gallery01 .thumb-media {
  padding-top: 100%;
  transition: transform 0.3s;
  border-radius: 4px;
}

.gallery01 .thumb-media img {
  height: calc(100% + 8px);
  transition: transform 0.3s;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.gallery01 .swiper-slide-thumb-active {
  transition: transform 0.3s;
  opacity: 0.3;
}

.gallery01 .swiper-slide-thumb-active .thumb-media {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.gallery01 .swiper-slide-thumb-active .thumb-media img {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.gallery01 .swiper-scrollbar-drag:hover {
  background-color: rgba(68, 51, 31, 0.8431372549);
}

.gallery01 .thumb-media:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.gallery01 .thumb-media:hover img {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*======================================================================================
ご利用案内 price
======================================================================================*/
.price {
  background: linear-gradient(to top, transparent 0%, transparent 90%, #fff 100%), url(../images/bg.jpg) repeat top center;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .price {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .price {
    background: linear-gradient(to top, transparent 0%, transparent 93%, #fff 100%), url(../images/bg.jpg) repeat top center;
    padding-top: 15vw;
  }
}

.price__bg-bottom {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #fff 100%), url(../images/bg.jpg) repeat top center;
  height: 140px;
}
@media screen and (max-width: 768px) {
  .price__bg-bottom {
    height: 20vw;
  }
}

.price__inner {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .price__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .price__inner {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

.price__title {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .price__title {
    margin-bottom: 13vw;
  }
}

.price__box {
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .price__box-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
  }
}

.price__sub {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-right: 110px;
  position: relative;
}
.price__sub::after {
  content: "";
  background: #f6ce7d;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -2px;
  width: 155px;
  height: 17px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .price__sub::after {
    bottom: 0.5vw;
    width: 35vw;
  }
}
@media screen and (max-width: 768px) {
  .price__sub {
    font-size: 4.5vw;
    letter-spacing: 0.1em;
    line-height: 8vw;
    display: block;
    width: 35vw;
    margin: 0 auto 4vw;
  }
}

.price__sub2 {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #f6ce7d 60%);
}
@media screen and (min-width: 769px) {
  .price__sub2 {
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 36px;
    width: 103px;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 768px) {
  .price__sub2 {
    font-size: 4.5vw;
    letter-spacing: 0.1em;
    line-height: 8vw;
    margin-bottom: 3vw;
    width: 25vw;
    margin: 0 auto 4vw;
  }
}

.price-bb {
  border-bottom: 1px dotted #44331f;
  line-height: 64px;
}
@media screen and (max-width: 768px) {
  .price-bb {
    line-height: 12vw;
  }
}

.price__text {
  font-size: 16px;
  letter-spacing: 0.15em;
  text-align: left;
  padding-left: 70px;
  border-bottom: 1px dotted #44331f;
}
@media screen and (max-width: 768px) {
  .price__text {
    font-size: 3.5vw;
    letter-spacing: 0.1em;
    padding-left: 5vw;
  }
}

.price__text-sub {
  font-weight: 700;
}

.price__text-mb {
  text-align: left;
  display: inline-block;
  line-height: 40px;
  padding-left: 0;
  padding-right: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .price__text-mb {
    line-height: 10vw;
    margin-bottom: 16vw;
    padding-right: 24px;
  }
}

.price__text-ml1 {
  margin-left: 337px;
}
@media screen and (max-width: 768px) {
  .price__text-ml1 {
    margin-left: 30.9vw;
  }
}

.price__text-ml2 {
  margin-left: 245px;
}
@media screen and (max-width: 768px) {
  .price__text-ml2 {
    margin-left: 11.6vw;
  }
}

.price__text-ml3 {
  margin-left: 369px;
}
@media screen and (max-width: 768px) {
  .price__text-ml3 {
    margin-left: 37.3vw;
  }
}

.price__text-ml4 {
  margin-left: 292px;
}
@media screen and (max-width: 768px) {
  .price__text-ml4 {
    margin-left: 31.7vw;
  }
}

/*======================================================================================
  アクセス access
======================================================================================*/
.access {
  padding-top: 60px;
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 5vw;
    margin-bottom: 20vw;
  }
}

.access_inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .access_inner {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

.access_map {
  margin: 80px auto 24px;
  width: 800px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .access_map {
    margin-top: 10vw;
    margin-bottom: 5vw;
  }
}

.iframe_wrap {
  padding-top: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .iframe_wrap {
    padding-top: 68.75%;
  }
}
.iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access_info {
  margin: 16px auto 40px;
  width: 800px;
  max-width: 100%;
  padding-left: 32px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .access_info {
    margin: 4vw auto 10vw;
    padding-left: 2vw;
  }
}

.access_info-row {
  display: flex;
  align-items: start;
}
.access_info-row:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .access_info-row:not(:first-child) {
    margin-top: 3vw;
  }
}
.access_info-row dt {
  margin: 0;
  padding: 0;
  font-weight: 700;
  width: 120px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .access_info-row dt {
    width: 21vw;
    font-size: 4vw;
    letter-spacing: 0.2em;
  }
}
.access_info-row dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 120px);
  padding-left: 16px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .access_info-row dd {
    width: calc(100% - 21vw);
    padding-left: 3vw;
    font-size: 3.5vw;
  }
}
.access_info-row dd a {
  color: #44331f;
}

.btn {
  display: block;
  background-color: #a66933;
  width: 300px;
  height: 60px;
  border-radius: 20px;
  margin: 0 auto;
  text-decoration: none;
  padding: 15px 0 12px 0;
  text-align: center;
}
.btn:hover {
  opacity: 0.9;
}
.btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
  border-bottom: none; /*線を消す*/
}
.btn p {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  position: relative;
  font-family: "Mochiy Pop One", sans-serif;
}
.btn p::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  margin-top: -4px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
}

/*======================================================================================
  footer
======================================================================================*/
.footer {
  background: #44331f;
  padding: 50px 40px 10px;
  border-radius: 5vw 5vw 0 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 15vw 5vw 2vw;
  }
}

.footer__logo {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #44331f;
  margin-right: auto;
  font-family: "Mochiy Pop One", sans-serif;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    font-size: 10vw;
    margin-bottom: 8vw;
  }
}
.footer__logo a {
  color: #fff;
  position: relative;
}
.footer__logo a::after {
  content: "サウナドット";
  position: absolute;
  left: 47%;
  transform: translateX(-50%);
  top: -16px;
  width: 40vw;
  font-size: 18px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .footer__logo a::after {
    top: -3.1vw;
    font-size: 3.5vw;
    letter-spacing: 0.2em;
  }
}

@media screen and (min-width: 769px) {
  .footer__lists {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__lists {
    margin-bottom: 5vw;
    text-align: center;
  }
}

.footer__list {
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .footer__list {
    letter-spacing: 0.1em;
    line-height: 10vw;
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__list:not(:first-child) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__list:not(:first-child) {
    margin-top: 2vw;
  }
}
.footer__list a {
  color: #fff;
}

.footer__bottom {
  text-align: center;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .footer__bottom {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-bottom: 5vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__bottom .footer__address {
    margin-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom .footer__address {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__bottom .footer__tel {
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom .footer__tel {
    margin-bottom: 5vw;
    letter-spacing: 0.15em;
  }
}
.footer__bottom .footer__tel a {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .footer__bottom .footer__tel a {
    margin-left: 0;
  }
}
.footer__bottom p {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__bottom p {
    font-size: 3vw;
  }
}
.footer__bottom .sns-box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__bottom .sns-box {
    justify-content: space-between;
    width: 20vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .footer__bottom .sns-box a {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom .sns-box a img {
    width: 6.5vw;
  }
}

.copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/*======================================================================================
  loading
======================================================================================*/
.loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #44331f;
}

.loading__circle {
  width: 60px;
  height: 60px;
  content: "";
  animation: 2s linear loading infinite;
  border: 4px solid #fff;
  border-top: 4px solid #44331f;
  border-radius: 50%;
}

.loading__text {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*======================================================================================
  共通パーツ
======================================================================================*/
.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.section-title {
  font-size: 32px;
  letter-spacing: 0.3em;
  line-height: 70px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  font-family: "Mochiy Pop One", sans-serif;
}
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 30px;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 5.5vw;
    line-height: 50px;
  }
}
.section-title::before {
  content: "";
  position: absolute;
  background: #f6ce7d;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section-title::before {
    width: 18vw;
    height: 18vw;
  }
}