@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  color: #2B2B23;
}

.en {
  font-family: "Open Sans", sans-serif;
}

.blue {
  color: #37AFDA;
}

.green {
  color: #56A843;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: vw(1480, 16);
  }
}
@media screen and (min-width: 1480px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s ease;
}

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

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

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

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

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

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

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

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

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

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

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 6.3157894737vw;
  }
}
.section-title .en {
  display: block;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: "Open Sans";
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #56a843;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .section-title .en {
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
  }
}
.section-title.--ver2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #56a843;
}
@media screen and (max-width: 768px) {
  .section-title.--ver2 {
    font-size: 6.3157894737vw;
  }
}
.section-title.--ver2 .en {
  font-size: 8rem;
  font-family: "Open Sans";
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: -1.875rem;
}
@media screen and (max-width: 768px) {
  .section-title.--ver2 .en {
    font-size: 15vw;
    margin-bottom: -4vw;
  }
}

.section-lead {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-lead {
    font-size: 4.2105263158vw;
  }
}

.wave-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .wave-title {
    gap: 5.2631578947vw;
  }
}
.wave-title.wave-title--green .title {
  color: #56A843;
}
.wave-title .title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #37afda;
}
@media screen and (max-width: 768px) {
  .wave-title .title {
    line-height: 1.6;
    font-size: 5.2631578947vw;
    flex-shrink: 0;
  }
}
.wave-title span.wave {
  display: block;
  width: 3.125rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .wave-title span.wave {
    width: 13.1578947368vw;
  }
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1250px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 4.7368421053vw;
  }
}

/******* flex ******/
.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.25rem;
  }
}

/*****スクロール時にふわっと**********/
.fadein {
  transform: translateY(100px);
  opacity: 0;
}

.fadein.scrollin {
  transform: unset;
  opacity: 1;
  transition: 1s;
}

.delay200 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.wave {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  display: block;
}
@media screen and (max-width: 768px) {
  .wave {
    aspect-ratio: 380/45;
  }
}

.illust {
  position: absolute;
}

.illust img {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.btn {
  margin: 0 auto;
  max-width: 18.75rem;
  height: 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 78.9473684211vw;
    height: 15.7894736842vw;
  }
}
.btn:hover:before {
  border: 1px solid #1c8db5;
}
.btn:hover a {
  background-color: #1c8db5;
}
.btn:hover a:hover {
  background: #1c8db5 !important;
}
.btn.btn--green:hover:before {
  border: 1px solid #2c8816;
}
.btn.btn--green:hover a, .btn.btn--green:hover button {
  background-color: #2c8816;
}
.btn.btn--green:hover a:hover, .btn.btn--green:hover button:hover {
  background: #2c8816 !important;
}
.btn.btn--green::before {
  border: 1px solid #56A843;
}
.btn.btn--green a, .btn.btn--green button {
  background-color: #56A843;
}
.btn::before {
  display: block;
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: -0.3125rem;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid #37AFDA;
  border-radius: 6.25rem;
}
.btn a, .btn button, .btn .mfp_element_submit {
  width: 100%;
  height: 100%;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #37AFDA;
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn a, .btn button, .btn .mfp_element_submit {
    border-radius: 50vw;
    font-size: 4.2105263158vw;
  }
}
.btn a:hover, .btn button:hover, .btn .mfp_element_submit:hover {
  background-color: #2c8816;
  background: none;
  box-shadow: none;
}
.btn a::before, .btn button::before, .btn .mfp_element_submit::before {
  display: block;
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.625rem;
  background: no-repeat center/contain url(../images/btn-arrow.png);
}
@media screen and (max-width: 768px) {
  .btn a::before, .btn button::before, .btn .mfp_element_submit::before {
    right: 5.2631578947vw;
    width: 3.1578947368vw;
    height: 2.6315789474vw;
  }
}

/*------------------------
calendar
------------------------*/
.calendar {
  padding: 3.125rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .calendar {
    padding: 15.7894736842vw 0 21.0526315789vw;
  }
}
.calendar .section-title {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .calendar .section-title {
    margin-bottom: 7.8947368421vw;
  }
}

.calendar__wrapper {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.calendar__wrapper iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .calendar__wrapper iframe {
    aspect-ratio: 340/575;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

main + .wave {
  margin-top: -3.4375rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  main + .wave {
    position: relative;
    z-index: 1;
    margin-top: -12vw;
  }
}

.footer {
  padding: 6.25rem 0 3.75rem;
  background-color: #faf4ea;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 13.1578947368vw 0 52.6315789474vw;
  }
}
.footer .inner {
  justify-content: space-between;
}

.footer__left {
  margin-top: -11.25rem;
}
@media screen and (max-width: 768px) {
  .footer__left {
    margin-top: 0;
  }
}

.footer__logo {
  max-width: 13.75rem;
  margin-bottom: 1.875rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 39.4736842105vw;
    max-width: 100%;
    margin: 0 auto 5.2631578947vw;
  }
}

.footer__address {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
  }
}

.footer__map {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
  color: #37AFDA;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 768px) {
  .footer__map {
    font-size: 4.2105263158vw;
    margin-bottom: 7.8947368421vw;
  }
}

.footer__menu {
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    display: none;
  }
}
.footer__menu ul {
  display: flex;
  justify-content: end;
  gap: 2.5rem;
}
.footer__menu ul li a {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.footer__sns {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    justify-content: center;
    gap: 5.2631578947vw;
    margin-bottom: 21.0526315789vw;
  }
}
.footer__sns a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__sns a {
    width: 10.5263157895vw;
    height: 10.5263157895vw;
  }
}

.footer__btns {
  gap: 1.25rem;
  justify-content: end;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .footer__btns {
    gap: 5.2631578947vw;
    margin-bottom: 39.4736842105vw;
  }
}
.footer__btns .btn {
  width: 16.875rem;
}
@media screen and (max-width: 768px) {
  .footer__btns .btn {
    width: 71.0526315789vw;
  }
}
.footer__btns .btn::before {
  display: none;
}
.footer__btns .btn + .btn a .icon {
  width: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer__btns .btn + .btn a .icon {
    width: 6.3157894737vw;
  }
}
.footer__btns .btn a {
  width: 100%;
}
.footer__btns .btn a::before {
  display: none;
}
.footer__btns .btn a .icon {
  display: inline-block;
  width: 1.625rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .footer__btns .btn a .icon {
    width: 6.8421052632vw;
    margin-right: 2.1052631579vw;
  }
}

.footer__copyright {
  display: block;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-align: right;
  color: #a99e8b;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 3.1578947368vw;
    text-align: center;
  }
}

.footer__menu .footer__list:hover a span {
  animation: scrollup1 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
}
.footer__menu .footer__list:hover a span + span {
  animation: scrollup2 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) 0s forwards;
}
.footer__menu .footer__list a {
  display: block;
  line-height: 2 !important;
  height: 2em;
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.footer__menu .footer__list a span {
  display: block;
}

.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 15.4375rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 8.5625rem;
  }
}

.header__btn {
  width: 37px;
  height: 28px;
  position: fixed;
  top: 16px;
  right: 20px;
}
@media (max-width: 1024px) {
  .header__btn {
    display: block;
  }
}

.header__btn span {
  width: 100%;
  height: 2px;
  background-color: #2b2b23;
  position: absolute;
  display: block;
  left: 0;
}

.header.is-active .header__btn span {
  background-color: #2b2b23;
}

.header__btn span:nth-child(1) {
  top: 0;
  border-radius: 20px;
}

.header__btn span:nth-child(2) {
  top: 10px;
  border-radius: 20px;
}

