@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  list-style: none;
}

img {
  vertical-align: bottom;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt" 1;
}

.header {
  background-color: #f0eee9;
  background-image: url(images/leaf1.png), url(images/leaf2.png), url(images/background.svg);
  background-repeat: no-repeat, no-repeat no-repeat;
  background-position: top left, top right, bottom center;
}
.header-splash {
  background-color: #ed6;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 5;
  text-align: center;
  transform: translate(0, 0);
  transition: all 0.4s cubic-bezier(1, 0, 0, 1) 1.6s;
}
.header-splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-splash__img {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1) 0.4s;
  font-size: 0;
}
.header-splash__img p {
  font-size: 14px;
  font-family: "Aoboshi One", serif;
}
.header-toggle {
  background-color: #ed6;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.header-toggle__inner {
  overflow-y: scroll;
  height: 100%;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.2, 0.6, 0.4, 1);
}
.header-toggle__list {
  margin: 0 auto;
  max-width: 440px;
  padding: 140px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  transform: scale(1, 0);
  transition: all 0.2s cubic-bezier(1, 0, 0, 1) 0.2s;
}
.header-toggle__item {
  display: flex;
  width: 100%;
}
.header-toggle__number {
  width: 60px;
  font-family: "Gelasio", serif;
  font-style: italic;
  font-size: 40px;
}
.header-toggle__link {
  text-decoration: none;
  color: #000;
}
.header-toggle__kana {
  font-family: "Aoboshi One", serif;
  font-size: 30px;
}
.header-toggle__kanji {
  font-size: 18px;
  font-weight: bold;
}
.header-nav {
  position: relative;
  z-index: 4;
  padding: 40px;
}
.header-nav__logo {
  position: fixed;
  cursor: pointer;
  top: 40px;
  left: 40px;
  display: inline-block;
  border-radius: 100px;
  background: #fff;
  padding: 15px;
  font-size: 0;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.header-nav__logo img {
  width: 40px;
  transition: all 0.2s cubic-bezier(0.2, 0.6, 0.4, 1);
}
.header-nav__logo:hover img {
  transform: rotate(360deg);
}
.header-nav__title {
  font-family: "Aoboshi One", serif;
  text-align: center;
}
.header-nav__title-main {
  line-height: 30px;
}
.header-nav__title-main {
  line-height: 40px;
}
.header-nav__title span {
  font-size: 20px;
}
.header-nav__title strong {
  font-size: 30px;
}
.header-nav__menu {
  position: fixed;
  cursor: pointer;
  top: 40px;
  right: 40px;
  height: 70px;
  width: 70px;
  border-radius: 100px;
  background: #fff;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.header-nav__menu span {
  background: #000;
  display: block;
  height: 4px;
  width: 50%;
  left: 50%;
  border-radius: 100px;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.2s cubic-bezier(0.2, 0.6, 0.4, 1);
}
.header-nav__menu span:nth-child(1) {
  top: 35%;
}
.header-nav__menu span:nth-child(2) {
  top: 50%;
}
.header-nav__menu span:nth-child(3) {
  top: 65%;
}
.header-nav__menu:hover span:nth-child(1) {
  top: 40%;
}
.header-nav__menu:hover span:nth-child(3) {
  top: 60%;
}
.header--active .header-toggle {
  z-index: 3;
}
.header--active .header-toggle__inner {
  opacity: 1;
}
.header--active .header-toggle__list {
  opacity: 1;
  transform: scale(1);
}
.header--active .header-nav__menu span {
  top: 50% !important;
}
.header--active .header-nav__menu span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header--active .header-nav__menu span:nth-child(2) {
  opacity: 0;
}
.header--active .header-nav__menu span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-img {
  position: relative;
  overflow: hidden;
}
.header-img img {
  width: 100%;
}
.header-img__kids {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: all 1s cubic-bezier(0.2, 0.6, 0.4, 1) 3s;
  transform: translate(0, 20px);
}
.header-img__floating {
  opacity: 0;
  transition: all 1s cubic-bezier(0.2, 0.6, 0.4, 1);
  transform: translate(0, 20px);
  position: absolute;
  animation-name: floating;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.header-img__piano {
  z-index: 0;
  top: 0px;
  left: calc(50% - 600px);
  animation-duration: 6s;
  transition-delay: 2.4s;
}
.header-img__globe {
  z-index: 0;
  top: 0px;
  right: calc(50% - 500px);
  animation-duration: 5s;
  transition-delay: 2.2s;
}
.header-img__chair {
  z-index: 0;
  bottom: 300px;
  right: calc(50% - 600px);
  animation-duration: 4s;
  transition-delay: 2.6s;
}
.header-img__birds {
  z-index: 2;
  bottom: 100px;
  left: calc(50% - 450px);
  animation-duration: 4s;
  transition-delay: 2.6s;
}
.header-img__sofa {
  z-index: 0;
  bottom: 0px;
  right: calc(50% - 700px);
  animation-duration: 6s;
  transition-delay: 2.4s;
}
.header-img__flower {
  z-index: 0;
  bottom: 50px;
  left: calc(50% - 650px);
  animation-duration: 5s;
  transition-delay: 2.2s;
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.is-in-view .header-splash {
  transform: translate(0, -100%);
}
.is-in-view .header-splash__img {
  opacity: 1;
  transform: translate(0, 0);
}
.is-in-view .header-img__kids {
  opacity: 1;
  transform: translate(0, 0);
}
.is-in-view .header-img__floating {
  opacity: 1;
  transform: translate(0, 0);
}

@media only screen and (max-width: 900px) {
  .header {
    background-size: 100%, 100%, 160%;
  }
  .header-toggle__list {
    padding: 140px 20px;
  }
  .header-nav {
    padding: 20px;
  }
  .header-nav__logo {
    top: 20px;
    left: 20px;
  }
  .header-nav__logo img {
    width: 30px;
  }
  .header-nav__title-sub {
    font-size: 12px;
  }
  .header-nav__title span {
    font-size: 14px;
  }
  .header-nav__title strong {
    font-size: 22px;
  }
  .header-nav__menu {
    top: 20px;
    right: 20px;
    height: 60px;
    width: 60px;
  }
  .header-img {
    padding-bottom: 60px;
  }
  .header-img__kids {
    width: 90%;
  }
  .header-img__piano {
    left: -5%;
    width: 35%;
  }
  .header-img__globe {
    right: 0%;
    width: 20%;
  }
  .header-img__chair {
    bottom: 40%;
    right: 0%;
    width: 20%;
  }
  .header-img__birds {
    bottom: 20%;
    left: 10%;
    width: 30%;
  }
  .header-img__sofa {
    right: -20%;
    bottom: 0%;
    width: 45%;
  }
  .header-img__flower {
    bottom: 5%;
    left: -10%;
    width: 30%;
  }
}

.details {
  background: #fff;
  padding: 30px;
  text-align: center;
}
.details__button img {
	max-width: 100%
}

.introduce {
  background: #fff;
}
.introduce__banners {
  display: flex;
  padding: 0 30px;
  gap: 30px;
  margin: 0 auto;
  max-width: 1600px;
}
.introduce__banner img {
  width: 100%;
}

@media only screen and (max-width: 720px) {
  .introduce__banners {
    flex-direction: column;
  }
}
.features {
  padding: 100px 30px 200px;
  background-color: #fff;
}
.features-title {
  border-left: 6px solid #56a349;
  padding: 16px 32px;
  max-width: 1080px;
  margin: 0 auto 32px;
}
.features-title__kana {
  font-family: "Aoboshi One", serif;
  font-size: 40px;
}
.features-title__kanji {
  font-size: 18px;
  font-weight: bold;
}
.features-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.features-item__img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 24px;
}
.features-item__img img {
  width: 100%;
}
.features-item__title {
  font-size: 24px;
  color: #56a349;
  font-weight: bold;
  margin-bottom: 12px;
}
.features-item__description {
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
}

@media only screen and (max-width: 720px) {
  .features {
    padding: 50px 40px 100px;
  }
  .features-title {
    padding: 16px 24px;
  }
  .features-title__kana {
    font-size: 30px;
  }
  .features-title__kanji {
    font-size: 14px;
  }
  .features-list {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .features-item__img {
    margin-bottom: 12px;
  }
  .features-item__title {
    margin-bottom: 0px;
    font-size: 20px;
  }
  .features-item__description {
    font-size: 14px;
  }
}
.facilities {
  background-color: #f0eee9;
  padding: 100px 30px 200px;
}
.facilities-title {
  text-align: center;
  padding: 16px 32px;
  margin-bottom: 80px;
}
.facilities-title__kana {
  color: #56a349;
  font-family: "Aoboshi One", serif;
  font-size: 40px;
  display: inline-block;
  position: relative;
  padding: 0 30px;
}
.facilities-title__kana::before, .facilities-title__kana::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  width: 20px;
  height: 2px;
  background: #56a349;
}
.facilities-title__kana::before {
  left: 0;
}
.facilities-title__kana::after {
  right: 0;
}
.facilities-title__kanji {
  font-size: 18px;
  font-weight: bold;
}
.facilities-list {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.facilities-item {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.facilities-item:nth-of-type(odd) {
  flex-direction: row;
}
.facilities-item:nth-of-type(odd) .facilities-item__number {
  right: 30px;
}
.facilities-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.facilities-item:nth-of-type(even) .facilities-item__number {
  left: 30px;
}
.facilities-item__img {
  width: 40%;
}
.facilities-item__img img {
  width: 100%;
}
.facilities-item__content {
  width: 60%;
  padding: 30px;
  position: relative;
}
.facilities-item__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.facilities-item__title::before {
  content: "●";
  color: #56a349;
  margin-right: 12px;
}
.facilities-item__description {
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
  position: relative;
  z-index: 1;
}
.facilities-item__number {
  font-family: "Gelasio", serif;
  font-style: italic;
  position: absolute;
  z-index: 0;
  bottom: 0px;
  line-height: 0px;
  font-size: 0px;
  color: #f6f6f6;
}
.facilities-item__number span {
  font-size: 70px;
}
.facilities-item__number strong {
  font-size: 130px;
}

@media only screen and (max-width: 720px) {
  .facilities-title {
    padding: 16px 24px;
  }
  .facilities-title__kana {
    font-size: 30px;
  }
  .facilities-title__kanji {
    font-size: 14px;
  }
  .facilities-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .facilities-item__img {
    width: 100%;
  }
  .facilities-item__content {
    width: 100%;
  }
  .facilities-item__title {
    font-size: 20px;
  }
  .facilities-item__description {
    font-size: 14px;
  }
  .facilities-item__number {
    top: 40px !important;
    left: auto !important;
    right: 30px !important;
  }
}
.program {
  padding: 100px 30px 0px;
  background-color: #fff;
}
.program-title {
  text-align: center;
  padding: 16px 32px;
  margin-bottom: 80px;
}
.program-title__kana {
  color: #56a349;
  font-family: "Aoboshi One", serif;
  font-size: 40px;
  display: inline-block;
  position: relative;
  padding: 0 30px;
}
.program-title__kana::before, .program-title__kana::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  width: 20px;
  height: 2px;
  background: #56a349;
}
.program-title__kana::before {
  left: 0;
}
.program-title__kana::after {
  right: 0;
}
.program-title__kanji {
  font-size: 18px;
  font-weight: bold;
}
.program-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.program-item {
  display: flex;
  width: 100%;
}
.program-item__time {
  width: 30%;
  font-family: "Gelasio", serif;
  font-style: italic;
}
.program-item__time strong {
  font-size: 50px;
}
.program-item__time span {
  font-size: 16px;
}
.program-item__content {
  width: 70%;
}
.program-item__title {
  font-size: 22px;
  color: #56a349;
  font-weight: bold;
}
.program-item__description {
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

@media only screen and (max-width: 720px) {
  .program-title {
    padding: 16px 24px;
  }
  .program-title__kana {
    font-size: 30px;
  }
  .program-title__kanji {
    font-size: 14px;
  }
  .program-item__time {
    width: 40%;
  }
  .program-item__time strong {
    font-size: 36px;
  }
  .program-item__time span {
    font-size: 14px;
  }
  .program-item__content {
    width: 60%;
  }
  .program-item__title {
    font-size: 20px;
  }
  .program-item__description {
    font-size: 14px;
  }
}
.gallery {
  padding: 100px 10px;
  background-color: #fff;
}
.gallery-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 100px 20px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item__img {
  overflow: hidden;
  border-radius: 20px;
}
.gallery-item__img img {
  width: 100%;
}
.gallery-item__title {
  font-size: 18px;
  text-align: justify;
}

@media only screen and (max-width: 720px) {
  .gallery-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 10px;
  }
  .gallery-item__title {
    font-size: 14px;
  }
}
.price {
  background: #f0eee9;
  text-align: left;
  padding: 100px 30px;
}
.price-title {
  border-left: 6px solid #56a349;
  padding: 16px 32px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.price-title__kana {
  font-family: "Aoboshi One", serif;
  font-size: 40px;
}
.price-title__kanji {
  font-size: 18px;
  font-weight: bold;
}
.price-table table {
  font-size: 16px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.price-table th {
  font-weight: normal;
  padding: 21px;
}
.price-table th::before {
  content: "●";
  color: #56a349;
  margin-right: 8px;
}
.price-table td {
  padding: 21px;
}
.price-table td span {
  font-size: 12px;
  margin-right: 6px;
}
.price-table td strong {
  font-weight: normal;
}

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

.footer {
  position: relative;
  z-index: 1;
  background-color: #f0eee9;
  text-align: center;
  padding: 100px 30px;
}
.footer-img {
  margin-top: -200px;
  max-width: 400px;
}
.footer-img img {
  width: 100%;
}
.footer-tel {
  max-width: 800px;
  margin: 0 auto;
}
.footer-tel img {
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  margin-top: 60px;
  gap: 20px;
  justify-content: center;
}
.footer-copyright {
  margin-top: 60px;
  font-size: 14px;
  font-weight: bold;
}

@media only screen and (max-width: 800px) {
  .footer-img {
    width: 80%;
  }
  .footer-nav {
    font-size: 12px;
  }
}
.contact {
  max-width: 720px;
  margin: -100px auto 0;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  text-align: left;
}
.contact-title {
  border-left: 6px solid #56a349;
  padding: 10px 20px;
  margin: 60px 0px 0px;
}
.contact-title__kana {
  font-family: "Aoboshi One", serif;
  font-size: 30px;
}
.contact-title__kanji {
  font-size: 16px;
  font-weight: bold;
}
.contact-title__description {
  text-align: justify;
  font-size: 14px;
  margin-top: 14px;
}
.contact-form {
  padding: 16px 20px;
}

@media only screen and (max-width: 720px) {
  .contact-title__description {
    font-size: 12px;
  }
}
.form__group {
  font-size: 0;
  margin: 30px 0;
}
.form__label {
  display: block;
  font-size: 14px;
  margin: 0 0 16px;
}
.form__input, .form__textarea {
  width: 100%;
  font-family: inherit;
  color: inherit;
  font-size: 14px;
  border: 4px solid transparent;
  background-color: #f6f6f6;
  padding: 14px 21px;
}
.form__input, .form__textarea {
  transition: border 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
}
.form__input:focus, .form__textarea:focus {
  border: 4px solid #56a349;
}

.form__group--submit input[type=submit] {
  background-color: #56a349;
  font-size: 16px;
  padding: 15px 40px;
  color: #fff;
  display: inline-block;
  position: relative;
  overflow: hidden;
  line-height: inherit;
  cursor: pointer;
  border: none;
}

.form__group--submit input[type=submit] {
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
}

.form__group--submit input[type=submit]:hover {
  background-color: #67b35a;
}

.form__group--radio .wpcf7-form-control {
  display: flex;
  gap: 30px;
}
.form__group--radio input[type=radio] {
  display: none;
}
.form__group--radio .wpcf7-list-item-label {
  display: block;
  font-size: 16px;
  margin: 0 0 16px;
  line-height: 24px;
  position: relative;
  padding: 0 0 0 30px;
}
.form__group--radio .wpcf7-list-item-label::after {
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.2, 0.6, 0.4, 1);
}
.form__group--radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transform: scale(1);
}
.form__group--radio .wpcf7-list-item-label::before,
.form__group--radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
}
.form__group--radio .wpcf7-list-item-label::before {
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  background-color: #dfe4f0;
}
.form__group--radio .wpcf7-list-item-label::after {
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background-color: #56a349;
}/*# sourceMappingURL=style.css.map */