@charset "UTF-8";
/*----------------- 共通 -------------------*/
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:wdth,wght@75,700&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

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

html,
body {
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  width: 1080px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #202020;
  overflow: auto;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
li {
  list-style: none;
}

dt, dd {
  margin: 0;
}

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

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.en {
  font-family: "Bodoni Moda", serif;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background: transparent;
  gap: 2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 7.7vw, 110px);
  padding-top: 10px;
  padding-left: clamp(2rem, 2.8vw, 4rem);
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    height: 80px;
  }
}
.header__logo {
  display: block;
  width: clamp(60px, 5vw, 70px);
}
.header__nav {
  background: rgba(255, 255, 255, 0.8);
  padding-right: clamp(2rem, 2.8vw, 4rem);
  padding-left: clamp(3rem, 4.2vw, 6rem);
  border-radius: 60px 0 0 60px;
  height: clamp(70px, 7vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav .header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__nav .header-nav li:not(:first-child) {
  margin-left: clamp(5px, 0.7vw, 10px);
}
.header__nav .header-nav a {
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  padding-left: clamp(5px, 0.7vw, 10px);
  padding-right: clamp(5px, 0.7vw, 10px);
}
/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1.7rem;
  right: 2.1rem;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  display: none;
}
@media (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active span:nth-child(1) {
  background: #fff;
  transform: rotate(-45deg) translateX(-50%);
}
.drawer__icon.is-active span:nth-child(2) {
  display: none;
}
.drawer__icon.is-active span:nth-child(3) {
  background: #fff;
  transform: rotate(45deg) translateX(-50%);
}

.drawer__bars {
  width: 3rem;
  height: 3rem;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 0.2rem;
  background: #202020;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 0;
}
.drawer__bars span:nth-child(2) {
  top: 10px;
}
.drawer__bars span:nth-child(3) {
  top: 20px;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #E6CDBA;
  box-shadow: 0 0 3 rgba(0, 0, 0, 0.16);
  z-index: 99;
  display: none;
}
.drawer__content--inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 100px 2rem 0;
  gap: 40px;
}

.drawer-nav li a {
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 10px 0;
}

/*-----------------------------------------
    section
-----------------------------------------*/
.section__head {
  text-align: center;
}
.section__title {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .section__title {
    font-size: clamp(10px, 2.8vw, 12px);
  }
}
.section__lead {
  font-size: clamp(36px, 5vw, 60px);
  font-family: "Bodoni Moda", serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .section__lead {
    font-size: clamp(30px, 6vw, 36px);
  }
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #E6CDBA;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer__content .copy {
  margin-top: 40px;
  text-align: center;
  letter-spacing: 0.1rem;
  font-size: clamp(10px, 1vw, 12px);
}
@media (max-width: 767px) {
  .footer__content .copy {
    margin-top: 30px;
  }
}
.footer__nav .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer__nav .footer-nav {
    flex-wrap: wrap;
  }
}
.footer__nav .footer-nav a {
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .footer__nav .footer-nav a {
    font-size: clamp(12px, 3vw, 14px);
  }
}
.footer__nav .footer-nav a:hover {
  opacity: 0.6;
}

/*----------------- topページ -------------------*/
/*-----------------------------------------
    mv
-----------------------------------------*/
.mv {
  position: relative;
  width: 100%;
}
.mv .mv-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 3vw;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .mv .mv-content {
    top: 28%;
    left: 5vw;
  }
}
.mv .mv-content .mv-text {
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  font-size: clamp(25px, 3.2vw, 45px);
}

.mv-slider {
  width: 100%;
}
.mv-slider .swiper-slide .img img {
  vertical-align: bottom;
  line-height: 1em;
}
.mv-slider .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  left: 50%;
  transform: translateX(-50%);
  -webkit-tap-highlight-color: transparent;
}
.mv-slider .swiper-pagination-bullet-active {
  background: #E6CDBA;
  border: 1px solid #E6CDBA;
}
.mv-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.mv-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}

/*-----------------------------------------
    about
-----------------------------------------*/
.topPrice-about {
  background: #E6CDBA;
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .topPrice-about {
    padding-bottom: 60px;
  }
}
.topPrice-about::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6vw;
  width: clamp(400px, 60vw, 800px);
  height: clamp(525px, 80vw, 1085px);
  background: url(../img/coral.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .topPrice-about::after {
    width: clamp(238px, 52vw, 400px);
    height: clamp(350px, 69vw, 524px);
  }
}

