@charset "UTF-8";
body{font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; font-weight: 500;}
img{max-width: 100%; height: auto;}
h2,h3{ font-weight: bold;}
p{line-height: 1.8;}
a{transition:0.5s;word-break: break-word;}
a:hover{opacity: 0.7;}
iframe {width: 100%;}
body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }
#header {
    display: flex;
    padding: 5px 10px;
    height: 65px;
    align-items: center;
    background: #fff;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
}
#header.header-shadow {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}
.logo img {
    width: 230px;
    border-radius: 0;
}
#g-nav {
    background: #fff;
    color: #fff;
    transition: all 0.6s;
}
#g-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
#g-nav ul ul{
	display: block;
}
#g-nav ul li{
	position: relative;
}

#g-nav ul li a {
    display: block;
    text-decoration: none;
    padding: 20px 35px;
    transition: all .3s;
    font-weight: bold;
    color: #000;
}
#g-nav ul li a:hover{
    opacity: 1;
    color: #000;
}
#g-nav ul li a::before {
    content: "";
    background-image: url(../img/ico-nav1.png);
    width: 60px;
    height: 40px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 23%;
    left: 22px;
    transition: 0.5s;
}
#g-nav ul li a:hover::before {
    transform: rotate(3deg);
    transition: 0.5s;
}
#g-nav ul li:nth-of-type(2) a::before {
    background-image: url(../img/ico-nav2.png);
    width: 48px;
    height: 30px;
    top: 27%;
    left: 18px;
}
#g-nav ul li:nth-of-type(3) a::before{
    background-image: url(../img/ico-nav3.png);
}
#g-nav ul li:nth-of-type(4) a::before {
    background-image: url(../img/ico-nav4.png);
}
#g-nav ul li:nth-of-type(5) a::before {
    background-image: url(../img/ico-nav5.png);
    left: 30px;
}
#g-nav ul li:nth-of-type(6), #g-nav ul li:nth-of-type(7) {
    width: 49.3%;
    display: inline-block;
}
#g-nav ul li a.rec-btn, #g-nav ul li a.cta-btn {
    display: block;
    background-image: url(../img/bg-btn1.png);
    width: 170px;
    margin: 1rem auto 0;
    background-size: contain;
    padding: 2rem 0;
    text-align: center;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
}
#g-nav ul li a.rec-btn:hover, #g-nav ul li a.cta-btn:hover {
    opacity: 0.8;
}
#g-nav ul li a.rec-btn {
    background-image: url(../img/bg-btn2.png);
}
nav ul li:nth-of-type(6) a::after,
nav ul li:nth-of-type(7) a::after,
nav ul li:nth-of-type(6) a::before,
nav ul li:nth-of-type(7) a::before {
    display: none!important;
}

@media screen and (max-width:1200px){
#g-nav {
    padding: 0;
    margin-top: 65px;
    border-top: 1px solid #ddd;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    transition: all 0.6s;
}

#g-nav.panelactive{
    right: 0;
}
/* nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 85vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
} */
#g-nav ul{
    display: block;
}
#g-nav ul li a{
	border-bottom:1px solid #ddd;
}
#g-nav ul li a::after {
    content: "";
    content: '';
    position: absolute;
    top: 25px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #ddd;
    border-right: 3px solid #ddd;
    transform: rotate(45deg);
    right: 31px;
}
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 9px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-image: url(../img/bg-btn1.png);
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 50%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
}
#g-nav ul li a {
    padding-left: 5rem;
    font-size: 18px;
}


}