.header__btn span:nth-child(3) {
  top: 22px;
  background-color: transparent;
  height: auto;
  text-align: center;
  font-size: 0.75rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #2b2b23;
}

.header.is-active .header__btn span:nth-child(1) {
  transform: rotate(-30deg);
  top: 9px;
}

.header.is-active .header__btn span:nth-child(2) {
  transform: rotate(30deg);
  top: 9px;
}

.header.is-active .header__btn span:nth-child(3) {
  background-color: transparent;
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100% - 60px);
  background-color: rgb(255, 255, 255);
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .headerSp__nav {
    display: block;
  }
}
.headerSp__nav .header__nav-items {
  width: 100%;
  padding: 1.875rem 1.875rem 0;
  margin-bottom: 1.875rem;
}
.headerSp__nav .header__nav-item {
  margin-bottom: 1.875rem;
}
.headerSp__nav .header__nav-item:last-child {
  margin-bottom: 0;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #c2c2c2;
}
.headerSp__nav .header__nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  width: 100%;
}
.headerSp__nav .header__nav-link .en {
  display: block;
  font-size: 0.75rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: rgba(86, 168, 67, 0.4);
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.headerSp__nav .header__nav-link .arrow {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.625rem;
  height: 0.75rem;
}
.headerSp__nav .header__nav-link .arrow::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.25rem;
  height: 2px;
  border-radius: 2.5rem;
  background-color: #56A843;
}
.headerSp__nav .header__nav-link .arrow::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 0.5rem;
  height: 0.875rem;
  background: no-repeat center/contain url(../images/arrow-green.svg);
}
.headerSp__nav .btn .icon {
  margin-right: 0.625rem;
}
.headerSp__nav .btn::before {
  display: none;
}
.headerSp__nav .btn a::before {
  display: none;
}
.headerSp__nav .btn + .btn {
  margin-top: 1.25rem;
}

/*
-----------------------------------
pc
-----------------------------------
*/
.headerPc__navWrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .headerPc__navWrapper {
    display: none;
  }
}

.headerPc__nav {
  height: 100%;
  margin-right: 3.75rem;
}
.headerPc__nav ul {
  height: 100%;
}
.headerPc__nav .header__nav-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.headerPc__nav .header__nav-item a {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.header__cta--btn {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  width: 13.125rem;
  height: 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  transition: all 0.4s ease;
}
.header__cta--btn.--activity {
  background-color: #37AFDA;
}
.header__cta--btn.--activity .icon {
  width: 1.625rem;
}
.header__cta--btn.--activity:hover {
  background-color: #1c8db5;
}
.header__cta--btn.--reserve {
  background-color: #56A843;
}
.header__cta--btn.--reserve .icon {
  width: 1.5rem;
}
.header__cta--btn.--reserve:hover {
  background-color: #2c8816;
}

.header.is-active .headerSp__nav {
  right: 0;
}

.headerPc__nav .header__nav-item:hover .header__nav-link span {
  animation: scrollup1 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
}
.headerPc__nav .header__nav-item:hover .header__nav-link span + span {
  animation: scrollup2 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) 0s forwards;
}
.headerPc__nav .header__nav-link {
  display: block;
  line-height: 2 !important;
  height: 2em;
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.headerPc__nav .header__nav-link span {
  display: block;
}

@keyframes scrollup1 {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes scrollup2 {
  0% {
    transform: translateY(0%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}
/*------------------------
mv
------------------------*/
.mv {
  position: relative;
  width: 100%;
  height: 800px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 100vh;
    margin-bottom: 21.0526315789vw;
  }
}
.mv picture {
  display: block;
  height: 100%;
}
.mv picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.mv__text span {
  display: block;
  margin: 0 auto;
}
.mv__text .sub {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .mv__text .sub {
    font-size: 4.7368421053vw;
    line-height: 1.6;
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 10.5263157895vw;
  }
}
.mv__text .main {
  width: 39.5rem;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .mv__text .main {
    width: 83.1578947368vw;
    margin-bottom: 6.0526315789vw;
  }
}
.mv__text .en {
  width: 20.1875rem;
}
@media screen and (max-width: 768px) {
  .mv__text .en {
    width: 72.3684210526vw;
  }
}

.mv__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .mv__wave {
    bottom: 0vw;
  }
}

/*------------------------
concept
------------------------*/
.top-concept .inner {
  max-width: 1150px;
  gap: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .top-concept .inner {
    gap: 0rem;
  }
}

.top-concept__text {
  width: 43.6363636364%;
  padding-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .top-concept__text {
    width: 100%;
    padding-top: 0;
  }
}
.top-concept__text .catch {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-concept__text .catch {
    text-align: center;
    font-size: 6.3157894737vw;
    margin-bottom: 7.8947368421vw;
  }
}
.top-concept__text .desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.2;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-concept__text .desc {
    font-size: 4.2105263158vw;
    text-align: center;
  }
}

.top-concept__img {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-concept__img {
    margin-top: -11vw;
  }
}

/*------------------------
feature
------------------------*/
.top-features {
  overflow: clip;
  margin-top: -9.6875rem;
  padding-bottom: 9.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-features {
    margin-top: 0;
    padding-bottom: 21.0526315789vw;
  }
}
.top-features .section-title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-features .section-title {
    margin-bottom: 10.5263157895vw;
  }
}

.top-feature__item {
  position: relative;
  gap: 3.125rem;
  align-items: center;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-feature__item {
    gap: 7.8947368421vw;
    margin-bottom: 13.1578947368vw;
  }
}
.top-feature__item:last-child {
  margin-bottom: 0;
}
.top-feature__item .img {
  width: 65.8333333333%;
}
@media screen and (max-width: 768px) {
  .top-feature__item .img {
    width: 100%;
  }
}
.top-feature__item .img img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .top-feature__item .img img {
    border-radius: 2.6315789474vw;
  }
}
.top-feature__item .text {
  flex: 1;
}
.top-feature__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .top-feature__item:nth-child(2n) {
    flex-direction: column;
  }
}
.top-feature__item .illust.--01 {
  width: 12.5rem;
  top: 1.6875rem;
  left: -3.4375rem;
}
@media screen and (max-width: 768px) {
  .top-feature__item .illust.--01 {
    width: 26.3157894737vw;
    top: -7vw;
    left: -3vw;
  }
}
.top-feature__item .illust.--02 {
  width: 10rem;
  bottom: -6.6875rem;
  right: -5rem;
}
@media screen and (max-width: 768px) {
  .top-feature__item .illust.--02 {
    width: 21.0526315789vw;
    bottom: auto;
    top: 39vw;
    right: -3vw;
  }
}

.top-feature__title {
  display: flex;
  align-items: end;
  gap: 2.3125rem;
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 768px) {
  .top-feature__title {
    align-items: center;
    gap: 10.5263157895vw;
    margin-bottom: 5.7894736842vw;
  }
}
.top-feature__title .number {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1;
  color: #56a843;
  padding-bottom: 4px;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-feature__title .number {
    font-size: 7.8947368421vw;
    padding-bottom: 0;
  }
}
.top-feature__title .title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-feature__title .title {
    font-size: 5.2631578947vw;
  }
}
.top-feature__title .title::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: -3.3125rem;
  width: 4.375rem;
  height: 0.125rem;
  background-color: rgba(192, 192, 192, 0.4);
  transform: rotate(120deg);
}
@media screen and (max-width: 768px) {
  .top-feature__title .title::before {
    width: 0.3vw;
    height: 7.3684210526vw;
    transform: none;
    top: -0.6vw;
    left: -6vw;
  }
}

.top-feature__desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .top-feature__desc {
    font-size: 4.2105263158vw;
  }
}

