@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  /*font-family: "PShueiMGoStdN", "Shuei MaruGo L","typesquare";*/
  /*font-family:"UD デジタル 教科書体 N-R", "BIZ UDゴシック Regular", "Hiragino Kaku Gothic ProN", "ascii";*/
  font-family: "UD デジタル 教科書体 N-R", 'Zen Maru Gothic', sans-serif;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 1650px) {
  body {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
img {
  width: 100%;
  vertical-align: bottom;
}
a {
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}
p {
  vertical-align: middle;
}
.bold {
  font-weight: bold;
}
.red {
  color: #e71010;
}
.blue {
  color: #1313d3;
}
/*=========================================
共通パーツ(タイトルボックス)
===========================================*/
.ttl-box {
  width: fit-content;
  margin: 0 auto;
}
.ttl-box-subttl {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f5578f;
  font-weight: bold;
  font-size: 18px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.ttl-box-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 30px 0;
  font-size: 40px;
}
.ttl-box-ttl > img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .ttl-box-subttl {
    font-size: 16px;
  }
  .ttl-box-ttl {
    margin: 10px 0 30px 0;
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .ttl-box-subttl {
    font-size: 14px;
  }
  .ttl-box-ttl {
    margin: 10px 0 30px 0;
    font-size: 24px;
  }
}
/*=========================================
共通パーツ(ブランク・改行)
===========================================*/
.blank20 {
  width: 100%;
  height: 20px;
}
.br-sp_1000 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .br-sp_1000 {
    display: block;
  }
}
.br-sp_768 {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp_768 {
    display: block;
  }
}
.br-sp_580 {
  display: none;
}
@media screen and (max-width: 580px) {
  .br-sp_580 {
    display: block;
  }
}
.br-sp_480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp_480 {
    display: block;
  }
}
/*=========================================
ハンバーガー
===========================================*/
.list {
  display: flex;
  flex-wrap: wrap;
}
.item {
  position: relative;
  width: 80px;
  height: 80px;
  text-align: center;
  box-sizing: border-box;
  counter-increment: item;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
/*.item:after {
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  width: 40px;
  height: 40px;
  border: 1px solid red;
  content: counter(item);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
}*/
@media only screen and (max-width: 768px) {
  .list {
    display: block;
  }
  .item {
    width: auto;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

#menu07 span:nth-of-type(1) {
  animation: menu07-bar01 .75s forwards;
}
@keyframes menu07-bar01 {
  0% {
    transform: translateY(14px) rotate(45deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu07 span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
#menu07 span:nth-of-type(3) {
  animation: menu07-bar03 .75s forwards;
}
@keyframes menu07-bar03 {
  0% {
    transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu07.active span:nth-of-type(1) {
  animation: active-menu07-bar01 .75s forwards;
}
@keyframes active-menu07-bar01 {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(0, 14px) rotate(0);
  }
  100% {
    transform: translate(0, 14px) rotate(45deg);
  }
}
#menu07.active span:nth-of-type(2) {
  opacity: 0;
}
#menu07.active span:nth-of-type(3) {
  animation: active-menu07-bar03 .75s forwards;
}
@keyframes active-menu07-bar03 {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(0, -14px) rotate(0);
  }
  100% {
    transform: translate(0, -14px) rotate(-45deg);
  }
}
/*=========================================
ハンバーガー/SPメニュー
===========================================*/
nav {
  width: 100%;
  background-color: #ffe0e9;
  color: #000;
  text-align: center;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 10% 0;
}

@media screen and (min-width: 1000px) {
  nav {
  transform: translateY(-100%);
  }
}
@media screen and (max-width: 480px) {
  nav {
  height: 100vh;
  }
}

nav ul {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
}
@media screen and (max-width: 768px) {
  nav ul {
    margin: 5vw 0 0 0;
  }
}
@media screen and (max-width: 580px) {
  nav ul {
    margin: 10vw 0 0 0;
  }
}
nav ul li {
  width: 30%;
  margin-bottom: 20px;
}
nav ul li a {
  padding: 15px 0;
  font-size: 20px;
  background-color: #fff;
  border-radius: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  nav ul li {
    width: 48%;
    font-size: 14px;
  }
}
nav ul li a:hover {
  background-color: #f5578f;
  color: #fff;
  transition: .5s;
}
nav ul li a {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}
.sp-access > .about-dl {
  margin: 0 auto;
}
.sp-access {
  position: relative;
  margin-bottom: 100px;
}
.sp-gate {
  position: absolute;
  bottom: -50px;
  right: 50px;
  max-width: 200px;
  width: 20vw;
  z-index: 11;
}
@media screen and (max-width: 480px) {
  .sp-gate {
    right: 20px;
  }
}
nav > .header-contact {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 580px) {
  nav > .header-contact {
    width: 80%;
  }
}

/*=========================================
アコーディオン
===========================================*/
/*.toggle_wrap:last-of-type {
  border-bottom: 1px solid gray;
}*/
.toggle_switch {
  position: relative;
  cursor: pointer;
  /*padding: 5px 10px;
  border-top: 1px solid gray;*/
}
/*.toggle_switch.open {
  border-bottom: 1px solid gray;
}*/
.toggle_switch:hover {
  opacity: 0.8;
}
.toggle_switch::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../images/open.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  transition: transform .2s;
}
@media screen and (max-width: 1180px) {
  .toggle_switch::after {
    right: 10px;
  }
}
.toggle_switch.open::after {
  background-image: url('../images/close.png');
  transform: rotateZ(180deg) translateY( 50%);
  top: 50%;
}
.toggle_contents {
  display: none;
  /*padding: 5px 10px;*/
}
@media screen and (max-width: 750px) {
  .toggle_switch::after {
    top: 50%;
    transform: translateY(-50%);
    right: 6%;
    width: 5vw;
    height: 5vw;
  }
  .toggle_switch.open::after {
    transform: rotateZ(180deg) translateY( 50%);
  }
}

/*=========================================
スライダー
===========================================*/
.swiper {
  overflow: hidden;
  margin: 100px 0 0;
}
@media screen and (max-width: 1380px) {
  .swiper {
    margin: 60px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .swiper {
    margin: 0;
  }
}
.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
  transition-timing-function: linear;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 20vw;
  text-align: center;
  /*line-height: 300px;*/
}
swiper-slide > img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

/*===================================
スライダー slick
===================================*/
.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.sliderArea.w300 {
  max-width: 300px;
}
span.aks {
   display: inline-block;
}
.slick-slide {
  margin: 0 5px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 100;
  display: block;
}
.slick-next {
  right: 0;
}
.slider_0 .slick-prev {
  left: 10%;
}
.slider_0 .slick-next {
  right: 10%;
}
.slider_0 .slick-prev:before,.slider_0 .slick-next:before {
  color: #000;
  width: 30px;
  height: 30px;
  display: block;
}

/*.slider-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;

}
.slider-box .slider_0 {
  width: 100%;
  z-index: 1000;
}
.slider-box .slider_0 img {
  width: 100px;
}
.slider-inner {
  position: relative;
}
.slider_0 {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
}*/
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}

