@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* ================================================================

制作コンテンツ

info:
- レスポンシブの場合は、ブレイクポイント 768px で記述してください。
- SP用CSSを先に記述する方法を推奨します。下記の記述は例です。
- PCのみの場合は、記述を削除してください。

================================================================ */
:root {
  --font-family: "Zen Old Mincho", serif;
  --font-size: 16px;
  --line-height: 1.5;
  --color: #5b5959;
  --brown-300: #f3f0ec;
  --brown-500: #e5e1da;
}

img,
svg,
object,
embed {
  border: none;
  display: block;
}

svg:focus,
object:focus,
embed:focus {
  outline: none;
}

svg {
  shape-rendering: crispEdges;
}

/* ================================================================
    Animation
================================================================ */
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes floating {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 6%, 0);
    transform: translate3d(0, 6%, 0);
  }
}
@keyframes floatingBubble {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
}
/* ================================================================
    Contents
================================================================ */
.contents {
  min-width: 1100px;
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--color);
  background-color: var(--brown-300);
  position: relative;
  overflow: hidden;
}

.top {
  position: relative;
  width: 100%;
  z-index: 4;
}
.top__logo {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 510px;
  z-index: 98;
  text-align: center;
}
.top__logo h1 {
  font-size: 0;
}
.top__logo--item {
  margin-bottom: 30px;
  position: relative;
}
.top__logo--item img {
  margin-inline: auto;
}
.top__logo--item::after {
  position: absolute;
  content: "";
  height: 1px;
  background-color: white;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 156px;
}
.top__logo--catch {
  font-size: 1.313rem;
  font-weight: 900;
}
.top__slider {
  width: 100%;
  min-width: 990px;
  margin: 0 auto;
}
.top__wave {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
}
.top__wave--item {
  width: 100%;
  height: 43px;
  z-index: 3;
  overflow: hidden;
  position: relative;
}
.top__wave--item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  width: 200%;
  height: 100%;
  background: url("../images/wave.svg") repeat-x top center;
  background-size: auto;
  -webkit-animation: waveMove 30s linear infinite backwards;
  animation: waveMove 30s linear infinite backwards;
}
.top__wave--item::before {
  position: absolute;
  content: "";
  bottom: 0;
  height: 51%;
  background-color: var(--brown-300);
  width: 100%;
  left: 0;
  right: 0;
}
.top__wave--bubble {
  position: relative;
  width: 1200px;
  height: 24px;
  margin-inline: auto;
}
.top__wave--bubble--item {
  position: absolute;
  -webkit-animation: floatingBubble 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  animation: floatingBubble 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.top__wave--bubble--item-1 {
  bottom: 10px;
  left: 0;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.top__wave--bubble--item-2 {
  bottom: -5px;
  left: 220px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 0.913624s;
  animation-delay: 0.913624s;
}
.top__wave--bubble--item-3 {
  bottom: 2px;
  left: 440px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 1.913624s;
  animation-delay: 1.913624s;
}
.top__wave--bubble--item-4 {
  bottom: 1px;
  right: 150px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.top__wave--bubble--item-5 {
  bottom: 20px;
  right: 80px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 0.913624s;
  animation-delay: 0.913624s;
}

.pool {
  position: relative;
  z-index: 3;
}
.pool__inner {
  width: 940px;
  margin: 0 auto;
  position: relative;
}
.pool__container {
  display: flex;
  justify-content: space-between;
  margin: 25px auto;
}
.pool__main-img {
  width: 426px;
}
.pool__main-title {
  font-size: 2.276rem;
  font-weight: 700;
  margin: 20px 0 15px 30px;
}
.pool__main-text {
  font-size: 0.938rem;
  font-weight: 400;
  width: 452px;
  margin-left: auto;
  margin-bottom: 35px;
  letter-spacing: -1px;
}
.pool__wrapper {
  width: 492px;
  position: relative;
}
.pool__sub-img {
  display: flex;
  justify-content: space-between;
}
.pool__sub-img--item {
  display: flex;
  justify-content: space-between;
  width: 236px;
}
.pool__sub-img--image {
  position: relative;
}
.pool__sub-img--image:hover .pool-image--blur, .pool__sub-img--image:hover .pool-image--caption {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.pool__sub-img .pool-image {
  width: 220px;
}
.pool__sub-img .pool-image--blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.pool__sub-img .pool-image--caption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-60%);
  color: white;
  font-size: 0.938rem;
  text-align: center;
  font-weight: 900;
  opacity: 0;
}
.pool__sub-img .pool-image--date {
  font-size: 0.75rem;
  font-weight: 700;
}
.pool__sub-img--text {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -2px;
}
.pool__sub-img--text small {
  font-size: 0.563rem;
  letter-spacing: 0px;
}
.pool__reserve {
  position: absolute;
  text-align: right;
  top: 37px;
  right: 10px;
}
.pool__reserve #reserve-pd {
  font-size: 1.188rem;
  font-weight: 700;
  padding-bottom: 5px;
}
.pool__reserve--link {
  font-size: 0.75rem;
  border-top: solid 1px #b3b3b3;
  padding: 10px 10px;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.pool__reserve--link:hover {
  background-color: #b3b3b3;
  color: white;
}
.pool__reserve--link a {
  display: block;
}
.pool__reserve--bg {
  position: relative;
  z-index: 99;
}
.pool__reserve--bg.active .arrow {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: 8px 15px;
  transition: all 0.3s ease-in-out;
}
.pool__reserve--bg.active .pool__reserve--link {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  display: block;
}
.pool__reserve--bg.active::before {
  visibility: visible;
  opacity: 1;
}
.pool__reserve--bg li {
  cursor: pointer;
}
.pool__reserve--bg::before {
  position: absolute;
  content: "";
  top: -10px;
  bottom: -5px;
  right: -15px;
  left: -15px;
  background-color: white;
  border-radius: 6px;
  z-index: -1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.pool__dec__item {
  position: absolute;
  z-index: 99;
  -webkit-animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.pool__dec__item--1 {
  bottom: 30px;
  right: -160px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 1.913624s;
  animation-delay: 1.913624s;
}
.pool__dec__item--2 {
  top: 90px;
  right: -80px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 0.913624s;
  animation-delay: 0.913624s;
}
.pool__dec__item--3 {
  top: 40px;
  right: -170px;
  -webkit-animation-duration: 0.513624s;
  animation-duration: 0.513624s;
  -webkit-animation-delay: 0.513624s;
  animation-delay: 0.513624s;
}

.rec {
  background-color: var(--brown-500);
  position: relative;
  z-index: 2;
}
.rec__inner {
  width: 958px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.rec__container {
  width: 304px;
  padding: 35px 0 30px;
  z-index: 98;
}
.rec__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: flex-end;
  margin-bottom: 10px;
}
.rec__title {
  font-size: 1.563rem;
  font-weight: 900;
  line-height: 1.2;
}
.rec__sub-title {
  position: absolute;
  top: -17px;
  left: 0;
  font-size: 1rem;
  color: #999999;
  font-weight: 700;
}
.rec__link {
  font-size: 0.813rem;
  font-weight: 700;
  padding-bottom: 5px;
}
.rec__link:hover .arrow {
  position: relative;
  left: 5px;
  transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.rec__img {
  margin-bottom: 10px;
  position: relative;
}
.rec__img .slick-dots {
  display: flex;
  gap: 3px;
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.rec__img .slick-dots li button {
  font-size: 0; /* Hide the default number */
}
.rec__img .slick-dots li button:before {
  font-size: 8px; /* Adjust the size as needed */
  color: white; /* Change the color if needed */
  content: "●"; /* Use the bullet character */
  opacity: 0.5; /* Set default opacity */
  transition: opacity 0.3s;
  cursor: pointer;
}
.rec__img .slick-dots li.slick-active button:before {
  opacity: 1; /* Make the active dot fully opaque */
}
.rec__description {
  font-size: 0.938rem;
  font-weight: 400;
  letter-spacing: -1px;
}
.rec__dec__item {
  position: absolute;
  z-index: 99;
  -webkit-animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.rec__dec__item--1 {
  bottom: 100px;
  left: -90px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 0.913624s;
  animation-delay: 0.913624s;
}
.rec__dec__item--2 {
  bottom: -10px;
  left: -150px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 1.513624s;
  animation-delay: 1.513624s;
}

.wiz {
  width: 962px;
  margin: 0 auto;
  padding: 20px 0 25px;
}
.wiz__container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.wiz__wrapper {
  display: flex;
  width: 674px;
  justify-content: space-between;
  position: relative;
}
.wiz__wrapper::before {
  content: "";
  width: 1px;
  border-right: solid 1px rgba(91, 89, 89, 0.3843137255);
  right: -22px;
  top: 0;
  bottom: 0;
  position: absolute;
}
.wiz__img {
  width: 304px;
}
.wiz__text {
  padding-top: 15px;
  width: 328px;
  font-weight: 700;
}
.wiz__text--title {
  font-size: 1.563rem;
  margin-bottom: 12px;
}
.wiz__text p {
  font-size: 0.938rem;
  font-weight: 400;
}
.wiz__plans {
  width: 193px;
  font-weight: 700;
  position: relative;
}
.wiz__plans h3 {
  font-size: 1.563rem;
  margin-bottom: 15px;
}
.wiz__plans--links {
  font-size: 0.875rem;
}
.wiz__plans--links li {
  margin-bottom: 15px;
}
.wiz__plans--links li:hover a {
  text-decoration: underline;
}
.wiz__dec__item {
  position: absolute;
  z-index: 99;
  -webkit-animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.wiz__dec__item--1 {
  top: -50px;
  left: -100px;
  -webkit-animation-duration: 0.913624s;
  animation-duration: 0.913624s;
  -webkit-animation-delay: 0.513624s;
  animation-delay: 0.513624s;
}

@keyframes bubbleEffect {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  25% {
    transform: translate(0, -20px);
    opacity: 1;
  }
  75% {
    transform: translate(0, -420px);
    opacity: 1;
  }
  100% {
    transform: translate(0, -650px);
    opacity: 0;
  }
}
.bubble-float {
  position: absolute;
  width: 958px;
  bottom: 0;
}
.bubble-float__layer {
  display: flex;
  justify-content: space-between;
}
.bubble-float__layer--1 li:nth-child(1) {
  animation-duration: 4.671s;
  animation-delay: 2.981s;
}
.bubble-float__layer--1 li:nth-child(2) {
  animation-duration: 4.071s;
  animation-delay: 2.89s;
}
.bubble-float__layer--1 li:nth-child(3) {
  animation-duration: 4.443s;
  animation-delay: 2.643s;
}
.bubble-float__layer--1 li:nth-child(4) {
  animation-duration: 5.353s;
  animation-delay: 2.358s;
}
.bubble-float__layer--1 li:nth-child(5) {
  animation-duration: 5.101s;
  animation-delay: 2.553s;
}
.bubble-float__layer--1 li:nth-child(6) {
  animation-duration: 4.639s;
  animation-delay: 2.827s;
}
.bubble-float__layer--1 li:nth-child(7) {
  animation-duration: 4.892s;
  animation-delay: 2.965s;
}
.bubble-float__layer--2 li:nth-child(1) {
  animation-duration: 3.951s;
  animation-delay: 1.248s;
}
.bubble-float__layer--2 li:nth-child(2) {
  animation-duration: 3.23s;
  animation-delay: 1.1s;
}
.bubble-float__layer--2 li:nth-child(3) {
  animation-duration: 3.713s;
  animation-delay: 1.966s;
}
.bubble-float__layer--2 li:nth-child(4) {
  animation-duration: 2.838s;
  animation-delay: 1.517s;
}
.bubble-float__layer--2 li:nth-child(5) {
  animation-duration: 2.421s;
  animation-delay: 1.991s;
}
.bubble-float__layer--2 li:nth-child(6) {
  animation-duration: 3.571s;
  animation-delay: 1.345s;
}
.bubble-float__layer--2 li:nth-child(7) {
  animation-duration: 3.306s;
  animation-delay: 1.533s;
}
.bubble-float__item {
  animation: bubbleEffect 4s linear infinite;
  opacity: 0;
}

.insta__btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99;
  -webkit-animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  animation: floating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.insta__btn:hover {
  opacity: 0.95;
}