#mainvisual {
    margin-top: 65px;
    padding-bottom: 1rem;
    position: relative;
}
.slider::after {
    content: "";
    background-image: url(../img/mv-bottom.png);
    width: 100%;
    height: 100px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.slider {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0 auto;
}
.slider-item img {
    object-fit: cover;
    width: 100%;
    object-position: center;
}
.slider, .slider-item, .slider-item img {
    height: 60vh;
    border-radius: 20px 20px 0 0;
}
.slider-item, .slider-item img {
    margin: 0 auto;
    width: 95%;
}
.slick-dots {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    bottom: 30px;
    text-align: left;
    padding-left: 2rem;
}
.slick-dots li {
    display:inline-block;
	margin:0 8px;
}
.slick-dots > li:first-child:last-child {
    opacity: 0;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: #46752e;
    border: none;
}
.slick-dots .slick-active button {
    background: #fff;
}

section {
    padding: 2rem 0;
}
h2 {
    margin: 1rem 0;
    font-size: 22px;
    line-height: 1.6;
}
section img {
    border-radius: 25px;
}
a.link-btn {
    display: block;
    background-image: url(../img/bg-linkbtn.png);
    width: 300px;
    background-position: center;
    background-size: contain;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin: 1rem auto 0;
    font-weight: bold;
    padding: 30px 10px;
    background-repeat: no-repeat;
}
#preschool {
    position: relative;
    background-image: url(../img/bg-preschool.png);
    background-size: cover;
    background-position: center;
    margin-top: 2rem;
}
#preschool .row {
    margin: 0;
}
#preschool a.col-xl-6 {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    border-radius: 25px;
    margin-bottom: 1rem;
    overflow: hidden;
    padding: 0;
}
#preschool a.col-xl-6 h3 {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#preschool a.col-xl-6:hover{
    opacity: 1;
}
#preschool a.col-xl-6 img {
    transition: 0.5s;
}
#preschool a.col-xl-6:hover img {
    transform: scale(1.2);
    transition: 0.5s;
}
ul.news-list {
    padding: 0;
    margin-bottom: 2rem;
    list-style-type: none;
}
ul.news-list li {
    padding: 10px;
    border-top: 1px solid;
}
p.date {
    margin: 0;
    font-weight: bold;
}
ul.news-list h3 a {
    color: #000;
    text-decoration: none;
}
ul.news-list h3 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}
ul.news-list li:last-child {
    border-bottom: 1px solid #000;
}
#recruit {
    background-image: url(../img/bg-recruit.png);
    background-size: cover;
}
#recruit h2{
    text-align: center;
}
#recruit .row {
    background: #fffdf0;
    padding: 1rem;
    border-radius: 15px;
    display: block;
    margin: 0;
    text-decoration: none;
    color: #2d9e88;
    font-weight: bold;
}
#recruit .row .col-xl-6 {
    padding: 0;
    overflow: hidden;
    border-radius: 25px;
}
#recruit .row:hover {
    opacity: 1;
}
#recruit .row:hover img {
    transition: 0.5s;
    transform: scale(1.2);
}
#recruit .row img{
    transition: 0.5s;
}
#footer{
    background: #efebe6;
    position: relative;
}

#page-top a{
	transition:all 0.3s;
}

#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
	opacity: 0;
    margin: 0;
    width: 70px;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
#contact {
    padding: 4rem 0 0;
}
p.c-ttl {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
#contact .col-xl-6 a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-image: url(../img/bg-fbtn.png);
    background-size: cover;
    padding: 30px 10px;
    border-radius: 30px;
    background-position: center;
    margin-bottom: 1rem;
}

#contact .col-xl-6 a h3 {
    line-height: 1.8;
    font-size: 20px;
    margin: 0;
}
#contact .col-xl-6 a.tell p {
    font-weight: bold;
    font-size: 30px;
    margin: 5px 0 0;
    line-height: 1;
}
#contact .col-xl-6 a.tell p::before {
    content: "";
    background-image: url(../img/ico-tell.png);
    display: inline-block;
    width: 20px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}
#contact .col-xl-6 a.tell p small {
    font-size: 16px;
}
#f-bottom .container {
    position: relative;
    z-index: 1;
}
#f-bottom::after {
    content: "";
    background-image: url(../img/bg-footer.png);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: 250%;
    background-position: 54%;
}
#f-bottom {
    position: relative;
    padding: 15rem 0 1rem;
    color: #fff;
    text-align: center;
    font-weight: bold;
}
#f-bottom .logo img{
    margin-bottom: 1rem;
}
p.copyright {
    margin: 0;
    font-weight: 500;
}

@media screen and (min-width:760px) {
.slider, .slider-item, .slider-item img {
    height: auto;
    border-radius: 30px 30px 0 0;
    aspect-ratio: 2 / 1;
}
.slider-item, .slider-item img {
    width: 98%;
}
.slider::after {
    height: 45%;
    bottom: -6%;
    background-size: contain;
}
ul.slick-dots {
    text-align: center;
    padding: 0;
}
section img {
    border-radius: 40px;
    width: 100%;
}
#f-bottom::after {
    background-size: 150%;
}
}