/*=========================================
アニメーション
===========================================*/

.anim-box.poyoyon2.is-animated {
  animation: poyoyon2 8s ease-in-out infinite;
}

@keyframes poyoyon2 {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  4.5% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  9% {
    transform: scale(1.02, 1.0) translate(0, 8px);
  }
  15% {transform: scale(0.98, 1.05) translate(0, -8px);
  }
  21% {
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  100% {
    opacity: 1;
  }
}
.anim-box.poyoyon3.is-animated {
  animation: poyoyon3 3s ease-in-out infinite;
}

@keyframes poyoyon3 {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1.0) translate(0, 8px);
  }
  50% {transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}

.anim-box.fuwafuwa.is-animated {
  animation: fuwafuwa 8s ease-in-out infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(-8px);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-8px);
  }
  30% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-8px);
  }
  70% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(0px);
  }
  90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
  0%, 100% {
    opacity: 1;
  }
}

.anim-box.fuwafuwa02.is-animated {
  animation: fuwafuwa02 8s ease-in-out infinite;
}

@keyframes fuwafuwa02 {
  0% {
    transform: translateY(0px);
  }
  10% {
    transform: translateY(-8px);
  }
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-8px);
  }
  80% {
    transform: translateY(0px);
  }
  90% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
  0%, 100% {
    opacity: 1;
  }
}

.anim-box.fuwafuwa03.is-animated {
  animation: fuwafuwa03 8s ease-in-out infinite;
}

@keyframes fuwafuwa03 {
  0% {
    transform: translateY(0px);
  }
  10% {
    transform: translateY(0px);
  }
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-8px);
  }
  70% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-8px);
  }
  90% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
  0%, 100% {
    opacity: 1;
  }
}


