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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

p {
  margin: 0;
}

.pc {
  display: block;
}
@media (max-width: 1023px) {
  .pc {
    display: none !important;
  }
}

.pc-inline {
  display: inline;
}
@media (max-width: 1023px) {
  .pc-inline {
    display: none !important;
  }
}

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

br.sp {
  display: none;
}
@media (max-width: 1023px) {
  br.sp {
    display: inline;
  }
}

br.pc {
  display: inline;
}
@media (max-width: 1023px) {
  br.pc {
    display: none;
  }
}

.c-primary {
  color: #29C5B5;
}

.c-yellow {
  color: #F0C11D;
}

.c-green {
  color: #7FB647;
}

.c-green-light {
  color: #B1C73E;
}

.c-teal-grad {
  background: linear-gradient(90deg, #29C5B5, #85CBCD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.u-underline {
  text-decoration: underline;
}

.u-mt-8 {
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .hero {
    height: 100%;
    min-height: unset;
  }
}
.hero__bg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .hero__bg {
    position: unset;
  }
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 1023px) {
  .hero__bg img {
    object-position: unset;
  }
}
.hero__inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: normal;
  width: max-content;
  height: 100%;
  text-align: center;
}
@media (max-width: 1023px) {
  .hero__inner {
    display: block;
    bottom: unset;
    top: 1.25rem;
    height: auto;
  }
}
.hero__sub {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.8px;
  text-align: left;
  padding-left: 2rem;
}
.hero__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../img/svg/header__sub.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  .hero__sub::before {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 1023px) {
  .hero__sub {
    font-size: 1.25rem;
    text-shadow: 0 1.216px 1.216px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.4px;
    padding-left: 1rem;
    width: fit-content;
    transform: translateY(10px);
  }
}
.hero__title {
  font-family: "Futura Hv BT", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(60px, 7vw, 141px);
  color: #FFFFFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero__title .e-text {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #FFF;
  letter-spacing: 0.06em;
}
@media (max-width: 1023px) {
  .hero__title .e-text {
    text-shadow: 0 1.899px 1.899px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1.9px;
    -webkit-text-stroke-color: #FFF;
  }
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: clamp(67px, 10vw, 80px);
    letter-spacing: 1.341px;
    line-height: 1.2;
  }
}
.hero__cloud {
  position: absolute;
  bottom: -75px;
}
.hero__cloud-sub {
  position: absolute;
  right: 0;
  bottom: 16vw;
}
@media (max-width: 1023px) {
  .hero__cloud-sub {
    bottom: 40vw;
  }
}
.hero .cloud-1 {
  left: 0;
}
.hero .cloud-2 {
  right: 0;
}
@media (max-width: 1023px) {
  .hero .cloud-2 {
    width: 80vw;
  }
}
.hero .cloud-2 img {
  transform: rotateY(180deg);
}

.gnav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1020;
  background: #FFFFFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 4.5rem;
  border-radius: 9999px;
  margin: 3rem auto 0;
  width: fit-content;
  z-index: 2;
}
.gnav::before {
  position: absolute;
  content: "";
  background: url(../img/svg/birds.svg) no-repeat;
  width: 240px;
  height: 114px;
  z-index: -1;
  left: -100px;
  bottom: -40px;
}
@media (max-width: 1023px) {
  .gnav::before {
    content: none;
  }
}
@media (max-width: 1023px) {
  .gnav {
    display: block;
    top: 15%;
    left: unset;
    right: 0;
    transform: translateX(100%);
    margin: 0;
    border-radius: 0;
    width: 45vw;
    max-width: 320px;
    height: 37dvh;
    padding: 24px 16px;
    z-index: 1035;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gnav.active {
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .gnav {
    padding: 1rem !important;
    width: 55vw !important;
    max-width: 320px !important;
  }
}
@media (max-width: 1023px) {
  .gnav {
    padding: 1rem 2rem;
    width: 40vw;
    height: fit-content;
  }
}
.gnav__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
}
@media (max-width: 1023px) {
  .gnav__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
@media (max-width: 1279px) {
  .gnav__inner {
    gap: 1.5rem;
  }
}
.gnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out;
}
.gnav__item:hover {
  opacity: 0.7;
}
.gnav__item.is-active .gnav__item-en,
.gnav__item.is-active .gnav__item-ja {
  color: #F0C11D;
}
@media (max-width: 1023px) {
  .gnav__item {
    align-items: flex-end;
    padding-bottom: 8px;
    width: 100%;
  }
}
.gnav__item-en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.25rem;
  color: #F0C11D;
  line-height: 1;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}