/*-----------------------------------------
    topPrice
-----------------------------------------*/
.topPrice {
  position: relative;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  z-index: 2;
}
.topPrice__content {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .topPrice__content {
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
.topPrice__button {
  margin-top: 15px;
  text-align: center;
  width: 100%;
}
.topPrice__btn {
  display: inline-block;
  width: 700px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: #F69C95;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 60px;
  text-align: center;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  height: 60px;
  line-height: 60px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .topPrice__btn {
    width: 540px;
    max-width: 100%;
    text-align: left;
    padding: 0 20px;
    font-size: clamp(16px, 3vw, 18px);
    letter-spacing: 0.1rem;
  }
}
.topPrice__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10vw;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url(../img/link-arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .topPrice__btn::after {
    right: 4vw;
  }
}
.topPrice__btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}

/*-----------------------------------------
    about
-----------------------------------------*/
.about {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}
.about__content {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .about__content {
    margin-top: 40px;
  }
}
.about .card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
}
@media (max-width: 767px) {
  .about .card {
    flex-direction: column-reverse;
    gap: 30px;
    align-items: flex-start;
  }
}
.about .card__left {
  width: clamp(340px, 44.5vw, 640px);
}
@media (max-width: 767px) {
  .about .card__left {
    max-width: 540px;
    width: 90%;
  }
}
.about .card__right {
  width: clamp(400px, 41vw, 580px);
}
@media (max-width: 767px) {
  .about .card__right {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.about .card__right p {
  letter-spacing: 0.1rem;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 2;
  text-align: justify;
}
@media (max-width: 767px) {
  .about .card__right p {
    letter-spacing: 0.02rem;
  }
}

/*-----------------------------------------
    feature
-----------------------------------------*/
.feature {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F9F3EF;
}
@media (max-width: 767px) {
  .feature {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.feature__content {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .feature__content {
    margin-top: 40px;
  }
}
.feature__items .card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .feature__items .card {
    flex-direction: column;
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    gap: 10px;
  }
}
.feature__items .card:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .feature__items .card:nth-child(odd) {
    flex-direction: column;
  }
}
.feature__items .card:not(:first-child) {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .feature__items .card:not(:first-child) {
    margin-top: 60px;
  }
}
.feature__items .card__left {
  width: clamp(260px, 30.6vw, 440px);
}
@media (max-width: 767px) {
  .feature__items .card__left {
    width: 100%;
  }
}
.feature__items .card__right {
  width: clamp(420px, 45.5vw, 540px);
}
@media (max-width: 767px) {
  .feature__items .card__right {
    width: 100%;
  }
}
.feature__items .card__right h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .feature__items .card__right h3 {
    font-size: clamp(20px, 1.8vw, 26px);
  }
}
.feature__items .card__right p {
  margin-top: 20px;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .feature__items .card__right p {
    margin-top: 5px;
    font-size: clamp(13px, 3vw, 14px);
  }
}
.feature__items .card__right ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
@media (max-width: 767px) {
  .feature__items .card__right ul {
    margin-top: 10px;
    flex-wrap: wrap;
  }
}
.feature__items .card__right ul li {
  font-size: clamp(9px, 1vw, 12px);
  letter-spacing: 0.1rem;
  background: #E6CDBA;
  border-radius: 20px;
  text-align: center;
  padding: 2px 10px;
}
@media (max-width: 767px) {
  .feature__items .card__right ul li {
    font-size: 12px;
  }
}
.feature__flex {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.5rem;
}
@media (max-width: 767px) {
  .feature__flex {
    display: block;
  }
}
.feature__flex .feature-slider .swiper-wrapper {
  padding-bottom: 30px;
}
.feature__flex .swiper-slide .card {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.feature__flex .swiper-slide-visible .card {
  opacity: 1;
}
@media (max-width: 767px) {
  .feature__flex .card {
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
.feature__flex .card__bottom {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .feature__flex .card__bottom {
    margin-top: 10px;
  }
}
.feature__flex .card__bottom h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.1rem;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .feature__flex .card__bottom h3 {
    font-size: clamp(20px, 1.8vw, 26px);
  }
}
.feature__flex .card__bottom p {
  margin-top: 20px;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .feature__flex .card__bottom p {
    margin-top: 10px;
    font-size: clamp(13px, 3vw, 14px);
    letter-spacing: 0.08rem;
  }
}
.feature__flex .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  width: 10px;
  height: 10px;
  border: 1px solid #90693C;
  left: 50%;
  transform: translateX(-50%);
  -webkit-tap-highlight-color: transparent;
}
.feature__flex .swiper-pagination-bullet-active {
  background: #90693C;
  border: 1px solid #90693C;
}
.feature__flex .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.feature__flex .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
}
.feature__flex .swiper-button-next:after {
  width: 36px;
  height: 6px;
  background: url(../img/slider-arrow.svg) no-repeat center center/contain;
  content: "";
}
.feature__flex .swiper-button-prev:after {
  width: 36px;
  height: 6px;
  background: url(../img/slider-arrow.svg) no-repeat center center/contain;
  transform: scale(-1, 1);
  content: "";
}
.feature__flex .swiper-button-prev {
  left: auto;
  right: 40px;
  bottom: 0;
  top: auto;
  width: auto;
}
.feature__flex .swiper-button-next {
  left: auto;
  right: 0;
  bottom: 0;
  top: auto;
  width: auto;
}
.feature__flex .swiper-button-prev.swiper-button-disabled,
.feature__flex .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/*-----------------------------------------
    plan
-----------------------------------------*/
.plan {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #EFE3D9;
}
@media (max-width: 767px) {
  .plan {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.plan__content {
  margin-top: 80px;
}
.plan__content .plan-price {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  background: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .plan__content .plan-price {
    max-width: 540px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.plan__content .plan-price .head {
  width: clamp(450px, 38.2vw, 550px);
  background: #fff;
  position: absolute;
  top: -11%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  height: 80px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .plan__content .plan-price .head {
    width: 90%;
    height: clamp(80px, 21vw, 160px);
  }
}
.plan__content .plan-price .head h3 .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .plan__content .plan-price .head h3 .flex {
    flex-direction: column;
  }
}
.plan__content .plan-price .head h3 .flex .img {
  width: clamp(150px, 17.6vw, 253px);
}
@media (max-width: 767px) {
  .plan__content .plan-price .head h3 .flex .img {
    width: clamp(180px, 30vw, 253px);
  }
}
.plan__content .plan-price .head h3 .flex p {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .plan__content .plan-price .head h3 .flex p {
    font-size: clamp(16px, 4vw, 22px);
    line-height: 1;
    margin-top: -1vw;
  }
}
.plan__content .plan-price .body {
  position: relative;
  z-index: 2;
  padding: 4.5rem;
}
@media (max-width: 767px) {
  .plan__content .plan-price .body {
    padding: 4.5rem 20px;
  }
}
.plan__content .plan-price .body .img {
  position: relative;
}
.plan__content .plan-price .body .img::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -2vw;
  width: clamp(492px, 49vw, 692px);
  height: clamp(84px, 9vw, 118px);
  background: url(../img/plan-fukidashi.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .plan__content .plan-price .body .img::after {
    width: 100%;
  }
}
.plan__content .plan-price .body .bottom-img {
  width: clamp(220px, 18vw, 256px);
  margin-left: auto;
  margin-right: 6rem;
}
@media (max-width: 767px) {
  .plan__content .plan-price .body .bottom-img {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.plan__content .plan-price .body .body-bottom .price__button {
  text-align: center;
  margin-top: 5px;
}
.plan__content .plan-price .body .body-bottom .price__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 700px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: #F69C95;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 60px;
  text-align: center;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  height: 60px;
  line-height: 60px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .plan__content .plan-price .body .body-bottom .price__btn {
    width: 540px;
    max-width: 100%;
    text-align: left;
    padding-left: 20px;
    font-size: clamp(15px, 3vw, 18px);
    letter-spacing: 0.1rem;
    line-height: 1.4;
  }
}
.plan__content .plan-price .body .body-bottom .price__btn .img {
  margin-left: 2.4rem;
  width: 50px;
  line-height: 1;
}
.plan__content .plan-price .body .body-bottom .price__btn .img::after {
  display: none;
}
.plan__content .plan-price .body .body-bottom .price__btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.plan__links {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .plan__links {
    margin-top: 50px;
  }
}
.plan__links ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .plan__links ul {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    -moz-column-gap: 10px;
         column-gap: 10px;
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
.plan__links ul li {
  background: #F9F3EF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem 4rem 0 0;
}
.plan__links ul li a {
  display: block;
  width: 100%;
  position: relative;
}
.plan__links ul li a::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(30px, 3vw, 40px);
  height: clamp(30px, 3vw, 40px);
  background: url(../img/plan-arrow.svg) no-repeat center center/contain;
}
.plan__links ul li a .top {
  border-bottom: 1px solid #90693C;
  text-align: center;
  font-size: clamp(12px, 1vw, 14px);
  color: #90693C;
  padding: 10px 0 5px;
}
.plan__links ul li a .bottom {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 500;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .plan__links ul li a .bottom {
    padding-bottom: 2rem;
    font-size: clamp(12px, 2.3vw, 16px);
  }
}
.plan__links ul li a .bottom .sm {
  font-size: clamp(11px, 1vw, 14px);
}
.plan__links ul li a .bottom .m2 {
  margin-top: 1px;
  display: block;
}
.plan__items {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .plan__items {
    margin-top: 80px;
  }
}
.plan__items .card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 767px) {
  .plan__items .card {
    flex-direction: column;
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    gap: 10px;
  }
}
.plan__items .card:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .plan__items .card:nth-child(odd) {
    flex-direction: column;
  }
}
.plan__items .card:not(:first-child) {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .plan__items .card:not(:first-child) {
    margin-top: 8rem;
  }
}
.plan__items .card__left {
  width: clamp(350px, 42.5vw, 540px);
}
@media (max-width: 767px) {
  .plan__items .card__left {
    width: 100%;
  }
}
.plan__items .card__left p {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .plan__items .card__left p {
    letter-spacing: 0.08rem;
  }
}
.plan__items .card__left .room-slide {
  margin-top: 20px;
  padding-bottom: 40px;
}
.plan__items .card__left .swiper-pagination {
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.1rem;
  font-family: "Roboto", sans-serif;
  width: auto;
  left: auto;
  right: 80px;
}
.plan__items .card__left .swiper-button-next:after {
  content: "→";
}
.plan__items .card__left .swiper-button-prev:after {
  content: "←";
}
.plan__items .card__left .swiper-button-prev {
  left: auto;
  right: 40px;
  bottom: 0;
  top: auto;
  width: auto;
}
.plan__items .card__left .swiper-button-next {
  left: auto;
  right: 0;
  bottom: 0;
  top: auto;
  width: auto;
}
.plan__items .card__left .swiper-button-next:after,
.plan__items .card__left .swiper-button-prev:after {
  color: #202020;
  font-weight: 400;
  font-size: 18px;
}
.plan__items .card__right {
  width: clamp(320px, 32vw, 420px);
}
@media (max-width: 767px) {
  .plan__items .card__right {
    width: 100%;
  }
}
.plan__items .card__right .head h3 p {
  font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.plan__items .card__right .head h3 strong {
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 700;
  line-height: 1;
}
.plan__items .card__right .head h3 strong span {
  font-size: clamp(14px, 1.3vw, 18px);
}
.plan__items .card__right .head .room-price {
  margin-top: 10px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  padding-bottom: 2px;
  border-bottom: 1px solid #90693C;
}
.plan__items .card__right .head .room-price .en-sans {
  font-family: "Roboto", sans-serif;
}
.plan__items .card__right .head .room-price .sm {
  display: inline-block;
  margin-left: 15px;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
}
.plan__items .card__right .body {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .plan__items .card__right .body {
    margin-top: 20px;
  }
}
.plan__items .card__right .body ul {
  margin-left: 2rem;
}
.plan__items .card__right .body ul li {
  list-style: disc;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
}
.plan__items .card__right .body ul li:not(:first-child) {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .plan__items .card__right .body ul li:not(:first-child) {
    margin-top: 5px;
  }
}
.plan__items .card__right .body .room-accordion {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .plan__items .card__right .body .room-accordion {
    margin-top: 20px;
  }
}
.plan__items .card__right .body .room-item__head {
  height: clamp(40px, 4vw, 50px);
  border: 1px solid #202020;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.plan__items .card__right .body .room-item__head--text {
  font-size: clamp(13px, 1.2vw, 14px);
  text-align: center;
  font-weight: 500;
}
.plan__items .card__right .body .room-item__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  margin-left: auto;
  cursor: pointer;
}
.plan__items .card__right .body .room-item__icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transition: transform 0.3s;
}
.plan__items .card__right .body .room-item__icon span:nth-child(1) {
  transform: translateY(-50%) rotate(0);
}
.plan__items .card__right .body .room-item__icon span:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}
.plan__items .card__right .body .room-accordion.open .room-item__icon span:nth-child(1) {
  transform: translateY(-50%);
}
.plan__items .card__right .body .room-accordion.open .room-item__icon span:nth-child(2) {
  transform: translateY(-50%) rotate(0deg);
}
.plan__items .card__right .body .room-item__table {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.plan__items .card__right .body .room-accordion.open .room-item__table {
  max-height: 500px;
  padding: 15px 0;
  font-size: clamp(11px, 1vw, 13px);
}
.plan__items .card__right .body .room-item__table table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(9px, 1vw, 13px);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .plan__items .card__right .body .room-item__table table {
    font-size: clamp(10px, 2.8vw, 13px);
  }
}
.plan__items .card__right .body .room-item__table th,
.plan__items .card__right .body .room-item__table td {
  padding: 5px;
  text-align: center;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .plan__items .card__right .body .room-item__table th,
  .plan__items .card__right .body .room-item__table td {
    padding: 4px;
  }
}
.plan__items .card__right .body .room-item__table th {
  background-color: #E6CDBA;
  font-weight: 500;
}
.plan__items .card__right .body .room-item__table td {
  background-color: #EFE3D9;
}
.plan__items .card__right .body .room-item__table .basecolor {
  background-color: #F9F3EF;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid #DEDEDE;
  width: 20%;
}
@media (max-width: 767px) {
  .plan__items .card__right .body .room-item__table .basecolor {
    width: 16%;
    letter-spacing: 0.02rem;
  }
}
.plan__items .card__right .body .caption {
  font-size: 12px;
  margin-top: 4px;
}
.plan__items .card__right .body .yoyaku__button {
  margin-top: 15px;
}
.plan__items .card__right .body .yoyaku__btn {
  background: #EC6F65;
  height: clamp(50px, 4.2vw, 60px);
  line-height: clamp(50px, 4.2vw, 60px);
  text-align: center;
  display: block;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.1rem;
  position: relative;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease 0s;
}
.plan__items .card__right .body .yoyaku__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: transparent;
  border: 1px solid #fff;
}
.plan__items .card__right .body .yoyaku__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 35px;
  height: 6px;
  background: url(../img/arrow-w.svg) no-repeat center center/contain;
}
.plan__items .card__right .body .yoyaku__btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.plan__bottom {
  margin-top: 60px;
  padding: 3rem 2rem;
  background: #F9F3EF;
  text-align: center;
}
.plan__bottom p {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.08rem;
}

