@charset "UTF-8";
/*** Var color ***/
:root {
  --black: #1A1A1A;
  --gray: #C3C3C3;
  --dgray: #808080;
  --white: 255, 255, 255;
  --blue: #809FA9;
  --beige: 225, 216, 209;
  --orange: #B88054;
}

/*** CSS reset ***/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

menu,
ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::-moz-selection {
  background: var(--orange);
}

::selection {
  background: var(--orange);
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

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

.fd-in {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fd-done {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*** Design Layout ***/
.header {
  padding: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0 2rem;
  }
}

.footer__container, .map iframe, .faq__container, .priceandbusinesshours__container, .facilitiesandamenities__container, .point__container, .saunaroom__container, .news__container, .about__container {
  max-width: 1150px;
  width: 100%;
  margin: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body,
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--black);
  font-feature-settings: "palt";
  margin: 0;
}

html {
  font-size: 62.5%;
  cursor: default;
}

body {
  font-size: 1.4rem;
  overflow-y: scroll;
  width: 100%;
  animation: fadeIn 2s ease 0s 1 forwards;
}
body.fixed {
  overflow: hidden;
}

section {
  position: relative;
  z-index: 0;
  transition: 0.3s;
}

.section__title {
  font-size: 48px;
  text-align: center;
}

@media screen and (max-width: 1120px) {
  .floating__reserved {
    display: flex;
    justify-content: center;
    margin: auto;
  }
}
.floating__reserved a {
  position: fixed;
  z-index: 994;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  transition: 0.3s;
  animation: fadeIn 2s ease 0s 1 forwards;
  animation-delay: 3s;
  opacity: 0;
  color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--white), 1);
  border-radius: 50vh;
}
.floating__reserved a:hover {
  opacity: 1;
  color: var(--black);
  border: 1px solid rgba(var(--white), 1);
  background: rgba(var(--white), 1);
}
@media (min-width: 1121px) {
  .floating__reserved a {
    top: 17%;
    right: 70px;
    mix-blend-mode: difference;
  }
}
@media screen and (max-width: 1120px) {
  .floating__reserved a {
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    overflow: hidden;
    width: 60%;
    height: auto;
    padding: 13px 30px 13px 30px;
    transition: 0.3s;
    transition-delay: 0.3s;
    text-align: center;
    letter-spacing: 0.3rem;
    color: rgba(var(--white), 1);
    border: none;
    border-radius: 50vh;
    background: var(--black);
  }
  .floating__reserved a:before {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 12px;
    content: "";
    transition: 0.6s;
    transition-timing-function: cubic-bezier(0.99, -0.01, 0.25, 1);
    transform: translateY(-50%);
    border-radius: 50vh;
    background: rgba(var(--white), 1);
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .floating__reserved a:before {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 1120px) {
  .floating__reserved a:after {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 25px;
    visibility: hidden;
    width: 12px;
    height: 12px;
    content: "";
    transition: 0.3s;
    transition-timing-function: ease;
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50vh;
    background: var(--black);
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  .floating__reserved a:after {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 1120px) {
  .floating__reserved a:hover {
    color: var(--black);
  }
  .floating__reserved a:hover:before {
    transform: translateY(-50%) scale(150);
  }
  .floating__reserved a:hover:after {
    visibility: visible;
    transition-delay: 0.3s;
    opacity: 1;
    background: var(--black);
  }
}
.floating__sns {
  position: fixed;
  z-index: 997;
  right: 81px;
  display: flex;
  flex-direction: column;
  height: 140px;
  justify-content: space-around;
  opacity: 0;
  transition: 0.3s;
  animation: fadeIn 2s ease 0s 1 forwards;
  animation-delay: 3s;
}
.floating__sns i {
  position: relative;
  font-size: 20px;
  margin-right: 0;
}
.floating__sns i::before {
  font-family: "Font Awesome 6 Brands"; /* 追記したコード */
  font-weight: 400; /* 追記したコード */
  color: #fff;
}
.floating__sns i::after {
  content: "";
  border-radius: 50%;
  background-color: #666;
  opacity: 0.8;
  width: 35px;
  height: 35px;
  display: block;
  position: absolute;
  z-index: -1;
  top: calc(50% - 17px);
  left: -8px;
}
@media (min-width: 1121px) {
  .floating__sns {
    bottom: 23%;
  }
}
@media (max-width: 1120px) {
  .floating__sns {
    right: 30px;
    bottom: 80px;
  }
}
.floating__totop a {
  position: fixed;
  z-index: 997;
  right: 70px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: 0.3s;
  animation: fadeIn 2s ease 0s 1 forwards;
  animation-delay: 3s;
  opacity: 0;
  color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--white), 1);
  border-radius: 50vh;
  mix-blend-mode: difference;
}
@media (min-width: 1121px) {
  .floating__totop a {
    bottom: 17%;
  }
}
@media (max-width: 1120px) {
  .floating__totop a {
    right: 20px;
  }
}
.floating__totop a:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  content: "";
  transform: rotate(45deg) translateX(-50%);
  border-top: 1px solid rgba(var(--white), 1);
  border-left: 1px solid rgba(var(--white), 1);
}
.floating__totop a:hover {
  opacity: 1;
  color: var(--black);
  border: 1px solid rgba(var(--white), 1);
  background: rgba(var(--white), 1);
}
.floating__totop a:hover:before {
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

/*** トグルボタン単体 ***/
.hamburger {
  animation: fadeIn 2s ease 0s 1 forwards;
  animation-delay: 3s;
  opacity: 0;
}
@media screen and (max-width: 1120px) {
  .hamburger {
    position: fixed;
    z-index: 999;
    top: 30px;
    right: 20px;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transform: translateY(-50%);
    text-align: center;
    mix-blend-mode: difference;
  }
  .hamburger span {
    /*アニメーションの設定*/
    position: absolute;
    left: 10%;
    display: inline-block;
    width: 30px;
    height: 2px;
    transition: all 0.4s;
    border-radius: 2px;
    background: rgba(var(--white), 1);
  }
  .hamburger span:nth-of-type(1) {
    top: 15px;
  }
  .hamburger span:nth-of-type(2) {
    top: 23px;
  }
  .hamburger.active span:nth-of-type(1) {
    top: 14px;
    left: 10%;
    transform: translateY(6px) rotate(-15deg);
  }
  .hamburger.active span:nth-of-type(2) {
    top: 26px;
    left: 10%;
    transform: translateY(-6px) rotate(15deg);
  }
}

/*** ヘッダー ***/
.header {
  position: fixed;
  z-index: 998;
  top: 0;
  display: flex;
  justify-content: center;
  width: 160px;
  transition: 0.3s;
  animation: fadeIn 2s ease 0s 1 forwards;
  animation-delay: 3s;
  opacity: 0;
}
@media screen and (min-width: 1121px) {
  .header {
    mix-blend-mode: difference;
  }
}
@media screen and (max-width: 1120px) {
  .header {
    width: 100%;
    height: 60px;
  }
}
.header__container {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  height: 100vh;
  height: 100svh;
  transition: 0.3s;
}
@media screen and (max-width: 1120px) {
  .header__container {
    height: 60px;
  }
}
@media screen and (max-width: 1120px) {
  .header .globalMenu {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    padding: 45px 45px 25px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    text-align: center;
    opacity: 0;
    color: rgba(var(--white), 1);
    background: var(--blue);
  }
}
.header .globalMenu__inner ul li {
  margin-bottom: 40px;
  list-style-type: none;
}
.header .globalMenu__inner ul li:last-child {
  margin-bottom: 0;
}
.header .globalMenu__inner ul li.sns {
  display: none;
}
@media screen and (max-width: 1120px) {
  .header .globalMenu__inner ul li {
    width: 100%;
    margin-bottom: 25px;
    padding: 0;
    transition: 0.3s all;
  }
  .header .globalMenu__inner ul li:last-child {
    margin-bottom: 0;
  }
  .header .globalMenu__inner ul li.sns {
    display: block;
    padding-left: 15px;
  }
  .header .globalMenu__inner ul li.sns i {
    position: relative;
    font-size: 20px;
    padding-left: 5px;
    margin-right: 20px;
  }
  .header .globalMenu__inner ul li.sns i::before {
    font-family: "Font Awesome 6 Brands"; /* 追記したコード */
    font-weight: 400; /* 追記したコード */
    color: #fff;
  }
  .header .globalMenu__inner ul li.sns i::after {
    content: "";
    border-radius: 50%;
    background-color: #000;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    z-index: -1;
    top: calc(50% - 17px);
    left: -3px;
  }
}
.header .globalMenu__inner ul li a {
  font-weight: 700;
  color: rgba(var(--white), 1);
}
@media screen and (min-width: 1121px) {
  .header .globalMenu__inner ul li a {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    word-break: keep-all;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    writing-mode: vertical-rl;
    font-feature-settings: normal;
  }
}
@media screen and (max-width: 1120px) {
  .header .globalMenu__inner ul li a {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
@media screen and (min-width: 1121px) {
  .header .globalMenu__inner ul li.reservebtn {
    display: none;
  }
}
.header .globalMenu__inner ul li.reservebtn .btn {
  font-size: 1.4rem;
  position: relative;
  z-index: 0;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  padding: 17px 30px 17px 30px;
  transition: 0.3s;
  letter-spacing: 0.2rem;
  color: rgba(var(--white), 1);
  border-radius: 50vh;
  background: var(--black);
}
.header .globalMenu__inner ul li.reservebtn .btn:before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.99, -0.01, 0.25, 1);
  transform: translateY(-50%);
  border-radius: 50vh;
  background: rgba(var(--white), 1);
}
@media (max-width: 1120px) {
  .header .globalMenu__inner ul li.reservebtn .btn:before {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.header .globalMenu__inner ul li.reservebtn .btn:after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  visibility: hidden;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.3s;
  transition-timing-function: ease;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50vh;
  background: var(--black);
}
@media (max-width: 1120px) {
  .header .globalMenu__inner ul li.reservebtn .btn:after {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.header .globalMenu__inner ul li.reservebtn .btn:hover {
  opacity: 1;
  color: var(--black);
}
.header .globalMenu__inner ul li.reservebtn .btn:hover:before {
  transform: translateY(-50%) scale(150);
}
.header .globalMenu__inner ul li.reservebtn .btn:hover:after {
  visibility: visible;
  transition-delay: 0.3s;
  opacity: 1;
  background: var(--black);
}
.header .globalMenu__inner ul li.reservebtn .anotaion {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 5px;
}
.header .globalMenu__inner ul li.titlelogo {
  margin-bottom: 40px;
}
@media screen and (min-width: 1121px) {
  .header .globalMenu__inner ul li.titlelogo {
    display: none;
  }
}
.header .globalMenu.active {
  visibility: visible;
  opacity: 1;
}
.header .globalMenu small {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  margin-top: 50px;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 1121px) {
  .header .globalMenu small {
    display: none;
  }
}

/*** キービジュアル ***/
.kv {
  position: fixed;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: var(--blue);
}
.kv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}
.kv__title.is-hide {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .kv__title img {
    width: 210px;
    height: auto;
  }
}
.kv__container {
  position: relative;
  z-index: -1;
  overflow: hidden;
  animation: fadeIn 2s ease 1s 1 forwards;
  opacity: 0;
}
.kv__container__bg {
  position: relative;
  width: 100%;
}
.kv__container__bg__inner {
  transition: ease-out all 1.5s;
  transform: translateY(100%);
}
.kv__container__bg__inner.is-init {
  transition: ease all 1.5s;
  transform: translateY(0%);
}
.kv__container__bg__inner video {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  transform: scale(0.5);
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.kv__container__bg__inner.is-init video {
  transition: ease all 1.5s 1.8s;
  transform: scale(1);
  border-radius: 0;
}

/*** ヒュッゲとは ***/
.about {
  position: relative;
  margin-top: calc(100vh + 200px);
  margin-top: calc(100svh + 200px);
  padding-bottom: 5vw;
}
@media screen and (max-width: 1400px) {
  .about {
    padding-bottom: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 0 15px;
    padding-bottom: 20vw;
  }
}
.about:before {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  content: "";
  background: rgba(var(--white), 1);
}
@media screen and (max-width: 768px) {
  .about:before {
    bottom: -30vw;
    height: 70%;
  }
}
.about__container {
  max-width: calc(100% - 370px);
  margin-top: -200px;
  padding: 145px;
  border-radius: 26px;
  background: rgba(var(--beige), 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 1921px) {
  .about__container {
    max-width: 1550px;
  }
}
@media screen and (max-width: 1700px) {
  .about__container {
    padding: 145px 60px 145px 60px;
  }
}
@media screen and (max-width: 1120px) {
  .about__container {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .about__container {
    max-width: 100%;
    padding: 80px 20px 20px;
    border-radius: 17px;
  }
}
.about__container__title {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .about__container__title {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .about__container__title img {
    width: 80%;
    height: 80%;
    margin-bottom: 10px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.about__container__title:before {
  position: absolute;
  top: -30px;
  left: -40px;
  width: 43px;
  height: 31px;
  content: "";
  background-image: url("../images/hygge_about_title_sub.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .about__container__title:before {
    top: -20px;
    left: 20px;
    width: 33px;
    height: 21px;
  }
}
.about__container__title span {
  font-size: 2.2rem;
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: 0.4rem;
  color: var(--black);
  font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
  .about__container__title span {
    font-size: 1.4rem;
  }
}
.about__container__read {
  font-size: 1.6rem;
  line-height: 5rem;
  padding-right: 100px;
  padding-left: 50px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1400px) {
  .about__container__read {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .about__container__read {
    font-size: 1.4rem;
    line-height: 3rem;
    padding-right: 0;
    padding-left: 0;
  }
}
.about__container__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .about__container__inner {
    flex-direction: column;
  }
}
.about__container__inner__col:nth-child(1) {
  width: 60%;
  padding-right: 20px;
  padding-left: 100px;
}
@media screen and (max-width: 1700px) {
  .about__container__inner__col:nth-child(1) {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1400px) {
  .about__container__inner__col:nth-child(1) {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
    padding-left: 0;
  }
}
.about__container__inner__col:nth-child(2) {
  overflow: hidden;
  width: 750px;
  margin-right: -250px;
  border-radius: 26px;
}
@media screen and (max-width: 1700px) {
  .about__container__inner__col:nth-child(2) {
    width: 520px;
    margin-right: -160px;
  }
}
@media screen and (max-width: 1400px) {
  .about__container__inner__col:nth-child(2) {
    width: 100%;
    margin-right: auto;
    margin-bottom: -20vw;
    border-radius: 17px;
  }
}
@media screen and (max-width: 1400px) {
  .about__container__inner__col:nth-child(2) img {
    width: 100%;
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .about__container__inner__col:nth-child(2) img {
    height: 60vw;
  }
}

/*** 共通 ***/
.wrapper {
  overflow: hidden;
}

.common {
  padding-top: 150px;
  padding-bottom: 150px;
  background: rgba(var(--white), 1);
}
@media screen and (max-width: 768px) {
  .common {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.common__title {
  margin-bottom: 50px;
}
@media screen and (max-width: 1120px) {
  .common__title {
    margin-bottom: 30px;
  }
}
.common__title span:nth-child(1) {
  font-size: 6.4rem;
  font-weight: 100;
  display: block;
  letter-spacing: 1.3rem;
}
@media screen and (max-width: 1120px) {
  .common__title span:nth-child(1) {
    font-size: 2.6rem;
    margin-bottom: 10px;
    letter-spacing: 0.3rem;
  }
}
.common__title span:nth-child(2) {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  letter-spacing: 0.8rem;
}
@media screen and (max-width: 1120px) {
  .common__title span:nth-child(2) {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
  }
}
.common__read {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1120px) {
  .common__read {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

/*** 新着情報 ***/
.news {
  background: var(--blue);
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 100px 0;
  }
}
.news__container {
  position: relative;
}
@media screen and (max-width: 1520px) {
  .news__container {
    max-width: calc(100% - 370px);
  }
}
@media screen and (max-width: 1120px) {
  .news__container {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .news__container {
    max-width: calc(100% - 30px);
  }
}
.news__container__title {
  color: rgba(var(--white), 1);
}
.news__container__inner {
  background: rgba(var(--white), 0.2);
  border-radius: 26px;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .news__container__inner {
    padding: 20px;
  }
}
.news__container__inner .news_cont:nth-last-of-type(n+2) {
  margin-bottom: 30px;
}
.news__container__inner .news_cont dl {
  color: rgba(var(--white), 1);
}
.news__container__inner .news_cont dl dt {
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: bold;
  text-align: justify;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .news__container__inner .news_cont dl dt {
    font-size: 1.2rem;
  }
}
.news__container__inner .news_cont dl dd {
  font-size: 1.4rem;
  line-height: 3rem;
  text-align: justify;
  letter-spacing: 0.3rem;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.news__container__inner .news_cont dl dd p {
  font-weight: 600;
  margin: 1em 0;
}
.news__container__inner .news_cont dl dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .news__container__inner .news_cont dl dd {
    font-size: 1.2rem;
  }
}
.news .indent {
  padding-left: 1em;
  text-indent: -1em;
}
.news .mb1em {
  margin-bottom: 1em;
}

/*** 全5室貸し切りサウナ ***/
.saunaroom__container {
  position: relative;
}
@media screen and (max-width: 1520px) {
  .saunaroom__container {
    max-width: calc(100% - 370px);
  }
}
@media screen and (max-width: 1120px) {
  .saunaroom__container {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .saunaroom__container {
    max-width: calc(100% - 30px);
  }
}
.saunaroom__container .slide-start {
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 824px;
  margin: 40px auto;
  transform: translateX(-50%);
}
@media screen and (max-width: 1120px) {
  .saunaroom__container .slide-start {
    max-width: 600px;
    max-height: 483px;
  }
}
@media screen and (max-width: 768px) {
  .saunaroom__container .slide-start {
    width: 250px;
    max-height: 483px;
  }
}
.saunaroom__container .slide-start .slide-load {
  position: absolute;
  color: rgba(var(--white), 1);
}
.saunaroom__container .slide-start .fade-slide {
  overflow: hidden;
  width: 824px;
  max-height: 550px;
  opacity: 0;
}
@media screen and (max-width: 1120px) {
  .saunaroom__container .slide-start .fade-slide {
    width: 600px;
    max-height: 483px;
  }
}
@media screen and (max-width: 768px) {
  .saunaroom__container .slide-start .fade-slide {
    width: 250px;
    max-height: 483px;
  }
}
.saunaroom__container .slide-start .fade-slide:nth-child(1) {
  z-index: 4;
  transform: rotate(2deg) scale(1.04);
}
.saunaroom__container .slide-start .fade-slide:nth-child(n+1) {
  position: absolute;
  top: 0;
  left: 0;
}
.saunaroom__container .slide-start .fade-slide:nth-child(2) {
  z-index: 3;
  transform: rotate(-3deg) scale(1.04);
}
.saunaroom__container .slide-start .fade-slide:nth-child(3) {
  z-index: 2;
  transform: rotate(3deg) scale(1.04);
}
.saunaroom__container .slide-start .fade-slide:nth-child(4) {
  z-index: 1;
  transform: rotate(-2deg) scale(1.04);
}
.saunaroom__container.is-fade .fade-slide {
  transition: ease all 1s;
  opacity: 1;
}
.saunaroom__container.is-fade .fade-slide:nth-child(1) {
  transition-delay: 1.3s;
  transform: rotate(2deg) scale(1);
}
.saunaroom__container.is-fade .fade-slide:nth-child(2) {
  transition-delay: 0.9s;
  transform: rotate(-3deg) scale(1);
}
.saunaroom__container.is-fade .fade-slide:nth-child(3) {
  transition-delay: 0.5s;
  transform: rotate(3deg) scale(1);
}
.saunaroom__container.is-fade .fade-slide:nth-child(4) {
  transform: rotate(-2.2deg) scale(1);
}
.saunaroom__container.is-shuffle .fade-slide {
  transition-delay: 0s !important;
  transform: rotate(0deg) !important;
  border-radius: 17px;
}
.saunaroom__container .splide {
  visibility: hidden;
  margin: 40px 0;
  transition: 0.3s;
  opacity: 0;
}
.saunaroom__container .splide.is-start {
  visibility: visible;
  transition-delay: 0.8s;
  opacity: 1;
}
.saunaroom__container .splide__track {
  overflow: visible;
  cursor: col-resize;
}
.saunaroom__container .splide__slide {
  overflow: hidden;
  max-height: 550px;
  border-radius: 17px;
}
.saunaroom__container .splide__slide:before {
  position: absolute;
  z-index: 9;
  right: 20px;
  bottom: 20px;
  width: 26px;
  height: 26px;
  content: "";
  transition: 0.3s;
  opacity: 0;
  background-image: url("../images/hygge_slide_plusicon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 1120px) {
  .saunaroom__container .splide__slide:before {
    right: 15px;
    bottom: 15px;
    width: 20px;
    height: 20px;
    opacity: 1;
  }
}
.saunaroom__container .splide__slide:hover:before {
  opacity: 1;
}
.saunaroom__container .splide__slide:hover img {
  transform: scale(1.03);
}
.saunaroom__container .splide__slide a:hover {
  opacity: 1;
}
.saunaroom__container .splide__slide img {
  transition: 0.3s;
  -o-object-fit: cover;
  object-fit: cover;
}
.saunaroom__container .splide__pagination {
  justify-content: flex-end;
  max-width: 824px;
  margin: auto;
  margin-top: 20px;
  counter-reset: pagination-num;
}
@media screen and (max-width: 1120px) {
  .saunaroom__container .splide__pagination {
    justify-content: center;
    max-width: 100%;
  }
}
.saunaroom__container .splide__pagination li {
  font-size: 1.8rem;
  margin-right: 20px;
}
.saunaroom__container .splide__pagination li:last-child {
  margin-right: 0;
}
.saunaroom__container .splide__pagination__page {
  position: relative;
  transition: 0.3s;
}
.saunaroom__container .splide__pagination__page:after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transition: 0.3s;
  background: rgba(var(--white), 1);
}
.saunaroom__container .splide__pagination__page:before {
  content: counter(pagination-num, decimal-leading-zero);
  counter-increment: pagination-num;
}
.saunaroom__container .splide__pagination__page.is-active {
  display: block;
  color: var(--dgray);
}
.saunaroom__container .splide__pagination__page.is-active:after {
  background: var(--dgray);
}
.saunaroom__container .splide__arrows {
  display: none;
}

/*** ポイント ***/
.point {
  position: relative;
  padding: 130px 15px;
  background-image: url("../images/hygge_point_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.point:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .point {
    padding: 100px 15px;
  }
}
.point__container {
  position: relative;
  max-width: 1350px;
}
.point__container__title {
  font-size: 3rem;
  font-weight: 400;
  display: block;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.3rem;
  color: rgba(var(--white), 1);
}
@media screen and (max-width: 768px) {
  .point__container__title {
    font-size: 1.8rem;
  }
}
.point__container__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.point__container__inner__col {
  width: 390px;
  height: 390px;
  margin: 30px;
  padding: 90px 70px;
  border: 1px solid rgba(var(--white), 1);
  border-radius: 50vh;
}
@media screen and (max-width: 768px) {
  .point__container__inner__col {
    width: 320px;
    height: 320px;
    margin: 10px 5px;
    padding: 70px 50px;
  }
}
.point__container__inner__col__inner h3,
.point__container__inner__col__inner p {
  color: rgba(var(--white), 1);
}
.point__container__inner__col__inner h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .point__container__inner__col__inner h3 {
    font-size: 1.6rem;
  }
}
.point__container__inner__col__inner p {
  font-size: 1.4rem;
  line-height: 3rem;
  text-align: justify;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .point__container__inner__col__inner p {
    font-size: 1.2rem;
  }
}

/*** 設備・アメニティ ***/
.facilitiesandamenities {
  background: var(--blue);
}
.facilitiesandamenities__container {
  position: relative;
}
@media screen and (max-width: 1520px) {
  .facilitiesandamenities__container {
    max-width: calc(100% - 370px);
  }
}
@media screen and (max-width: 1120px) {
  .facilitiesandamenities__container {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .facilitiesandamenities__container {
    max-width: calc(100% - 30px);
  }
}
.facilitiesandamenities__container__title {
  color: rgba(var(--white), 1);
}
.facilitiesandamenities__container .splide {
  margin: 40px 0;
}
.facilitiesandamenities__container .splide__track {
  overflow: visible;
  cursor: col-resize;
}
.facilitiesandamenities__container .splide__slide {
  max-width: 280px;
  transition: 0.3s;
  opacity: 0.4;
}
.facilitiesandamenities__container .splide__slide.is-visible {
  opacity: 1;
}
.facilitiesandamenities__container .splide__slide.is-visible .splide__slide__text {
  opacity: 1;
}
.facilitiesandamenities__container .splide__slide__img {
  overflow: hidden;
  max-width: 280px;
  max-height: 280px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50vh;
  background: var(--gray);
  aspect-ratio: 280/280;
}
@media screen and (max-width: 768px) {
  .facilitiesandamenities__container .splide__slide__img {
    margin-bottom: 10px;
  }
}
.facilitiesandamenities__container .splide__slide__text {
  width: 100%;
  max-width: 280px;
  margin: auto;
  transition: 0.3s;
  opacity: 0;
  color: rgba(var(--white), 1);
}
.facilitiesandamenities__container .splide__slide__text h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 50px;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .facilitiesandamenities__container .splide__slide__text h3 {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
}
.facilitiesandamenities__container .splide__slide__text h3 span {
  font-size: 1.4rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .facilitiesandamenities__container .splide__slide__text h3 span {
    font-size: 1.2rem;
  }
}
.facilitiesandamenities__container .splide__slide__text p {
  font-size: 1.4rem;
  line-height: 4rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .facilitiesandamenities__container .splide__slide__text p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.facilitiesandamenities__container .splide__slide img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  -o-object-fit: cover;
  object-fit: cover;
}
.facilitiesandamenities__container .splide__arrows {
  position: absolute;
  top: 140px;
  left: 50%;
  width: 100%;
  max-width: 130%;
  margin: auto;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1520px) {
  .facilitiesandamenities__container .splide__arrows {
    top: 11vw;
  }
}
@media screen and (max-width: 1120px) {
  .facilitiesandamenities__container .splide__arrows {
    max-width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .facilitiesandamenities__container .splide__arrows {
    top: 40vw;
    max-width: 90%;
  }
}
.facilitiesandamenities__container .splide__arrow--prev, .facilitiesandamenities__container .splide__arrow--next {
  position: absolute;
  top: 50%;
  cursor: pointer;
  transition: 0.3s;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .facilitiesandamenities__container .splide__arrow--prev, .facilitiesandamenities__container .splide__arrow--next {
    width: 26px;
    height: 26px;
  }
}
.facilitiesandamenities__container .splide__arrow--prev:hover, .facilitiesandamenities__container .splide__arrow--next:hover {
  opacity: 0.7;
}
.facilitiesandamenities__container .splide__arrow--prev {
  left: -165px;
}
@media screen and (max-width: 1120px) {
  .facilitiesandamenities__container .splide__arrow--prev {
    left: -45px;
  }
}
@media screen and (max-width: 768px) {
  .facilitiesandamenities__container .splide__arrow--prev {
    left: -15px;
  }
}
.facilitiesandamenities__container .splide__arrow--next {
  right: -165px;
}
@media screen and (max-width: 1120px) {
  .facilitiesandamenities__container .splide__arrow--next {
    right: -45px;
  }
}
@media screen and (max-width: 768px) {
  .facilitiesandamenities__container .splide__arrow--next {
    right: -15px;
  }
}
.facilitiesandamenities__container .splide__arrow img {
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 600px) {
  .facilitiesandamenities__container .splide__arrow img {
    width: 26px;
    height: 26px;
  }
}

/*** 設備・アメニティ ***/
.priceandbusinesshours {
  background: rgba(var(--white), 1);
}
.priceandbusinesshours__container {
  position: relative;
}
@media screen and (max-width: 1520px) {
  .priceandbusinesshours__container {
    max-width: calc(100% - 370px);
  }
}
@media screen and (max-width: 1120px) {
  .priceandbusinesshours__container {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container {
    max-width: calc(100% - 30px);
  }
}
.priceandbusinesshours__container__title {
  margin-bottom: 100px;
}
@media screen and (max-width: 1120px) {
  .priceandbusinesshours__container__title {
    margin-bottom: 50px;
  }
}
.priceandbusinesshours__container__inner__price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__price {
    flex-direction: column;
  }
}
.priceandbusinesshours__container__inner__price__col {
  width: calc(33.3333333333% - 3vw);
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid var(--dgray);
  border-bottom: 1px solid var(--dgray);
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__price__col {
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 10px;
  }
  .priceandbusinesshours__container__inner__price__col:last-child {
    margin-bottom: 0;
  }
}
.priceandbusinesshours__container__inner__price__col h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__price__col h3 {
    font-size: 2rem;
  }
}
.priceandbusinesshours__container__inner__price__col h3 span {
  font-size: 2rem;
}
.priceandbusinesshours__container__inner__price__col p {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.priceandbusinesshours__container__inner__price__col p span {
  font-size: 1.6rem;
  margin-left: 5px;
}
@media screen and (max-width: 1280px) {
  .priceandbusinesshours__container__inner__price__col p .tax {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__price__col p .tax {
    display: inline-block;
  }
}
.priceandbusinesshours__container__inner__anotation {
  margin-top: 50px;
  padding-left: 18px;
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__anotation {
    margin-top: 35px;
  }
}
.priceandbusinesshours__container__inner__anotation li {
  position: relative;
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
}
.priceandbusinesshours__container__inner__anotation li:before {
  font-size: 1.4rem;
  position: absolute;
  top: 9px;
  left: -15px;
  content: "・";
  transform: translateY(-50%);
}
.priceandbusinesshours__container__inner__anotation li.style_none:before {
  content: "";
}
.priceandbusinesshours__container__inner__hour {
  position: relative;
  margin-top: 100px;
  padding: 120px 90px;
  color: rgba(var(--white), 1);
  border-radius: 17px;
  background-image: url("../images/hygge_busineshour_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__hour {
    margin-top: 50px;
    padding: 90px 80px;
    text-align: center;
    background-position: center right;
  }
}
.priceandbusinesshours__container__inner__hour h4 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__hour h4 {
    font-size: 2.2rem;
  }
}
.priceandbusinesshours__container__inner__hour p {
  font-size: 2rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .priceandbusinesshours__container__inner__hour p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

/*** 予約はこちら ***/
.reserved {
  position: relative;
  padding: 120px 15px;
  text-align: center;
}
.reserved:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.reserved__container__title {
  font-size: 6.4rem;
  font-weight: 100;
  display: block;
  margin-bottom: 40px;
  letter-spacing: 1.3rem;
  color: rgba(var(--white), 1);
}
@media screen and (max-width: 1120px) {
  .reserved__container__title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    letter-spacing: 0.3rem;
  }
}
.reserved__container__reservedbtn {
  text-align: center;
}
.reserved__container__reservedbtn .btn {
  font-size: 2.6rem;
  position: relative;
  z-index: 0;
  display: inline-block;
  overflow: hidden;
  width: 500px;
  padding: 25px 30px;
  transition: 0.3s;
  transition-delay: 0.3s;
  letter-spacing: 0.3rem;
  color: rgba(var(--white), 1);
  border-radius: 50vh;
  background: var(--black);
}
@media screen and (max-width: 768px) {
  .reserved__container__reservedbtn .btn {
    font-size: 1.6rem;
    width: 100%;
    padding: 20px 30px;
  }
}
.reserved__container__reservedbtn .btn:before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.99, -0.01, 0.25, 1);
  transform: translateY(-50%);
  border-radius: 50vh;
  background: rgba(var(--white), 1);
}
@media (max-width: 1120px) {
  .reserved__container__reservedbtn .btn:before {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.reserved__container__reservedbtn .btn:after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  visibility: hidden;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.3s;
  transition-timing-function: ease;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50vh;
  background: var(--black);
}
@media (max-width: 1120px) {
  .reserved__container__reservedbtn .btn:after {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.reserved__container__reservedbtn .btn:hover {
  opacity: 1;
  color: var(--black);
}
.reserved__container__reservedbtn .btn:hover:before {
  transform: translateY(-50%) scale(150);
}
.reserved__container__reservedbtn .btn:hover:after {
  visibility: visible;
  transition-delay: 0.3s;
  opacity: 1;
  background: var(--black);
}
.reserved__container__reservedbtn .anotaion {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 10px;
  transition-delay: 0.2s;
  color: rgba(var(--white), 1);
}

/*** よくある質問 ***/
.faq {
  background: rgba(var(--white), 1);
}
.faq__container {
  position: relative;
}
@media screen and (max-width: 1520px) {
  .faq__container {
    max-width: calc(100% - 370px);
  }
}
@media screen and (max-width: 1120px) {
  .faq__container {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .faq__container {
    max-width: calc(100% - 30px);
  }
}
.faq__container__title {
  text-align: center;
}
.faq__container__title span:nth-child(1) {
  margin-bottom: 20px;
}
.faq__container__inner__list dl {
  position: relative;
  margin: 0 0 30px;
  padding: 28px 70px;
  cursor: pointer;
  border-radius: 42.5px;
  background: rgba(var(--beige), 1);
}
@media screen and (max-width: 768px) {
  .faq__container__inner__list dl {
    margin: 0 0 15px;
    padding: 28px 50px 28px 30px;
    border-radius: 38px;
  }
}
.faq__container__inner__list dl:last-child {
  margin-bottom: 0;
}
.faq__container__inner__list dl:before {
  position: absolute;
  top: 35px;
  right: 45px;
  display: block;
  width: 2px;
  height: 10px;
  margin: auto;
  content: "";
  transition: 0.3s;
  opacity: 1;
  background: var(--black);
}
@media screen and (max-width: 768px) {
  .faq__container__inner__list dl:before {
    right: 35px;
  }
}
.faq__container__inner__list dl:after {
  position: absolute;
  top: 39px;
  right: 41px;
  display: block;
  width: 10px;
  height: 2px;
  margin: auto;
  content: "";
  transition: 0.3s;
  opacity: 1;
  background: var(--black);
}
@media screen and (max-width: 768px) {
  .faq__container__inner__list dl:after {
    right: 31px;
  }
}
.faq__container__inner__list dl dt {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  margin: 0;
  padding: 0 0 0 50px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .faq__container__inner__list dl dt {
    font-size: 1.4rem;
    padding: 0 0 0 30px;
  }
}
.faq__container__inner__list dl dt:before {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: "Q.";
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .faq__container__inner__list dl dt:before {
    font-size: 1.8rem;
    top: 0;
  }
}
.faq__container__inner__list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 20px 0 0;
  padding: 0 0 0 50px;
}
@media screen and (max-width: 768px) {
  .faq__container__inner__list dl dd {
    padding: 0 0 0 30px;
  }
}
.faq__container__inner__list dl dd p {
  font-size: 1.4rem;
  line-height: 3rem;
  margin: 30px 0 0;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .faq__container__inner__list dl dd p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.faq__container__inner__list dl dd p:first-child {
  margin-top: 0;
}
.faq__container__inner__list .open:before {
  opacity: 0;
}
.faq__container__inner .more {
  font-size: 1.4rem;
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  width: 210px;
  margin: auto;
  padding: 13px 30px;
  cursor: pointer;
  transition: 0.3s;
  transition-delay: 0.3s;
  text-align: center;
  letter-spacing: 0.3rem;
  color: rgba(var(--white), 1);
  border: 1px solid var(--black);
  border-radius: 50vh;
  background: var(--black);
}
.faq__container__inner .more:before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.99, -0.01, 0.25, 1);
  transform: translateY(-50%);
  border-radius: 50vh;
  background: rgba(var(--white), 1);
}
@media (max-width: 1120px) {
  .faq__container__inner .more:before {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.faq__container__inner .more:after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  visibility: hidden;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.3s;
  transition-timing-function: ease;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50vh;
  background: var(--black);
}
@media (max-width: 1120px) {
  .faq__container__inner .more:after {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.faq__container__inner .more:hover {
  opacity: 1;
  color: var(--black);
}
.faq__container__inner .more:hover:before {
  transform: translateY(-50%) scale(150);
}
.faq__container__inner .more:hover:after {
  visibility: visible;
  transition-delay: 0.3s;
  opacity: 1;
  background: var(--black);
}

/*** 地図 ***/
.map {
  position: relative;
  z-index: 996;
  text-align: center;
  background: rgba(var(--white), 1);
}
.map iframe {
  overflow: hidden;
  max-width: calc(100% - 370px);
  margin-bottom: -160px;
  border-radius: 26px;
}
@media screen and (min-width: 1921px) {
  .map iframe {
    max-width: 1550px;
  }
}
@media screen and (max-width: 1120px) {
  .map iframe {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .map iframe {
    max-width: calc(100% - 30px);
    border-radius: 17px;
  }
}

/*** フッター ***/
.footer {
  position: relative;
  z-index: 995;
  padding: 230px 15px 50px;
  background: var(--black);
}
@media screen and (max-width: 1120px) {
  .footer {
    padding-bottom: 30px;
  }
}
.footer__container {
  max-width: calc(100% - 370px);
  padding: 0 5%;
}
@media screen and (min-width: 1921px) {
  .footer__container {
    max-width: 1550px;
  }
}
@media screen and (max-width: 1520px) {
  .footer__container {
    padding: 0;
  }
}
@media screen and (max-width: 1120px) {
  .footer__container {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .footer__container {
    max-width: calc(100% - 30px);
  }
}
.footer__container__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1120px) {
  .footer__container__inner {
    font-size: 1.4rem;
    flex-direction: column;
    justify-content: center;
    letter-spacing: 0.2rem;
  }
}
.footer__container__inner__col {
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .footer__container__inner__col {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  .footer__container__inner__col:nth-child(1) {
    width: auto;
  }
}
.footer__container__inner__col:nth-child(1) .logo {
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1520px) {
  .footer__container__inner__col:nth-child(1) .logo {
    width: 220px;
    height: auto;
  }
}
.footer__container__inner__col:nth-child(1) p {
  font-size: 1.4rem;
  line-height: 2.5rem;
  letter-spacing: 0.2rem;
  color: rgba(var(--white), 1);
}
@media screen and (max-width: 1120px) {
  .footer__container__inner__col:nth-child(1) {
    margin-bottom: 30px;
  }
}
.footer__container__inner__col:nth-child(2) {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 400px;
}
@media screen and (max-width: 1520px) {
  .footer__container__inner__col:nth-child(2) {
    flex-direction: column;
  }
}
@media screen and (max-width: 1120px) {
  .footer__container__inner__col:nth-child(2) {
    flex-direction: row;
  }
}
.footer__container__inner__col:nth-child(2) ul:nth-child(1) {
  margin-right: 60px;
}
@media screen and (max-width: 1520px) {
  .footer__container__inner__col:nth-child(2) ul:nth-child(1) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1120px) {
  .footer__container__inner__col:nth-child(2) ul:nth-child(1) {
    margin-right: 10px;
  }
}
.footer__container__inner__col:nth-child(2) ul li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
  color: rgba(var(--white), 1);
}
.footer__container__inner__col:nth-child(2) ul li:last-child {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer__container__inner__col:nth-child(2) ul li i {
  position: relative;
  font-size: 20px;
  padding-left: 5px;
  margin-right: 20px;
}
.footer__container__inner__col:nth-child(2) ul li i::before {
  font-family: "Font Awesome 6 Brands"; /* 追記したコード */
  font-weight: 400; /* 追記したコード */
  color: #000;
}
.footer__container__inner__col:nth-child(2) ul li i::after {
  content: "";
  border-radius: 50%;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  z-index: -1;
  top: calc(50% - 15px);
  left: 0;
}
@media screen and (max-width: 1120px) {
  .footer__container__inner__col:nth-child(2) {
    margin-bottom: 30px;
  }
}
.footer__container__inner__col:nth-child(3) .btn {
  font-size: 1.4rem;
  position: relative;
  z-index: 0;
  display: inline-block;
  overflow: hidden;
  width: 274px;
  padding: 17px 30px 17px 30px;
  transition: 0.3s;
  transition-delay: 0.3s;
  text-align: center;
  letter-spacing: 0.2rem;
  color: var(--black);
  border: 1px solid rgba(var(--white), 1);
  border-radius: 50vh;
  background: rgba(var(--white), 1);
}
@media screen and (max-width: 1520px) {
  .footer__container__inner__col:nth-child(3) .btn {
    width: 234px;
  }
}
@media screen and (max-width: 768px) {
  .footer__container__inner__col:nth-child(3) .btn {
    width: 100%;
  }
}
.footer__container__inner__col:nth-child(3) .btn:before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.99, -0.01, 0.25, 1);
  transform: translateY(-50%);
  border-radius: 50vh;
  background: var(--black);
}
@media (max-width: 1120px) {
  .footer__container__inner__col:nth-child(3) .btn:before {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.footer__container__inner__col:nth-child(3) .btn:after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 25px;
  visibility: hidden;
  width: 12px;
  height: 12px;
  content: "";
  transition: 0.3s;
  transition-timing-function: ease;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50vh;
  background: rgba(var(--white), 1);
}
@media (max-width: 1120px) {
  .footer__container__inner__col:nth-child(3) .btn:after {
    right: 15px;
    width: 10px;
    height: 10px;
  }
}
.footer__container__inner__col:nth-child(3) .btn:hover {
  opacity: 1;
  color: rgba(var(--white), 1);
}
.footer__container__inner__col:nth-child(3) .btn:hover:before {
  transform: translateY(-50%) scale(150);
}
.footer__container__inner__col:nth-child(3) .btn:hover:after {
  visibility: visible;
  transition-delay: 0.3s;
  opacity: 1;
  background: rgba(var(--white), 1);
}
.footer__container__inner__col:nth-child(3) .anotaion {
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.2rem;
  color: rgba(var(--white), 1);
}
.footer__container small {
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  margin-top: 50px;
  text-align: center;
  letter-spacing: 0.2rem;
  color: rgba(var(--white), 1);
}

.dummy__text {
  font-size: 3rem;
  font-weight: 200;
  display: block;
  text-align: center;
  letter-spacing: 0.4rem;
  color: rgba(var(--white), 1);
}
@media screen and (max-width: 1120px) {
  .dummy__text {
    font-size: 2rem;
  }
}
.priceandbusinesshours .dummy__text {
  color: var(--black);
}

/*** 表示制御 ***/
.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.tab-only {
  display: none;
}
@media screen and (max-width: 1120px) {
  .tab-only {
    display: block;
  }
}

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

.pswp img {
  border-radius: 17px;
}
.pswp__counter {
  display: none;
}/*# sourceMappingURL=style.css.map */