.anim-box.slideLeft.is-animated {
  animation: slideLeft 4s linear forwards, poyoyon2 3s linear 4s infinite;
}
@keyframes slideLeft {
  0% {
      transform: translateX(60%) rotate(5deg);  }
  10% {
      transform: translateX(54%) rotate(-5deg);  }
  20% {
      transform: translateX(48%) rotate(5deg);  }
  30% {
      transform: translateX(42%) rotate(-5deg);  }
  40% {
      transform: translateX(36%) rotate(5deg);  }
  50% {
      transform: translateX(30%) rotate(-5deg);  }
  60% {
      transform: translateX(24%) rotate(5deg);  }
  70% {
      transform: translateX(18%) rotate(-5deg);  }
  80% {
      transform: translateX(12%) rotate(5deg);  }
  90% {
      transform: translateX(6%) rotate(-5deg); }
  95% {
      transform: translateX(3%) rotate(-5deg);  }
  100% {
      transform: translateX(0) rotate(5deg);  }
}


.anim-box.airplane.is-animated {
  animation: airplane 8s linear infinite;
}
@keyframes airplane {
  0% {
      transform: translate(0, 0) rotate(-5deg); opacity: 0; }
  3% {
      transform: translate(0, 0) rotate(-5deg); opacity: 1; }
  97% {
      transform: translate(-90vw, -200px) rotate(-5deg); opacity: 1; }
  100% {
    transform: translate(-90vw, -200px) rotate(-5deg); opacity: 0; }
}
.anim-box.balloon.is-animated {
  animation: balloon 20s linear infinite;
}
@keyframes balloon {
  0% {
    transform: translate(0, 0); }
  98% {
    transform: translate(-49px, -200vh); opacity: 1; }
  100% {
    transform: translate(-50px, -200vh); opacity: 0; }
}


.anim-box.cloud.is-animated {
  animation: yurayura 3s linear infinite;
}
@keyframes yurayura {
  0% , 100%{
      transform: translate(5%, 0) ratate(5deg);
  }
  50%{
      transform: translate(30px, -30px) rotate(-5deg);
  }
}

.anim-box.balloon2.is-animated {
  animation: balloon2 20s linear infinite;
}
@keyframes balloon2 {
  0% {
    transform: translate(0, 0); }
  98% {
    transform: translate(40vw, -130vh); opacity: 1; }
  100% {
    transform: translate(40vw, -130vh); opacity: 0; }
}
.anim-box.swallow.is-animated {
  animation: swallow 7s linear infinite;
}
@keyframes swallow {
  0% {
      transform: translate(0, -200px) rotate(-5deg); opacity: 0; }
  3% {
      transform: translate(0, -200px) rotate(-5deg); opacity: 1; }
  97% {
      transform: translate(-85vw, 100px) rotate(-5deg); opacity: 1; }
  100% {
      transform: translate(-85vw, 100px) rotate(-5deg); opacity: 0; }
}
.anim-box.cloud2.is-animated {
  animation: yurayura2 3s linear infinite;
}
@keyframes yurayura2 {
  0% , 100%{
      transform: translate(5%, 0) ratate(5deg);
  }
  50%{
      transform: translate(30px, -30px) rotate(-5deg);
  }
}

.anim-box.none.is-animated {
  animation: none 3.9s steps;
}
@keyframes yurayura2 {
  0% , 100%{
      transform: translate(5%, 0) ratate(5deg);
  }
  50%{
      transform: translate(30px, -30px) rotate(-5deg);
  }
}