/*------------------------
room
------------------------*/
.top-room {
  padding: 5rem 0 0;
  background-color: #faf4ea;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-room {
    padding: 13.1578947368vw 0 0;
  }
}
.top-room .section-title {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-room .section-title {
    margin-bottom: 7.8947368421vw;
  }
}
.top-room .section-lead {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-room .section-lead {
    margin-bottom: 10.5263157895vw;
  }
}
.top-room .illust.--turtle {
  width: 12.5rem;
  left: calc(50% - 600px);
  top: -80px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-room .illust.--turtle {
    width: 26.3157894737vw;
    top: -9vw;
    left: 3vw;
  }
}

.top-room__item .img {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-room__item .img {
    margin-bottom: 5.2631578947vw;
  }
}
.top-room__item .img img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .top-room__item .img img {
    border-radius: 2.6315789474vw;
  }
}
.top-room__item + .top-room__item {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-room__item + .top-room__item {
    margin-top: 13.1578947368vw;
  }
}

.top-room__detail {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-room__detail {
    padding-bottom: 5px;
    flex-direction: column;
  }
}
.top-room__detail .btn {
  width: 100%;
  cursor: pointer;
}
.top-room__detail .btn.is-open a::before {
  transform: translateY(-50%) rotate(270deg);
}
.top-room__detail .btn a {
  pointer-events: none;
  cursor: pointer;
}
.top-room__detail .btn a::before {
  transform: translateY(-50%) rotate(90deg);
}

.top-room__detail--number {
  font-size: 3.75rem;
  font-family: "Open Sans";
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #56a843;
  margin-right: 7.125rem;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .top-room__detail--number {
    font-size: 8.4210526316vw;
    display: flex;
    justify-content: center;
    gap: 2.6315789474vw;
    margin-bottom: 5.2631578947vw;
    margin-right: 0;
  }
}
.top-room__detail--number::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0.625rem;
  right: -4.375rem;
  width: 8.75rem;
  height: 0.125rem;
  background-color: rgba(192, 192, 192, 0.4);
  transform: rotate(120deg);
}
@media screen and (max-width: 768px) {
  .top-room__detail--number::before {
    display: none;
  }
}
.top-room__detail--number .number {
  display: block;
  font-size: 8rem;
  font-family: "Open Sans";
  font-weight: 700;
  line-height: 1;
  color: #56a843;
}
@media screen and (max-width: 768px) {
  .top-room__detail--number .number {
    font-size: 8.4210526316vw;
  }
}

.top-room__detail--table {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-room__detail--table {
    display: none;
    margin-top: 10.5263157895vw;
  }
}

.room-info {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .room-info {
    gap: 5.2631578947vw;
  }
}
.room-info:first-child dt,
.room-info:first-child dd {
  padding-top: 0;
}
.room-info.note dt,
.room-info.note dd {
  border: none;
  font-weight: 300;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #2b2b23;
}
@media screen and (max-width: 768px) {
  .room-info.note dt,
  .room-info.note dd {
    font-size: 3.1578947368vw;
  }
}
.room-info.note dd {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .room-info.note dd {
    max-width: 100%;
  }
}
.room-info dt {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 1.25rem 0;
  width: 100%;
  max-width: 15.625rem;
  border-bottom: 1px solid #c2c2c2;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .room-info dt {
    font-size: 3.6842105263vw;
    max-width: 36.8421052632vw;
    padding: 5.2631578947vw 0;
    align-items: start;
  }
}
@media screen and (max-width: 768px) {
  .room-info dt.pc {
    display: none !important;
  }
}
.room-info dd {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 1.25rem 0;
  width: 100%;
  max-width: 38.375rem;
  border-bottom: 1px solid #c2c2c2;
}
@media screen and (max-width: 768px) {
  .room-info dd {
    font-size: 3.6842105263vw;
    max-width: 47.3684210526vw;
    padding: 5.2631578947vw 0;
  }
}
.room-info dd .sub {
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .room-info dd .sub {
    font-size: 2.6315789474vw;
  }
}
.room-info dd small {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .room-info dd small {
    font-size: 3.1578947368vw;
    margin-top: 2.6315789474vw;
  }
}

/*------------------------
facility
------------------------*/
.top-facility {
  padding: 7.5rem 0 0;
  background-color: #faf4ea;
  background: linear-gradient(to bottom, #faf4ea 13%, #d0e9f9 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-facility {
    padding: 21.0526315789vw 0 0;
    background: linear-gradient(to bottom, #faf4ea 35%, #d0e9f9 100%);
  }
}
.top-facility .inner {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-facility .inner {
    padding-bottom: 26.3157894737vw;
  }
}
.top-facility .section-title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-facility .section-title {
    margin-bottom: 7.8947368421vw;
  }
}
.top-facility .illust {
  width: 14.375rem;
  bottom: -4.625rem;
  right: calc(50% - 681px);
}
@media (max-width: 1390px) {
  .top-facility .illust {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-facility .illust {
    width: 30.2631578947vw;
    bottom: -7vw;
    right: 2.6315789474vw;
  }
}

.top-facility__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-facility__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.8947368421vw 5.2631578947vw;
  }
}

.top-facility__item {
  display: flex;
  flex-direction: column;
}
.top-facility__item .img {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-facility__item .img {
    margin-bottom: 2.6315789474vw;
  }
}
.top-facility__item .img img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .top-facility__item .img img {
    border-radius: 2.6315789474vw;
  }
}
.top-facility__item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.top-facility__item .text .title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  color: #56a843;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-facility__item .text .title {
    font-size: 4.7368421053vw;
    margin-bottom: 2.6315789474vw;
  }
}
.top-facility__item .text .desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  min-height: 3.5em;
}
@media screen and (max-width: 768px) {
  .top-facility__item .text .desc {
    font-size: 3.6842105263vw;
  }
}
.top-facility__item .text .desc .note {
  display: block;
  font-weight: 500;
}
.top-facility__item .text .detail {
  flex: 1;
  padding: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  background-color: #fff;
  border-radius: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-facility__item .text .detail {
    padding: 2.6315789474vw;
    font-size: 3.1578947368vw;
    border-radius: 2.6315789474vw;
    margin-top: 2.6315789474vw;
  }
}

/*------------------------
activity
------------------------*/
.top-activity {
  padding: 7.5rem 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .top-activity {
    padding: 21.0526315789vw 0 7.8947368421vw;
  }
}
.top-activity .section-title {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-activity .section-title {
    margin-bottom: 10.5263157895vw;
  }
}
.top-activity .section-title .en {
  display: block;
  width: 31.25rem;
  margin: 0 auto -1.25rem;
}
@media screen and (max-width: 768px) {
  .top-activity .section-title .en {
    width: 65.7894736842vw;
    margin: 0 auto -3vw;
  }
}
.top-activity .section-title .icon {
  display: block;
  width: 6.25rem;
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-activity .section-title .icon {
    width: 21.0526315789vw;
    margin: 0 auto 2.6315789474vw;
  }
}
.top-activity .section-title .jp {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #2b2b23;
}
@media screen and (max-width: 768px) {
  .top-activity .section-title .jp {
    font-size: 6.3157894737vw;
  }
}
@media screen and (max-width: 768px) {
  .top-activity .wave-title .title {
    text-align: center;
  }
}

.top-activity__sliderTitle {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-activity__sliderTitle {
    margin-bottom: 5.2631578947vw;
  }
}

.top-activity__slider {
  padding-top: 1.875rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-activity__slider {
    padding-top: 0;
    margin-bottom: 13.1578947368vw;
  }
}