/*-----------------------------------------
    price-service
-----------------------------------------*/
.price-service {
  background: #F9F3EF;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .price-service {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.price-image {
  padding-bottom: 60px;
  background: #EFE3D9;
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .price-image {
    padding-bottom: 40px;
  }
}
.price-image::after {
  content: "";
  position: absolute;
  bottom: -1vw;
  right: 0;
  width: clamp(200px, 18vw, 258px);
  height: clamp(296px, 26.5vw, 380px);
  transform: scale(-1, 1);
  background: url(../img/coral.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .price-image::after {
    width: clamp(140px, 26.1vw, 200px);
    height: clamp(210px, 38.6vw, 296px);
  }
}

/*-----------------------------------------
    price
-----------------------------------------*/
.price {
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .price {
    padding-top: 40px;
  }
}
.price__title {
  font-size: clamp(22px, 3vw, 30px);
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  .price__title {
    font-size: clamp(22px, 4vw, 26px);
  }
}
.price__content {
  margin-top: 40px;
  width: 100%;
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .price__content {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .price__tableWrap {
    overflow: scroll;
  }
}
.price__table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .price__table {
    width: 700px;
  }
}
.price__table th,
.price__table td {
  padding: 5px;
  text-align: center;
  height: 50px;
}
.price__table th {
  background-color: #E6CDBA;
  font-weight: 500;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: clamp(14px, 1.3vw, 16px);
}
.price__table td {
  background-color: #fff;
  border-left: 1px solid #A7A7A7;
  border-bottom: 1px solid #A7A7A7;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
}
.price__table .basecolor {
  background-color: #F9F3EF;
  letter-spacing: 0.1rem;
  border: none;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid #DEDEDE;
  font-weight: 400;
}
.price__table .table-width {
  width: 16%;
  font-weight: 500;
}
.price .caption {
  font-size: 12px;
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
}

/*-----------------------------------------
    tokuten
-----------------------------------------*/
.tokuten {
  padding-top: 40px;
}
.tokuten .img {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  display: block;
}
@media (max-width: 767px) {
  .tokuten .img {
    width: 495px;
  }
}
/*-----------------------------------------
    image
-----------------------------------------*/
.image {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .image {
    padding-top: 80px;
  }
}
.image__title {
  font-size: clamp(22px, 3vw, 30px);
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  .image__title {
    font-size: clamp(22px, 4vw, 26px);
  }
}
.image__content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .image__content {
    margin-top: 30px;
  }
}
.image__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.4rem;
}
@media (max-width: 767px) {
  .image__items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .image__items .card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 460px;
  }
}
.image__items .card__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .image__items .card__bottom {
    margin-top: 10px;
  }
}
.image__items .card__bottom .title {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #202020;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .image__items .card__bottom .title {
    font-size: clamp(16px, 5.2vw, 20px);
  }
}
.image__items .card__bottom .recommend {
  margin-top: 20px;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.1rem;
  padding: 4px 2.5rem;
  background: #E6CDBA;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767px) {
  .image__items .card__bottom .recommend {
    font-size: clamp(12px, 3.7vw, 14px);
  }
}
.image__items .card__bottom p {
  margin-top: 10px;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  text-align: justify;
}
@media (max-width: 767px) {
  .image__items .card__bottom p {
    font-size: clamp(13px, 3.7vw, 16px);
  }
}
.image__button {
  text-align: center;
  margin-top: 60px;
}
.image__btn {
  display: inline-block;
  width: 700px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: #F69C95;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 60px;
  text-align: center;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  height: 60px;
  line-height: 60px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .image__btn {
    width: 540px;
    max-width: 100%;
    text-align: left;
    padding: 0.7rem 20px;
    font-size: clamp(15px, 3vw, 18px);
    letter-spacing: 0.08rem;
    line-height: 1.4;
  }
}
.image__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3vw;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url(../img/link-arrow.svg) no-repeat center center/contain;
}
.image__btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}