/*=========================================
フェイドアップ
===========================================*/
.fade-in {
  opacity: 0;
  transition-duration: 1300ms;
  transition-property: opacity, transform;
  transform: translate(0, 2%);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/*=========================================
ポップアップ
===========================================*/
/* popup_list */
.container{
  margin: 50px auto;
}
popup_open {
  display: block;
  width: 100%;
  height: fit-content;
  background-color: red;
}
.popup_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.popup_list li{
  width: 30.7%;
  margin-bottom: 40px;
}
.popup_list li a{
  display: block;
  width: 100%;
  height: 100%;
}
.popup_list li img{
  width: 100%;
  border-radius: 3px;
}

/* popup_content */
.popup_bg{
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  width: 100%;
  height: 100vh;
  background: rgba(64,73,82,0.8);
  transition: 0.4s;
  z-index:101;
}
.popup_content{
  position: relative;	
}
.popup_box{		
  display: none;	
  position: fixed;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 110;
  width: 500px;
  height: 600px;
  background: #fff;				
  padding: 20px;	
}
.popup_box .tit{
  text-align: center;
  margin:0 auto 20px;
}
.popup_box .tit span{
  display: inline-block;
  width: 127px;
  height: 27px;
  color:#fff;
  font-size: 14px;
  line-height: 27px;
  background: #404952;
  border-radius: 3px;
}
.popup-img{
  display: block;
  width: fit-content;
  border-radius: 3px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pupup-img > img {
  width: 100%;
  object-fit: contain;
}
.popup_box p{
  font-size: 14px;
  line-height: 1.8;
}
/* popup_nav */
.popup_nav .prev{
  position:absolute;
  top:50%;
  left:-40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  z-index:130;
}
.popup_nav .next{
  position:absolute;
  top:50%;
  right:-40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
}
.popup_nav .prev.disabled,
.popup_nav .next.disabled{
  display: none;
}
/*--close btn--*/
.popup_close{
  width: 30px;
  height: 30px;
  cursor: pointer;
  position:absolute;
  top:20px;
  right:20px;
  z-index:120;
}  
.popup_close span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  width: 30px;
  height: 2px;
  background: #434c55;
  position: absolute;
  left: 50%;
  top: 50%;
}	
.popup_close span:nth-child(1) {
  transform: translate(-50%, 50%) rotate(45deg);
}	
.popup_close span:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-45deg);
}	
@media screen and (max-width : 768px) {		
  .popup_close{
    top:-10px;
    right:-10px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
  }
  .popup_close span {
    width: 20px;
    height: 2px;
    left: 50%;
    top: 45%;
  }	
  .popup_close span:nth-child(1) {
    transform: translate(-50%, 50%) rotate(45deg);
  }	
  .popup_close span:nth-child(2) {
    transform: translate(-50%, 50%) rotate(-45deg);
  }	
}
@media screen and (max-width : 600px) {
  .popup_box{
    width: 94%;
    height: auto;
    margin: 0 auto;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
  }
  .popup_nav .prev{
    left:25px;
    width:20px;
  }
  .popup_nav .next{
    right:25px;
    width: 20px;
  }
}

/*=========================================
ヘッダー
===========================================*/
#header header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 3%;
  position: fixed;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background-color: #fff;
}
@media screen and (max-width: 1000px) {
  #header header {
    padding: 0 3%;
  }
}
.header-left img {
  max-width: 198px;
  width: 100%;
  transform: translateY(-7px);
}
.header-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .header-right {
    display: none;
  }
}
.header-right > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
  font-weight: bold;
  
}
.header-right > ul > li > a {
  line-height: 2em;
  display: block;
}

.header-contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: -moz-linear-gradient( 0deg, rgb(255,97,160) 0%, rgb(255,128,116) 46%, rgb(255,158,71) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(255,97,160) 0%, rgb(255,128,116) 46%, rgb(255,158,71) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(255,97,160) 0%, rgb(255,128,116) 46%, rgb(255,158,71) 100%);
  color: #fff;
  padding: 10px 25px;
  line-height: 2em;
  border-radius: 40px;
}
.header-contact > a > img {
  max-width: 16px;
  width: 100%;
  margin-right: 10px;
}
.header-contact > a > p {
  padding-top: 2px;
}
.sp-menu,.list {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header-right {
    display: none;
  }
  .sp-menu,.list {
    display: block;
  }
}