.activity__slide {
  transition: all 0.4s ease;
  position: relative;
}
.activity__slide.swiper-slide-active {
  transform: translateY(-30px);
}
@media screen and (max-width: 768px) {
  .activity__slide.swiper-slide-active {
    transform: translateY(0vw);
  }
}
.activity__slide .img {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .activity__slide .img {
    margin-bottom: 5.2631578947vw;
  }
}
.activity__slide .img img {
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .activity__slide .img img {
    border-radius: 2.6315789474vw;
  }
}

.activity__slide--main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 768px) {
  .activity__slide--main {
    font-size: 4.2105263158vw;
    margin-bottom: 2.6315789474vw;
  }
}

.activity__slide--sub {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .activity__slide--sub {
    font-size: 3.6842105263vw;
    text-align: left;
  }
}

.swiper-buttons {
  width: 37.5vw;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .swiper-buttons {
    width: 92%;
    top: 30vw;
  }
}
.swiper-buttons .swiper-navigation-icon {
  display: none;
}
.swiper-buttons.--green .swiper-button-prev,
.swiper-buttons.--green .swiper-button-next {
  background: no-repeat center/contain url(../images/slider-arrow-green.png);
}
.swiper-buttons .swiper-button-prev,
.swiper-buttons .swiper-button-next {
  position: static !important;
  width: 0.625rem;
  height: 1.875rem;
  background: no-repeat center/contain url(../images/slider-arrow-blue.png);
}
@media screen and (max-width: 768px) {
  .swiper-buttons .swiper-button-prev,
  .swiper-buttons .swiper-button-next {
    width: 2.6315789474vw;
    height: 7.8947368421vw;
  }
}
.swiper-buttons .swiper-button-next {
  transform: rotate(180deg);
}

.top-activity-info {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .top-activity-info {
    padding-bottom: 16vw;
  }
}
.top-activity-info .inner {
  max-width: 1025px;
  background-color: #f2fbfd;
  border-radius: 0.625rem;
  padding: 3.75rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-activity-info .inner {
    max-width: calc(100% - 10vw);
    padding: 13.1578947368vw 5.2631578947vw;
    border-radius: 2.6315789474vw;
  }
}
.top-activity-info .inner .illust.--man {
  width: 9.375rem;
  bottom: -4.375rem;
  left: -3.75rem;
}
@media screen and (max-width: 768px) {
  .top-activity-info .inner .illust.--man {
    width: 19.7368421053vw;
    bottom: auto;
    top: -8vw;
    left: -4vw;
  }
}
.top-activity-info .inner .illust.--fish {
  width: 12.5rem;
  top: 11.6875rem;
  right: -3.25rem;
}
@media screen and (max-width: 768px) {
  .top-activity-info .inner .illust.--fish {
    width: 26.3157894737vw;
    top: -5vw;
    right: -3vw;
  }
}
.top-activity-info .inner .illust.--sea {
  width: 12.5rem;
  bottom: -4.625rem;
  right: -1.875rem;
}
@media screen and (max-width: 768px) {
  .top-activity-info .inner .illust.--sea {
    width: 26.3157894737vw;
    bottom: -12vw;
    right: -3vw;
  }
}
.top-activity-info .btn {
  margin-top: -1.875rem;
}
@media screen and (max-width: 768px) {
  .top-activity-info .btn {
    margin-top: 0;
  }
}

.top-activity-info__title {
  font-size: 1.875rem;
  color: #37afda;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: bold;
  text-align: center;
}
.top-activity-info__title span {
  color: #37afda;
}
@media screen and (max-width: 768px) {
  .top-activity-info__title {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
}

.top-activity-info__text {
  max-width: 43.75rem;
  margin: 0 auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-activity-info__text {
    max-width: 100%;
    font-size: 4.2666666667vw;
    margin-bottom: 7.8947368421vw;
  }
}

/*------------------------
もっと知りたい！
------------------------*/
.top-know {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-know {
    padding-bottom: 21.0526315789vw;
  }
}
.top-know .inner {
  gap: 3.125rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-know .inner {
    gap: 0rem;
  }
}

.top-know__img {
  width: 65.8333333333%;
}
@media screen and (max-width: 768px) {
  .top-know__img {
    width: 100%;
    order: 2;
    margin-bottom: 5.2631578947vw;
  }
}
.top-know__img img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .top-know__img img {
    border-radius: 2.6315789474vw;
  }
}

.top-know__text {
  flex-shrink: 0;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-know__text {
    display: contents;
  }
}
.top-know__text .title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #37afda;
  margin-bottom: 3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-know__text .title {
    font-size: 5.2631578947vw;
    margin-bottom: 0;
    padding-top: 7.8947368421vw;
    order: 1;
  }
}
.top-know__text .title::before {
  display: block;
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  width: 23.75rem;
  height: 5.625rem;
  background: no-repeat center/contain url(../images/know-title-bg.png);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-know__text .title::before {
    width: 89.4736842105vw;
    height: 22.8947368421vw;
    background: no-repeat center/contain url(../images/know-title-bg_sp.png);
    top: 1vw;
    left: -16vw;
  }
}
@media screen and (max-width: 768px) {
  .top-know__text .text {
    order: 3;
  }
}
.top-know__text .desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-know__text .desc {
    font-size: 4.2105263158vw;
    margin-bottom: 7.8947368421vw;
  }
}
.top-know__text .btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-know__text .btn {
    margin: 0 auto;
  }
}

/*------------------------
price
------------------------*/
.top-price {
  background-color: #eff6e3;
  padding: 3.125rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .top-price {
    padding: 13.1578947368vw 0;
  }
}
.top-price .section-title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-price .section-title {
    margin-bottom: 7.8947368421vw;
  }
}
.top-price .wave-title {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-price .wave-title {
    margin-bottom: 5.2631578947vw;
  }
}

.top-price__note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #da1200;
  margin-bottom: 2.875rem;
}
@media screen and (max-width: 768px) {
  .top-price__note {
    font-size: 3.6842105263vw;
    margin-bottom: 10vw;
  }
}

.top-price__wrapper {
  max-width: 62.5rem;
  margin: 0 auto 2.5rem;
}
.top-price__wrapper + .btn {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  .top-price__wrapper + .btn {
    margin-bottom: 13.1578947368vw;
  }
}
@media screen and (max-width: 768px) {
  .top-price__wrapper {
    margin: 0 auto 7.8947368421vw;
  }
}

.top-price__btns {
  display: flex;
  gap: 0.25rem;
  width: 100%;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .top-price__btns {
    gap: 1.1vw;
    align-items: end;
  }
}

.top-price__btn {
  width: calc(25% - 3px);
  overflow: hidden;
  padding: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-price__btn {
    pointer-events: auto;
    font-size: 3.1578947368vw;
    height: 7.8947368421vw;
    width: calc((100% - 26.3vw - 3.3vw) / 3);
  }
}
@media screen and (max-width: 768px) {
  .top-price__btn.is-active {
    height: 10.5263157895vw;
  }
}
@media screen and (max-width: 768px) {
  .top-price__btn.is-active .text {
    font-size: 3.6842105263vw;
  }
}
.top-price__btn span.text {
  width: 100%;
  height: 100%;
  background-color: #56a843;
  border-radius: 10px 10px 0 0;
  color: #fff;
  min-height: 4.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-price__btn span.text {
    min-height: 7.8947368421vw;
    font-size: 3.1578947368vw;
  }
}
.top-price__btn:nth-child(2) .text {
  background-color: #2d7e1b;
}
.top-price__btn:nth-child(3) .text {
  color: #2b2b23;
  background-color: #aedaa4;
}