.gnav__item-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #333333;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .gnav__item-ja {
    font-size: 1.25rem;
    font-style: italic;
  }
}
.gnav__sep {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .gnav__sep {
    display: none;
  }
}

.intro {
  padding: 7.5rem 1rem 46px;
  text-align: center;
}
@media (max-width: 1023px) {
  .intro {
    padding: 3rem 0;
  }
}
.intro__inner {
  max-width: 796px;
  margin-left: auto;
  margin-right: auto;
}
.intro__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .intro__catch {
    font-size: 1.5rem;
  }
}
.intro__text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 1023px) {
  .intro__text {
    font-size: 1rem;
  }
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  position: fixed;
  top: 1.5rem;
  right: 0.5rem;
  z-index: 1040;
}
@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.hamburger {
  width: 44px;
  height: 44px;
  background: var(--main-CTA, linear-gradient(90deg, #44BEE1 0%, #7DB545 100%));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
}
.hamburger__line {
  width: 1.5rem;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.mobile-nav-overlay.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.event-section {
  padding: 198px 1rem 279px;
  background: linear-gradient(180deg, #D5F6FF 0%, #B6EDE8 106.63%);
  clip-path: polygon(13% 5%, 89% 0, 100% 5%, 100% 100%, 88% 94%, 12% 100%, 0 94%, 0 0);
  position: relative;
  z-index: 0;
}
@media (max-width: 1023px) {
  .event-section {
    clip-path: polygon(13% 1%, 89% 0, 100% 1%, 100% 100%, 88% 99%, 12% 100%, 0 99%, 0 0);
    padding-bottom: 5rem !important;
  }
}

@media (max-width: 1023px) {
  .l-section {
    padding: 4rem 1rem;
  }
}
.l-section--plan {
  margin-top: 7.5rem;
}
@media (max-width: 1023px) {
  .l-section--plan {
    margin-top: 0;
    padding-top: 0;
  }
}
.l-section--spa {
  margin-top: 7.5rem;
}
@media (max-width: 1023px) {
  .l-section--spa {
    margin-top: 0;
    padding-top: 0;
  }
}
.l-section--funideas {
  margin-top: 7.5rem;
}
@media (max-width: 1023px) {
  .l-section--funideas {
    margin-top: 0;
    padding-top: 0;
  }
}
.l-section--schedule {
  position: relative;
  overflow: hidden;
}
.l-section__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .l-section__inner {
    padding: 0 1rem;
  }
}
.l-section__inner {
  max-width: 1080px;
  padding: 0;
}
.l-section__inner--custom {
  max-width: 100%;
  padding: 0;
}

.c-section-title {
  max-width: 1080px;
  text-align: center;
  margin: auto;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .c-section-title {
    margin-bottom: 1.5rem;
  }
}
.c-section-title--left {
  margin-top: 2.5rem;
  text-align: left;
  padding: 0 22px;
}
.c-section-title__en {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  margin-left: 18px;
}
@media (max-width: 1023px) {
  .c-section-title__en {
    margin: 0;
  }
}
.c-section-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #333333;
  line-height: 1.7;
  margin-left: 18px;
}
@media (max-width: 1023px) {
  .c-section-title__ja {
    font-size: 1.5rem;
    margin-left: 0;
  }
}

.c-section-text {
  max-width: 1080px;
  margin: 0 auto 3.5rem;
  font-weight: 500;
}
.c-section-text p {
  margin-left: 18px;
}
@media (max-width: 1023px) {
  .c-section-text p {
    margin: 0;
  }
}

.c-event {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
}
@media (max-width: 1023px) {
  .c-event {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0;
  }
}
.c-event--reverse {
  flex-direction: row-reverse;
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .c-event--reverse {
    flex-direction: column;
  }
}
.c-event__badge {
  position: absolute;
  top: -2rem;
  left: -4rem;
  width: 138px;
  height: 138px;
  z-index: 2;
}
.c-event__badge--reverse {
  left: unset;
  right: -4rem;
}
@media (max-width: 1279px) {
  .c-event__badge--reverse {
    right: 0 !important;
    top: -2rem !important;
    left: unset !important;
  }
}
@media (max-width: 1023px) {
  .c-event__badge {
    width: 88px;
    height: 88px;
    top: -1rem;
    left: -0.5rem;
  }
}
@media (max-width: 1279px) {
  .c-event__badge {
    left: -1rem;
    top: -4rem;
  }
}
.c-event__badge img {
  position: absolute;
  inset: 0;
}
.c-event__badge-bg {
  border-radius: 50%;
  z-index: 1;
  width: auto;
  margin: auto;
}
.c-event__badge-inner {
  border-radius: 50%;
  z-index: 0;
}
.c-event__badge-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  z-index: 3;
}
@media (max-width: 1023px) {
  .c-event__badge-text {
    font-size: 0.875rem;
  }
}
.c-event__image {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 400px;
}
.c-event__image--reverse {
  padding-top: 2.5rem;
}
@media (max-width: 1023px) {
  .c-event__image {
    height: auto;
    padding: 0;
  }
}
.c-event__image img {
  width: auto;
  object-fit: cover;
}
.c-event__card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 1.5rem;
  right: 0;
  bottom: 0;
  width: 514px;
}
.c-event__card--reverse {
  top: 0;
  left: 0;
  height: fit-content;
}
@media (max-width: 1023px) {
  .c-event__card {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding: 1rem;
  }
}
.c-event__deco {
  position: absolute;
  width: 68px;
  pointer-events: none;
}
.c-event__deco--tr {
  top: -4vw;
  right: -3vw;
}
@media (max-width: 1279px) {
  .c-event__deco--tr {
    right: 0;
  }
}
@media (max-width: 1023px) {
  .c-event__deco--tr {
    right: -10px;
    top: unset;
    bottom: -6vw;
  }
}
.c-event__deco--tl {
  top: 0;
  left: 0;
}
.c-event__deco--br {
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .c-event__deco {
    width: 80px;
  }
}
.c-event__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
}
.c-event__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
@media (max-width: 1023px) {
  .c-event__subtitle {
    margin-bottom: 0;
  }
}
.c-event__desc {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .c-event__desc {
    margin-bottom: 0;
  }
}