@media screen and (min-width:1200px) {
#header {
    height: 110px;
    justify-content: space-between;
    padding: 10px;
}
#mainvisual {
    margin-top: 110px;
}
#g-nav ul li:nth-of-type(6), #g-nav ul li:nth-of-type(7) {
    width: auto;
}
#g-nav ul li a {
    padding: 0 15px;
}
#g-nav ul {
    align-items: center;
}
#g-nav ul li a.rec-btn, #g-nav ul li a.cta-btn {
    width: 130px;
    margin: 0 0 0 15px;
}
#g-nav ul li a::before {
    position: unset;
    background-position: center;
    margin: 0 auto;
    height: 55px !important;
}
#g-nav ul li:nth-of-type(2) a::before {
    width: 60px;
}
#g-nav ul li:nth-of-type(3) a::before {
    width: 66px;
}
.logo img {
    width: 280px;
}
h2 {
    font-size: 25px;
}
section {
    padding: 4rem 0;
}
#intro h2 {
    margin: 2rem 0;
}
#intro h2 + p {
    margin-bottom: 3rem;
}
#preschool {
    background-position: top;
    margin-top: 4rem;
}
#preschool .row {
    margin: 3rem 0 2rem;
    justify-content: space-between;
}
#preschool a.col-xl-6 {
    width: 46%;
}
#preschool a.col-xl-6 h3 {
    font-size: 25px;
}
ul.news-list li {
    display: flex;
    align-items: baseline;
    padding: 2rem 4rem;
    gap: 30px;
}
p.date {
    width: 130px;
}
#recruit .row {
    justify-content: space-between;
    display: flex;
    border-radius: 20px;
    align-items: center;
}
#recruit h2{
    margin-bottom: 3rem;
}
#recruit h2 + p {
    padding-left: 3rem;
    line-height: 2;
}
#recruit .row .col-xl-6,#preschool a.col-xl-6 {
    border-radius: 40px;
}
#contact {
    padding: 6rem 0 ;
    position: relative;
    z-index: 1;
}
p.c-ttl {
    font-size: 20px;
    margin-bottom: 3rem;
}
#contact .col-xl-6 a.form {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .col-xl-6 a {
    margin: 0;
}

#contact .col-xl-6 a.tell {
    margin-bottom: 2rem;
}
#contact .col-xl-6 a h3 {
    font-size: 25px;
}
#contact .col-xl-6 a.tell h3 {
    font-size: 22px;
}
#contact .col-xl-6 a.recruit h3 {
    font-size: 25px;
}
#f-bottom::after {
    background-size: cover;
}
#f-bottom {
    text-align: left;
}
#f-bottom .col-xl-8 {
    display: flex !important;
}
#f-bottom .col-xl-8 > ul {
    width: 33%;
}
#f-bottom ul {
    list-style-type: none;
}
#f-bottom ul li a {
    text-decoration: none;
    color: #fff;
}
#f-bottom ul li {
    line-height: 2;
}
#f-bottom ul ul {
    padding: 0;
}
#f-bottom ul ul li a::before {
    content: "ー";
}
p.copyright {
    margin: 2rem 0 0;
    text-align: center;
}
#f-bottom::after {
    height: 130%;
}
#f-bottom .logo img {
    width: 330px;
}

#intro{
    overflow: hidden;
}
#intro .container,#preschool .container,#news .container{
    position: relative;
}
#intro .container::before,#intro .container::after {
    content: "";
    background-image: url(../img/deco-intro-l.png);
    width: 260px;
    height: 180px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    z-index: -1;
    left: -14%;
    top: -4%;
}
#intro .container::after {
    background-image: url(../img/deco-intro-r.png);
    left: auto;
    right: -10%;
    bottom: 30%;
    top: auto;
    width: 330px;
}
#preschool .container::before, #preschool .container::after {
    content: "";
    background-image: url(../img/deco-preschool1.png);
    width: 170px;
    height: 240px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    right: 0;
    top: -40%;
}
#preschool .container::after {
    background-image: url(../img/deco-preschool2.png);
    right: auto;
    left: 0;
    bottom: -29%;
    top: auto;
    height: 180px;
}
#news .container::before {
    content: "";
    background-image: url(../img/deco-news-bottom.png);
    width: 170px;
    height: 135px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    right: 0;
    bottom: -10%;
}
#contact .col-xl-6 a.tell, #contact .col-xl-6 a.recruit {
    min-height: 138px;
}
#contact .col-xl-6 a.recruit {
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact .col-xl-6 a{
    border-radius: 40px;
}
}