.top-price__table dl {
  margin-bottom: 0.25rem;
  display: flex;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .top-price__table dl {
    margin-bottom: 1.1vw;
    gap: 1.1vw;
  }
}
.top-price__table dl:last-child {
  margin-bottom: 0;
}
.top-price__table dl dt,
.top-price__table dl dd {
  background-color: #fff;
  width: 100%;
  min-height: 5.625rem;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dt,
  .top-price__table dl dd {
    min-height: 15.7894736842vw;
  }
}
.top-price__table dl dt {
  width: 25%;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dt {
    width: 26.3157894737vw;
    font-size: 3.6842105263vw;
  }
}
.top-price__table dl dt.top-left {
  border-radius: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dt.top-left {
    border-radius: 2.6315789474vw 0 0;
  }
}
.top-price__table dl dt.bottom-left {
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dt.bottom-left {
    border-radius: 0 0 0 2.6315789474vw;
  }
}
.top-price__table dl dd {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: calc(25% - 3px);
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dd {
    display: none;
    font-size: 4.2105263158vw;
    width: calc(100% - 26.3vw - 1.1vw);
    padding: 4.2105263158vw;
  }
  .top-price__table dl dd.is-active {
    display: block;
  }
}
.top-price__table dl dd.all {
  font-size: 1.25rem;
  font-weight: 500;
  width: calc(75% - 3px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dd.all {
    font-size: 4.2105263158vw;
    width: calc(100% - 26.3vw - 1.1vw);
  }
}
.top-price__table dl dd.bottom-right {
  border-radius: 0 0 10px 0px;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dd.bottom-right {
    border-radius: 0 0 2.6315789474vw 0;
  }
}
.top-price__table dl dd .red {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #da1200;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-price__table dl dd .red {
    font-size: 3.1578947368vw;
    margin-top: 1.5789473684vw;
  }
}

.top-price__child .wave-title {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-price__child .wave-title {
    margin-bottom: 5.2631578947vw;
  }
}

.top-price__option {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-price__option {
    margin-bottom: 10.5263157895vw;
  }
}
.top-price__option .wave-title {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-price__option .wave-title {
    margin-bottom: 5.2631578947vw;
  }
}
.top-price__option .top-price__item .main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-price__option .top-price__item .desc {
  flex: auto;
}

.top-price__items {
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-price__items {
    gap: 5.2631578947vw;
  }
}
.top-price__items.--price {
  max-width: 52.5rem;
  margin: 0 auto 4.375rem;
}
@media screen and (max-width: 768px) {
  .top-price__items.--price {
    margin: 0 auto 13.1578947368vw;
  }
}
.top-price__items.--option .top-price__item:nth-child(1) .room {
  width: 6.25rem;
}
@media screen and (max-width: 768px) {
  .top-price__items.--option .top-price__item:nth-child(1) .room {
    width: 26.3157894737vw;
  }
}
.top-price__items.--option .top-price__item:nth-child(2) .room {
  width: 4.75rem;
}
@media screen and (max-width: 768px) {
  .top-price__items.--option .top-price__item:nth-child(2) .room {
    width: 20vw;
  }
}
.top-price__items.--option .top-price__item:nth-child(3) .room {
  width: 4.75rem;
}
@media screen and (max-width: 768px) {
  .top-price__items.--option .top-price__item:nth-child(3) .room {
    width: 20vw;
  }
}
.top-price__items.--option .top-price__item .main {
  min-height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-price__items.--option .top-price__item .main {
    min-height: auto;
  }
}
.top-price__items.--option .top-price__item .main .detail {
  text-align: left;
  width: 100%;
  font-size: 0.875rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-price__items.--option .top-price__item .main .detail {
    font-size: 3.6842105263vw;
  }
}
.top-price__items.--option .top-price__item .main .detail .room {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.top-price__items.--option .top-price__item .main .detail .room .line {
  display: block;
  width: 100%;
  height: 2px;
  margin-left: 5px;
  background-image: url(../images/dot.svg);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
.top-price__items.--option .top-price__item .desc {
  margin-top: auto;
}

.top-price__item {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.25rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-price__item {
    padding: 5.2631578947vw 2.6315789474vw;
    border-radius: 2.6315789474vw;
  }
}
.top-price__item .sub {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: #56a843;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-price__item .sub {
    font-size: 4.2105263158vw;
    margin-bottom: 2.6315789474vw;
  }
}
.top-price__item .sub .small {
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-price__item .sub .small {
    font-size: 3.1578947368vw;
  }
}
.top-price__item .main {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-price__item .main {
    font-size: 5.2631578947vw;
    margin-bottom: 2.6315789474vw;
  }
}
.top-price__item .desc {
  font-size: 0.8125rem;
  line-height: 1.8;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-price__item .desc {
    font-size: 3.1578947368vw;
  }
}

.top-price__cautionWrapper {
  max-width: 62.5rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  padding: 5rem 4.375rem 5rem;
  background: linear-gradient(to bottom, #e0f3e1 35%, #cdecee 100%);
}
@media screen and (max-width: 768px) {
  .top-price__cautionWrapper {
    padding: 14.4736842105vw 5.2631578947vw 5.2631578947vw;
  }
}

.caution-icon {
  width: 4.375rem;
  margin: 0 auto -3.125rem;
}
@media screen and (max-width: 768px) {
  .caution-icon {
    width: 13.1578947368vw;
    margin-bottom: -6.5789473684vw;
  }
}

.top-price__cautionTitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-price__cautionTitle {
    font-size: 6.3157894737vw;
    margin-bottom: 7.8947368421vw;
  }
}

.caution-list {
  max-width: 43.75rem;
  margin: 0 auto 3.125rem;
}
@media screen and (max-width: 768px) {
  .caution-list {
    margin: 0 auto 13.1578947368vw;
  }
}
.caution-list li {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .caution-list li {
    font-size: 3.6842105263vw;
    margin-bottom: 2.6315789474vw;
    padding-left: 5.2631578947vw;
  }
}
.caution-list li dl dt,
.caution-list li dl dd {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .caution-list li dl dt,
  .caution-list li dl dd {
    font-size: 3.1578947368vw;
  }
}
.caution-list li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #37AFDA;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .caution-list li::before {
    width: 2.6315789474vw;
    height: 2.6315789474vw;
    top: 1.9vw;
  }
}
.caution-list li span.normal dl {
  display: flex;
  font-weight: normal;
}
.caution-list li span.normal dl dt {
  width: 7.25rem;
}
@media screen and (max-width: 768px) {
  .caution-list li span.normal dl dt {
    width: 27.8947368421vw;
  }
}
.caution-list li span.normal dl dd {
  flex: 1;
}

.top-price__cancel {
  border-radius: 0.625rem;
  padding: 2.5rem 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top-price__cancel {
    border-radius: 2.6315789474vw;
    padding: 5.2631578947vw;
  }
}
.top-price__cancel .main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #37afda;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .top-price__cancel .main {
    font-size: 4.2105263158vw;
    margin-bottom: 3.9473684211vw;
  }
}
.top-price__cancel .detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 21.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-price__cancel .detail {
    gap: 0.7894736842vw;
    max-width: 100%;
  }
}
.top-price__cancel .deadline {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .top-price__cancel .deadline {
    font-size: 3.6842105263vw;
    white-space: nowrap;
  }
}
.top-price__cancel .line {
  display: block;
  flex: 1;
  width: 100%;
  height: 2px;
  background-image: url(../images/dot.svg);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
.top-price__cancel .rate {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.2;
  width: 2.5625rem;
}
@media screen and (max-width: 768px) {
  .top-price__cancel .rate {
    font-size: 3.6842105263vw;
    width: 9.4736842105vw;
  }
}

/*------------------------
cta
------------------------*/
.cta {
  padding: 3.125rem 0;
  background: no-repeat center/cover url(../images/cta_bg.jpg);
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 13.1578947368vw 0;
    background: no-repeat center/cover url(../images/cta_bg_sp.jpg);
  }
}
.cta .inner {
  max-width: 62.5rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta .inner {
    flex-direction: column;
  }
}
.cta .inner::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
  width: 1px;
  height: 86%;
  background-color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 768px) {
  .cta .inner::after {
    display: none;
  }
}