.c-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .c-content-row {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: auto;
  }
}
.c-content-row__image {
  position: relative;
  height: 400px;
}
.c-content-row__image .c-event__badge {
  top: -4rem;
}
@media (max-width: 1279px) {
  .c-content-row__image .c-event__badge {
    top: -3rem;
  }
}
.c-content-row__image .c-event__badge .c-event__badge-bg {
  width: auto;
  height: auto;
}
@media (max-width: 1023px) {
  .c-content-row__image {
    height: auto;
    order: 1;
  }
}
.c-content-row__image img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-content-row__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .c-content-row__body {
    gap: 1.5rem;
    order: 2;
  }
}

.c-event-pair {
  margin-top: 3rem;
}
.c-event-pair__images {
  display: block;
}
@media (max-width: 1023px) {
  .c-event-pair__images {
    grid-template-columns: 1fr;
  }
}
.c-event-pair__img {
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
  height: 293px;
}
.c-event-pair__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-event-pair__cards {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  column-gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1023px) {
  .c-event-pair__cards {
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    max-width: 640px;
    margin: auto;
  }
}
.c-event-pair__card {
  background: #FFFFFF;
  padding: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  height: fit-content;
}

@media (max-width: 1023px) {
  .grid-3 {
    margin-top: 24px;
  }
}

.plan-section {
  margin-top: 7.5rem;
}

.c-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.c-detail-list__row {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .c-detail-list__row .note {
    font-size: 12px;
  }
}
.c-detail-list__row--top {
  align-items: flex-start;
}
.c-detail-list__label {
  width: fit-content;
  font-weight: 700;
  line-height: 1.7;
}
.c-detail-list__label--w80 {
  width: 80px;
}
.c-detail-list__value {
  flex: 1;
  color: #000000;
  line-height: 1.7;
  font-weight: 500;
  font-size: 14px;
}
.c-detail-list__divider {
  border: none;
  border-bottom: 1px solid #333;
}