@media screen and (min-width:1300px) {
.container {
    max-width: 1200px;
}
#g-nav ul li a {
    font-size: 18px;
}
h2 {
    font-size: 30px;
    margin-bottom: 2rem;
}
p,li,th,td,a,dt,dd{
    font-size: 18px;
}
a.link-btn {
    font-size: 18px;
    width: 350px;
    padding: 35px;
}
.mb-xl-6 {
    margin-bottom: 6rem !important;
}
section {
    padding: 6rem 0;
}
#preschool a.col-xl-6 h3 {
    font-size: 30px;
}
#recruit .row {
    border-radius: 30px;
}
#contact .col-xl-6 a h3 {
    font-size: 30px;
}
#contact .col-xl-6 a.tell p {
    font-size: 35px;
}
#contact .col-xl-6 a.tell p::before {
    width: 25px;
    height: 30px;
}
#f-bottom p {
    font-size: 16px;
}
}
@media screen and (min-width:1400px) {
.logo img {
    width: 350px;
}
#g-nav ul li a {
    padding: 0 20px;
}
#g-nav ul li a.rec-btn, #g-nav ul li a.cta-btn {
    width: 140px;
}
.slider, .slider-item, .slider-item img {
    border-radius: 40px 40px 0 0;
}
#preschool .container::before {
    width: 200px;
    height: 280px;
    right: -7%;
    top: -48%;
}
#preschool .container::after {
    left: -7%;
    bottom: -36%;
    height: 225px;
    width: 230px;
}
#news .container::before {
    width: 210px;
    height: 160px;
    right: -11%;
}
#f-bottom::after {
    background-position: top;
}
#f-bottom {
    padding: 20rem 0 1rem;
}
#f-bottom .logo img {
    width: 350px;
}
}

@media screen and (min-width:1900px) {
#f-bottom {
    padding: 25rem 0 1rem;
}    
}

/* page */
#page_header {
    margin-top: 65px;
    height: 180px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px 20px 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
h1.page-title {
    position: absolute;
    bottom: 0;
    background: #fff;
    text-align: center;
    margin: 0 auto;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 20px 10px;
    left: 0;
    right: 0;
    width: 300px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}
h1.page-title::before {
    content: "";
    background-image: url(../img/ico-nav1.png);
    width: 35px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -35px;
}
.h-wrap {
    position: relative;
}
.bread {
    margin: 10px 0;
}
.bread a,.bread span {
    color: #000;
    text-decoration: none;
    padding: 0 3px;
}
.page-id-20 h1.page-title::before {
    background-image: url(../img/ico-nav3.png);
    width: 45px;
    margin-left: -45px;
}
.page-id-48 h1.page-title::before{
    background-image: url(../img/ico-nav4.png);
    margin-left: -25px;
}
.page-id-229 h1.page-title::before{
    background-image: url(../img/ico-nav6.png);
    width: 45px;
    margin-left: -45px;
}
.page-id-257 h1.page-title::before,.page-id-340 h1.page-title::before {
    background-image: url(../img/ico-nav7.png);
    height: 20px;
}
.post-type-archive-news h1.page-title::before,.single-news h1.page-title::before {
    background-image: url(../img/ico-nav5.png);
}
.page-id-3 h1.page-title::before{
    background-image: url(../img/ico-nav8.png);
}
@media screen and (max-width:760px) {
.page-id-3 h1.page-title::before {
    margin: 0;
}
h1.page-title {
    font-size: 20px;
}
}
h2.wp-block-heading {
    background: #E68AA3;
    box-shadow: 0px 0px 0px 5px #E68AA3;
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    color: #fff;
    letter-spacing: 1px;
}
h3.wp-block-heading::before {
    content: "";
    background-image: url(../img/bg-btn1.png);
    display: inline-block;
    width: 25px;
    height: 25px;
    background-size: cover;
    border-radius: 50%;
    vertical-align: top;
    margin-right: 10px;
}
h3.wp-block-heading {
    font-size: 20px;
    margin: 2rem 0 1rem;
}
h4.wp-block-heading {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 5px dotted #E68AA3;
    padding: 10px;
    margin: 1rem 0;
}
.wp-block-group__inner-container {
    padding: 0 1rem;
    margin: 0 auto;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    border-style: dotted;
    border-width: 2px;
    border-color: #ccc;
    border-left: none;
    border-right: none;
    padding: 20px;

}
.box {
    background: #fff;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 5px 5px 2px 0px rgba(0, 0, 0, 0.2);
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
    /* background-color: #f0fbff; */
    background-color: #efebe6;
}
dt {
    font-weight: 700;
    background: #fcbb4b;
    color: #fff;
    padding: 5px 15px;
    width: fit-content;
    border-radius: 60px;
    min-width: 120px;
    text-align: center;
    margin-right: 10px;
}
ul.goallist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    justify-content: center;
}
ul.goallist li {
    list-style-type: none;
    background: #fff;
    color: #E68AA3;
    font-weight: bold;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    text-align: center;
    border: 1px solid;
}
section.wp-block-group.has-background {
    border-radius: 60px 60px 0 0;
}
p.lead {
    font-weight: bold;
    font-size: 18px;
    line-height: 2;
}
figcaption {
    text-align: center;
}
.wp-block-columns.aim img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.wp-block-columns.aim h4 span {
    font-size: 29px;
    color: #E68AA3;
    vertical-align: middle;
    margin-right: 10px;
    line-height: 0.8;
}
.map iframe {
    border-radius: 15px;
    width: 100%;
    height: 300px;
}
img.wp-image-284{
    height: 300px;
}

