@charset "UTF-8";

/* ******************************************************
top common
****************************************************** */

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 80px;
  margin-top: 60px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--Green);
  background-color: var(--White);
  border: var(--Green) solid 2px; 
  border-radius: 8px;
  position: relative;
}

.btn::after {
  content: "";
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 22px;
  color: var(--Green);
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.btn:hover,
.smallBtn:hover {
  cursor: pointer;
  color: var(--White);
  background-color: var(--Green);
  transition: all 0.3s ease;
}

.smallBtn {
  width: 100%;
  max-width: 272px;
  height: 60px;
  text-align: center;
  border-radius: 8px;
  color: var(--Green);
  background-color: var(--White);
  border: var(--Green) 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.smallBtn::after {
  content: "";
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 13px;
  height: 15px;
  color: var(--Green);
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.btn:hover::after,
.smallBtn:hover::after {
  background-image: url(../images/arrow_white.svg);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* ******************************************************
mainVisual
****************************************************** */
.mainVisual {
  position: relative;
  padding-top: var(--headerHeight);
  padding-bottom: 99px;
  width: 100%;
  /* height: 100vh; */
  /* min-height: 660px; */
  /* min-height: 749px; */
  /* min-height: calc(100svh - 89px); */
  /* height: 749px; */
  /* height: 100vh; */
  overflow: hidden;
}

.mainVisual::after {
  content: "";
  display: block;
  width: 100%;
  height: 287px;
  background-image: url(../images/dot.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 60px 60px;
  position: absolute;
  bottom: 54px;
  right: 0;
  z-index: 1;
}

.mainVisual__img {
  display: block;
  width: calc(100% - 68px);
  /* height: auto; */
  /* aspect-ratio: 307 /440; */
  /* width: 81%; */
  /* height: 440px; */
  height: clamp(360px, 58vh, 440px);
  /* height: clamp(300px, 58vh, 523px); */
  margin: 54px 0 0 auto;
  /* margin-right: 0; */
  /* margin-left: auto; */
  position: relative;
  /* position: absolute; */
  /* top: 143px; */
  /* top: 8.1%; */
  /* right: 0; */
  object-fit: cover;
  z-index: 20;
}

.mainVisual__topic {
  font-size: 4.4rem;
  font-weight: 900;
  margin: 3px 8px 0 auto;
  text-align: right;
  /* position: absolute; */
  /* bottom: 96px; */
  /* right: 8px; */
  position: relative;
  z-index: 20;
}

.mainVisual__catchphraseText {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  font-style: normal;
  color: var(--darkGreen);
  background-color: var(--White);
  text-align: left;
  line-height: 1.3;
  letter-spacing: 0.03em;
  padding: 8px 4px;
  display: inline-block;
  z-index: 50;
}

.mainVisual__catchphraseText,
.mainVisual__topic {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mainVisual__catchphraseText--first {
  position: absolute;
  top: 186px;
  left: 0;
  transition-delay: 0.2s;
}

.mainVisual__catchphraseText--second {
  position: absolute;
  top: 248px;
  left: 0;
  transition-delay: 0.4s;
}

.mainVisual__topic {
  transition-delay: 0.8s;
}

.mainVisual__catchphraseText,
.mainVisual__topic {
  opacity: 0;
  transform: translateY(20px);
}

body.is-loaded .mainVisual__catchphraseText,
body.is-loaded .mainVisual__topic {
  opacity: 1;
  transform: translateY(0);
}

/* .mainVisual */
@media screen and (min-width: 1024px) {
  .mainVisual {
    padding-top: 0;
  }

  .mainVisual__img {
    margin: 80px 0 0 auto;
  }

  .mainVisual__catchphraseText--first {
    top: 122px;
  }

  .mainVisual__catchphraseText--second {
    top: 184px;
  }
}

/* ******************************************************
news-events
****************************************************** */
.section__news-events {
  margin-top: 60px;
  padding: 0 var(--contentPadding) 80px;
}

.instagram {
  display: grid;
  gap: 20px 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
}

/* ******************************************************
menu
****************************************************** */
.section__menu {
  padding: 60px 0 80px;
}

.sectionTopic__menu {
  padding: 0 var(--contentPadding);
}

.menu__img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-top: 58px;
}


.menu__contents {
  margin-top: 30px;
  padding: 8.6%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.menu__content {
  background-color: var(--White);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 15px;
  position: relative;
}

.menu__content::before {
  content: "";
  background-image: url(../images/bubble.svg);
  background-size: cover;
  width: 61px;
  height: 43px;
  position: absolute;
  top: -8px;
  left: -12px;
}

.menu__content::after {
  content: "注目！";
  font-size: 12px;
  position: absolute;
  top: 3px;
  left: 2px;
}

@keyframes bubbleBounce {
  0%   { transform: translateY(12px); opacity: 0; }
  60%  { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.menu__content::before,
.menu__content::after {
  opacity: 0;
  transform: translateY(10px);
}

.menu__content.animated::before,
.menu__content.animated::after {
  animation: bubbleBounce 0.4s ease forwards;
}

.menu__contentImg {
  border-radius: 50%;
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.menu__btn {
  width: calc(100% - 4.2% - 4.2%);
  margin: 60px auto 0;
}

/* ******************************************************
about
****************************************************** */
.section__about {
  padding: 60px 0 80px;
}

.sectionTopic__about {
  padding: 0 var(--contentPadding);
}

.about__content {
  margin-top: 60px;
  position: relative;
  width: 100%;
  height: 611px;
}

.about__content::after {
  content: "";
  width: 244px;
  height: 340px;
  opacity: 0.8;
  background-image: url(../images/dot.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 60px 60px;
  position: absolute;
  top: 180px;
  left: 0;
  z-index: 0;
}

.about__img {
  display: block;
  margin: 0 auto;
  width: 85%;
  max-width: 319px;
  height: auto;
  position: relative;
  z-index: 10;
}

.aboutText {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 16px;
  width: calc(100% - 18.9%);
  /* width: 100%; */
  max-width: 304px;
  height: auto;
  background-color: var(--White);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 30;
}

/* ******************************************************
kids
****************************************************** */
.section__kids {
  padding: 60px 0 80px;
}

.sectionTopic__kids {
  padding: 0 var(--contentPadding);
}

.kids__content {
  margin-top: 60px;
  position: relative;
  width: 100%;
  height: 583px;
}

.kids__content::after {
  content: "";
  width: 244px;
  height: 340px;
  opacity: 0.8;
  background-image: url(../images/dot.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 60px 60px;
  position: absolute;
  top: 180px;
  right: 0;
  z-index: 0;
}

.kids__img {
  display: block;
  margin: 0 auto;
  width: 85%;
  max-width: 319px;
  height: auto;
  position: relative;
  z-index: 10;
}

.kidsText {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 16px;
  /* width: 100%; */
  width: calc(100% - 18.9%);
  max-width: 304px;
  height: auto;
  background-color: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 30;
}

.kidsIcon {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* flex-wrap: wrap; */
  gap: 9px;
}

.kidsIcon__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.kidsIcon__img {
  display: block;
  width: 40px;
  height: 40px;
}

.kidsIcon__txt {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

/* ******************************************************
access
****************************************************** */
.section__access {
  padding: 60px 0 80px;
}

.sectionTopic__access {
  padding: 0 var(--contentPadding);
}

.map {
  width: 100%;
  height: 235px;
  margin-top: 40px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.accessContents {
  padding: 0 var(--contentPadding);
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.accessContent {
  background-color: var(--White);
  width: 100%;
  padding-top: 38px;
  position: relative;
}

.accessContent__topic {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  background-color: var(--Green);
  color: var(--White);
  width: 207px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 0 24px 24px 0;
  position: absolute;
  top: -20px;
  left: 0;
}

.accessContent__detail {
  padding: 16px 0 16px 18px;
}

.accessContent__detail:nth-of-type(3) {
  padding: 0 0 16px 18px;
}

.accessContent__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ******************************************************
reservation
****************************************************** */
.section__reservation {
  padding: 60px var(--contentPadding) 80px;
}

.reservation__btns {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 40px;
}

.reservation__btn {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--Pink);
  border: var(--Brown) 2px solid;
  border-radius: 8px;
  position: relative;
}
.reservation__btn::after {
  content: "";
  background-image: url(../images/arrow_brown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 22px;
  color: var(--Brown);
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.reservation__btn:hover {
  background-color: var(--Brown);
  color: var(--Pink);
  transition: all 0.3s ease;
}

.reservation__btn:hover::after {
  background-image: url(../images/arrow_pink.svg);
}