.max-w-950, .max-w-1000 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.max-w-950 {
  max-width: 950px;
}
.max-w-1000 {
  max-width: 1000px;
}

.color-pink {
  color: #EF4D6D;
}
.color-orange {
  color: #F28E1E;
}
.color-green {
  color: #639B02;
}
.color-blue {
  color: #1267A0;
}
.color-brown {
  color: #A17C52;
}

.c-table-column__item {
  display: flex;
  border: 1px solid #C4C4C4;
  background-color: #fff;
}
@media (max-width: 767px) {
  .c-table-column__item {
    flex-direction: column;
  }
}
.c-table-column__item + .c-table-column__item {
  border-top: 0;
}
.c-table-column__item > * {
  min-height: 56px;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
.c-table-column__item > *:nth-child(1) {
  padding: 10px 20px;
}
.c-table-column__item > *:nth-child(2) {
  padding: 10px 26px 10px 20px;
}
@media (max-width: 767px) {
  .c-table-column__item > * {
    padding: 12px 18px !important;
    letter-spacing: 0;
  }
}
.c-table-column__left {
  width: 195px;
  background: #EF4D6D;
  color: #fff;
  font-size: 1.8rem;
  border-right: 1px solid #C4C4C4;
}
@media (max-width: 767px) {
  .c-table-column__left {
    width: 100%;
    font-size: 1.5rem;
    border-right: 0;
  }
}
.c-table-column__right {
  flex: 1;
  font-weight: 400;
  line-height: 1.875;
}
@media (max-width: 767px) {
  .c-table-column__right {
    font-size: 1.3rem;
  }
}
.c-table-column--orange .c-table-column__left {
  background: #F28E1E;
}
.c-table-column--green .c-table-column__left {
  background: #6FB20F;
}

.c-tab__title {
  text-align: center;
  font-size: 3.3rem;
  font-family: "Kaisei Opti", sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-tab__title {
    font-size: 1.75rem;
  }
}
.c-tab__nav {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #EF4D6D;
  gap: 20px;
}
@media (max-width: 767px) {
  .c-tab__nav {
    border-width: 1px;
    gap: 10px;
  }
}
.c-tab__item {
  border-radius: 20px 20px 0 0;
  border: 2px solid #EF4D6D;
  border-bottom: 0;
  font-size: 3.3rem;
  font-family: "Kaisei Opti", sans-serif;
  letter-spacing: 0.1em;
  color: #EF4D6D;
  text-align: center;
  min-width: 236px;
  padding: 6px 10px;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .c-tab__item {
    min-width: 118px;
    font-size: 1.65rem;
    border-radius: 10px 10px 0 0;
    padding: 3px 10px;
    border-width: 1px;
  }
}
.c-tab__item.active, .c-tab__item:hover {
  background: #EF4D6D;
  color: #fff;
}
.c-tab__contents {
  padding-top: 45px;
}
@media (max-width: 767px) {
  .c-tab__contents {
    padding-top: 22px;
  }
}
.c-tab__content {
  display: none;
}
.c-tab__content.active {
  display: block;
}
.c-tab--orange .c-tab__nav {
  border-color: #F28E1E;
}
.c-tab--orange .c-tab__item {
  color: #F28E1E;
  border-color: #F28E1E;
}
.c-tab--orange .c-tab__item.active, .c-tab--orange .c-tab__item:hover {
  background: #F28E1E;
  color: #fff;
}

.c-box-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 44px;
}
@media (max-width: 767px) {
  .c-box-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}