@media screen and (min-width:760px) {

.h-wrap::after{
    content: "";
    background-image: url(../img/page-header-bottom.png);
    width: 100%;
    height: 100px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    padding: 30px;
}
    
#page_header {
    width: 98%;
    height: auto;
    aspect-ratio: 7 / 2;
}
.h-wrap::after {
    height: 53%;
}
h1.page-title {
    width: 370px;
}
.wp-block-group__inner-container {
    position: relative;
    max-width: 720px;
    z-index: 2;
}
.deco1 img {
    width: 300px;
    position: absolute;
    bottom: 0;
    right: 20px;
}

}

@media screen and (min-width:1200px) {
#page_header {
    margin-top: 110px;
    border-radius: 40px 40px 0 0;
}
h1.page-title {
    width: 600px;
    font-size: 30px;
    padding: 30px 10px;
    gap: 20px;
    border-radius: 30px 30px 0 0;
}
h1.page-title::before {
    width: 70px;
    height: 65px;
}
.page-id-229 h1.page-title::before {
    background-image: url(../img/ico-nav6.png);
    width: 70px;
    margin-left: -70px;
}
.post-type-archive-news h1.page-title::before,.single-news h1.page-title::before {
    width: 45px;
}
.page-id-20 h1.page-title::before {
    width: 75px;
    margin-left: -75px;
}
.page-id-257 h1.page-title::before,.page-id-340 h1.page-title::before {
    height: 40px;
    width: 60px;
}
h3.wp-block-heading {
    font-size: 23px;
}
h4.wp-block-heading {
    font-size: 20px;
}
.wp-block-group__inner-container {
    max-width: 1140px;
}
.deco1 img {
    width: 430px;
}
#page-content{
    position: relative;
}
#page-content::after {
    background-image: url(../img/deco-page.png);
    content: "";
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    background-size: 150%;
    width: 100%;
    z-index: 0;
    background-position: center top;
}
section.wp-block-group.has-background {
    border-radius: 170px 170px 0 0;
}
p.lead {
    font-size: 22px;
}
ul.goallist li {
    font-size: 20px;
    width: 49%;
}
.wp-block-columns.aim h4 span {
    font-size: 40px;
    vertical-align: bottom;
}
.wp-block-columns.aim img {
    position: absolute;
    width: 44%;
    right: 0;
    top: 15%;
}

.wp-block-columns.aim .box {
    min-height: 340px;
    padding: 3rem;
    padding-right: 5rem;
}

.wp-block-columns.aim {
    position: relative;
    margin-bottom: 6rem;
}
.wp-block-columns.aim.left img {
    right: auto;
    left: 0;
}
.wp-block-columns.aim.left .box {
    padding: 3rem;
    padding-left: 5rem;
}
.map iframe {
    border-radius: 40px;
    height: 400px;
}
img.wp-image-284{
    height: 400px;
}
.gap-6{
    gap: 4rem!important;
}
}
@media screen and (min-width:1400px) {
h3.wp-block-heading {
    font-size: 25px;
}
h3.wp-block-heading::before {
    width: 30px;
    height: 30px;
}
.wp-block-group__inner-container {
    max-width: 1200px;
} 
#page-content::after {
    background-size: 135%;
}
section.wp-block-group.has-background {
    border-radius: 300px 300px 0 0;
}

}
@media screen and (min-width:1900px) {
#page-content::after {
    background-size: 120%;
}
}

/* 園での生活 */
.page-id-162 h1.page-title::before {
    content: "";
    background-image: url(../img/ico-nav2.png);
    width: 50px;
    height: 30px;
}
.wp-block-columns.event .wp-block-column,.wp-block-column.allseason {
    padding: 2rem 3rem 1rem;
    position: relative;
    max-width: 343px;
    margin: 0 auto;
}
.wp-block-columns.event .wp-block-column::after,.wp-block-column.allseason::after {
    content: "";
    background-image: url(../img/bg-spring.png);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    background-position: center;
}
img.wp-image-168,img.wp-image-170,img.wp-image-172,img.wp-image-173,img.wp-image-175 {
    width: 85px;
    margin: 10px 0;
}