/*-----------------------------------------
    service
-----------------------------------------*/
.service {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .service {
    padding-top: 60pz;
  }
}
.service__inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .service__inner {
    max-width: 100%;
  }
}
.service__title {
  font-size: clamp(26px, 2.2vw, 30px);
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .service__title {
    font-size: clamp(22px, 4vw, 26px);
  }
}
.service__content {
  margin-top: 40px;
}
.service__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.4rem;
}
@media (max-width: 767px) {
  .service__items {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 3rem;
  }
}
.service__item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 10px 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 767px) {
  .service__item {
    padding: 15px 5px 45px;
  }
}
.service__item--in {
  width: 100%;
}
.service__item .head {
  width: 100%;
}
.service__item .head p {
  font-size: clamp(13px, 1.4vw, 17px);
  padding-bottom: 5px;
  letter-spacing: 0.08rem;
  border-bottom: 1px solid #EC6F65;
  color: #EC6F65;
  text-align: center;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .service__item .head p {
    font-size: clamp(12px, 3vw, 15px);
    letter-spacing: -0.08rem;
  }
}
.service__item .body {
  margin-top: 20px;
}
.service__item .body ul {
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .service__item .body ul {
    margin-left: 1.5rem;
  }
}
.service__item .body ul li {
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.8;
  letter-spacing: 0.1rem;
  list-style: disc;
}
@media (max-width: 767px) {
  .service__item .body ul li {
    letter-spacing: -0.05rem;
  }
}
.service__item .body ul li:not(:first-child) {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .service__item .body ul li:not(:first-child) {
    margin-top: 5px;
  }
}
.service__item .body ul li span {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .service__item .body ul li span {
    font-size: clamp(9px, 2vw, 12px);
  }
}
.service__item .bottom p {
  margin-top: 12px;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.08rem;
}
@media (max-width: 767px) {
  .service__item .bottom p {
    font-size: clamp(11px, 3vw, 15px);
    letter-spacing: 0;
  }
}
.service .option__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 767px) {
  .service .option__items {
    margin-top: 40px;
  }
}
.service .option__items .option__item {
  padding: 15px 3.5rem;
  background: #EFE3D9;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .service .option__items .option__item {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
    padding: 15px 2.5rem;
  }
}
.service .option__items .option__item .deco {
  position: absolute;
  top: -9%;
  left: 0;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  color: #90693C;
}
@media (max-width: 767px) {
  .service .option__items .option__item .deco {
    font-size: clamp(20px, 6.2vw, 28px);
  }
}
.service .option__items .option__item .head {
  width: 100%;
}
.service .option__items .option__item .head p {
  font-size: clamp(13px, 1.4vw, 15px);
  padding-bottom: 5px;
  letter-spacing: 0.08rem;
  border-bottom: 1px solid #EC6F65;
  color: #EC6F65;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .service .option__items .option__item .head p {
    font-size: clamp(13px, 3.8vw, 16px);
  }
}
.service .option__items .option__item .body {
  margin-top: 5px;
}
.service .option__items .option__item .body ul {
  margin-left: 2rem;
}
.service .option__items .option__item .body ul li {
  font-size: clamp(10px, 1.3vw, 12px);
  letter-spacing: 0.1rem;
  list-style: disc;
}
@media (max-width: 767px) {
  .service .option__items .option__item .body ul li {
    font-size: clamp(12px, 2vw, 13px);
  }
}
.service .option__items .option__item .bottom p {
  margin-top: 5px;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .service .option__items .option__item .bottom p {
    font-size: clamp(13px, 3vw, 16px);
    margin-top: 10px;
  }
}