/*=========================================
メインビジュアル
===========================================*/
.mainvisual {
  position: relative;
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .mainvisual {
    margin-top: 80px;
  }
}
.main-txt-box {
  padding: 3%;
  /*background-color: #fff8;*/
  color: #fff;
  position: absolute;
  top: 30%;
  left: 10%;
}
@media screen and (max-width: 900px) {
  .main-txt-box {
    top: 3%;
    left: 3%;
  }
}
.main-text01,.main-text02 {
  text-shadow:  
    -1px -1px 5px #5e5e5e,
    1px -1px 5px #5e5e5e,
    -1px 1px 5px #5e5e5e,
    1px 1px 5px #5e5e5e;
}
.main-text01 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .main-text01 {
    font-size: 32px;
  }
}
@media screen and (max-width: 580px) {
  .main-text01 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .main-text01 {
    font-size: 20px;
  }
}
.main-text02 {
  font-size: 18px;
  line-height: 2em;
  top: 50%
}
@media screen and (max-width: 768px) {
  .main-text02 {
    font-size: 14px;
  }
}
@media screen and (max-width: 580px) {
  .main-text02 {
    font-size: 12px;
    line-height: 1.5em;
  }
}
.main-img {
  position: absolute;
  top: 80%;
  right: -1.2%;
  max-width: 536px;
  width: 32vw;
  z-index: 10;
}
@media screen and (max-width: 1680px) {
  .main-img {
    right: 0;
  }
}
#mainvisual .slick-slider {
  overflow-x: hidden;
}
/*=========================================
お知らせ
===========================================*/
.news {
  margin-left: 11.4%;
  transform: translateY(-30%);
  margin-bottom: 100px;
}
@media screen and (min-width: 1600px) {
  .news {
    margin-left: 150px;
  }
}
@media screen and (max-width: 1500px) {
  .news {
    margin: 0 0 10% 3%;
  }
}
@media screen and (max-width: 1500px) {
  .news {
    transform: translateY(-10%);
  }
}
@media screen and (max-width: 768px) {
  .news {
    margin: 5% 0 5% 3%;
  }
}
.news-ttlbox {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: bold;
}
.news-ttlbox > img {
  width: 20px;
}
.news ul {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .news ul {
    width: 100%;
  }
}
.news > ul > li {
  display: flex;
  align-items: center;
  margin: 20px 0;
  line-height: 1em;
}
@media screen and (max-width: 1300px) {
  .news > ul > li {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1300px) {
  .news > ul > li {
    margin: 10px 0;
  }
}
.li-ttl > p {
  width: 100%;
  line-height: 1.6;
}
@media screen and (max-width: 1300px) {
  .li-ttl {
    width: 100%;
    margin: 20px 0 15px;
  }
  .li-ttl > p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .li-ttl > p {
    width: 90%;
  }
}
@media screen and (max-width: 1300px) {
  .date {
    width: 10%;
  }
}
@media screen and (max-width: 1000px) {
  .date {
    width: 15%;
  }
}
@media screen and (max-width: 768px) {
  .date {
    width: 100px;
    padding-right: 20px;
  }
}
.category {
  padding: 10px 40px;
  width: fit-content;
  min-width: 150px;
  background-color: #6eb8f1;
  color: #fff;
  border-radius: 25px;
  margin: 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .category {
    padding: 10px 20px;
    margin: 0px;
    min-width: 110px;
  }
}


/*=========================================
教育内容
===========================================*/
.edu-text {
  width: 60%;
  margin: 0 auto 20px;
  text-align: left;
  line-height: 2.5em;
  letter-spacing: 2.5px;
}
@media screen and (max-width: 768px) {
  .edu-text {
    width: 90%;
  }
}
.edu-text2 {
  display: flex;
  justify-content: end;
}
.edu-text2 > p {
  width: 60%;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .edu-text2 > p {
    width: 90%;
    text-align: end;
    margin: 0 auto 40px;
  }
}
.edu-text > img {
  display: flex;
  justify-content: center;
  height: 18px;
  width: auto;
  object-fit: contain;
}
.edu-imgbox {
  position: relative;
}
.edu-imgbox > ul {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  gap: 5%;
}
@media screen and (max-width: 1280px) {
  .edu-imgbox > ul {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .edu-imgbox > ul {
    flex-direction: column;
  }
}

.edu-imgbox > ul > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .edu-imgbox > ul > li {
    width: 70%;
    margin: 20px auto;
  }
}
.edu-imgbox > ul > li >.gallery0 > a > p {
  text-align: center;
  font-size: 18px;
}
.edu-imgbox > ul > li > .gallery0 > a > p > span {
  text-align: center;
  font-size: 28px;
  color: #f5578f;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .edu-imgbox > ul > li > p > span {
    font-size: 22px;
  }
}
.edu-imgbox > ul > li:nth-child(2) {
  transform: translateY(50px);
}
@media screen and (max-width: 768px) {
  .edu-imgbox > ul > li:nth-child(2) {
    transform: translateY(0px);
  }
}
.edu-imgbox > ul > li:nth-child(3) {
  transform: translateY(15px);
}
@media screen and (max-width: 768px) {
  .edu-imgbox > ul > li:nth-child(3) {
    transform: translateY(0px);
  }
}
.edu-imgbox > ul > li > img:nth-child(2) {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.bg-edu {
  position: absolute;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1480px) {
  .bg-edu {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .bg-edu {
    width: 100%;
    transform: translate(-50%, -30%);
  }
}
@media screen and (max-width: 768px) {
  .bg-edu {
    display: none;
  }
}
.suberi {
  position: absolute;
  right: 50px;
  top: 0;
  max-width: 128px;
  width: 10vw;
  z-index: 10;
}
@media screen and (max-width: 1480px) {
  .suberi {
    top: -10%;
  }
}
@media screen and (max-width: 768px) {
  .suberi {
    top: 0;
  }
}
.jungle {
  position: absolute;
  left: 2%;
  bottom: 8%;
  max-width: 111px;
  width: 20vw; 
  z-index: 10;
}
@media screen and (max-width: 1480px) {
  .jungle {
    bottom: -15%;
  }
}
@media screen and (max-width: 1180px) {
  .jungle {
    bottom: -30%;
  }
}
@media screen and (max-width: 768px) {
  .jungle {
    bottom: 0%;
  }
}
/*=========================================
一日の生活
===========================================*/
#day {
  width: 100%;
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #day {
    margin-top: 40px;
  }
}
#day > .ttl-box {
  color: #2292e7;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*background-color: #a5e1ff;
  border-radius: 50px;*/
}
@media screen and (max-width: 768px) {
  #day > .ttl-box {
    top: 5%;
  }
}
#day > .ttl-box > .ttl-box-subttl {
  color: #369ce9;
}
.day-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .day-pc {
    display: none;
  }
  .day-sp {
    display: block;
  }
}
.airplane {
  width: 5%;
  position: absolute;
  top: 15%;
  left: 90%;
}
.balloon {
  width: 5%;
  position: absolute;
  bottom: 0;
  right: 5%;
}
.cloud {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 5%;
}
.balloon2 {
  width: 5%;
  position: absolute;
  bottom: 40%;
  left: 10%;
}
.swallow {
  width: 5%;
  position: absolute;
  top: 70%;
  right: 5%;
}
.cloud2 {
  width: 10%;
  position: absolute;
  bottom: 12%;
  left: 40%;
}
@media screen and (max-width: 768px) {
  .airplane {
    width: 10%;
  }
  .balloon {
    width: 10%;
  }
  .cloud {
    width: 20%;
  }
  .balloon2 {
    width: 10%;
  }
  .swallow {
    width: 10%;
  }
  .cloud2 {
    width: 20%;
    bottom: 5%;
  }
}
/*=========================================
年間行事
===========================================*/
#event {
  width: 100%;
  background-color: #f4f7d6;
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  #event {
    padding: 40px 0 0;
  }
}
#event > .ttl-box > .ttl-box-subttl {
  color: #7ebc5c;
}
#event > .ttl-box > .ttl-box-ttl {
  color: #7ebc5c;
}
#event > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1162px;
  width: 100%;
  margin: 80px auto 0;
  position: relative;
}
@media screen and (max-width: 1380px) {
  #event > ul {
    justify-content: center;
    gap: 2%;
  }
}
@media screen and (max-width: 768px) {
  #event > ul {
    margin: 30px 0;
    padding: 0 3%;
  }
}
#event > ul > li {
  width: 24%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1380px) {
  #event > ul > li {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #event > ul > li {
    width: 48%;
  }
}
.event-li1 {
  position: relative;
}
.event-li2 {
  position: relative;
}
.event-li3 {
  position: relative;
}
.event-li4 {
  position: relative;
}
.event-li5 {
  position: relative;
}
.event-li6 {
  position: relative;
}
.event-li7 {
  position: relative;
}
.event-li8 {
  position: relative;
}
@media screen and (max-width: 1380px) {
  #event > ul > .event-li1 {
    order: 0;
  }
  #event > ul > .event-li2 {
    order: 3;
  }
  #event > ul > .event-li3 {
    order: 5;
  }
  #event > ul > .event-li4 {
    order: 7;
  }
  #event > ul > .event-li5 {
    order: 2;
  }
  #event > ul > .event-li6 {
    order: 4;
  }
  #event > ul > .event-li7 {
    order: 6;
  }
  #event > ul > .event-li8 {
    order: 8;
  }
}
.carp {
  position: absolute;
  top: -50%;
  left: -5%;
  max-width: 77px;
  width: 8vw;
}
.lunch {
  position: absolute;
  top: -20%;
  right: 5%;
  max-width: 77px;
  width: 8vw;
  z-index: 8;
}
.clothes {
  position: absolute;
  bottom: -20%;
  right: -3%;
  max-width: 70px;
  width: 8vw;
}
.princess {
  position: absolute;
  bottom: -10%;
  right: -5%;
  max-width: 77px;
  width: 8vw;
}
.cherry {
  position: absolute;
  top: -30%;
  right: -9%;
  max-width: 128px;
  width: 8vw;
}
@media screen and (max-width: 1580px) {
  .cherry {
    top: -20%;
  right: -3%;
  }
}
@media screen and (max-width: 1380px) {
  .cherry {
    top: 65%;
    right: 3%;
    transform: rotate(75deg);
  }
}