.c-info-box {
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 1.5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.c-info-box--event {
  padding: 2rem 2.5rem;
  margin-bottom: 105px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-info-box--event {
    margin-bottom: 4rem;
  }
}
.c-info-box__deco {
  position: absolute;
  width: 96px;
  pointer-events: none;
}
.c-info-box__deco--tl {
  top: -6vw;
  left: -1.7vw;
}
@media (max-width: 1023px) {
  .c-info-box__deco--tl {
    width: 60px !important;
    top: unset;
    bottom: -6vw;
    transform: rotate(-30deg);
  }
}
.c-info-box__deco--br {
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .c-info-box__deco {
    width: 80px;
  }
}
.c-info-box__fish {
  position: absolute;
  width: 265px;
  bottom: -35px;
  right: -95px;
  pointer-events: none;
}
@media (max-width: 1279px) {
  .c-info-box__fish {
    right: -10px;
  }
}
@media (max-width: 1023px) {
  .c-info-box__fish {
    width: 120px;
    right: -10px;
  }
}
@media (max-width: 1023px) {
  .c-info-box {
    padding: 1rem;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 4rem;
  }
}
@media (max-width: 1023px) {
  .c-info-box--custom-spa {
    padding: 1rem 0;
  }
}
.c-info-box__row {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
}
.c-info-box__row--top {
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .c-info-box__row--rowsp {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.c-info-box__row p {
  font-weight: 500;
}
.c-info-box__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: disc;
  padding-left: 1rem;
}
.c-info-box__list li {
  line-height: 1.7;
  font-weight: 500;
}

.c-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-width: 120px;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.7;
}
.c-tag--teal {
  background-color: #29C5B5;
}
.c-tag--yellow {
  background-color: #F0C11D;
}
.c-tag--green {
  background-color: #7FB647;
}

.c-schedule-grid {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  gap: 0;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.c-schedule-grid--thirdrows {
  grid-template-columns: 0.6fr 1fr;
}
.c-schedule-grid--time_row {
  position: relative;
  padding-left: 20px;
}
.c-schedule-grid--time_row .c-schedule-grid__content p {
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .c-schedule-grid--time_row .c-schedule-grid__content p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
@media (max-width: 1023px) {
  .c-schedule-grid--time_row {
    padding-left: 15px;
  }
  .c-schedule-grid--time_row::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 11px;
    bottom: 11px;
    width: 2px;
    height: 135px;
    background-color: #29C5B5;
  }
}
.c-schedule-grid--time_row .c-schedule-grid__time::before {
  position: absolute;
  left: 0;
  margin-top: 11px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #29C5B5;
}
@media (max-width: 1023px) {
  .c-schedule-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.c-schedule-grid__time {
  width: fit-content;
}
.c-schedule-grid__time p {
  line-height: 1.7;
}
@media (max-width: 1023px) {
  .c-schedule-grid__time p {
    color: #29C5B5;
    font-weight: 700;
  }
}
.c-schedule-grid__content:last-child p {
  margin-bottom: 0;
}

.c-price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .c-price-table {
    grid-template-columns: 1fr;
  }
}
.c-price-table > div p {
  line-height: 1.7;
  font-weight: 500;
}

.c-cta-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.c-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 5rem;
  border-radius: 9999px;
  border: 2px solid #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  white-space: nowrap;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  width: fit-content;
  min-width: 335px;
}
@media (max-width: 1023px) {
  .c-btn-cta {
    padding: 0.75rem 4rem;
    font-size: 1rem;
    margin: auto;
  }
}
.c-btn-cta:hover {
  opacity: 0.85;
}
.c-btn-cta span:last-child {
  font-size: 1rem;
}
.c-btn-cta--teal {
  background: linear-gradient(90deg, #66C7A7, #B1C73E);
}
.c-btn-cta--red {
  background: linear-gradient(90deg, #C76666, #C76E3E);
}

.c-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
}
.c-note--center {
  text-align: left;
  max-width: fit-content;
  margin: 80px auto 0;
  font-size: 0.75rem;
}
@media (max-width: 1023px) {
  .c-note--center {
    margin-top: 40px;
  }
}
.c-note a {
  text-decoration: underline;
}
.c-note a:hover {
  opacity: 0.7;
}

.c-spa-notes {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 1023px) {
  .c-spa-notes {
    max-width: 640px;
    margin: auto;
  }
}
.c-spa-notes p {
  font-size: 0.75rem;
  margin-bottom: 0;
  font-weight: 500;
}

.c-spa-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  gap: 7.5rem;
}
@media (max-width: 1279px) {
  .c-spa-cta {
    gap: 24px;
    flex-direction: column;
  }
}

.c-funideas__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 640px !important;
  max-width: 80vw !important;
}
.c-funideas__image {
  border-radius: 0.5rem;
  overflow: hidden;
  height: auto;
}
.c-funideas__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-funideas__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.7;
}
.c-funideas__text {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.7;
}