.cta__tel,
.cta__mail {
  width: 21.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__tel,
  .cta__mail {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .cta__tel {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 13.1578947368vw;
    margin-bottom: 13.1578947368vw;
  }
}

.cta__top {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2.75rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cta__top {
    font-size: 6.3157894737vw;
    margin-bottom: 5.2631578947vw;
    gap: 2.6315789474vw;
  }
}
.cta__top .icon {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .cta__top .icon {
    width: 7.8947368421vw;
    height: 7.8947368421vw;
  }
}

.cta__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 2.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cta__number {
    font-size: 8.4210526316vw;
    margin-bottom: 5.2631578947vw;
  }
}
.cta__number .small {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .cta__number .small {
    font-size: 5.2631578947vw;
    margin-right: 1.3157894737vw;
  }
}

.cta__tel--desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .cta__tel--desc {
    font-size: 3.1578947368vw;
  }
}

.cta__mail .cta__top {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta__mail .cta__top {
    margin-bottom: 5.2631578947vw;
  }
}

.cta__mail--desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta__mail--desc {
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
  }
}

/*------------------------
qa
------------------------*/
.qa {
  padding: 7.5rem 0 9.6875rem;
  background-color: #eff6e3;
}
@media screen and (max-width: 768px) {
  .qa {
    padding: 13.1578947368vw 0 26.3157894737vw;
  }
}
.qa + .wave {
  margin-top: -2.75rem;
}
@media screen and (max-width: 768px) {
  .qa + .wave {
    margin-top: -6.0526315789vw;
  }
}
.qa .inner {
  position: relative;
  max-width: 1025px;
}
.qa .section-title {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .qa .section-title {
    margin-bottom: 7.8947368421vw;
  }
}
.qa .illust {
  z-index: 1;
}
.qa .illust.--fish {
  width: 12.5rem;
  bottom: -9.375rem;
  left: -9.375rem;
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .qa .illust.--fish {
    width: 26.3157894737vw;
    bottom: -30vw;
    left: 2vw;
  }
}
.qa .illust.--sea {
  width: 11.25rem;
  bottom: -12.5rem;
  right: -9.375rem;
}
@media screen and (max-width: 768px) {
  .qa .illust.--sea {
    width: 26.3157894737vw;
    bottom: -40vw;
    right: 2vw;
  }
}

.conjugate__item {
  max-width: 43.75rem;
  margin: 0 auto;
}

.conjugate__item {
  position: relative;
  padding: 1.5625rem 0 1.25rem;
  border-top: 0.0625rem solid #c2c2c2;
}
@media screen and (max-width: 768px) {
  .conjugate__item {
    padding: 5.2631578947vw 0 4vw;
  }
}
.conjugate__item:last-of-type {
  border-bottom: 0.0625rem solid #c2c2c2;
}
.conjugate__item.open .button {
  background-color: #56A843;
}
.conjugate__item.open .button::before {
  background-color: #fff;
}
.conjugate__item.open .button::after {
  display: none;
}
.conjugate__item .button {
  display: block;
  position: absolute;
  top: 15px;
  right: 0px;
  width: 40px;
  height: 40px;
  z-index: 5;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #56A843;
}
@media screen and (max-width: 768px) {
  .conjugate__item .button {
    width: 7.8947368421vw;
    height: 7.8947368421vw;
    top: 5vw;
  }
}
.conjugate__item .button::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background-color: #56A843;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .conjugate__item .button::before {
    width: 3.6842105263vw;
  }
}
.conjugate__item .button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 14px;
  background-color: #56A843;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .conjugate__item .button::after {
    height: 3.6842105263vw;
  }
}

.conjugate__q {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  padding-inline: 3.75rem 3.125rem;
  position: relative;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .conjugate__q {
    font-size: 4.2105263158vw;
    padding-inline: 10.5263157895vw 10.5263157895vw;
  }
}
.conjugate__q::before {
  display: block;
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 40px;
  height: 40px;
  transition: opacity 0.4s ease;
  background: no-repeat center/contain url(../images/q-icon.svg);
}
@media screen and (max-width: 768px) {
  .conjugate__q::before {
    top: -0.5vw;
    width: 7.8947368421vw;
    height: 7.8947368421vw;
  }
}

.conjugate__a {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 1.5625rem 2.5rem 1.25rem 5.625rem;
  background-color: #e0f3e1;
  display: none;
  margin-top: 1.25rem;
  position: relative;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .conjugate__a {
    font-size: 3.6842105263vw;
    padding: 3.9473684211vw 5.2631578947vw 2.6315789474vw 13.1578947368vw;
    border-radius: 2.6315789474vw;
    margin-top: 5.2631578947vw;
  }
}
.conjugate__a::before {
  display: block;
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.875rem;
  width: 40px;
  height: 40px;
  transition: opacity 0.4s ease;
  background: no-repeat center/contain url(../images/a-icon.svg);
}
@media screen and (max-width: 768px) {
  .conjugate__a::before {
    top: 3.1578947368vw;
    left: 2.6315789474vw;
    width: 7.8947368421vw;
    height: 7.8947368421vw;
  }
}

/*------------------------
access
------------------------*/
.access {
  background-color: #d0e9f9;
  padding: 3.75rem 0 7.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 21.0526315789vw 0 26.3157894737vw;
  }
}
.access .illust {
  width: 12.5rem;
  top: -4vw;
  right: calc(50% - 600px);
}
@media screen and (max-width: 768px) {
  .access .illust {
    width: 26.3157894737vw;
    right: 2vw;
  }
}
.access .section-title {
  margin-bottom: 3.125rem;
  color: #37AFDA;
}
@media screen and (max-width: 768px) {
  .access .section-title {
    margin-bottom: 7.8947368421vw;
  }
}
.access .section-lead {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .access .section-lead {
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
  }
}

.access__wrapper {
  padding: 1.875rem;
  border-radius: 0.625rem;
  background-color: #fff;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .access__wrapper {
    padding: 5.2631578947vw 2.6315789474vw;
    margin-bottom: 13.1578947368vw;
    border-radius: 0 0 2.6315789474vw 2.6315789474vw;
  }
}
.access__wrapper img {
  max-width: 56.25rem;
  margin: 0 auto;
}

.access__tabBtns {
  display: none;
}
@media screen and (max-width: 768px) {
  .access__tabBtns {
    display: flex;
    align-items: end;
    gap: 1.3157894737vw;
  }
}

.access__tabBtn {
  flex: 1;
  padding: 1.3157894737vw 0;
  font-size: 3.1578947368vw;
  font-weight: 700;
  color: #fff;
  border: none;
  background-color: #919191;
  border-radius: 2.6315789474vw 2.6315789474vw 0px 0px;
  height: 7.8947368421vw;
  cursor: pointer;
  transition: background-color 0.3s;
}
.access__tabBtn.is-active {
  background-color: #37AFDA;
  font-size: 3.6842105263vw;
  height: 10.5263157895vw;
}

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

.access__desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  max-width: 43.75rem;
  margin: 0 auto 2.9375rem;
}
@media screen and (max-width: 768px) {
  .access__desc {
    font-size: 4.2105263158vw;
    margin-bottom: 13.1578947368vw;
  }
}

