@charset "UTF-8";
.toppage main {
  padding: 0 !important;
}

/* スライドアニメーション */
.swiper {
  margin: 0 auto 30px;
  position: relative;
  height: calc(100vh - 200px) !important;
}
@media screen and (max-width: 768px) {
  .swiper {
    height: auto !important;
  }
}
.swiper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.15);
}

@media screen and (max-width: 768px) {
  .swiper-autoheight .swiper-wrapper {
    height: 400px !important;
  }
  .swiper-autoheight .swiper-wrapper div {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .swiper-autoheight,
  .swiper-autoheight .swiper-slide {
    flex-wrap: wrap;
  }
  .swiper-autoheight img,
  .swiper-autoheight .swiper-slide img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.swiper-slide {
  height: 100% !important;
}
.swiper-slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.05);
}
.swiper-slide[class*=-active] .slide-title {
  animation: slide-fadeIn 2s 0.5s var(--easing) both;
}
.swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slide-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.slide {
  position: relative;
}
.slide .catchphrase-text {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  text-align: center;
  text-shadow: 2px 3px 3px rgba(48, 48, 48, 0.64);
}
.slide .catchphrase-text h1 {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .slide .catchphrase-text h1, .slide .catchphrase-text p {
    font-size: 24px;
  }
}