/*-----------------------------------------
    short
-----------------------------------------*/
.short {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #EFE3D9;
}
@media (max-width: 767px) {
  .short {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.short__inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .short__inner {
    max-width: 100%;
  }
}
.short__title {
  font-size: clamp(30px, 2.8vw, 40px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
}
.short__title span {
  display: block;
  font-size: clamp(14px, 1.6vw, 22px);
}
.short__content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .short__content {
    margin-top: 30px;
  }
}
.short__lead {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
}
.short__items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .short__items {
    row-gap: 10px;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.short__items::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(600px, 72.5vw, 970px);
  height: clamp(42px, 9.8vw, 68.5px);
  background: url(../img/short-fukidashi.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .short__items::after {
    bottom: -3%;
    width: 100%;
  }
}
.short__item {
  background: #fff;
  border-radius: 3rem;
  height: clamp(160px, 14vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .short__item {
    height: clamp(180px, 52vw, 200px);
  }
}
@media (max-width: 767px) {
  .short__item.last {
    grid-column: 1/-1;
    justify-self: center;
    width: 47%;
  }
}
.short__item .head ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.short__item .head ul li {
  width: clamp(35px, 3.2vw, 45px);
}
.short__item .body {
  margin-top: 20px;
}
.short__item .body .time {
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  text-align: center;
}
.short__item .body p {
  margin-top: 5px;
  font-size: clamp(11px, 1.3vw, 14px);
  line-height: 1.4;
  text-align: center;
}
.short__bottom {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .short__bottom {
    margin-top: 40px;
  }
}
.short__bottom p {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .short__bottom p {
    font-size: clamp(14px, 4.3vw, 16px);
  }
}
.short__button {
  margin-top: 15px;
  text-align: center;
}
.short__btn {
  display: block;
  width: clamp(240px, 26vw, 370px);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .short__btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}
.short__btn:hover {
  opacity: 0.6;
  transform: translateY(4px);
  box-shadow: none;
}
.short__btn img {
  vertical-align: bottom;
  line-height: 1em;
}

/*-----------------------------------------
    facility-amenities
-----------------------------------------*/
.facility-amenities {
  background: #EFE3D9;
  position: relative;
}
.facility-amenities::after {
  content: "";
  position: absolute;
  bottom: -3vw;
  left: -6vw;
  width: clamp(400px, 60vw, 800px);
  height: clamp(525px, 80vw, 1085px);
  background: url(../img/coral.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .facility-amenities::after {
    width: clamp(200px, 52.2vw, 400px);
    height: clamp(325px, 69vw, 525px);
  }
}

/*-----------------------------------------
    facility
-----------------------------------------*/
.facility {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .facility {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}
.facility__content {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .facility__content {
    margin-top: 40px;
  }
}
.facility__items .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .facility__items .card {
    flex-direction: column;
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    gap: 10px;
  }
}
.facility__items .card:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .facility__items .card:nth-child(even) {
    flex-direction: column;
  }
}
.facility__items .card:not(:first-child) {
  margin-top: 60px;
}
.facility__items .card__left {
  width: clamp(260px, 30.6vw, 440px);
}
@media (max-width: 767px) {
  .facility__items .card__left {
    width: 100%;
  }
}
.facility__items .card__right {
  width: clamp(420px, 45.5vw, 540px);
}
@media (max-width: 767px) {
  .facility__items .card__right {
    width: 100%;
  }
}
.facility__items .card__right h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
}
.facility__items .card__right h3 span {
  display: inline-block;
  margin-left: 4.4rem;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media (max-width: 767px) {
  .facility__items .card__right h3 span {
    margin-left: 2rem;
  }
}
.facility__items .card__right p {
  margin-top: 20px;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .facility__items .card__right p {
    margin-top: 10px;
    font-size: clamp(13px, 3vw, 16px);
    letter-spacing: 0.08rem;
  }
}

/*-----------------------------------------
    amenities
-----------------------------------------*/
.amenities {
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .amenities {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
.amenities__content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .amenities__content {
    margin-top: 25px;
  }
}
.amenities__item {
  background: #E8C8AD;
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .amenities__item {
    padding: 20px 10px;
  }
}
.amenities__item:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .amenities__item:not(:first-child) {
    margin-top: 50px;
  }
}
.amenities__item h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 10px;
  border-bottom: 1px solid #202020;
}
@media (max-width: 767px) {
  .amenities__item h3 {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.amenities__item .body {
  margin-top: 20px;
}
.amenities__item .body p {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.08rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .amenities__item .body p {
    font-size: clamp(13px, 2vw, 16px);
  }
}
.amenities__item .body ul {
  margin-top: 20px;
}
.amenities__item .body ul li {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.08rem;
  line-height: 2;
}
.amenities__item--bottom {
  margin-top: 20px;
  background: #EFE3D9;
  padding: 2.3rem 3rem;
}
@media (max-width: 767px) {
  .amenities__item--bottom {
    padding: 20px 15px;
  }
}

/*-----------------------------------------
    bring
-----------------------------------------*/
.bring {
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bring {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.bring__content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .bring__content {
    margin-top: 25px;
  }
}
.bring__item {
  background: #F9F3EF;
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .bring__item {
    padding: 20px 10px;
  }
}
.bring__item h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 10px;
  border-bottom: 1px solid #202020;
}
@media (max-width: 767px) {
  .bring__item h3 {
    font-size: clamp(18px, 3vw, 22px);
  }
}
.bring__item .body {
  margin-top: 20px;
}
.bring__item .body p {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.08rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .bring__item .body p {
    font-size: clamp(13px, 2vw, 16px);
  }
}
.bring__item .body ul {
  margin-top: 20px;
}
.bring__item .body ul li {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.08rem;
  line-height: 2;
}

/*-----------------------------------------
    schedule
-----------------------------------------*/
.schedule {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F9F3EF;
  position: relative;
  z-index: 2;
}
.schedule::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(240px, 24vw, 340px);
  height: clamp(477px, 46.6vw, 670px);
  background: url(../img/coral-b.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .schedule::after {
    width: clamp(140px, 32vw, 240px);
    height: clamp(277px, 62.6vw, 477px);
  }
}
@media (max-width: 767px) {
  .schedule {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.schedule__inner {
  position: relative;
  z-index: 2;
}
.schedule__content {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .schedule__content {
    margin-top: 60px;
  }
}
.schedule__lead {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  text-align: center;
}
.schedule__items {
  margin-top: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .schedule__items {
    margin-top: 50px;
  }
}
.schedule__items::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(50px, 4.6vw, 65px);
  width: 2px;
  height: 95%;
  background: #E8C8AD;
}
@media (max-width: 767px) {
  .schedule__items::before {
    left: 4rem;
  }
}
.schedule__item {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: 3rem;
  height: 200px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .schedule__item {
    flex-direction: column;
    height: 180px;
    gap: 0;
  }
}
.schedule__item:not(:first-child) {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .schedule__item:not(:first-child) {
    margin-top: 5px;
  }
}
.schedule__item--height {
  margin-top: 200px !important;
  margin-bottom: 200px;
}
@media (max-width: 767px) {
  .schedule__item--height {
    margin-top: 90px !important;
    margin-bottom: 90px;
  }
}
.schedule__item .left {
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .schedule__item .left {
    width: 100%;
  }
}
.schedule__item .left .time {
  width: clamp(100px, 9vw, 130px);
  height: clamp(100px, 9vw, 130px);
  background: #E8C8AD;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  text-align: center;
}
@media (max-width: 767px) {
  .schedule__item .left .time {
    width: 80px;
    height: 80px;
    font-size: clamp(16px, 3vw, 20px);
  }
}
.schedule__item .left p {
  font-size: clamp(13px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .schedule__item .right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .schedule__item .right .img {
    width: 50%;
    height: 100px;
    margin-left: auto;
  }
  .schedule__item .right .img img {
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.schedule__item .right02 {
  margin-left: auto;
}

/*-----------------------------------------
    voice
-----------------------------------------*/
.voice {
  padding-top: 100px;
  padding-bottom: 80px;
  background: #E8C8AD;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.voice__content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .voice__content {
    margin-top: 25px;
  }
}
.voice__items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 767px) {
  .voice__items {
    flex-direction: column;
  }
}
.voice__item {
  background: #fff;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .voice__item {
    width: 340px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
.voice__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/voice-bg.webp) repeat-y top center/contain;
}
.voice__item--in {
  position: relative;
}
.voice__item .head h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 1.5vw, 20px);
  padding-bottom: 5px;
  border-bottom: 1px solid #202020;
}
.voice__item .body {
  margin-top: 20px;
}
.voice__item .bottom {
  margin-top: 20px;
  position: relative;
}
.voice__item .bottom p {
  padding-top: 10px;
  border-top: 1px solid #202020;
  font-size: clamp(10px, 1vw, 12px);
  text-align: right;
}

/*-----------------------------------------
    access
-----------------------------------------*/
.access {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #EFE3D9;
}
@media (max-width: 767px) {
  .access {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.access__content {
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 767px) {
  .access__content {
    margin-top: 60px;
    flex-direction: column;
  }
}
.access__content .left {
  width: clamp(290px, 30.6vw, 440px);
}
@media (max-width: 767px) {
  .access__content .left {
    width: 100%;
  }
}
.access__content .left dl .row:not(:first-child) {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #202020;
}
.access__content .left dl .row dt {
  display: inline-block;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
  padding-left: 1rem;
  padding-right: 1rem;
  border-left: 1px solid #202020;
  border-right: 1px solid #202020;
  line-height: 1.4;
}
.access__content .left dl .row dd {
  margin-top: 10px;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .access__content .right {
    width: 100%;
  }
}
.access__content .right .map {
  width: clamp(410px, 48vw, 680px);
  max-width: 100%;
}
@media (max-width: 767px) {
  .access__content .right .map {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}
.access__content .right .iframe-wrap {
  width: 100%;
  padding-top: 63.2352941176%;
  position: relative;
}
.access__content .right .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access__button {
  margin-top: 20px;
  text-align: right;
}
@media (max-width: 767px) {
  .access__button {
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
.access__btn {
  display: inline-block;
  width: clamp(240px, 26vw, 370px);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  background: #EFE3D9;
  border: 1px solid #202020;
  text-align: center;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  height: 60px;
  line-height: 60px;
  transition: all 0.3s ease 0s;
  position: relative;
}
.access__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 35px;
  height: 6px;
  background: url(../img/access-arrow.svg) no-repeat center center/contain;
}

/*-----------------------------------------
    faq
-----------------------------------------*/
.faq {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F9F3EF;
}
@media (max-width: 767px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.faq__inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .faq__inner {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
.faq__content {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .faq__content {
    margin-top: 60px;
  }
}
.faq__content .faq-item:not(:first-child) {
  margin-top: 30px;
}
.faq__content .faq-item.open .faq-item__icon span:nth-child(2) {
  transform: translateY(-50%) rotate(0deg);
}
.faq__content .faq-item.open .faq-item__answer {
  padding-top: 20px;
  max-height: 200px;
}
.faq__content .faq-item__head {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  gap: 20px;
}
@media (max-width: 767px) {
  .faq__content .faq-item__head {
    gap: 10px;
  }
}
.faq__content .faq-item__head--q {
  width: clamp(44px, 4.7vw, 66px);
}
.faq__content .faq-item__head--text {
  flex: 1;
  letter-spacing: 0.1rem;
  font-size: clamp(13px, 1.3vw, 16px);
}
.faq__content .faq-item__icon {
  width: 20px;
  height: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .faq__content .faq-item__icon {
    width: 15px;
    height: 15px;
  }
}
.faq__content .faq-item__icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #202020;
  transition: transform 0.3s ease;
}
.faq__content .faq-item__icon span:nth-child(1) {
  transform: translateY(-50%) rotate(0deg);
}
.faq__content .faq-item__icon span:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}
.faq__content .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq__content .faq-item__answer--a {
  width: clamp(44px, 4.7vw, 66px);
}
.faq__content .faq-item__answer--inner {
  flex: 1;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
}
.faq__content .faq-item__answer--link {
  margin-top: 10px;
}
.faq__content .faq-item__answer--link a {
  color: #EC6F65;
  text-decoration: underline;
}

/*-----------------------------------------
    company
-----------------------------------------*/
.company {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #EFE3D9;
}
@media (max-width: 767px) {
  .company {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.company__inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
.company__content {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .company__content {
    margin-top: 60px;
  }
}
.company__dl .row {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #969696;
}
@media (max-width: 767px) {
  .company__dl .row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }
}
.company__dl .row:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .company__dl .row:not(:first-child) {
    margin-top: 10px;
  }
}
.company__dl dt {
  width: 220px;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .company__dl dt {
    width: 100%;
    letter-spacing: 0.02rem;
  }
}
.company__dl dd {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
  width: calc(100% - 220px);
}
@media (max-width: 767px) {
  .company__dl dd {
    width: 100%;
    margin-top: 5px;
    letter-spacing: 0.02rem;
  }
}

/*-----------------------------------------
    cta
-----------------------------------------*/
.cta {
  padding-top: 55px;
  padding-bottom: 55px;
  background: url(../img/cta-bg.webp) no-repeat center center/cover;
  position: relative;
  vertical-align: bottom;
  line-height: 1em;
}
@media (max-width: 767px) {
  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100.1%;
  background: rgba(255, 255, 255, 0.95);
}
.cta__inner {
  position: relative;
  z-index: 2;
}
.cta .btns .kengaku__button a {
  display: block;
  width: clamp(370px, 35vw, 500px);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.cta .btns .kengaku__button a:hover {
  opacity: 0.6;
  transform: translateY(4px);
  box-shadow: none;
}
.cta .btns .line__button {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .cta .btns .line__button {
    margin-top: 2rem;
  }
}
.cta .btns .line__button a {
  display: block;
  width: clamp(240px, 26vw, 370px);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.cta .btns .line__button a:hover {
  opacity: 0.6;
  transform: translateY(4px);
  box-shadow: none;
}

/*-----------------------------------------
    cta-fix
-----------------------------------------*/
.cta-fix {
  position: fixed;
  right: 0.5rem;
  bottom: 3.8rem;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cta-fix {
    right: 0rem;
    bottom: 2.6rem;
  }
}
.cta-fix__icon {
  display: block;
  width: clamp(200px, 17vw, 240px);
}
@media (max-width: 767px) {
  .cta-fix__icon {
    width: clamp(150px, 27vw, 200px);
  }
}

.cta-fix.stopped {
  position: absolute;
}/*# sourceMappingURL=style.css.map */