.wp-block-columns.event .wp-block-column p,.wp-block-column.allseason p {
    font-weight: bold;
    margin: 0 0 5px;
}
.wp-block-columns.event .wp-block-column.summer::after{
    background-image: url(../img/bg-summer.png);
}
.wp-block-columns.event .wp-block-column.autumn::after{
    background-image: url(../img/bg-autumn.png);
    /* left: 10px; */
}
.wp-block-columns.event .wp-block-column.winter::after{
    background-image: url(../img/bg-winter.png);
}
.wp-block-column.allseason::after{
    background-image: url(../img/bg-allseason-sp.png);
}
.smb-tabs {
    margin-top: 3rem;
}
#schedule1, #schedule2 {
    background-color: #fffdf3;
    padding: 1rem 1rem 3rem;
    background-image: url(../img/tabline1.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}
#schedule2 {
    background-color: #fbf8ff;
    background-image: url(../img/tabline2.png);
}
#schedule1 .wp-block-columns.schedule,#schedule2 .wp-block-columns.schedule {
    border-bottom: 5px dotted #eac839;
    margin: 0;
    gap: 10px 0;
    padding: 1rem;
}
#schedule2 .wp-block-columns.schedule {
    border-bottom: 5px dotted #d2b9ea;

}
#schedule1 .wp-block-group__inner-container,#schedule2 .wp-block-group__inner-container {
    padding: 0;
}
#schedule1 .wp-block-columns.schedule p,#schedule2 .wp-block-columns.schedule p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
#schedule1 .wp-block-columns.schedule .time p ,#schedule2 .wp-block-columns.schedule .time p {
    background-image: url(../img/bg-time1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 24px;
    margin: 0 auto;
    padding: 5px;
}
#schedule2 .wp-block-columns.schedule .time p {
    background-image: url(../img/bg-time2.png);
}
.smb-tabs__tabs .smb-tabs__tab-wrapper button {
    background-image: url(../img/tab1.png);
    background-size: cover;
    font-weight: bold;
    font-size: 24px;
    padding: 10px 27px !important;
    display: block;
    background-position: center;
    border-radius: 20px 20px 0 0 !important;
}
.smb-tabs__tabs .smb-tabs__tab-wrapper:nth-of-type(2) button{
    background-image: url(../img/tab2.png);

}
.smb-tabs__tabs {
    margin-bottom: 0 !important;
}
.smb-tabs.is-style-simple[data-orientation=horizontal]>.smb-tabs__tabs:where(:not(:has(.smb-tabs__tab.has-background))) .smb-tabs__tab-wrapper:not(:first-child) {
    margin-left: 5px;
}
h2.wp-block-heading.bg-ttl {
    background: transparent;
    background-image: url(../img/bg-ttl1.png);
    border: none;
    padding: 0;
    box-shadow: none;
    color: #000;
    font-size: 18px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 15px 10px;
    border-radius: 50px;
}
.schoollunch {
    gap:1rem;
}
.schoollunch .wp-block-column {
    background: #fff;
    border: 8px solid #e8e3df;
    border-radius: 10px;
    padding: 2rem;
}
.schoollunch .wp-block-column h3 {
    text-align: center;
    margin: 0 0 1rem;
}
.schoollunch .wp-block-column h3::before {
    display: none;
}
.schoollunch .wp-block-column figure img {
    border-radius: 0;
    margin-bottom: 1rem;
    object-fit: contain;
    width: 100%;
    height: 95px;
}
.schoollunch .wp-block-column p {
    margin: 0;
}
.nutritionist img {
    width: 180px;
    border-radius: 0!important;
}
.nutritionist {
    position: relative;
    margin: 3rem 0;
    padding-bottom: 1rem;
}
.nutritionist::before {
    content: "";
    background-image: url(../img/line-nutritionist.png);
    width: 40%;
    height: 15px;
    position: absolute;
    right: 0;
    top: 50px;
}
.nutritionist::after {
    content: "";
    background-image: url(../img/line-nutritionist.png);
    width: 100%;
    height: 15px;
    position: absolute;
    right: 0;
    bottom:0;
}
.nutritionist p {
    padding: 0 1rem;
}
.page-id-162 section img {
    border-radius: 15px;
}
.smb-tabs__tab[aria-selected=false] {
    opacity: 1;
}