.c-schedule-bg {
  position: relative;
}
.c-schedule-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-timeline {
  position: relative;
  max-width: 1080px;
  margin: auto;
  z-index: 1;
  margin-bottom: 3rem;
}
.c-timeline__line {
  position: absolute;
  left: 19px;
  top: 20px;
  width: 3px;
  height: 0;
  background-image: repeating-linear-gradient(to bottom, #C1C1C1 0px, #C1C1C1 6px, transparent 6px, transparent 12px);
  background-size: 3px 100%;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .c-timeline__line {
    left: 13.5px;
  }
}
.c-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 2.9rem;
}
.c-timeline__item:last-child {
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .c-timeline__item {
    align-items: center;
  }
}
.c-timeline__dot {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 0;
}
@media (max-width: 1023px) {
  .c-timeline__dot {
    width: 30px;
    height: 30px;
  }
}
.c-timeline__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21px;
  height: 21px;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 1023px) {
  .c-timeline__dot::before {
    width: 15px;
    height: 15px;
  }
}
.c-timeline__item--teal .c-timeline__dot {
  background: #29C5B5;
}
.c-timeline__item--gray .c-timeline__dot {
  background: #E4E4E4;
}
.c-timeline__time {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  white-space: nowrap;
  width: 108px;
  flex-shrink: 0;
}
.c-timeline__item--teal .c-timeline__time {
  color: #29C5B5;
}
.c-timeline__item--gray .c-timeline__time {
  color: #C1C1C1;
}
@media (max-width: 1023px) {
  .c-timeline__time {
    font-size: 1rem;
    width: fit-content;
  }
}
.c-timeline__event {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #333333;
  line-height: 1.7;
}
@media (max-width: 1023px) {
  .c-timeline__event {
    font-size: 0.875rem;
  }
}

.c-recommend-head {
  position: absolute;
  z-index: 1;
  text-align: left;
  padding: 1rem 0 2rem 2rem;
  top: 50%;
  left: 18px;
  transform: translate(80%, -50%);
}
.c-recommend-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../img/svg/header__sub.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  .c-recommend-head::before {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 1023px) {
  .c-recommend-head {
    top: 5vw;
    left: 5vw;
    transform: none;
    padding: 0;
  }
}
.c-recommend-head p {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.7;
  text-shadow: 0 0 6.22px #000;
}
@media (max-width: 1023px) {
  .c-recommend-head p {
    font-size: 1.25rem;
  }
}
.c-recommend-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.7;
  text-shadow: 0 0 6.22px #000;
}
@media (max-width: 1023px) {
  .c-recommend-head h2 {
    font-size: 1.5rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 1rem 2rem;
  text-align: center;
}
.footer__logo img {
  height: 106px;
  width: auto;
  margin: 0 auto;
}
.footer__address {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.7;
}
.footer__social {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
.footer__social-icon {
  display: block;
  width: 48px;
  height: 48px;
  transition: opacity 0.15s ease-in-out;
}
.footer__social-icon:hover {
  opacity: 0.75;
}
.footer__social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  transition: opacity 0.15s ease-in-out;
}
.footer__links a:hover {
  opacity: 0.7;
}
.footer__sep {
  display: block;
  width: 1px;
  height: 20px;
  background: #333333;
  opacity: 0.4;
}
.footer__copyright {
  background: linear-gradient(90deg, #84BBFE, #85CBCD);
  padding: 0.75rem 1rem;
  text-align: center;
}
.footer__copyright p {
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.7;
}

.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) {
  .back-to-top {
    width: 56px;
    height: 56px;
  }
}
.back-to-top {
  background-color: #29C5B5;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .back-to-top {
    right: 3rem;
  }
}
@media (min-width: 1024px) {
  .back-to-top {
    right: 3rem;
  }
}
.back-to-top {
  transition: all 0.3s ease-in-out;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.back-to-top:hover {
  background-color: #F0C11D;
}
.back-to-top:focus {
  outline: 2px solid #F0C11D;
  outline-offset: 2px;
}
.back-to-top-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top__icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
@media (min-width: 768px) {
  .back-to-top__icon {
    width: 28px;
    height: 28px;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-4 {
  margin-top: 1rem;
}

.u-mt-8 {
  margin-top: 2rem;
}

.u-mt-16 {
  margin-top: 4rem;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-4 {
  margin-bottom: 1rem;
}

.u-mb-8 {
  margin-bottom: 2rem;
}

.u-mb-16 {
  margin-bottom: 4rem;
}

.u-hidden {
  display: none !important;
}

.u-visible {
  display: block !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*# sourceMappingURL=style.css.map */