.pop-li {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  z-index: 1046;
}
.pop-li img {
  max-width: 100%;
  width: fit-content;
  max-height: 500px;
  height: 700vh;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}
.pop-li h1 {
  position: fixed;
  top: 5vw;
}
.pop-li p {
  position: fixed;
  bottom: 50%;
}
@media screen and (min-width: 830px) {
  .pop-li h1 {
    top: 30px;
  }
  .pop-li p {
    bottom: 30px;
  }
}
@media screen and (max-width: 829px) {
  .pop-li h1 {
    top: 5vw;
  }
  .pop-li p {
    bottom: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .pop-li h1 {
    top: 10vw;
  }
  .pop-li p {
    bottom: 10vw;
  }
}
@media screen and (max-width: 700px) {
  .pop-li h1 {
    top: 12vw;
  }
  .pop-li p {
    bottom: 12vw;
  }
}
@media screen and (max-width: 700px) {
  .pop-li h1 {
    top: 12vw;
  }
  .pop-li p {
    bottom: 12vw;
  }
}
@media screen and (max-width: 700px) {
  .pop-li h1 {
    top: 12vw;
  }
  .pop-li p {
    bottom: 12vw;
  }
}
@media screen and (max-width: 650px) {
  .pop-li h1 {
    top: 16vw;
  }
  .pop-li p {
    bottom: 16vw;
  }
}
@media screen and (max-width: 600px) {
  .pop-li h1 {
    top: 20vw;
  }
  .pop-li p {
    bottom: 20vw;
  }
}
@media screen and (max-width: 550px) {
  .pop-li h1 {
    top: 25vw;
  }
  .pop-li p {
    bottom: 25vw;
  }
}
@media screen and (max-width: 500px) {
  .pop-li h1 {
    top: 30vw;
  }
  .pop-li p {
    bottom: 30vw;
  }
}
@media screen and (max-width: 475px) {
  .pop-li h1 {
    top: 34vw;
  }
  .pop-li p {
    bottom: 34vw;
  }
}
@media screen and (max-width: 450px) {
  .pop-li h1 {
    top: 37vw;
  }
  .pop-li p {
    bottom: 37vw;
  }
}
@media screen and (max-width: 425px) {
  .pop-li h1 {
    top: 41vw;
  }
  .pop-li p {
    bottom: 41vw;
  }
}
@media screen and (max-width: 400px) {
  .pop-li h1 {
    top: 46vw;
  }
  .pop-li p {
    bottom: 46vw;
  }
}
@media screen and (max-width: 375px) {
  .pop-li h1 {
    top: 50vw;
  }
  .pop-li p {
    bottom: 50vw;
  }
}
@media screen and (max-width: 350px) {
  .pop-li h1 {
    top: 54vw;
  }
  .pop-li p {
    bottom: 54vw;
  }
}
.image {
  display: flex;
  align-items: center;
  justify-content: center;
}
/*=========================================
入園のご案内
===========================================*/
#info {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 40px 0;
  }
}
#info  p {
  padding: 5px 0;
  line-height: 1.5em;
}