.access__map {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .access__map {
    margin-bottom: 5.2631578947vw;
  }
}
.access__map iframe {
  aspect-ratio: 1200/480;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .access__map iframe {
    aspect-ratio: 1/1;
  }
}

.access__detail {
  display: flex;
  gap: 7.5rem;
}
@media screen and (max-width: 768px) {
  .access__detail {
    flex-direction: column;
    gap: 7.8947368421vw;
  }
}
.access__detail .item {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .access__detail .item {
    flex-direction: column;
    gap: 2.6315789474vw;
  }
}
.access__detail .item .title {
  width: 10rem;
  height: 3.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .access__detail .item .title {
    width: 100%;
    height: 10.5263157895vw;
    font-size: 5.2631578947vw;
    border-radius: 2.6315789474vw;
  }
}
.access__detail .item .text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .access__detail .item .text {
    font-size: 4.2105263158vw;
  }
}
.access__detail .item .text small {
  font-size: 0.625rem;
}
@media screen and (max-width: 768px) {
  .access__detail .item .text small {
    font-size: 2.6315789474vw;
  }
}
.access__detail .item .text a {
  color: #37AFDA;
}

form#mailformpro dl dt {
  border: none !important;
}
form#mailformpro dl dd {
  border: none !important;
  padding: 0 !important;
}

/*------------------------
contact
------------------------*/
#mfp_OperationCheck {
  display: none;
}

div.mfp_err {
  background: none;
  padding: 0 0 0 0;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button,
button.mfp_next,
button.mfp_prev {
  text-shadow: none;
  background: none;
  border: none;
  padding: 0;
}

#mfp_thanks {
  display: none;
}

/***********************/
input,
select,
.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  font-size: 1rem;
  width: 100%;
  color: #2b2b23;
  min-height: 3.75rem;
  background-color: #f2fbfd !important;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #c2c2c2;
  padding: 1.25rem;
  box-shadow: none;
  margin: 0;
  text-align: left !important;
}
@media screen and (max-width: 768px) {
  input,
  select,
  .mfp_element_text,
  .mfp_element_number,
  .mfp_element_select-one,
  .mfp_element_email,
  .mfp_element_tel,
  .mfp_element_textarea,
  .mfp_element_date,
  .mfp_element_password {
    font-size: 4.2105263158vw;
    min-height: 13.1578947368vw;
    border-radius: 1.3157894737vw;
    padding: 4.2105263158vw 2.6315789474vw;
  }
}
input::-moz-placeholder, select::-moz-placeholder, .mfp_element_text::-moz-placeholder, .mfp_element_number::-moz-placeholder, .mfp_element_select-one::-moz-placeholder, .mfp_element_email::-moz-placeholder, .mfp_element_tel::-moz-placeholder, .mfp_element_textarea::-moz-placeholder, .mfp_element_date::-moz-placeholder, .mfp_element_password::-moz-placeholder {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #939393;
}
input::placeholder,
select::placeholder,
.mfp_element_text::placeholder,
.mfp_element_number::placeholder,
.mfp_element_select-one::placeholder,
.mfp_element_email::placeholder,
.mfp_element_tel::placeholder,
.mfp_element_textarea::placeholder,
.mfp_element_date::placeholder,
.mfp_element_password::placeholder {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #939393;
}
@media screen and (max-width: 768px) {
  input::-moz-placeholder, select::-moz-placeholder, .mfp_element_text::-moz-placeholder, .mfp_element_number::-moz-placeholder, .mfp_element_select-one::-moz-placeholder, .mfp_element_email::-moz-placeholder, .mfp_element_tel::-moz-placeholder, .mfp_element_textarea::-moz-placeholder, .mfp_element_date::-moz-placeholder, .mfp_element_password::-moz-placeholder {
    font-size: 4.2105263158vw;
  }
  input::placeholder,
  select::placeholder,
  .mfp_element_text::placeholder,
  .mfp_element_number::placeholder,
  .mfp_element_select-one::placeholder,
  .mfp_element_email::placeholder,
  .mfp_element_tel::placeholder,
  .mfp_element_textarea::placeholder,
  .mfp_element_date::placeholder,
  .mfp_element_password::placeholder {
    font-size: 4.2105263158vw;
  }
}

textarea,
.mfp_element_textarea {
  font-size: 1rem;
  line-height: 1.8;
  width: 100% !important;
  height: auto !important;
  min-height: 10.625rem;
  background-color: #f2fbfd;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #c2c2c2;
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  textarea,
  .mfp_element_textarea {
    font-size: 4.2105263158vw;
    padding: 4.2105263158vw 2.6315789474vw;
    border-radius: 1.3157894737vw;
    min-height: 44.7368421053vw;
  }
}
textarea::-moz-placeholder, .mfp_element_textarea::-moz-placeholder {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #939393;
}
textarea::placeholder,
.mfp_element_textarea::placeholder {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #939393;
}
@media screen and (max-width: 768px) {
  textarea::-moz-placeholder, .mfp_element_textarea::-moz-placeholder {
    font-size: 4.2105263158vw;
  }
  textarea::placeholder,
  .mfp_element_textarea::placeholder {
    font-size: 4.2105263158vw;
  }
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 0.9375rem;
  height: 0.625rem;
  background: no-repeat center/contain url(../images/select-arrow.svg);
}
@media screen and (max-width: 768px) {
  .select-wrapper::after {
    right: 4.7368421053vw;
    width: 3.6842105263vw;
    height: 2.6315789474vw;
  }
}

.contact {
  padding: 1.875rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 21.0526315789vw 0;
  }
}
.contact .section-title {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .contact .section-title {
    margin-bottom: 7.8947368421vw;
  }
}
.contact .section-lead {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .contact .section-lead {
    margin-bottom: 5.2631578947vw;
    text-align: left;
  }
}
.contact .section-lead + .caution {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #da1200;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .contact .section-lead + .caution {
    font-size: 3.1578947368vw;
    margin-bottom: 13.1578947368vw;
    text-align: left;
  }
}