.c-box {
  border-radius: 20px;
  background: #FFFAF3;
  padding: 60px 55px;
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .c-box {
    flex-direction: column;
    gap: 12px;
    padding: 13px 12.5px 25px;
  }
}
.c-box + .c-box {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .c-box + .c-box {
    margin-top: 20px;
  }
}
.c-box__image {
  width: 45.7575757576%;
}
@media (max-width: 767px) {
  .c-box__image {
    width: 100%;
  }
}
.c-box__image img {
  border-radius: 10px;
  aspect-ratio: 453/300;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .c-box__image img {
    aspect-ratio: 300/199;
    border-radius: 5px;
  }
}
.c-box__text {
  flex: 1;
}
.c-box__title {
  color: #EF4D6D;
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-box__title {
    text-align: center;
    font-size: 1.65rem;
  }
}
.c-box__desc {
  line-height: 1.875;
  margin-top: 20px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-box__desc {
    margin-top: 10px;
    line-height: 1.92;
  }
}
.c-box--layout2 {
  padding: 0;
  background: transparent;
  display: block;
  margin-top: 0 !important;
}
.c-box--layout2 .c-box__image {
  width: 100%;
}
.c-box--layout2 .c-box__text {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .c-box--layout2 .c-box__text {
    padding-top: 15px;
  }
}
.c-box--layout2 .c-box__title {
  text-align: center;
}
@media (max-width: 767px) {
  .c-box--layout2 .c-box__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .c-box--layout2 .c-box__desc {
    margin-top: 8px;
  }
}
.c-box--orange .c-box__title {
  color: #F28E1E;
}
.c-box--green .c-box__title {
  color: #639B02;
}
@media (max-width: 767px) {
  .c-box:not(.c-box--layout2) {
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
}

.c-title {
  font-size: 3.3rem;
  font-family: "Kaisei Opti", sans-serif;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
  border-bottom: 2px solid #EF4D6D;
  text-align: center;
  max-width: 1100px;
}
@media (max-width: 767px) {
  .c-title {
    font-size: 1.75rem;
    padding-bottom: 12px;
  }
}
.c-title--left {
  text-align: left;
}
.c-title--orange {
  border-color: #F28E1E;
}
.c-title--green {
  border-color: #87C13F;
}
.c-title--blue {
  border-color: #1267A0;
}
.c-title--brown {
  border-color: #A17C52;
}

.c-dot ul li {
  position: relative;
  padding-left: 22px;
  letter-spacing: 0.1em;
  line-height: inherit;
}
.c-dot ul li + li {
  margin-top: 22px;
}
.c-dot ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #EF4D6D;
  position: absolute;
  left: 0;
  top: 5px;
}

.c-button-booking {
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(90deg, rgb(233, 156, 0) 0%, rgb(255, 81, 142) 100%);
  box-shadow: 0 0 3px 0 rgba(87, 150, 193, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  min-height: 80px;
  padding: 22px 30px 22px 25px;
}
@media (max-width: 767px) {
  .c-button-booking {
    border-radius: 27px;
    min-height: 60px;
    padding: 10px 18px 10px 15px;
  }
}
.c-button-booking__text {
  font-size: 2.2rem;
  font-weight: 500;
  padding-left: 22px;
  padding-right: 28px;
}
@media (max-width: 767px) {
  .c-button-booking__text {
    font-size: 1.3rem;
    padding-left: 13px;
    padding-right: 16px;
  }
}
.c-button-booking__icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .c-button-booking__icon {
    gap: 5px;
  }
  .c-button-booking__icon img:nth-child(1) {
    width: 21px;
  }
  .c-button-booking__icon img:nth-child(2) {
    width: 24px;
  }
}
.c-button-booking__icon2 {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .c-button-booking__icon2 {
    width: 20px;
    height: 20px;
  }
  .c-button-booking__icon2 img {
    width: 11px;
  }
}
.c-button-booking img {
  display: block;
}

.c-back-top {
  position: fixed;
  right: 6px;
  bottom: 42px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgba(87, 150, 193, 0.45);
  display: none;
  z-index: 100;
}
.c-back-top.active {
  display: block;
}
@media (max-width: 767px) {
  .c-back-top {
    right: 3px;
    bottom: 23px;
  }
  .c-back-top img {
    width: 39px;
  }
}