@media screen and (min-width:760px) {
.page-id-162 .wp-block-columns {
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
}
.wp-block-columns.event .wp-block-column.summer {
    margin-top: 6rem;
}
.wp-block-columns.event .wp-block-column.autumn {
    margin-top: -5rem;
}
.wp-block-column.allseason::after {
    background-image: url(../img/bg-allseason.png);
}
.wp-block-column.allseason {
    max-width: 100%;
}
.wp-block-column.allseason .wp-block-columns {
    margin: 0;
    gap: 1rem !important;
}
.smb-tabs__tabs .smb-tabs__tab-wrapper button {
    padding: 10px 80px !important;
}
#schedule1, #schedule2 {
    padding: 3rem 1rem 4rem;
}
#schedule1 .wp-block-columns.schedule, #schedule2 .wp-block-columns.schedule {
    align-items: center !important;
    gap: 10px;
}
h2.wp-block-heading.bg-ttl {
    width: fit-content;
    margin: 0rem auto 2rem;
    font-size: 22px;
    padding: 15px 60px;
}
.page-id-162 .wp-block-columns.schoollunch {
    align-items: normal !important;
    margin-top: 2rem;
}
.page-id-162 .wp-block-columns.nutritionist {
    flex-wrap: wrap !important;
}
.nutritionist::before {
    width: 70%;
}
}

@media screen and (min-width: 782px) {
.page-id-162 .wp-block-columns.nutritionist {
    flex-wrap: nowrap !important;
    margin: 8rem 0 4rem;
}
.nutritionist::before {
    top: -40px;
}
.nutritionist img.wp-image-205 {
    position: absolute;
    top: -85px;
}
}
@media screen and (min-width: 1200px) {
.wp-block-columns.event .wp-block-column, .wp-block-column.allseason {
    padding: 4rem 3rem 3rem;
    max-width: 100%;
}
.wp-block-column.allseason .wp-block-columns {
    gap: 1.5rem !important;
    padding: 0 1rem;
}
img.wp-image-168, img.wp-image-170, img.wp-image-172, img.wp-image-173, img.wp-image-175 {
    width: 100px;
}
.wp-block-columns.event .wp-block-column.summer {
    margin-top: 11rem;
}
.wp-block-columns.event .wp-block-column p, .wp-block-column.allseason p {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.6;
}
.wp-block-column.allseason p {
    text-align: center;
    margin: 1rem 0;
}
.smb-tabs__tabs .smb-tabs__tab-wrapper button {
    padding: 15px 135px !important;
    font-size: 30px;
}
#schedule1 .wp-block-columns.schedule .time p, #schedule2 .wp-block-columns.schedule .time p {
    font-size: 30px;
    padding: 10px;
}
#schedule1 .wp-block-columns.schedule p, #schedule2 .wp-block-columns.schedule p {
    font-size: 24px;
}
#schedule1 .wp-block-columns.schedule, #schedule2 .wp-block-columns.schedule {
    gap: 2rem;
}
h2.wp-block-heading.bg-ttl {
    font-size: 26px;
    padding: 20px 100px;
}
.schoollunch .wp-block-column figure img {
    height: 130px;
    margin: 0 auto 1rem;
    display: block;
}
.schoollunch .wp-block-column .img-allergy figure img {
    width: 75%;
}
.schoollunch .wp-block-column figure img.wp-image-199 {
    width: 100%;
}
.page-id-162 .wp-block-columns.nutritionist {
    margin: 10rem 0 4rem;
    padding: 2rem;
}
.nutritionist::after, .nutritionist::before {
    height: 20px;
}
.nutritionist::before {
    top: -30px;
    width: 75%;
}
.nutritionist img.wp-image-205 {
    top: -80px;
    width: 210px;
}
.wp-block-columns.event .wp-block-column.summer::before {
    content: "";
    background-image: url(../img/deco-preschool1.png);
    width: 170px;
    height: 240px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
    top: -19%;
}
.wp-block-columns.event:nth-of-type(1) {
    margin-top: 6rem;
}
.wp-block-columns.event .wp-block-column.autumn {
    margin-top: -8rem;
}
.wp-block-column.allseason::before {
    content: "";
    background-image: url(../img/page-deco2.png);
    width: 210px;
    height: 190px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    left: 220px;
    top: -22%;
}
.page-id-162 h1.page-title::before {
    width: 66px;
    height: 45px;
}
}