form#mailformpro {
  max-width: 43.75rem;
  margin: 0 auto;
  padding: 0 !important;
}
form#mailformpro .form__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #56a843;
  position: relative;
  padding-left: 0.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__title {
    font-size: 5.2631578947vw;
    padding-left: 5.7894736842vw;
    margin-bottom: 7.8947368421vw;
  }
}
form#mailformpro .form__title::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  background-color: #56a843;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__title::before {
    width: 3.1578947368vw;
    height: 3.1578947368vw;
    top: 1vw;
  }
}
form#mailformpro .form__items {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__items {
    margin-bottom: 13.1578947368vw;
  }
}
form#mailformpro .form__dl {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl {
    flex-direction: column;
    gap: 2.6315789474vw;
  }
}
form#mailformpro .form__dl + .form__dl {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl + .form__dl {
    margin-top: 7.8947368421vw;
  }
}
form#mailformpro .form__dl.early-checkin dt {
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl.early-checkin dt {
    font-size: 3.6842105263vw;
  }
}
form#mailformpro .form__dl .--radio {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl .--radio {
    margin-top: 7.8947368421vw;
  }
}
form#mailformpro .form__dl dt {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  padding-top: 1.375rem;
  flex-shrink: 0;
  width: 8.75rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl dt {
    font-size: 4.2105263158vw;
    padding-top: 0;
    width: 100%;
  }
}
form#mailformpro .form__dl dt .required {
  color: #da1200;
}
form#mailformpro .form__dl dd {
  font-size: 1rem;
  flex: 1;
  max-width: 33.75rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl dd {
    font-size: 4.2105263158vw;
    max-width: 100%;
  }
}
form#mailformpro .form__dl dd .attention {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #da1200;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl dd .attention {
    font-size: 3.1578947368vw;
    margin-bottom: 2.6315789474vw;
  }
}
form#mailformpro .form__dl dd .form_dd_flexWrapper {
  display: flex;
  align-items: center;
}
form#mailformpro .form__dl dd .unit {
  margin-inline: 0.625rem 1.875rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl dd .unit {
    margin-inline: 2.6315789474vw 3.1578947368vw;
  }
}
form#mailformpro .form__dl .--short {
  width: 18.75rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl .--short {
    width: 52.6315789474vw;
  }
}
form#mailformpro .form__dl .--time {
  width: 8.75rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .form__dl .--time {
    width: 34.2105263158vw;
  }
}
form#mailformpro .radio-wrapper {
  display: flex;
  gap: 5rem;
  padding-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .radio-wrapper {
    gap: 21.0526315789vw;
    padding-top: 0;
  }
}
form#mailformpro .radio-wrapper input:checked ~ .radio-label::after {
  display: block;
}
form#mailformpro .radio-label {
  position: relative;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .radio-label {
    padding-left: 7.8947368421vw;
  }
}
form#mailformpro .radio-label::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f2fbfd;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #c2c2c2;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  form#mailformpro .radio-label::before {
    width: 5.2631578947vw;
    height: 5.2631578947vw;
  }
}
form#mailformpro .radio-label::after {
  display: none;
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #2b2b23;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  form#mailformpro .radio-label::after {
    top: 1.0526315789vw;
    left: 1.0526315789vw;
    width: 3.1578947368vw;
    height: 3.1578947368vw;
  }
}
form#mailformpro .check-input:checked ~ .check-label::after {
  display: block;
}
form#mailformpro .check-label {
  position: relative;
  padding-left: 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  form#mailformpro .check-label {
    padding-left: 7.8947368421vw;
    font-size: 4.2105263158vw;
  }
}
form#mailformpro .check-label::before {
  display: block;
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  background-color: #f2fbfd;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #c2c2c2;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  form#mailformpro .check-label::before {
    top: -0.5vw;
    width: 5.2631578947vw;
    height: 5.2631578947vw;
  }
}
form#mailformpro .check-label::after {
  display: none;
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 0.75rem;
  height: 0.375rem;
  transform: rotate(-45deg);
  border-left: 1px solid #2b2b23;
  border-bottom: 1px solid #2b2b23;
}
@media screen and (max-width: 768px) {
  form#mailformpro .check-label::after {
    top: 1.0526315789vw;
    left: 1.0526315789vw;
    width: 3.1578947368vw;
    height: 1.5789473684vw;
  }
}
form#mailformpro .check-input:checked ~ .check-label::after {
  display: block;
}
form#mailformpro .privacy-check {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .privacy-check {
    margin-bottom: 10.5263157895vw;
  }
}
form#mailformpro .privacy-check__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  form#mailformpro .privacy-check__text {
    font-size: 4.2105263158vw;
    margin-bottom: 7.8947368421vw;
    white-space: nowrap;
  }
}
form#mailformpro .privacy-check__link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #da1200;
  margin-bottom: 1.25rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  form#mailformpro .privacy-check__link {
    font-size: 4.2105263158vw;
    margin-bottom: 5.2631578947vw;
  }
}
form#mailformpro .privacy-check__check {
  text-align: center;
}
form#mailformpro .privacy-check__check + .mfp_err {
  text-align: center;
}

/*------------------------
確認画面
------------------------*/
div#mfp_phase_confirm h4 {
  font-size: 26px;
  padding: 10px 0px 20px 0px;
}

/*------------------------
送信ボタン
------------------------*/
#mfp_phase_confirm_inner .mfp_buttons,
#mfp_overlay_inner .mfp_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  #mfp_phase_confirm_inner .mfp_buttons,
  #mfp_overlay_inner .mfp_buttons {
    flex-direction: column-reverse;
    gap: 2vw;
  }
}
#mfp_phase_confirm_inner #mfp_confirm_table,
#mfp_overlay_inner #mfp_confirm_table {
  margin-bottom: 1.25rem;
}
#mfp_phase_confirm_inner #mfp_button_send,
#mfp_phase_confirm_inner #mfp_button_cancel,
#mfp_overlay_inner #mfp_button_send,
#mfp_overlay_inner #mfp_button_cancel {
  width: 100%;
  max-width: 19.375rem;
  height: 3.75rem;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #56a843;
  font-size: 1rem;
  text-align: center;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  #mfp_phase_confirm_inner #mfp_button_send,
  #mfp_phase_confirm_inner #mfp_button_cancel,
  #mfp_overlay_inner #mfp_button_send,
  #mfp_overlay_inner #mfp_button_cancel {
    max-width: 78.9473684211vw;
    height: 15.7894736842vw;
    border-radius: 50vw;
    font-size: 4.2105263158vw;
  }
}
#mfp_phase_confirm_inner #mfp_button_send:hover,
#mfp_phase_confirm_inner #mfp_button_cancel:hover,
#mfp_overlay_inner #mfp_button_send:hover,
#mfp_overlay_inner #mfp_button_cancel:hover {
  background-color: #2c8816 !important;
  background: none;
  box-shadow: none;
}
#mfp_phase_confirm_inner #mfp_button_send::before,
#mfp_phase_confirm_inner #mfp_button_cancel::before,
#mfp_overlay_inner #mfp_button_send::before,
#mfp_overlay_inner #mfp_button_cancel::before {
  display: block;
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.625rem;
  background: no-repeat center/contain url(../images/btn-arrow.png);
}
@media screen and (max-width: 768px) {
  #mfp_phase_confirm_inner #mfp_button_send::before,
  #mfp_phase_confirm_inner #mfp_button_cancel::before,
  #mfp_overlay_inner #mfp_button_send::before,
  #mfp_overlay_inner #mfp_button_cancel::before {
    right: 5.2631578947vw;
    width: 3.1578947368vw;
    height: 2.6315789474vw;
  }
}
#mfp_phase_confirm_inner #mfp_button_send::after,
#mfp_phase_confirm_inner #mfp_button_cancel::after,
#mfp_overlay_inner #mfp_button_send::after,
#mfp_overlay_inner #mfp_button_cancel::after {
  display: block;
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: -0.3125rem;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid #56a843;
  border-radius: 6.25rem;
}
#mfp_phase_confirm_inner #mfp_button_cancel,
#mfp_overlay_inner #mfp_button_cancel {
  background-color: #a2a2a2 !important;
}
#mfp_phase_confirm_inner #mfp_button_cancel:hover,
#mfp_overlay_inner #mfp_button_cancel:hover {
  background-color: #7e7e7e !important;
}
#mfp_phase_confirm_inner #mfp_button_cancel:hover::after,
#mfp_overlay_inner #mfp_button_cancel:hover::after {
  border: 1px solid #7e7e7e !important;
}
#mfp_phase_confirm_inner #mfp_button_cancel::before,
#mfp_overlay_inner #mfp_button_cancel::before {
  right: auto;
  left: 1.25rem;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 768px) {
  #mfp_phase_confirm_inner #mfp_button_cancel::before,
  #mfp_overlay_inner #mfp_button_cancel::before {
    left: 5.2631578947vw;
  }
}
#mfp_phase_confirm_inner #mfp_button_cancel::after,
#mfp_overlay_inner #mfp_button_cancel::after {
  border: 1px solid #a2a2a2 !important;
}

/*------------------------
thanks
------------------------*/
.thanks {
  padding: 7.5rem 0;
}
.thanks .section-title {
  margin-bottom: 3.75rem;
}
.thanks .section-lead {
  margin-bottom: 3.75rem;
}/*# sourceMappingURL=styles.css.map */