.c-button-more {
  border-radius: 30px;
  box-shadow: 0 0 5px 0 rgba(87, 150, 193, 0.45);
  min-height: 61px;
  min-width: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  background: #EF4D6D;
  color: #fff;
  position: relative;
  padding: 12px 55px 12px 35px;
  transition: ease 0.2s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-button-more {
    min-width: 220px;
    min-height: 50px;
    font-size: 1.4rem;
  }
}
.c-button-more:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #EF4D6D;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-button-more:hover {
  opacity: 1 !important;
  color: #333333;
}
.c-button-more:hover::before {
  background: #fff;
  transform-origin: left top;
  transform: scale(1, 1);
}
.c-button-more__text {
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.c-button-more__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  z-index: 2;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .c-button-more__icon {
    right: 11px;
  }
  .c-button-more__icon img {
    width: 31px;
  }
}
.c-button-more--white {
  background: #fff;
  color: #333333;
}
.c-button-more--white:hover {
  color: #fff;
}
.c-button-more--white:hover::before {
  background: #EF4D6D;
}
.c-button-more.rotate .c-button-more__icon {
  transform: translateY(-50%) rotate(180deg);
}

.c-button-gradient {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-radius: 29px;
  background: linear-gradient(90deg, rgb(233, 156, 0) 0%, rgb(255, 81, 142) 100%);
  color: #fff;
  position: relative;
  padding: 5px 55px 5px 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .c-button-gradient {
    min-height: 33px;
    border-radius: 16px;
    padding: 5px 30px 5px 22px;
  }
}
.c-button-gradient__text {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-button-gradient__text {
    font-size: 1.3rem;
  }
}
.c-button-gradient__icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-button-gradient__icon {
    right: 7px;
  }
}
.c-button-gradient__icon img {
  width: 36px;
}
@media (max-width: 767px) {
  .c-button-gradient__icon img {
    width: 21px;
  }
}