@media screen and (min-width:1400px) {
.wp-block-columns.event .wp-block-column p, .wp-block-column.allseason p {
    font-size: 21px;
    margin: 0 0 15px;
}
.wp-block-column.allseason p {
    margin: 1rem 0 2rem;
}
.wp-block-columns.event .wp-block-column.summer::before {
    width: 210px;
    height: 290px;
    top: -23%;
    left: 10px;
}
.wp-block-column.allseason::before {
    width: 240px;
    height: 220px;
    left: 230px;
    top: -23%;
}
.wp-block-column.allseason .wp-block-columns {
    gap: 3rem !important;
}
h2.wp-block-heading.bg-ttl {
    font-size: 30px;
    padding: 25px 100px;
}
.page-id-162 .wp-block-columns.schoollunch {
    margin-top: 3rem;
    gap: 4rem;
}
.schoollunch .wp-block-column {
    border: 10px solid #e8e3df;
    border-radius: 20px;
}
.nutritionist img.wp-image-204 {
    width: 210px;
}
}

/* form */
.snow-monkey-form {
    margin: 2rem 0 0;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: #fffef9;
    border: 5px solid #e8e3df;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
    background: #E68AA3;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
    color: #E68AA3;
}
.smf-item__col.smf-item__col--label {
    padding: 0 0 5px;
    font-size: 20px;
}
.smf-form .smf-text-control__control,.smf-form .smf-textarea-control__control {
    border: 2px solid #E68AA3;
}
.smf-item__col.smf-item__col--label strong {
    background: #E68AA3;
    color: #fff;
    font-size: 12px;
    padding: 0 5px;
    vertical-align: middle;
    margin-left: 10px;
}
.smf-action .smf-button-control__control {
    background: transparent;
    background-image: url(../img/bg-fbtn.png);
    border: none;
    color: #fff;
    padding: 15px 45px;
    font-weight: bold;
    background-size: cover;
    background-position: center;
}
.smf-item label {
    font-weight: bold;
}
.smf-progress-tracker__item__number,.smf-progress-tracker__item:after, .smf-progress-tracker__item:before {
    background: #ddd;
}
.smf-progress-tracker__item__text {
    color: #ddd;
}
.smf-form--simple-table .smf-item {
    border-bottom: 3px dotted #E68AA3;
}
p.tell {
    font-size: 30px;
    line-height: 1;
    margin-top: 2rem;
}
p.tell small {
    font-size: 16px;
}
@media screen and (min-width:1200px) {
.snow-monkey-form {
    padding: 3rem 6rem;
}
.smf-form--simple-table .smf-item {
    padding: 2rem;
}
p.tell {
    font-size: 40px;
}
p.tell small {
    font-size: 18px;
}
}

/* archive */
.archive #page-content section,.single #page-content section {
    position: relative;
    z-index: 10;
}
.pagenavi {
    margin: 2rem auto;
    text-align: center;
}

.nav-links span,.nav-links a {
    border: 1px solid #E68AA3;
    text-decoration: none;
    padding: 5px 10px;
    color: #E68AA3;
    font-size: 16px;
}

.pagination {
    justify-content: center;
}

.nav-links span.current {
    background: #E68AA3;
    color: #fff;
    border: 1px solid #E68AA3;
}

/* single */
img.thumbnail-img {
    width: 100%;
    border-radius: 20px;
}
.entry-pager {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.back a, .next a {
  text-decoration: none;
  border: 1px solid #E68AA3;
  padding: 10px 20px;
  border-radius: 5px;
  width: 150px;
  display: block;
  text-align: center;
  color: #000;
}
.back a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 3px solid #E68AA3;
  border-bottom: 3px solid #E68AA3;
  transform: rotate(45deg);
  margin-right: 10px;
}
.next a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 3px solid #E68AA3;
  border-bottom: 3px solid #E68AA3;
  transform: rotate(-135deg);
  margin-left: 10px;
}
.single-post-contets {
    background: #fff;
    border: 4px dashed #E68AA3;
    border-radius: 15px;
    padding: 1rem 1rem 2rem;
}
.single-post-contets a {
    color: #000;
}
.wp-block-file__button:hover {
    color: #fff;
}
.wp-block-file__button {
    background: #fcbb4b;
    color: #fff!important;
}
.page-id-3 #page-content a {
    color: #000;
}
@media screen and (min-width:760px) {
.single-post-contets {
    padding: 2rem 4rem;
}
}
@media screen and (min-width:1200px) {
.single-post-contets {
    padding: 2rem 6rem;
    border-radius: 45px;
}
}

@media screen and (min-width:1300px) {
.back a, .next a {
    width: 200px;
    padding: 20px;
}
}