/* 4種メニュー */
.top-menu {
  display: flex;
  justify-content: center;
  gap: 1%;
  margin: 40px auto 40px;
}
@media screen and (max-width: 768px) {
  .top-menu {
    flex-wrap: wrap;
    margin: 30px auto;
    gap: 2%;
  }
}
.top-menu li {
  width: 25%;
  max-height: 130px;
  background-size: contain;
  background-position: center;
  position: relative;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .top-menu li {
    width: 49%;
    margin-bottom: 10px;
    max-height: 90px;
  }
}
.top-menu li::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-menu li::after {
    width: 30% !important;
  }
}
.top-menu li a {
  display: block;
  text-align: center;
  padding: 80px 0;
  font-weight: 600;
  padding: 60px 0 60px 30px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-menu li a {
    padding: 60px 0 60px 20px;
  }
}
.top-menu li a .top-menu_span {
  display: block;
  color: #4c8613;
  line-height: 1em;
}
.top-menu li a {
  /* 矢印 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  gap: 8%;
}
.top-menu li a .more-right {
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .top-menu li a .more-right {
    width: 20px;
    height: 20px;
  }
}
.top-menu li a .more-right::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  top: 8px;
  left: 5px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .top-menu li a .more-right::after {
    width: 7px;
    height: 7px;
    top: 7px;
  }
}
.top-menu li a:hover .more-right {
  transform: translateX(5px);
}
.top-menu li.top-button_yellow {
  background-image: url("../images/top-button_yellow.png");
}
.top-menu li.top-button_yellow a {
  color: #725f13;
  padding: 50px 0 50px 30px;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_yellow a {
    padding: 44px 0 50px 20px;
  }
}
.top-menu li.top-button_yellow a .more-right {
  background-color: #c4a730;
}
.top-menu li.top-button_yellow:hover::after {
  animation: yurayura-yoko 2s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_yellow:hover::after {
    animation: none;
  }
}
.top-menu li.top-button_yellow::after {
  position: absolute;
  background-image: url("../images/illustration-boushi.png");
  left: -15px;
  bottom: -15px;
  width: 71px;
  height: 67px;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_yellow::after {
    bottom: -35%;
    left: -9%;
  }
}
.top-menu li.top-button_green {
  background-image: url("../images/top-button_green.png");
}
.top-menu li.top-button_green a {
  color: #0c433e;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_green a {
    padding: 34px 0 40px 20px;
  }
}
.top-menu li.top-button_green a .more-right {
  background-color: #578e20;
}
.top-menu li.top-button_green:hover::after {
  animation: huwahuwa-yoko 2s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_green:hover::after {
    animation: none;
  }
}
.top-menu li.top-button_green::after {
  position: absolute;
  background-image: url("../images/illustration-butterfly.png");
  left: -12px;
  top: -10px;
  width: 62px;
  height: 54px;
}
@media screen and (max-width: 1440px) {
  .top-menu li.top-button_green::after {
    left: -14px;
  }
}
@media screen and (max-width: 1110px) {
  .top-menu li.top-button_green::after {
    left: -21px;
  }
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_green::after {
    top: -15px;
    left: -10px;
  }
}
.top-menu li.top-button_orange {
  background-image: url("../images/top-button_orange.png");
}
.top-menu li.top-button_orange a {
  color: #6c4500;
  padding: 50px 0 50px 30px;
}
.top-menu li.top-button_orange a .more-right {
  background-color: #ca8811;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_orange a {
    padding: 44px 0 50px 20px;
  }
}
.top-menu li.top-button_orange:hover::after {
  animation: yurayura-yoko 2s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_orange:hover::after {
    animation: none;
  }
}
.top-menu li.top-button_orange::after {
  position: absolute;
  background-image: url("../images/illustration-bag.png");
  left: -9px;
  bottom: -13px;
  width: 60px;
  height: 66px;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_orange::after {
    bottom: -20%;
    left: -5%;
  }
}
.top-menu li.top-button_pink {
  background-image: url("../images/top-button_pink.png");
}
.top-menu li.top-button_pink a {
  color: #94354e;
  padding: 50px 0 50px 30px;
}
.top-menu li.top-button_pink a .more-right {
  background-color: #cb5b88;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_pink a {
    padding: 44px 0 50px 20px;
  }
}
.top-menu li.top-button_pink:hover::after {
  animation: yure-flower 2s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_pink:hover::after {
    animation: none;
  }
}
.top-menu li.top-button_pink::after {
  position: absolute;
  background-image: url("../images/illustration-flower.png");
  right: 10px;
  top: -20px;
  width: 50px;
  height: 68px;
}
@media screen and (max-width: 768px) {
  .top-menu li.top-button_pink::after {
    top: -11%;
    right: -1%;
    width: 20% !important;
  }
}

/* 大きな木ーメイン文章 */
.main-textbox {
  position: relative;
  padding: 100px 0 100px;
  max-width: 1200px;
  margin: auto;
}
.main-textbox p {
  text-align: center;
  line-height: 2em;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .main-textbox p {
    font-size: 16px;
  }
}
.main-textbox .main-textbox_img {
  display: block;
  position: absolute;
  z-index: -1;
}
.main-textbox .top-backcloud01 {
  top: 0;
  left: 0;
  width: 24%;
  max-width: 283px;
  animation: huwahuwa 18s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .main-textbox .top-backcloud01 {
    width: 35%;
    animation: huwahuwa 23s ease-in-out infinite;
  }
}
.main-textbox .top-backcloud02 {
  top: 0;
  right: 0;
  width: 24%;
  max-width: 297px;
  animation: huwahuwa 15s ease-in-out infinite;
  animation-delay: -0.5s;
}
@media screen and (max-width: 768px) {
  .main-textbox .top-backcloud02 {
    width: 35%;
    animation: huwahuwa 22s ease-in-out infinite;
  }
}
.main-textbox .top-tree_box {
  position: relative;
}
.main-textbox .top-tree_box .top-tree {
  margin: auto;
  width: 160vh;
  max-width: 1100px;
  display: block;
}
@media screen and (max-width: 160vh) {
  .main-textbox .top-tree_box .top-tree {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-textbox .top-tree_box .top-tree {
    max-width: 100%;
  }
}
.main-textbox .top-tree_box .top-backcloud03 {
  position: absolute;
  top: -30px;
  left: 10%;
  width: 18%;
  max-width: 224px;
  animation: huwahuwa 16s ease-in-out infinite;
  animation-delay: -4.5s;
}
@media screen and (max-width: 768px) {
  .main-textbox .top-tree_box .top-backcloud03 {
    left: 3%;
    width: 25%;
    animation: huwahuwa 20s ease-in-out infinite;
  }
}
.main-textbox .top-tree_box .top-backcloud04 {
  position: absolute;
  top: -80px;
  right: 10%;
  width: 18%;
  max-width: 224px;
  animation: huwahuwa 14s ease-in-out infinite;
  animation-delay: -1s;
}
@media screen and (max-width: 768px) {
  .main-textbox .top-tree_box .top-backcloud04 {
    right: 3%;
    width: 25%;
    top: -50px;
    animation: huwahuwa 18s ease-in-out infinite;
  }
}
.main-textbox .top-tree_box .top-tree_note {
  position: absolute;
  width: 20%;
  bottom: 32%;
  left: 0;
  max-width: 245px;
  animation: huwakaze01 25s ease-in-out infinite;
  animation-delay: -2s;
}
.main-textbox .top-tree_box .top-tree_leaf {
  position: absolute;
  width: 35%;
  top: -80px;
  right: 0;
  max-width: 435px;
  animation: huwakaze01 23s ease-in-out infinite;
  animation-delay: -1s;
}
@media screen and (max-width: 768px) {
  .main-textbox .top-tree_box .top-tree_leaf {
    top: -10%;
  }
}

/* 園からのお知らせ / ブログ */
.top-news {
  background-image: url("../images/common_back_img01.jpg");
  position: relative;
  padding: 100px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 40px 0;
    background-size: cover;
  }
}
.top-news::before {
  content: "";
  position: absolute;
  background-image: url(../images/common-back_img01_topbottom.png);
  background-repeat: no-repeat;
  background-size: 100%;
  top: -3%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .top-news::before {
    background-size: 300%;
  }
}
.top-news::after {
  content: "";
  position: absolute;
  background-image: url(../images/common-back_img01_topbottom.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  bottom: -3%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .top-news::after {
    background-size: 300%;
  }
}
.top-news .top-news_box {
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .top-news .top-news_box {
    flex-direction: column;
  }
}
.top-news .top-news_box .top-news_ennews,
.top-news .top-news_box .top-news_blog {
  background-color: white;
  padding: 20px;
  width: 49%;
}
@media screen and (max-width: 768px) {
  .top-news .top-news_box .top-news_ennews,
  .top-news .top-news_box .top-news_blog {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-news .top-news_box .top-news_ennews .top-news_img,
  .top-news .top-news_box .top-news_blog .top-news_img {
    width: 25%;
  }
  .top-news .top-news_box .top-news_ennews .top-news_img.illustration-girl-osage,
  .top-news .top-news_box .top-news_blog .top-news_img.illustration-girl-osage {
    width: 19%;
    max-width: 80px;
  }
  .top-news .top-news_box .top-news_ennews .top-news_img.illustration-boy-udekumi,
  .top-news .top-news_box .top-news_blog .top-news_img.illustration-boy-udekumi {
    width: 29%;
    max-width: 110px;
  }
}
.top-news .top-news_box .top-news_ennews .green-title,
.top-news .top-news_box .top-news_blog .green-title {
  letter-spacing: 0;
}
.top-news .top-news_ennews .top-title_anime {
  max-width: 103px;
  width: 20%;
}
.top-news .top-news_blog .top-title_anime {
  max-width: 145px;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .top-news .top-news_blog .top-title_anime {
    width: 20%;
  }
}
.top-news ul {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .top-news ul {
    margin-top: 10px;
  }
}
.top-news ul li {
  padding-bottom: 9px;
  margin-bottom: 9px;
}
.top-news ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3%;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .top-news ul li a {
    flex-direction: column;
  }
}
.top-news ul li a:hover {
  color: #43d1c6;
}
.top-news ul li a:hover img,
.top-news ul li a:hover span {
  opacity: 0.6;
}
.top-news ul li a img {
  width: 30%;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .top-news ul li a img {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .top-news ul li a p {
    width: 100%;
  }
}
.top-news ul li a p span {
  display: block;
  background-color: #ff7b9d;
  color: white;
  border-radius: 5px;
  max-width: 50px;
  text-align: center;
  line-height: 2.3em;
  margin-bottom: 5px;
  transition: all 0.6s;
}
.top-news ul li a > p:last-of-type, .top-news ul li a > div {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .top-news ul li a > p:last-of-type, .top-news ul li a > div {
    width: 100%;
  }
}

/* 資料ダウンロード / よくある質問 */
.other-box {
  display: flex;
  align-items: center;
  gap: 5%;
  max-width: 1000px;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .other-box {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.other-box ul {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .other-box ul {
    width: 100%;
  }
}
.other-box ul li a.more {
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  margin: 20px 0 0 auto;
  position: relative;
}
.other-box ul li a.more p {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .other-box ul li a.more p {
    margin-top: 0;
    font-size: 14px;
  }
}
.other-box ul li a.more {
  /* アイコン */
}
.other-box ul li a.more.siryo-icon, .other-box ul li a.more.qa-icon {
  position: relative;
  display: flex;
  justify-content: center;
}
.other-box ul li a.more.siryo-icon::before, .other-box ul li a.more.qa-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  display: block;
  margin-right: 3%;
  width: 10%;
}
@media screen and (max-width: 768px) {
  .other-box ul li a.more.siryo-icon::before, .other-box ul li a.more.qa-icon::before {
    width: 20%;
  }
}
.other-box ul li a.more.siryo-icon::before {
  background-image: url(../images/icon-siryo.png);
  max-width: 63px;
  height: 78px;
}
@media screen and (max-width: 768px) {
  .other-box ul li a.more.siryo-icon::before {
    max-width: 33px;
  }
}
.other-box ul li a.more.qa-icon::before {
  background-image: url(../images/icon-qa.png);
  max-width: 70px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .other-box ul li a.more.qa-icon::before {
    max-width: 40px;
  }
}
.other-box ul li a.more {
  /* アイコン　end */
}
.other-box ul li a.more div {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .other-box ul li a.more div {
    width: 76%;
  }
}
.other-box ul li a.more::before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
}
.other-box .other-box_img {
  width: 35%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .other-box .other-box_img {
    width: 100%;
    max-width: 220px;
  }
}
.other-box .other-box_img::before {
  content: "";
  position: absolute;
  background-image: url("../images/illustration-3people-nawatobi.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  max-width: 495px;
  height: 249px;
  z-index: 1;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
  animation: nawatobi 1s linear infinite;
}

/* パート募集 */
.recruit-box {
  background-color: #fff4f9;
  max-width: 610px;
  width: 90%;
  margin: auto;
  padding: 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit-box {
    padding: 20px 18px;
  }
}
.recruit-box::before, .recruit-box::after {
  content: "";
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}
.recruit-box::before {
  background-image: url("../images/top-part_leaf01.png");
  width: 127px;
  height: 85px;
  bottom: -10px;
  left: -40px;
  animation: huwakaze01 6s ease-in-out infinite;
  animation-delay: -2.5s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .recruit-box::before {
    width: 90px;
    right: 0;
    bottom: -50px;
  }
}
.recruit-box::after {
  background-image: url("../images/top-part_leaf02.png");
  width: 198px;
  height: 136px;
  bottom: -24px;
  right: -80px;
  animation: huwakaze01 8s ease-in-out infinite;
  animation-delay: -1s;
  pointer-events: none;
  transition: all 0.6s;
}
@media screen and (max-width: 1100px) {
  .recruit-box::after {
    width: 20%;
    right: 0;
    bottom: -20%;
  }
}
@media screen and (max-width: 768px) {
  .recruit-box::after {
    width: 118px;
    right: -10px;
    bottom: -101px;
  }
}
.recruit-box .tel-more {
  border-bottom: 2px solid #f498c4;
  max-width: 355px;
  display: flex;
  align-items: flex-end;
  margin: 20px auto 0;
  font-weight: 600;
  text-align: center;
  padding: 0 5px 5px;
}
@media screen and (max-width: 768px) {
  .recruit-box .tel-more {
    flex-wrap: wrap;
    align-items: center;
    max-width: 270px;
  }
}
.recruit-box .tel-more span {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .recruit-box .tel-more span {
    width: 100%;
    text-align: left;
    font-size: 22px;
    margin: 0 0 3px 24px;
  }
}
.recruit-box .tel-more::before {
  content: "";
  background-image: url("../images/icon-telpink.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 25px;
  display: block;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .recruit-box .tel-more::before {
    transform: translateY(23px);
  }
}
.recruit-box .more {
  background-color: #f498c4;
  max-width: 230px;
  justify-content: space-between;
  color: white;
  padding: 8px;
  margin: 10px auto 0;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .recruit-box .more {
    max-width: 270px;
  }
}
.recruit-box .more span {
  background-color: white;
}
.recruit-box .more span::after {
  border-top: 2px solid #f498c4;
  border-right: 2px solid #f498c4;
}
.recruit-box .more:hover {
  background-color: #cd6396;
}/*# sourceMappingURL=toppage.css.map */