.c-button-diagonal {
  min-width: 300px;
  min-height: 87px;
  display: flex;
  align-items: center;
  border-radius: 13px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #EF4D6D;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding-left: 135px;
  box-shadow: 0 0 4px 0 rgba(239, 77, 109, 0.45);
  color: #EF4D6D;
}
@media (max-width: 767px) {
  .c-button-diagonal {
    min-width: 150px;
    min-height: 43px;
    border-radius: 7px;
    padding-left: 63px;
  }
}
.c-button-diagonal:hover {
  opacity: 1 !important;
  background-color: rgba(255, 255, 255, 0.8);
}
.c-button-diagonal::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #EF4D6D;
  background-image: url(../images/common/icon-arrow-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 3px;
  display: block;
}
@media (max-width: 767px) {
  .c-button-diagonal::before {
    width: 9.5px;
    height: 9.5px;
    right: 12px;
    background-size: 4px 2px;
  }
}
.c-button-diagonal i {
  position: absolute;
  width: 30px;
  height: 26px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
@media (max-width: 767px) {
  .c-button-diagonal i {
    width: 15px;
    height: 13px;
  }
}
.c-button-diagonal span {
  font-size: 2.7rem;
  font-family: "Kaisei Opti", sans-serif;
}
@media (max-width: 767px) {
  .c-button-diagonal span {
    font-size: 1.35rem;
  }
}
.c-button-diagonal span.lg {
  font-size: 5rem;
  position: absolute;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 767px) {
  .c-button-diagonal span.lg {
    font-size: 2.5rem;
    left: -3px;
  }
}
.c-button-diagonal.orange {
  color: #E86025;
  border-color: #E86025;
  box-shadow: 0 0 4px 0 rgba(232, 96, 37, 0.45);
}
.c-button-diagonal.orange::before {
  background-color: #E86025;
}
.c-button-diagonal.orange svg polyline {
  stroke: #E86025;
}
.c-button-diagonal.blue {
  color: #2A82C4;
  border-color: #2A82C4;
  box-shadow: 0 0 4px 0 rgba(42, 130, 196, 0.45);
}
.c-button-diagonal.blue::before {
  background-color: #2A82C4;
}
.c-button-diagonal.blue svg polyline {
  stroke: #2A82C4;
}
.c-button-diagonal.green {
  color: #629640;
  border-color: #629640;
  box-shadow: 0 0 4px 0 rgba(98, 150, 64, 0.45);
}
.c-button-diagonal.green::before {
  background-color: #629640;
}
.c-button-diagonal.green svg polyline {
  stroke: #629640;
}
.c-button-diagonal.purple {
  color: #8942BC;
  border-color: #8942BC;
  box-shadow: 0 0 4px 0 rgba(137, 66, 188, 0.45);
}
.c-button-diagonal.purple::before {
  background-color: #8942BC;
}
.c-button-diagonal.purple svg polyline {
  stroke: #8942BC;
}
.c-button-diagonal.rotate i {
  transform: translateX(-50%) rotateY(180deg);
}

.c-page-banner {
  position: relative;
}
.c-page-banner__title {
  font-size: 3.5rem;
  line-height: 1.52;
}
@media (max-width: 767px) {
  .c-page-banner__title {
    font-size: 1.75rem;
  }
}
.c-page-banner__title span {
  font-size: 7.5rem;
}
@media (max-width: 767px) {
  .c-page-banner__title span {
    font-size: 3.75rem;
  }
}
.c-page-banner__desc {
  margin-top: 25px;
  font-size: 2rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .c-page-banner__desc {
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.c-page-banner__text {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translatex(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  font-family: "Kaisei Opti", sans-serif;
  width: 100%;
}
@media (max-width: 767px) {
  .c-page-banner__text {
    top: 10px;
  }
}
.c-page-banner__img {
  width: 100%;
  height: 506px;
  display: block;
}
@media (max-width: 767px) {
  .c-page-banner__img {
    height: 235px;
  }
}
.c-page-banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-anchor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-end;
  gap: 24px 44px;
}
@media (max-width: 767px) {
  .c-anchor {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 25px;
  }
}
.c-anchor__item {
  position: relative;
  color: #333;
  font-weight: 500;
  border-bottom: 2px solid #EF4D6D;
  padding: 18px 50px 18px 8px;
}
@media (max-width: 767px) {
  .c-anchor__item {
    font-size: 1.15rem;
    padding: 9px 30px 9px 5px;
    border-width: 1px;
  }
  .c-anchor__item span {
    line-height: 1.3;
  }
}
.c-anchor__item::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  background-image: url(../images/icons/icon-arrow-circle-down-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
@media (max-width: 767px) {
  .c-anchor__item::before {
    bottom: 5px;
    right: 6px;
    width: 22.5px;
    height: 22.5px;
  }
}

.c-table table {
  width: 100%;
  border: 1px solid #C4C4C4;
  border-collapse: collapse;
  border-spacing: 0;
}
.c-table table td {
  border: 1px solid #C4C4C4;
  padding: 10px 20px;
  height: 70px;
}
@media (max-width: 767px) {
  .c-table table td {
    line-height: 1.15;
    padding: 10px 11px 10px 8px;
    height: auto;
  }
}
.c-table table td:nth-child(2) {
  width: 167px;
  text-align: right;
}
@media (max-width: 767px) {
  .c-table table td:nth-child(2) {
    width: 92px;
    padding-right: 13px;
  }
}
.c-table table td li {
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-table table td li {
    padding-left: 20px;
  }
  .c-table table td li::before {
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.c-heading {
  text-align: center;
}
.c-heading__main {
  color: #EF4D6D;
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.125;
  font-family: "Reem Kufi Fun", sans-serif;
}
@media (max-width: 767px) {
  .c-heading__main {
    font-size: 3rem;
  }
}
.c-heading__sub {
  color: #000;
  font-size: 3rem;
  font-family: "Kaisei Opti", sans-serif;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .c-heading__sub {
    font-size: 2rem;
    margin-top: 5px;
  }
}

.spinner {
  width: 28px;
  height: 28px;
  display: block;
  border: 3px rgba(0, 0, 0, 0.25) solid;
  border-top: 3px #EF4D6D solid;
  border-radius: 50%;
  animation: spCircRot 0.6s infinite linear;
}

@keyframes spCircRot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.spa-slider {
  position: absolute;
  top: -66px;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .spa-slider {
    top: -44px;
  }
}
.spa-slider .slick-slider .slick-list {
  margin: 0 -3px;
  overflow: visible;
  left: -32px;
}
@media (max-width: 767px) {
  .spa-slider .slick-slider .slick-list {
    left: -12px;
    margin: 0 -1.5px;
  }
}
.spa-slider .slick-slider .slick-slide {
  margin: 0 3px;
}
@media (max-width: 767px) {
  .spa-slider .slick-slider .slick-slide {
    margin: 0 1.5px;
  }
}
.spa-slider__item {
  width: 339px;
}
@media (max-width: 767px) {
  .spa-slider__item {
    width: 169.5px;
  }
}
.spa-slider__item img {
  border-radius: 20px;
  aspect-ratio: 339/270;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .spa-slider__item img {
    border-radius: 10px;
    aspect-ratio: 169.5/135;
  }
}

.spa-map {
  padding-top: 250px;
  padding-bottom: 52px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .spa-map {
    padding-top: 135px;
    padding-bottom: 40px;
  }
}
.spa-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(247, 183, 183) 0%, rgb(253, 211, 0) 100%);
  z-index: -1;
  opacity: 0.29;
}
.spa-map__title {
  font-size: 3.3rem;
  font-family: "Kaisei Opti", serif;
  border-bottom: 2px solid #EF4D6D;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .spa-map__title {
    font-size: 1.75rem;
    padding-bottom: 10px;
  }
}
.spa-map__desc {
  margin-top: 20px;
  font-size: 2.8rem;
  font-family: "Kaisei Opti", serif;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .spa-map__desc {
    font-size: 1.4rem;
    margin-top: 18px;
  }
}
.spa-map__box {
  position: relative;
}
.spa-map__box-img {
  text-align: center;
  margin-top: 20px;
  position: relative;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
}
@media (max-width: 767px) {
  .spa-map__box-img {
    margin-left: -23px;
    margin-right: -23px;
    width: calc(100% + 46px);
    margin-top: 10px;
  }
}
.spa-map__flower {
  position: absolute;
  top: 10px;
  right: calc(100% - 130px);
  z-index: -2;
}
@media (max-width: 767px) {
  .spa-map__flower {
    top: -20px;
    width: 148px;
    right: calc(100% - 87.5px);
  }
}
.spa-map__flower2 {
  position: absolute;
  top: -75px;
  left: calc(100% - 145px);
  z-index: -2;
}
@media (max-width: 767px) {
  .spa-map__flower2 {
    top: -50px;
    width: 183px;
    left: calc(100% - 100px);
  }
}
.spa-map__hh {
  position: absolute;
  top: 70px;
  right: calc(100% - 46px);
  z-index: -1;
  width: 332px;
}
@media (max-width: 767px) {
  .spa-map__hh {
    top: 0;
    right: calc(100% - 50px);
    width: 74px;
  }
}
.spa-map__hh2 {
  position: absolute;
  top: calc(100% - 55px);
  left: calc(100% - 135px);
  z-index: -1;
}
@media (max-width: 767px) {
  .spa-map__hh2 {
    top: calc(100% + 15px);
    left: calc(100% - 77px);
    width: 86px;
  }
}
.spa-map__cloud {
  position: absolute;
  top: calc(100% - 75px);
  right: calc(100% - 210px);
  width: -moz-max-content;
  width: max-content;
  z-index: -1;
}
@media (max-width: 767px) {
  .spa-map__cloud {
    width: 113px;
    right: calc(100% - 85px);
    top: calc(100% + 8px);
  }
}
.spa-map__cloud.cloud-2 {
  top: 135px;
  right: auto;
  left: calc(100% - 55px);
}
@media (max-width: 767px) {
  .spa-map__cloud.cloud-2 {
    top: 10px;
  }
}
.spa-map__cloud.cloud-2 .spa-map__cloud-hh {
  left: 8px;
  bottom: calc(100% - 55px);
  z-index: 1;
}
@media (max-width: 767px) {
  .spa-map__cloud.cloud-2 .spa-map__cloud-hh {
    left: 2px;
    bottom: calc(100% - 12px);
  }
}
.spa-map__cloud-hh {
  position: absolute;
  left: 45px;
  bottom: calc(100% - 15px);
  z-index: -1;
  width: 294px;
}
@media (max-width: 767px) {
  .spa-map__cloud-hh {
    width: 66px;
    left: 10px;
    bottom: calc(100% - 4px);
  }
}

.spa-list {
  position: relative;
}
.spa-list::before, .spa-list::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.spa-list::before {
  top: -90px;
  left: -120px;
  background-image: url("../images/common/img-flower.png");
  width: 296px;
  height: 218px;
}
@media (max-width: 767px) {
  .spa-list::before {
    top: -50px;
    left: -60px;
    width: 148px;
    height: 109px;
  }
}
.spa-list::after {
  top: -144px;
  right: -175px;
  background-image: url("../images/common/img-flower-2.png");
  width: 366px;
  height: 366px;
}
@media (max-width: 767px) {
  .spa-list::after {
    top: -78px;
    right: -84px;
    width: 183px;
    height: 183px;
  }
}

.spa-item + .spa-item {
  margin-top: 94px;
}
@media (max-width: 767px) {
  .spa-item + .spa-item {
    margin-top: 45px;
  }
}
.spa-item:nth-child(2) .spa-item__title {
  border-color: #f28e1e;
}
.spa-item:nth-child(2) .spa-item__title-sub {
  color: #f28e1e;
}
.spa-item:nth-child(3) .spa-item__title {
  border-color: #87c13f;
}
.spa-item:nth-child(3) .spa-item__title-sub {
  color: #87c13f;
}
.spa-item__img {
  position: relative;
}
@media (max-width: 767px) {
  .spa-item__img {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.spa-item__img::before, .spa-item__img::after {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}
.spa-item__img::before {
  top: -4px;
  left: 10px;
  width: 130px;
  height: 120px;
  background-image: url(../images/spa/hoa-1.svg);
}
@media (max-width: 767px) {
  .spa-item__img::before {
    width: 43px;
    height: 39px;
    top: 2px;
    left: 0;
  }
}
.spa-item__img::after {
  bottom: 10px;
  right: -10px;
  width: 181px;
  height: 186px;
  background-image: url(../images/spa/hoa-2.svg);
}
@media (max-width: 767px) {
  .spa-item__img::after {
    width: 59px;
    height: 61px;
    bottom: 2px;
    right: 0;
  }
}
.spa-item__img img {
  border-radius: 200px;
  aspect-ratio: 1090/545;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .spa-item__img img {
    aspect-ratio: 360/180;
    border-radius: 66px;
  }
}
.spa-item__text {
  background: #FFFAF3;
  border-radius: 20px;
  margin-top: -112px;
  padding-top: 135px;
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .spa-item__text {
    padding-top: 55px;
    padding-bottom: 35px;
    border-radius: 10px;
    margin-top: -40px;
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
  .spa-item__text .container {
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
}
.spa-item__title {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  font-family: "Kaisei Opti", sans-serif;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #EF4D6D;
}
@media (max-width: 767px) {
  .spa-item__title {
    font-size: 2rem;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
.spa-item__title-sub {
  font-size: 3.2rem;
  font-family: "Reem Kufi Fun", sans-serif;
  color: #EF4D6D;
  position: absolute;
  left: 0;
  top: 5px;
}
@media (max-width: 767px) {
  .spa-item__title-sub {
    font-size: 1.6rem;
    position: static;
  }
}
.spa-item__content {
  padding-top: 18px;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .spa-item__content {
    flex-direction: column;
    padding-top: 15px;
  }
}
.spa-item__desc {
  letter-spacing: 0.1em;
  line-height: 1.8;
  width: 61.5555555556%;
}
@media (max-width: 767px) {
  .spa-item__desc {
    font-size: 1.3rem;
    line-height: 1.9;
    width: 100%;
  }
}
.spa-item__link {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 12px;
}
@media (max-width: 767px) {
  .spa-item__link {
    line-height: 1.9;
    width: 100%;
    flex: auto;
    padding-top: 22px;
    justify-content: center;
  }
}
.spa-item .img-flower {
  position: absolute;
  top: -80px;
  left: -95px;
  z-index: -1;
}
@media (max-width: 767px) {
  .spa-item .img-flower {
    width: 95px;
    top: -50px;
    left: -73px;
  }
}
.spa-item .img-flower2 {
  position: absolute;
  top: 85px;
  left: calc(100% + 5px);
  z-index: -1;
}
@media (max-width: 767px) {
  .spa-item .img-flower2 {
    width: 44px;
    top: 74px;
    left: calc(100% - 2px);
  }
}

.spa-others {
  padding-top: 70px;
  padding-bottom: 165px;
  position: relative;
  background-color: #F9F6F2;
}
@media (max-width: 767px) {
  .spa-others {
    padding-top: 35px;
    padding-bottom: 80px;
  }
}
.spa-others::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background-image: url("../images/spa/bg-01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .spa-others::before {
    height: 203px;
    background-image: url("../images/spa/bg-01-sp.png");
  }
}
.spa-others__item {
  border-radius: 20px;
  padding: 40px 74px 32px 52px;
  background-color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .spa-others__item {
    border-radius: 10px;
    padding: 19px 12.5px 30px;
    margin-bottom: 15px;
    margin-left: -12.5px;
    margin-right: -12.5px;
  }
}
.spa-others__item:last-child {
  margin-bottom: 0;
}
.spa-others__item-title {
  color: #EF4D6D;
  text-align: center;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .spa-others__item-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.spa-others .box-border-image {
  border: 0;
  border-radius: 0;
  padding: 0;
  gap: 60px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .spa-others .box-border-image {
    flex-direction: column;
    gap: 17px;
  }
}
.spa-others .border-img-left {
  width: 474px;
}
@media (max-width: 767px) {
  .spa-others .border-img-left {
    width: 237px;
    margin-left: auto;
    margin-right: auto;
  }
}
.spa-others .border-img-left img {
  aspect-ratio: 474/334;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .spa-others .border-img-left img {
    aspect-ratio: 237/167;
    border-radius: 50px;
  }
}
.spa-others .border-img-left.after-img::after {
  top: -10px;
  left: -5px;
  width: 84px;
  height: 78px;
  background-image: url(../images/spa/hoa-1-1.svg);
}
@media (max-width: 767px) {
  .spa-others .border-img-left.after-img::after {
    top: -5px;
    left: -3px;
    width: 42px;
    height: 39px;
  }
}
.spa-others .border-img-left.after-img::before {
  bottom: -10px;
  right: -12px;
  width: 118px;
  height: 122px;
  background-image: url(../images/spa/hoa-2-1.svg);
}
@media (max-width: 767px) {
  .spa-others .border-img-left.after-img::before {
    bottom: -5px;
    right: -6px;
    width: 59px;
    height: 61px;
  }
}
.spa-others .border-img-right {
  padding: 45px 0 0;
}
@media (max-width: 767px) {
  .spa-others .border-img-right {
    padding-top: 0;
  }
}
.spa-others .border-img-right p {
  letter-spacing: 0.1em;
  line-height: 1.875;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .spa-others .border-img-right p {
    padding-top: 15px;
    line-height: 1.9;
  }
}
@media (max-width: 767px) {
  .spa-others .border-img-right .c-heading {
    text-align: center;
  }
}
.spa-others .box-btn-img {
  padding-top: 25px;
}
@media (max-width: 767px) {
  .spa-others .box-btn-img {
    padding-top: 18px;
  }
}
.spa-others .box-btn-img a.btn.btn-main {
  margin-left: 0;
}
@media (max-width: 767px) {
  .spa-others .box-btn-img a.btn.btn-main {
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 50px;
  }
}

.page-yukoka .spa-map {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .page-yukoka .spa-map {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.page-yukoka .spa-map__box-img {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .page-yukoka .spa-map__box-img {
    margin-top: 15px;
  }
}
.page-yukoka .spa-map__flower2 {
  top: -28px;
}
@media (max-width: 767px) {
  .page-yukoka .spa-map__flower2 {
    top: -30px;
  }
}
.page-yukoka .spa-map__flower {
  top: 70px;
}
@media (max-width: 767px) {
  .page-yukoka .spa-map__flower {
    top: -30px;
  }
}
@media (min-width: 768px) {
  .page-yukoka .spa-item__img img {
    aspect-ratio: 1200/600;
  }
}
.page-yukoka .spa-item__text {
  background: transparent;
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .page-yukoka .spa-item__text {
    padding-top: 15px;
  }
}
.page-yukoka .spa-item__desc {
  width: 100%;
  text-align: center;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .page-yukoka .spa-item__desc {
    padding-top: 15px;
  }
}

.yukoka-01 {
  position: relative;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .yukoka-01 {
    padding-top: 10px;
  }
}
.yukoka-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 575px;
  background: #FFF0F4;
}
@media (max-width: 767px) {
  .yukoka-01::before {
    height: 160px;
  }
}

.yukoka-banner {
  position: relative;
  height: 424px;
  margin-top: 30px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  .yukoka-banner {
    margin-top: 20px;
    height: 212px;
  }
}
.yukoka-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .yukoka-banner img {
    height: 212px;
    width: 100%;
    left: 0;
  }
}

.yukoka-tab {
  position: relative;
}
.yukoka-tab .img-flower {
  position: absolute;
  top: 18px;
  right: calc(100% - 130px);
  z-index: -1;
}
@media (max-width: 767px) {
  .yukoka-tab .img-flower {
    width: 137px;
    top: -27px;
    right: calc(100% - 48px);
  }
}
.yukoka-tab .img-flower2 {
  position: absolute;
  top: -100px;
  left: calc(100% - 145px);
  z-index: -1;
}
@media (max-width: 767px) {
  .yukoka-tab .img-flower2 {
    width: 188px;
    top: -57px;
    left: calc(100% - 50px);
  }
}

.page-yunone .yukoka-01::before {
  background: #FFF2D9;
}

.page-yuraku .yukoka-01::before {
  background: #EFF2E7;
}
.page-yuraku .yuraku-btn-border {
  min-height: 76px;
  border-radius: 20px;
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  color: #639B02;
  border: 1px solid #87C13F;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
@media (max-width: 767px) {
  .page-yuraku .yuraku-btn-border {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    min-height: 45px;
    border-radius: 5px;
  }
}

.footer {
  padding-top: 70px;
  padding-bottom: 38px;
  background-image: url(../images/bg-footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 45px;
    padding-bottom: 54px;
  }
}
.footer__container {
  max-width: 1246px !important;
}
@media (max-width: 767px) {
  .footer__logo {
    text-align: center;
  }
  .footer__logo img {
    max-width: 217px;
  }
}
.footer__box {
  background-color: #fff;
  border-radius: 100px;
  padding-top: 45px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .footer__box {
    border-radius: 45px;
    padding-top: 25px;
    padding-bottom: 33px;
  }
}
.footer__box-wrap {
  display: flex;
  max-width: 1076px !important;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .footer__box-wrap {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.footer__box-left {
  width: 36.9888475836%;
  border-right: 1px solid #EF4D6D;
  padding-top: 22px;
  padding-bottom: 24px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .footer__box-left {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    border-right: 0;
  }
}
.footer__box-right {
  flex: 1;
  padding-left: 80px;
  padding-bottom: 24px;
  padding-top: 35px;
}
@media (max-width: 767px) {
  .footer__box-right {
    display: none;
  }
}
.footer__infor {
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-align: center;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .footer__infor {
    margin-top: 18px;
    line-height: 1.52;
  }
}
.footer__infor-tel {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer__infor-tel {
    margin-top: 18px;
  }
}
.footer__infor-time {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .footer__infor-time {
    margin-top: 20px;
  }
}
.footer__button {
  position: absolute;
  top: 10px;
  right: 0;
}
@media (max-width: 767px) {
  .footer__button {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
  }
}
.footer__link {
  color: #0071B7;
  text-decoration: underline;
}
.footer__tel {
  color: #EF4D6D;
  font-size: 2.1rem;
  line-height: 1.33;
}
@media (max-width: 767px) {
  .footer__tel {
    font-size: 1.3rem;
  }
}
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .footer__social {
    margin-top: 39px;
    gap: 24px;
  }
}
.footer__social a {
  display: block;
}
.footer__social a img {
  width: 40px;
  height: 40px;
  display: block;
}
@media (max-width: 767px) {
  .footer__social a img {
    width: 30px;
    height: 30px;
  }
}
.footer__menu {
  display: grid;
  align-items: flex-end;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.footer__menu a {
  color: #333333;
  position: relative;
}
.footer__menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #EF4D6D;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.footer__menu a:hover {
  color: #EF4D6D;
}
.footer__menu a:hover::after {
  transform: scale(1, 1);
}
.footer__copyright {
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: #A06918;
  margin-top: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 30px;
    font-size: 1rem;
  }
}/*# sourceMappingURL=site.css.map */