#info > .ttl-box {
  position: relative;
}
.panda {
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translate(-50%, -8%);
  max-width: 44px;
  width: 8vw;
}
.panda02 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 44px;
  width: 8vw;
}
.info-box {
  border: 1px solid #f5578f;
  border-radius: 40px;
  padding: 3%;
  margin: 40px auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .info-box {
    padding: 10px 20px;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .info-box .toggle_contents > p {
    font-size: 12px;
  }
}
.info-ttl {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .info-ttl {
    font-size: 18px;
  }
}
.info-subttl {
  font-size: 20px;
  color: #f5578f;
  margin: 40px 0 10px;
}
@media screen and (max-width: 768px) {
  .info-box .toggle_contents .info-subttl {
    font-size: 16px;
    margin: 20px 0 10px;
  }
}

.info-box .toggle_contents table {
  margin-top: 10px;
  width: 100%;
}
.info-box .toggle_contents table tr th {
  max-width: 265px;
  width: 30%;
  padding: 3%;
  text-align: center;
  background-color: #ffd4de;
  border-bottom: 5px solid #fff;
  border-right: 5px solid #fff;
  font-weight: bold;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .info-box .toggle_contents table tr th {
    max-width: 1000px;
    width: 100%;
    display: block;
    border-right: none;
  }
}
.info-box  .toggle_contents  table tr td {
  padding: 3%;
  background-color: #eeeeee;
  border-bottom: 5px solid #fff;
}
@media screen and (max-width: 768px) {
  .info-box  .toggle_contents  table tr td {
    width: 100%;
    display: block;
    font-size: 12px;
  }
}
.info-pdf {
  border-bottom: 1px solid #000;
}
.info-pdf:hover {
  opacity: 0.8;
  border-bottom: 1px solid #0008;
}
/*=========================================
よくある質問
===========================================*/
#faq {
  position: relative;
  padding: 100px 3%;
  background: url("../images/bg_faq.png") 0% 0% no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #faq {
    padding: 0px 3% 40px;
  }
}
bg_pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100vh;*/
  background-color: #f5578f;
  opacity: 0.4;
  z-index: -1;
}
Rhombus {
  background-image:  linear-gradient(135deg, #ffd4de70 25%, transparent 25%), linear-gradient(225deg, #ffd4de70 25%, transparent 25%), linear-gradient(45deg, #ffd4de70 25%, transparent 25%), linear-gradient(315deg, #ffd4de70 25%, #ffa9bd 25%);
  background-position:  20px 0, 20px 0, 0 0, 0 0;
  background-size: 10px 10px;
  background-repeat: repeat;
  z-index: 0;
}
bg-faq {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 150vh;
  object-fit: cover;
  z-index: -1;
}
.faq-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 3%;
  margin: 40px auto;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .faq-box {
    width: 90%;
  }
}
#faq > .ttl-box > .ttl-box-subttl,#faq > .ttl-box > .ttl-box-ttl {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #faq > .ttl-box > .ttl-box-subttl {
    color: #f5578f;
  }
  #faq > .ttl-box > .ttl-box-ttl {
    color: #000;
  }
}
.q-box,.a-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-q,.icon-a {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.q {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .q {
    font-size: 14px;
  }
}
.a {
  margin: 30px 0;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .a {
    font-size: 12px;
  }
}

/*=========================================
幼稚園概要
===========================================*/
#about {
  padding: 100px 0 0 0;
}
@media screen and (max-width: 768px) {
  #about {
    padding: 40px 0 0 0;
  }
}
.about-dl {
  margin: 100px auto 0 auto;
  width: 70%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .about-dl {
    margin: 40px auto 0 auto;
    width: 90%;
  }
}
.about-dl > dt {
  width: 30%;
  text-align: center;
  
  font-weight: bold;
  padding: 5px 0;
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .about-dl > dt {
    width: 100%;
  }
}
.about-dl > dt > div {
  background-color: #ffd4de;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-dl > dd {
  width: 70%;
  border-top: 1px solid #000;
  display: flex;
  align-items: center;
  padding: 20px 0 20px 20px;
}
@media screen and (max-width: 768px) {
  .about-dl > dd {
    width: 100%;
    padding: 10px 0 10px 10px;
    font-size: 12px;
  }
}
.map {
  margin: 100px auto 0 auto;  
  position: relative;
  height: 600px;
  overflow-y: hidden;
}
@media screen and (max-width: 1200px) {
  .map {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .map {
    margin: 40px auto 0 auto;
  }
}
.map iframe {
  width: 100%;
  height: 740px;
  margin-top: -140px;
}
@media screen and (max-width: 768px) {
  .map iframe {
    height: 400px;
    margin-top: 0;
  }
}
.map-info {
  border-radius: 20px;
  border: 3px solid #f5578f;
  padding: 20px;
  width: 430px;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate( 0, -50%);
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .map-info {
    position:static;
    transform: translate( 0, 0);
    width: 90%;
    margin: 20px auto;
  }
}
.map-info-box {
  margin: 15px 0;
}
.map-info-subttl {
  color: #f5578f;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .map-info-subttl {
    font-size: 14px;
  }
}
.map-info-ttl {
  color: #f5578f;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .map-info-ttl {
    font-size: 20px;
  }
}
.map-info-h {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .map-info-h {
    font-size: 14px;
  }
}
.map-info-txt {
  font-size: 20px;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .map-info-txt {
    font-size: 12px;
  }
}
.place-card.place-card-large {
  display: none;
}
/*=========================================
フッター
===========================================*/
#footer {
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #434343;
  padding: 50px 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #footer {
    font-size: 11px;
  }
}