/*共通
=========================================*/
/*改行レスポンシブ*/
@media screen and (min-width: 481px){
	.br_sp {
		display: none;
	}
}
/*-----------------------------------------
ヘッダー
-----------------------------------------*/
/*スライダー*/
.heaer-main__img {/*layout.css .heaer-main*/
    width: 100%;
    height: 700px;
    object-fit: cover;
}

/**/
.heaer-main_catch.wd950 {}

.heaer-main_catch__h {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 70%;
    transform: translate(-50%,-50%) rotate(.1deg);
}

@media screen and (max-width: 767px) {
    .heaer-main_catch__h {
        left: 50%;
        width: 50%;
    }
    .heaer-main__img {
        height: 500px;
    }
}
.slider-wrapper {
    position: relative;
    overflow: hidden
}

.swiper-slide .slider-img {
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

.swiper-slide {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slider-container .swiper-slide .slider-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    max-height: 700px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.slide1 {
    background-image: url(../img/slide1@2x.jpg)
}

.slide2 {
    background-image: url(../img/slide2@2x.jpg)
}

.slide3 {
    background-image: url(../img/slide3@2x.jpg)
}

.top1-text {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 70%;
    transform: translate(-50%,-50%) rotate(.1deg);
    width: 100%;
    opacity: 0
}

.top1-text p {
    color: #fff;
    text-shadow: 0 0 5px #6788be;
    text-align: center
}

@media screen and (max-width: 767px) {
    .slider-wrapper {
        margin-top: 100px
    }
    .swiper-slide .slider-img {
        height: 500px;
    }

    .slider-container .swiper-slide .slider-img {
        height: 500px;
        max-height: 500px;
    }

    .top1-text {
        left: 50%;
        width: 80%;
    }

}
@media screen and (max-width: 480px) {
    .top1-text p img {
        width: 16%;
    }
}

.swiper-slide-active .slider-img,.swiper-slide-duplicate-active .slider-img,.swiper-slide-prev .slider-img {
    animation: 7s linear both zoom
}

@keyframes zoom {
    0% {
        transform: scale(1.1) rotate(.1deg);
        filter: brightness(200%)
    }

    20% {
        filter: brightness(100%)
    }

    100% {
        transform: scale(1) rotate(.1deg)
    }
}

.slideLetter {
    transform: translateY(30px) rotate(.1deg);
    transition: .5s;
    display: inline-block;
    opacity: 0
}

.slideLetter.on {
    opacity: 1;
    transform: translateY(0) rotate(.1deg)
}

.slideLetter2 {
    transform: translateY(30px) rotate(.1deg);
    transition: .5s;
    display: inline-block;
    opacity: 0
}

.slideLetter2.on {
    opacity: 1;
    transform: translateY(0) rotate(.1deg)
}

/*サブヘッダー*/
.sub_header-mailn {
}
.sub_header-mailn img {
    width: 100%;
    height: 300px;
    /*object-fit: cover;*/
  margin-top: -35px !important;
}

/*-----------------------------------------
ボタン等
-----------------------------------------*/
/*追従ボタン（保護者の）*/
.chase_btn {
	position: fixed;
    z-index: 50;
    bottom: 80px;
    right: 10px;
    background: #fff;
    border-radius: 0 10px 0 10px;
    box-shadow: 0px 3px 10px rgba(0,0,0,.1);
}
.chase_btn {
  animation: fuwafuwa 3s infinite ease-in-out 1.2s alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 210px;
  margin-top: 15px;
}

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-0deg);
  }
  50% {
    transform:translate(0, -10px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(0deg);
  }
}

.chase_btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px;
    transition: .3s;
}

.chase_btn__p1 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    background: #D95F93;
    border-radius: 0 10px 0 0;
    padding: 6px 0;
    transition: .3s;
}
.chase_btn a:hover .chase_btn__p1 {
    background: #C75173;
}
.chase_btn__p1::before {
    display: inline-block;
    content: "";
    width: 1em;
    height: 1.5em;
    background: url(../img/chase_btn-key.svg) no-repeat center / contain;
    margin-right: 10px;
    margin-bottom: -3px;
    flex-shrink: 0;
}
.chase_btn a:hover .chase_btn__p1::before {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes swing {
    20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    }
    }
    @keyframes swing {
    20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    }
}
.chase_btn__p2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #D95F93;
    background:#FEEDED;
    border-radius: 0 0 0 10px;
    padding: 4px 0;
    transition: .3s;
}
.chase_btn a:hover .chase_btn__p2 {
    letter-spacing: 0.1em;
}
@media screen and (max-width: 540px) {
    .chase_btn {
        width: 170px;
    }
    .chase_btn__p1 {
        font-size: 14px;
        padding: 4px 0;
    }
    .chase_btn__p1::before {
        width: 1em;
        height: 1.4em;
        margin-right: 10px;
        margin-bottom: -3px;
        flex-shrink: 0;
    }
    .chase_btn__p2 {
        padding: 2px 0;
    }
}

/*ページトップボタン*/
.page-top {
	display: block;/*none;*/
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 90;
	margin-bottom: 0;
	background-color: #A34A80;
	line-height: 1.0;
    transition: .3s;
}
.page-top:hover {
	background-color: #D95F93;
    transform: translateY(-5px);
}

.page-top a {
	display: block;
	padding: 10px;/*20 20*/
	text-align: center;
}

.page-top a::before{
	display: inline-block;
	font-size: 291%;/*256*/
    font-family: 'Material Icons';
    content: '\e316';
	color: #fff;
	text-decoration: none;
}
@media screen and (max-width: 540px) {
    .page-top a::before{
        font-size: 246%;
    }
}

/* パンくずリスト */
.cp-breadcrumb_box {
    position: relative;
    background: #fff;
    margin-top: -30px;
    margin-bottom: 20px;
    padding-top: 20px;
}
.cp-breadcrumb {
    list-style: none;
    text-align: left;
    font-size: 80%;
}
.cp-breadcrumb__item {
    display: inline;
    position: relative;
    line-height: 1.5;
    color: #333;
    font-weight: 400;
}
.cp-breadcrumb__item:not(:first-child) {
    margin-left: 24px;
}
.cp-breadcrumb__item:not(:last-child):after {
    position: absolute;
    top: 60%;
    right: -16px;
    transform: translateY(-50%);
    font-weight: 900;
    font-family: 'Material Icons';
    content: '\e5cc';
    color: #707070;
}
.cp-breadcrumb__item a {
    transition: .2s ease-in-out;
    color: #333;
    font-weight: normal;
}
.cp-breadcrumb__item a:hover {
    color: #10589E;
    text-decoration: underline !important;
}


/*-----------------------------------------
ナビゲーション
-----------------------------------------*/

/* general style
----------------------------------------- */
#menu-trigger{
	width: 60px;
	height: 60px;
	background-color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	display: none;
	cursor: pointer;
}
#menu-trigger a,
#menu-trigger a span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
#menu-trigger a{
	position: absolute;
	top: 18px;
	right: 14px;
	width: 30px;
	height: 18px;
}
#menu-trigger a span{
	width: 100%;
	height: 2px;
	background-color: #A34A80;
	position: absolute;
	left: 0;
}
#menu-trigger a span:nth-of-type(1) {
	top: 0;
}
#menu-trigger a span:nth-of-type(2) {
	top: 8px;
}
#menu-trigger a span:nth-of-type(3) {
	bottom: 0;
}
#menu-trigger.open a span:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
	transform: translateY(7px) rotate(-45deg);
}
#menu-trigger.open a span:nth-of-type(2) {
	opacity: 0;
}
#menu-trigger.open a span:nth-of-type(3) {
	-webkit-transform: translateY(-7px) rotate(45deg);
	transform: translateY(-7px) rotate(45deg);
}

#topcontrol{
    padding: 10px;
	background: rgba(204,204,204,0.4);
}

#menu-trigger::before {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: '';
    background-image: url(../img/icon_tell2.svg);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
display: inline-block;
    margin-left: -44px;
    margin-top: 16px;
}

/* /general style*/

/* layout parts
----------------------------------------- */
@media all and (max-width: 1100px){
	#menu-trigger{
		display: block;
	}
}
@media all and (max-width: 640px){
    .display-pc{
        display: none;
    }
    .display-sp{
        display: inherit;
    }
}
/* /layout parts*/



/* header
----------------------------------------- */
#header{
	position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 90%;
    height: 100px;/*97*/
    background-color: #fff;
    border-bottom-left-radius: 10px;
    transition: .2s;
}
/*コンテナ#header,
.fixed #header{
    background-color: rgba(51,51,51,1);
}*/

@media all and (max-width: 1100px){
    #header{
        width: 100%;
        height: 60px;
        border-bottom-left-radius: 0;
    }
}

@media all and (max-width: 768px){
    #main,
    #sub{
        float: none;
        clear: both;
        width: 100%;
    }
}



#header .logo{
	float: left;
	clear: left;
	width: 342px;
	margin: 10px 0 12px 10px;/*10*/
	padding: 0;
	line-height: 1;
}/*
#header .back{
	float: left;
	margin: 0;
	padding: 0;
	line-height: 84px;
}
#header .back a{
	color: #FFF;
	padding-left: 20px;
	text-decoration: none;
	position: relative;
}
#header .back a::before{
	content: "";
	width: 13px;
	height: 12px;
	background-image: url(../img/back_icon.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	display: block;
	position: absolute;
	top: 2px;
}*/

@media all and (max-width: 1100px){
#header .logo{
	width: 270px;
	margin: 10px;
}
/*#header .back{
	line-height: 40px;
}*/
}
@media all and (max-width: 640px){
#header .back a{
	font-size: 0;
}/*
#header .back a::before{
	top: -11px;
}*/
}
/* /header*/

/* nav
----------------------------------------- */
nav#gloval-nav{
	float: right;
    /*border-top: 10px solid #CE576D;*/
}
nav#gloval-nav:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 10px;
}
nav#gloval-nav ul{
	margin: 0;
	padding: 0;
	line-height: 60px;
	clear: both;
	overflow: auto;
}
nav#gloval-nav ul li{
	position: relative;
	float: left;
	margin: 0;
	padding: 10px 0 0;
	display: inline;
    width: 11vw;
    max-width: none;
    text-align: center;
}
@media screen and (max-width: 1700px) {
    nav#gloval-nav ul li{
        width: 11vw;
    }
}
@media screen and (max-width: 1600px) {
    nav#gloval-nav ul li{
        width: 10.2vw;
    }
}
@media screen and (max-width: 1280px) {
    nav#gloval-nav ul li{
        width: 9.2vw;
        max-width: 120px;
    }
}

nav#gloval-nav ul li:before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 10px;
}
/*ナビ上の線*/
nav#gloval-nav ul li:first-child:before {
    background: #A34A80;
}
nav#gloval-nav ul li:nth-child(2):before {
    background: #C15482;
}
nav#gloval-nav ul li:nth-child(3):before {
    background: #C75173;
}
nav#gloval-nav ul li:nth-child(4):before {
    background: #CE576D;
}
nav#gloval-nav ul li:nth-child(5):before {
    background: #C86168;
}
nav#gloval-nav ul li:last-child:before {
    background: #C17062;
}


nav#gloval-nav ul li:last-child:after{
	display: none;
}

/*ナビ*/
nav#gloval-nav ul li a{
    display: block;
    font-size: 100%;
    font-weight: 700;
	color: #A34A80;
    width: 100%;
    height: 100%;
}
nav#gloval-nav ul li:first-child a{
    color: #A34A80;
}
nav#gloval-nav ul li:first-child a:hover{
    color: #fff;
    background: #A34A80;
}
nav#gloval-nav ul li:nth-child(2) a{
    color: #C15482;
}
nav#gloval-nav ul li:nth-child(2) a:hover{
    color: #fff;
    background: #C15482;
}
nav#gloval-nav ul li:nth-child(3) a{
    color: #C75173;
}
nav#gloval-nav ul li:nth-child(3) a:hover{
    color: #fff;
    background: #C75173;
}
nav#gloval-nav ul li:nth-child(4) a{
    color: #CE576D;
}
nav#gloval-nav ul li:nth-child(4) a:hover{
    color: #fff;
    background: #CE576D;
}
nav#gloval-nav ul li:nth-child(5) a{
    color: #C86168;
}
nav#gloval-nav ul li:nth-child(5) a:hover{
    color: #fff;
    background: #C86168;
}
nav#gloval-nav ul li:last-child a{
    color: #C17062;
}
nav#gloval-nav ul li:last-child a:hover{
    color: #fff;
    background: #C17062;
}

/*ナビ　アクティブ*/
nav#gloval-nav ul li.active a {
    color: #fff;
}
/*************************************/

nav#gloval-nav ul li:first-child.active a{
    background: #A34A80;
}
nav#gloval-nav ul li:nth-child(2).active a{
    background: #C15482;
}
nav#gloval-nav ul li:nth-child(3).active a{
    background: #C75173;
}
nav#gloval-nav ul li:nth-child(4).active a{
    background: #CE576D;
}
nav#gloval-nav ul li:nth-child(5).active a{
    background: #C86168;
}
nav#gloval-nav ul li:last-child.active a{
    background: #C17062;
}
/*************************************/


nav#spmenu{
	display: none;
}

/* /nav*/
.desc_tel {
    justify-content: space-between;
    background: #F7EDF1;
    border-bottom-left-radius: 10px;
    width: 100%;
    padding-top: 1px;
    padding-bottom: 1px;
}
.desc_tel__desc {
    font-size: 62.5%;
    text-align: left;
    color: #C75173;
    padding-left: 2em;
    padding-top: 5px;
}
.desc_tel__tel {
    position: relative;
    font-size: 125%;
    font-weight: 700;
    text-align: right;
    padding-right: 0.5em;
    color: #D66291 !important;
}
.desc_tel__tel::before {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: '';
    background-image: url(../img/icon_tell1.svg);
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
display: inline-block;
    margin-left: -20px;
    margin-top: 9px;
}



@media all and (max-width: 1100px){
    .desc_tel {
        border-bottom-left-radius: 0;
    }
    .desc_tel__tel {
        display: none;
    }
    .desc_tel__desc {
        padding-top: 2px;
        padding-bottom: 3px;
        padding-right: 1em;
    }

nav#gloval-nav{
	display: none;
}

/*spメニュー*/
nav#spmenu{
	float: none;
	width: 100%;
	margin: 0px;
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
	top: 60px;
	z-index: 600;
	display: none;
    transition: .2s ease-in-out;
}
.nav-open nav#spmenu{
	display: block;
}
nav#spmenu ul{
	margin: 0px;
	padding: 0px;
	display: block;
}
nav#spmenu ul li{
	list-style-type: none;
}
nav#spmenu ul li a{
	color: #A34A80;
    font-size: 90%;
	font-weight: bold;
	padding: 10px;
	display: block;
	text-decoration: none;
}
nav#spmenu ul li a:hover,
nav#spmenu ul li.active a{
    color: #fff;
	background: rgba(193, 84, 130, 0.8);
	text-decoration: none;
}
}



/*-----------------------------------------
フッター
-----------------------------------------*/
/*コピーライト*/
.copy {
    background: #D95F93;
    color: #fff;
    padding: 23px;
}
.copy small {
    font-size: 80%;
}

/*お問い合わせ*/
.footer_contact {
    position: relative;
    z-index: 10;
    width: 90%;
    padding-top: 20px;
    padding-bottom: 60px;
    border-bottom-left-radius: 10px;
    background: #fff;
}
.c-midasi2{
    width: 90%;
    align-items: center;
    color: #CE576D;
    border-top:  1px solid #CE576D;
    border-bottom:  1px solid #CE576D;
    padding-top: 23px;
    padding-bottom: 23px;
    margin-bottom: 40px;
}
.c-midasi2__h2{
    color: #C17062;
    text-align: left;
}
.footer_contact__addhoka{
    width: 90%;
    justify-content: space-between;
}
.footer_contact__addhoka__L-add{
    width: 350px;
    margin-right: 10px;
}
.footer_contact__addhoka__L-add__p{
    color: #333;
    text-align: left;
}
.footer_contact__addhoka__R-tel {
    width: calc(100% - 395px);
    max-width: 600px;
}

.footer_contact__addhoka__R-tel__inner {
    justify-content: space-between;
}
.footer_contact__addhoka__R-tel__L{
    font-size: 190%;
    font-weight: 700;
    color: #C17062 !important;
    letter-spacing: 0;
    width: 235px;
    text-align: right;
    white-space: nowrap;
}
.footer_contact__addhoka__R-tel__L a {
    color: #C17062;
    font-weight: 700;
}

.footer_contact__addhoka__R-tel__L::before {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: '';
    background-image: url(../img/icon_tell2.svg);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
display: inline-block;
    margin-left: -30px;
    margin-top: 13px;
}
.footer_contact__addhoka__R-tel__R {
    width: calc(100% - 255px);
}
.footer_contact__addhoka__R-tel__R .c-block-btn_box {}
.footer_contact__addhoka__R-tel__R .c-block-btn {
    margin-right: 0;
    margin-left: auto;
    background:#C17062;
    border: 1px solid #C17062;
    max-width: 300px;
}
.footer_contact__addhoka__R-tel__p{
    color: #333;
    text-align: right;
}
@media screen and (max-width: 1170px) {
    .footer_contact__addhoka__R-tel__p{
        text-align: left;
    }
}
@media screen and (max-width: 1150px) {
    .footer_contact__addhoka__L-add,
    .footer_contact__addhoka__R-tel {
        width: 100%;
    }
    .footer_contact__addhoka__L-add__p {
        text-align: center;
    }
    .footer_contact__addhoka__R-tel {
        max-width: 600px;
        margin-right: auto;
        margin-left: auto;
    }
    .footer_contact__addhoka__R-tel__p{
        text-align: right;
    }
    .footer_contact__addhoka__L-add {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767px) {
    .footer_contact__addhoka__L-add {
        margin-bottom: 30px;
    }
    .footer_contact__addhoka__R-tel__inner {
        margin-bottom: 1em;
    }
}
@media screen and (max-width: 680px) {
    .footer_contact__addhoka__R-tel__L,
    .footer_contact__addhoka__R-tel__R {
        width: 100%;
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
    .footer_contact__addhoka__R-tel__p{
        max-width: 300px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
}
@media screen and (max-width: 390px) {
    .footer_contact__addhoka__L-add__p {
        font-size: 90%;
    }
}

/*外観住所*/
.footer_exterior-map{
    /*max-height: 600px;*/
    margin-top: -50px;
    justify-content: space-between;
}
.footer_exterior-map__L {
    width: 50%;
}
.footer_exterior-map__L img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}
.footer_exterior-map__R-gmap{
    width: 50%;
    height: 600px;
    overflow: hidden;
}
.gmap {
    height: 100%;
    /*padding-bottom: 58.765%;*/
    position: relative;
    overflow: hidden;
}
.footer_exterior-map__R-gmap {
	position: relative;
}
.footer_exterior-map__R-gmap iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    filter: grayscale(0.2) saturate(0.6);
}

.footer_exterior-map__R-gmap:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #D95F93;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: hue;
    pointer-events: none;
}

@media screen and (max-width: 1024px) {
    .footer_exterior-map__L img,
    .footer_exterior-map__R-gmap {
        height: 500px;
    }
}
@media screen and (max-width: 767px) {
    .footer_exterior-map__L img,
    .footer_exterior-map__R-gmap {
        height: 400px;
    }
}
@media screen and (max-width: 580px) {
    .footer_exterior-map__L,
    .footer_exterior-map__R-gmap {
        height: 360px;
        width: 100%;
    }
}

/*-----------------------------------------
コンポーネント
-----------------------------------------*/

/*ボタン*/
.c-block-btn_box {}
.c-block-btn {
    display: block;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    font-size: 100%;
    text-align: center;
    padding-top: 13px;
    padding-bottom: 13px;
    color: #fff;
    background:#C15482;
    border: 1px solid #C15482;
}
.c-block-btn:hover {
    color: #C15482;
    background:#fff;
    border: 1px solid #C15482;
    letter-spacing: 0.15em;
}


/*見出し1うつくし（画像）*/
.c-midasi1__h2 {}
.c-midasi1__p {
    font-size: 90%;
    font-weight: 400;
    color: #3D2D34;
}

/*見出し2*/
.c-insta-note_midasi {}
.c-insta-note_midasi__h2 {}
.c-insta-note_midasi_logo {}

/*見出し2b*/
.c-midasi2 {
    color:#C17062;
}
.c-midasi2__h2 {}
.c-midasi2b {
    width: 100%;
    align-items: center;
    border-top:  1px solid #C15482;
    border-bottom:  1px solid #C15482;
    padding-top: 23px;
    padding-bottom: 23px;
    margin-bottom: 40px;
}
.c-midasi2b__h2 {
    color: #C15482;
    text-align: left;
}
.c-midasi2b__h3 {
    color: #C15482;
}

@media screen and (max-width: 767px) {
    .c-midasi2b {
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 480px) {
    .c-midasi2b {
        padding-top: 12px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-midasi2{
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 480px) {
    .c-midasi2 {
        padding-top: 12px;
        padding-bottom: 12px;
        margin-bottom: 30px;
    }
}


/*見出し3うつくし（画像）園について*/
.c-midasi3_h2 {}

/*カラー1*/
.c-iro1 {
    color:#A34A80;
}
/*カラー2*/
.c-iro2 {
    color:#C75173;
}

/*カラー3*/
.c-iro3 {
    color:#C15482;
}
/*カラー黒文字*/
.c-iro4 {
    color:#3D2D34;
}
/*カラー黒文字2*/
.c-iro_blk {
    color:#333;
}

/*カラーお問い合わせ*/
.c-iro_contact {
    color:#C17062;
}

/*-----------------------------------------
カルーセル
-----------------------------------------*/

.display-pc{
	display: none!important;
}
.display-sp{
	display: inherit!important;
}


/* slide
----------------------------------------- */
.slick-prev,
.slick-next{
	font-size: 0;
	border: none;
	background: none;
	outline: none;
	position: absolute;
	z-index: 10;
	cursor: pointer;
}
.slick-prev{
	top: 45%;
    left: 15px;
}
.slick-prev::before{
   content: url(./prev_arrow.png);
 }
.slick-next{
	top: 45%;
    right: 15px;
}
.slick-next::before {
   content: url(./next_arrow.png);
}

/* slide */
#image-section article{
	position: relative;
}
#image-section article img{
	width: 100%;
}
#image-section article h2{
	color: #FFF;
	font-size: 300%;
	font-weight: normal;
	margin: 0px;
	padding: 6px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
    text-shadow:0 0 6px rgba(0, 0, 0, .5);
}
#entei_wrap__carousel{
	text-align: left;
	position: relative;
	z-index: 20;
}
#entei_wrap__carousel nav{
	margin-bottom: -50px;
	top: -50px;
}
#entei_wrap__carousel nav .slick-list{
	margin: 0px -20px;
}
#entei_wrap__carousel article a{
	color: #333;
	margin: 0px 20px;
	padding: 0px 20px 20px;
	background-color: #f1f1f1;
	text-decoration: none;
	display: block;
}
#entei_wrap__carousel article p.img{
	margin: 0px auto;
	padding: 35px 0px 0px;
	text-align: center;
	display: table;
	position: relative;
}
#entei_wrap__carousel article p.img::before{
	content: "";
	width: 100px;
	height: 5px;
	background-color: #EDEDED;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
#entei_wrap__carousel article dl dd img{
	margin: 0px auto;
}
#entei_wrap__carousel article h3{
	font-size: 115%;
	font-weight: bold;
	margin: 20px 0px;
	padding: 0px;
	text-align: center;
}
#entei_wrap__carousel article p.more{
	font-weight: bold;
}
#entei_wrap__carousel article a:hover p.img,
#entei_wrap__carousel article a:hover h3{
	opacity: 0.7;
}
#entei_wrap__carousel article a:hover p.more{
    color: #57AD21;
}
#entei_wrap__carousel .proposal01 p.img::before{
	background-color: #F05CA6;
}
#entei_wrap__carousel .proposal01 h3{
	color: #EA978A;
}
#entei_wrap__carousel .proposal02 p.img::before{
	background-color: #3EBBE0;
}
#entei_wrap__carousel .proposal02 h3{
	color: #67D7C7;
}
#entei_wrap__carousel .proposal03 p.img::before{
	background-color: #DBAA25;
}
#entei_wrap__carousel .proposal03 h3{
	color: #EC8E59;
}
#entei_wrap__carousel h2{
	margin: 0px;
	padding: 0px;
	line-height: 0;
}
#entei_wrap__carousel h2 img{
	width: 100%;
}
@media all and (max-width: 980px){
	#image-section article h2{
		font-size: 200%;
		line-height: 1.2em;
	}
	#entei_wrap__carousel nav{
		margin-bottom: -30px;
		top: -30px;
	}
	#entei_wrap__carousel .inner{
		padding: 0px;
		overflow: hidden;
	}
	#entei_wrap__carousel article{
		width: 300px;
		margin: 0px auto;
	}
}
@media all and (max-width: 480px){
	#entei_wrap__carousel article{
		width: 260px;
}
}


/*-----------------------------------------
トップページ
-----------------------------------------*/
/*延長保育*/
.entyohoiku_wrap {
    position: relative;
    background: #fff;
    /*padding-top: 50px;*/
    width: 90%;
}
.feature1 {
    position: relative;
}
.feature1__img {
    position: absolute;
    left: 40px;
    top: 55px;
}
.entyohoiku_wrap__gaiyo {
    margin-bottom: 40px;
}
.entyohoiku_wrap__gaiyo .c-midasi1__h2 {
    position: relative;
}
.entyohoiku_wrap__gaiyo::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 6%;
    display: block;
}
.entyohoiku_wrap__gaiyo::after {
    position: absolute;
    content: '';
    top: -100px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 133px;
    height: 133px;
    background-image: url(../img/entyohoiku_deco1.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
/*<!-- ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ -->
-----------------*/
.c-midasi1__h2 {
    margin-bottom: 40px;
}
.c-midasi1__p {
    text-align: left;
}
/*<!-- ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ -->
-----------------*/

.entyohoiku_wrap__time {
    position: relative;
    justify-content: space-between;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
/*水平線*/
.entyohoiku_wrap__time::after, .entyohoiku_wrap__time::before {
    position: relative;
    z-index: 0;
    border-top: 1px solid #A34A80;
    content: "";
    flex-grow: 1;
    margin-top: -8%;
}
.entyohoiku_wrap__time__L,
.entyohoiku_wrap__time__C,
.entyohoiku_wrap__time__R {
    background: #fff;
    z-index: 10;
    width: 140px;
}

.entyohoiku_wrap__time__L {
    position: absolute;
    color: #A34A80;
}
.entyohoiku_wrap__time__C {
    color: #C15482;
}
.entyohoiku_wrap__time__R {
    position: absolute;
    right: 0;
    color: #C75173;
}
.entyohoiku_wrap__time__L__time_p,
.entyohoiku_wrap__time__C__time_p,
.entyohoiku_wrap__time__R__time_p {
    font-size: 120%;
    font-weight: 700;
}
.entyohoiku_wrap__time__L__p,
.entyohoiku_wrap__time__C__p,
.entyohoiku_wrap__time__R__p {
    font-size: 90%;
    font-weight: 400;
}

@media screen and (max-width: 1024px) {}
@media screen and (max-width: 767px) {
    .entyohoiku_wrap__gaiyo::after {
        top: -80px;
        width: 100px;
        height: 100px;
    }
    .feature1__img {
        width: 174px;
    }
    .c-midasi1__h2 {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
    .entyohoiku_wrap__time::after, .entyohoiku_wrap__time::before {
        margin-top: -9%;
    }
    .entyohoiku_wrap__time__L__time_p,
    .entyohoiku_wrap__time__C__time_p,
    .entyohoiku_wrap__time__R__time_p {
        font-size: 125%;
    }
    .entyohoiku_wrap__time__R .entyohoiku_wrap__time__L__time_p {
        font-size: 120%;
    }
}
@media screen and (max-width: 580px) {
    .entyohoiku_wrap__gaiyo::after {
        top: -60px;
        width: 80px;
        height: 80px;
    }
    .entyohoiku_wrap__time::after, .entyohoiku_wrap__time::before {
        margin-top: -8%;
    }
    .entyohoiku_wrap__time__L__time_p,
    .entyohoiku_wrap__time__C__time_p,
    .entyohoiku_wrap__time__R__time_p {
        font-size: 90%;
    }
    .entyohoiku_wrap__time__L__p,
    .entyohoiku_wrap__time__C__p,
    .entyohoiku_wrap__time__R__p {
        font-size: 80%;
    }
}


/*1024px以上非表示 時計*/
@media screen and (min-width: 1024px) {
    .about_wrap__R__time .spelement_time480 {
        display: none;
    }
}

/*768px以上1023px以下非表示 時計*/
@media screen and (min-width:767px) and ( max-width:1023px) {
    .about_wrap__R__time::after, .about_wrap__R__time::before,
    .about_wrap__R__time .entyohoiku_wrap__time__L,
    .about_wrap__R__time .entyohoiku_wrap__time__C,
    .about_wrap__R__time .entyohoiku_wrap__time__R {
        display: none;
    }
}
/*581px以上767px以下非表示 時計*/
@media screen and (min-width:581px) and ( max-width:767px) {
    .about_wrap__R__time .spelement_time480 {
        display: none;
    }
}

/*580px以上非表示 時計*/
@media screen and (min-width: 580px) {
    .entyohoiku_wrap__time .spelement_time480 {
        display: none;
    }
}

/*580px以下非表示 時計*/
@media screen and (max-width: 580px) {
    .about_wrap__R__time::after, .about_wrap__R__time::before,
    .entyohoiku_wrap__time::after, .entyohoiku_wrap__time::before,
    .entyohoiku_wrap__time__L,
    .entyohoiku_wrap__time__C,
    .entyohoiku_wrap__time__R {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .entyohoiku_wrap__gaiyo::after {
        top: -50px;
        width: 60px;
        height: 60px;
    }
    .c-midasi1__p {
        font-size: 80%;
    }
    .feature1__img {
        left: 0;
    }
}


/*園庭*/
.sec_entei {}
.entei_wrap {
    width: 90%;
    margin-top: -170px;
}
.entei_wrap__bg img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.feature2 {
    position: relative;
    margin-right: 0;
}
.feature2__img {
    position: absolute;
    z-index: 11;
    top: -124px;
    right:0 ;
}
.entei_wrap__gaiyo {
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
    background: #F7E5EA;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 35px 40px 40px;
}
.entei_wrap__gaiyo .c-midasi1__h2 {
    position: relative;
}
.entei_wrap__gaiyo .c-midasi1__h2::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 9%;
    display: block;
}
.entei_wrap__gaiyo .c-midasi1__h2::after {
    position: absolute;
    content: '';
    top: -45px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 100px;
    height: 64px;
    background-image: url(../img/entei_deco1.svg);
    background-repeat: no-repeat;
    background-size: contain;
}


.entei_wrap__landscape {
    width: 90%;
    justify-content: space-between;
    margin-bottom: 60px;
}
.entei_wrap__landscape__img {
    width: 30.6%;
}
.entei_wrap__landscape__img img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .entei_wrap__gaiyo .c-midasi1__h2::after {
        top: -65px;
        width: 100px;
        height: 64px;
    }
    .feature2 {
        margin-right: auto;
    }
    .feature2__img {
        width: 174px;
    }
    .entei_wrap__gaiyo {
        padding: 45px 20px 20px;
    }
}
@media screen and (max-width: 480px) {
    .entei_wrap__gaiyo .c-midasi1__h2::after {
        top: -70px;
        width: 60px;
        height: 64px;
    }
    .entei_wrap__gaiyo .c-midasi1__h2::before {
        padding-top: 0;
    }
    /*.entei_wrap__bg img {
        height: 200px;
    }*/
}
/*給食*/
.lunch_wrap__bg img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.lunch_wrap {
    position: relative;
    margin-top: -100px;
    justify-content: space-between;
    width: 90%;
}
.feature3 {
    position: relative;
    margin-left: 0;
    width: 57.8%;

}
.feature3__img {
    position: absolute;
    z-index: 0;
    top: -132px;
    left:0 ;
}
.lunch_wrap__gaiyo {
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
    background: #fff;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 50px 40px 40px;
}
.lunch_wrap__gaiyo .c-midasi1__h2 {
    position: relative;
}
.lunch_wrap__gaiyo .c-midasi1__h2::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 4%;
    display: block;
}
.lunch_wrap__gaiyo .c-midasi1__h2::after {
    position: absolute;
    content: '';
    top: -100px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 78px;
    height: 88px;
    background-image: url(../img/lunch_deco1.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.lunch_wrap__gaiyo__L .c-midasi1__p {
    text-align: left;
}
.lunch_wrap__R {
    width: 42.2%;
    margin-top: 170px;
}

@media screen and (max-width: 767px) {
    .feature3,
    .lunch_wrap__R {
        width: 100%;
    }
    .lunch_wrap__R {
        margin-top: -40px;
        margin-bottom: 40px;
    }
    .feature3__img {
        width: 174px;
    }
    .lunch_wrap__gaiyo {
        padding: 45px 20px 20px;
    }
}
@media screen and (max-width: 480px) {
    .lunch_wrap__gaiyo .c-midasi1__h2::before {
        padding-top: 0;
    }
    .lunch_wrap__gaiyo .c-midasi1__h2::after {
        top: -90px;
        width: 68px;
        height: 88px;
    }
}
/*できごとインスタ*/
.sec_dekigoto {
    background: #FDF9FA;
    padding-top: 80px;
    padding-bottom: 80px;
}
.dekigoto_wrap {
    width: 90%;
}
.c-insta-note_midasi {
    justify-content: space-between;
    align-items: center;
    color: #CE576D;
    border-top:  1px solid #CE576D;
    border-bottom:  1px solid #CE576D;
    padding-top: 23px;
    padding-bottom: 23px;
    margin-bottom: 40px;
}
.c-insta-note_midasi__h2 {}
.c-insta-note_midasi__h2::after {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: '';
    background-image: url(../img/dekigoto_deco1.svg);
    background-repeat: no-repeat;
    width: 70px;
    height: 46px;
display: inline-block;
    margin-top: -6px;
    margin-left: 20px;
}
.c-insta-note_midasi_logo {
    font-size: 125%;
    font-weight: 400;
    color: #333333;
}
.c-insta-note_midasi_logo::before {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: '';
    background-image: url(../img/dekigoto_icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
display: inline-block;
    margin-left: -40px;
}
.dekigoto_wrap__landscape {
    justify-content: space-between;
    margin-bottom: 17px;
}
.dekigoto_wrap__landscape__img {
    width: 23.1%;
    margin-bottom: 3%;
}
.dekigoto_wrap__landscape__img img {
    width: 100%;
}

/* 親要素の疑似要素 */
.dekigoto_wrap__landscape::after {
    content: "";
    display:block;
    width:23.1%; /* 子要素と同じ幅 */
}
.dekigoto_wrap__landscape::before {
    content: "";
    display:block;
    width:23.1%; /* 子要素と同じ幅 */
    order: 1; /* アイテムの並び順 */
}


/*お知らせノート*/
.sec_news {
    background-image: url(../img/bg_top_news.jpg);
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}
.news_wrap {
    width: 90%;
    background: #fff;
    border: 5px solid #C86168;
    padding-top: 60px;
    padding-bottom: 30px;
}
.news_wrap__note {}
.news_wrap .c-insta-note_midasi {
    width: 90%;
    margin-bottom: 20px;
}

.c-insta-note_midasi__h2::after {
    animation: fuwafuwa2 3s infinite ease-in-out 1.2s alternate;
}
@keyframes fuwafuwa2 {
    0% {
      transform:translate(0, 0) rotate(0deg);
    }
    50% {
      transform:translate(10px, 0) rotate(10deg);
    }
    100% {
      transform:translate(0, 0) rotate(0deg);
    }
  }


.news_wrap .c-insta-note_midasi__h2::after {
    background-image: url(../img/news_deco1.svg);
    width: 93px;
    height: 43px;
}

.news_wrap .c-insta-note_midasi_logo::before {
    background-image: none;
}

.c-insta-note_midasi_p {
    width: 90%;
    text-align: left;
    margin-bottom: 40px;
}

.news_wrap__note_ul {
    width: 90%;
}
.news_wrap__note_ul__list {
    justify-content: space-between;
    margin-bottom: 30px;
}
.news_wrap__note_ul__list__L-thumb {
    width: 160px;
    margin-right: 25px;
}
.news_wrap__note_ul__list__R {
    width: calc(100% - 185px);
}
.news_wrap__note_ul__list__R__h3 {
    letter-spacing: 0.02em;
    color: #C86168;
    background: #ECD8DA;
    border-top-right-radius: 10px;
    padding-left: 0.5em;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_wrap__note_ul__list__R__p {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_wrap__note_ul__list__R__p br,
.news_wrap__note_ul__list__R__p img {
    display: none;
}
.news_wrap__note_ul__list__R__day {}

@media screen and (max-width: 767px) {
    .dekigoto_wrap__landscape {
        margin-top: 4em;
    }
    .dekigoto_wrap__landscape__img {
        width: 30.7%;
        margin-bottom: 4%;
    }
    .c-insta-note_midasi {
        position: relative;
    }
    .c-insta-note_midasi_logo {
        position: absolute;
        z-index: 10;
        width: 100%;
        top: 94px;
        right: 0;
        text-align: right;
    }

    .c-insta-note_midasi_p {
        width: 60%;
        margin-left: 7%;
    }
    .c-insta-note_midasi {
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 560px) {
    .dekigoto_wrap__landscape__img {
        width: 47.7%;
    }
    .c-insta-note_midasi_logo {
        top: 88px;
        right: -20px;
        transform: scale(0.8);
    }

    .c-insta-note_midasi_p {
        /*width: 100%;
        margin-left: auto;
        margin-top: 5em;*/
        display: none;
    }
    .news_wrap__note_ul {
        margin-top: 4em;
    }
    .news_wrap__note_ul__list {
        margin-bottom: 20px;
    }
    .news_wrap__note_ul__list__L-thumb {
        width: 33%;
        margin-right: 0;
    }
    .news_wrap__note_ul__list__R {
        width: 45vw;
    }
    .news_wrap__note_ul__list__R__p {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .news_wrap .c-insta-note_midasi__h2::after {
        transform: scale(0.7);
        margin-left: 0;
    }
}
@media screen and (max-width: 390px) {
    .news_wrap .c-insta-note_midasi__h2::after {
        transform: scale(0.5);
        margin-left: 0;
        bottom: -56px;
        left: 0;
    }
}

/*-----------------------------------------
園についてページ
-----------------------------------------*/
.pg-about {}
.sec_about {
    width: 90%;
}
.c-midasi3_h1{
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
}
.c-midasi3_p {
	overflow-wrap:break-word;
    text-align: center;
    margin-bottom: 40px;
}
.c-midasi3_p a {
    color: #C15482;
}
.c-midasi3_p a:hover {
    text-decoration: underline !important;
}
.about_wrap {
    justify-content: space-between;
}
.about_wrap__L-thumb{
    flex: 1;
    max-width: 360px;
    margin-right: 50px;
}
.about_wrap__R{
    width: calc(100% - 410px);
}
.about_wrap__R__p{
    text-align: left;
    margin-bottom: 40px;
}
.about_wrap__R__time {
    position: relative;
    justify-content: space-between;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.about_wrap__R__time::after, .about_wrap__R__time::before {
    position: relative;
    z-index: 0;
    border-top: 1px solid #A34A80;
    content: "";
    flex-grow: 1;
    margin-top: -8%;
}

@media screen and (max-width: 767px) {
    .c-midasi3_h1 {
        margin-bottom: 30px;
    }
    .about_wrap__L-thumb{
        width: 100%;
        flex: none;
        margin-right: auto;
        margin-left: auto;
        max-width: 550px;
        margin-bottom: 30px;
    }
    .about_wrap__R{
        width: 100%;
        flex: none;
        margin-right: auto;
        margin-left: auto;
        max-width: 750px;
    }
    .about_wrap__R__p {
        margin-bottom: 30px;
    }
}

/*保育園の概要、入園の要項*/
.hoikugaiyo,
.year_event_gaiyo {
    margin-bottom: 40px;
}
.nyuuen {}
.pg-about .c-midasi2b {
    border-top:  1px solid #C15482;
    border-bottom:  1px solid #C15482;
}
.pg-about .c-midasi2b__h2 {
    color: #C15482;
}

.sec_policy:nth-child(3) .c-table_wrap{
    width: 90%;
}
.c-table_wrap__item {}
.c-table_wrap__item__L,
.c-table_wrap__item__R {
    text-align: left;
    padding: 12px 15px;
    margin-bottom: 2px;
}
.c-table_wrap__item__L {
    width: 268px;
    color: #C75173;
    background: #F9EDF1;
    font-weight: 700;
    margin-right: 2px;
}
.c-table_wrap__item__R {
    width: calc(100% - 270px);
    color: #333333;
    background: #FEFAFB;
}
.c-table_wrap__item__R .tyuui {
    color: #C75173;
}
.nyuuen__parking {
    justify-content: space-between;
    margin-top: 40px;
}
.nyuuen__parking__L {
    width: 600px;
}
.nyuuen__parking__L img {
    width: 100%;
    max-width: 600px;
}
.nyuuen__parking__R {
    width: calc(100% - 650px);
}
.nyuuen__parking__R p {
    text-align: left;
}
.nyuuen__parking__R span {
    color: #C75173;
}
@media screen and (max-width: 1680px) {
    .nyuuen__parking__L {
        width: 51.4%;
    }
    .nyuuen__parking__R {
        width: 43.3%;
    }
}
@media screen and (max-width: 1280px) {
    .c-table_wrap__item__L,
    .c-table_wrap__item__R {
        font-size: 90%;
    }
}
@media screen and (max-width: 767px) {
    .c-table_wrap__item__L {
        width: 208px;
    }
    .c-table_wrap__item__R {
        flex: 1;
    }
    .nyuuen__parking__L {
        width: 100%;
        margin-bottom: 2em;
    }
    .nyuuen__parking__R {
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
    .c-table_wrap__item__L {
        width: 160px;
    }
}
@media screen and (max-width: 580px) {
    .c-table_wrap__item {
        flex-direction: column;
    }
    .c-table_wrap__item__L {
        width: 100%;
        margin-bottom: 1px;
    }
    .c-table_wrap__item__R {
        width: 100%;
        margin-bottom: 2px;
    }
}

/*保育園の方針*/
.sec_policy {}

.sec_policy__img,
.sec_day_schedule__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 60px;
}
.policy_wrap,
.day_schedule_wrap {
    width: 90%;
}
.policy_wrap__h3 {
    display: inline-block;
    color: #CE576D;
    border: 1px solid #CE576D;
    padding: 8px 30px 9px;
    margin-bottom: 40px;
}
.policy_wrap__target {
    justify-content: space-between;
    margin-bottom: 40px;
}
.policy_wrap__target__item {
    width: 31.5%;
}

@media screen and (max-width: 480px) {
    .policy_wrap__h3 {
        margin-bottom: 20px;
    }

    .policy_wrap__target__item:last-child{
        margin-bottom: 20px;
    }

    .policy_wrap__target {
        margin-bottom: 10px;
    }

    .policy_wrap__target__item {
        width: auto;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 20px;
    }
}


.policy_wrap__img img{
    margin-bottom: 40px;
    will-change: animation;
    animation: fuwafuwa3 3s infinite ease-in-out 1.2s alternate;
}
@keyframes fuwafuwa3 {
    0% {
        -webkit-transform:translate(0, 0) rotate(0deg);
      transform:translate(0, 0) rotate(0deg);
    }
    50% {
        -webkit-transform:translate(0, 10px) rotate(0deg);
      transform:translate(0, 10px) rotate(0deg);
    }
    100% {
        -webkit-transform:translate(0, 0) rotate(0deg);
      transform:translate(0, 0) rotate(0deg);
    }
  }

.policy_wrap__rinen {
    border: 3px solid #C15482;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}
.policy_wrap__rinen h4,
.policy_wrap__subpolicy h4 {
    color: #C15482;
}
.policy_wrap__rinen p {
    color: #C15482;
    margin-top: 1em;
}
.policy_wrap__rinen__item {
    background: #FCF8F7;
    width: 25%;
    padding: 28px 14px;
}

.policy_wrap__subpolicy {
    background: #FEFAFB;
    padding: 30px;
}
.policy_wrap__subpolicy .p-1 {
    font-size: 125%;
    font-weight: 700;
    color: #C15482;
    margin-top: 1em;
}
.policy_wrap__subpolicy .p-2 {
    font-size: 125%;
    color: #C15482;
    margin-top: 1em;
}


@media screen and (max-width: 1024px) {
    .policy_wrap__rinen__item {
        width: 50%;
        padding: 28px 20px;
    }
    .policy_wrap__subpolicy__item__R {
        width: calc(100% - 146px);
    }
}
@media screen and (max-width: 767px) {
    .policy_wrap__rinen__item {
        width: 50%;
        padding: 28px 14px;
        margin-bottom: 2em;
    }
}
@media screen and (max-width: 480px) {
    .policy_wrap__p{
        font-size: 80%;
        margin-bottom: 30px;
    }
    .policy_wrap__rinen__item {
        width: 100%;
        padding: 18px 14px;
    }
    .policy_wrap__subpolicy .p-1,
    .policy_wrap__subpolicy .p-2 {
        font-size: 100%;
    }
}



/*保育園からのお知らせをみる*/
.sec_newsbn {
    position: relative;
}
.sec_newsbn__img {
    width: 100%;
    height: 182px;
    object-fit: cover;
    /*margin-bottom: 60px;*/
}
/*ボタン*/
.newsbn_wrap__btn {}
.newsbn_wrap__btn .newsbn_wrap__L {
	transition: .3s;
}
.newsbn_wrap__btn:hover .newsbn_wrap__L {
    color: #C75173;
    background: #F9EDF1;
    letter-spacing: 0.15em;
}
.newsbn_wrap__btn .newsbn_wrap__R {
	transition: .3s;
}
/*.newsbn_wrap__btn:hover .newsbn_wrap__R {
    background: #C86168;
}*/

.newsbn_wrap {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    justify-content: space-between;
    width: 90%;
}
.newsbn_wrap__L {
    width: 50%;
    background: #C86168;
    color: #fff;
    padding: 14px;
}
.newsbn_wrap__R {
    width: 50%;
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 580px) {
    .newsbn_wrap {
        flex-direction: column;
        align-items: center;
    }
    .newsbn_wrap__L,.newsbn_wrap__R {
        width: 300px;
        height: 50px;
    }
}



/*-----------------------------------------
行事予定ページ
pg-event_schedule
-----------------------------------------*/
.sec_event_schedule {}

/*年間行事*/
.c-table_wrap_2 {
    justify-content: space-between;
    margin-bottom: 40px;
}
.c-table_wrap2__item {
    width: calc((100% - 6px)/4);
}
.c-table_wrap2__item__ttl {
    font-weight: 700;
    color: #C75173;
    background: #F9EDF1;
    padding: 12px 15px;
}
.c-table_wrap2__item__con {
    height: 80%;
    padding: 12px 15px;
    text-align: left;
    color: #333333;
    background: #FEFAFB;
}


.c-table_wrap3 {
    margin-bottom: 40px;
}
.c-table_wrap3__item {}
.c-table_wrap3__item__ttl {
    font-weight: 700;
    color: #C75173;
    background: #F9EDF1;
    padding: 12px 15px;
}
.c-table_wrap3__item__con {
    padding: 12px 15px;
    text-align: center;
    color: #333333;
    background: #FEFAFB;
    margin-bottom: 1em;
}

.c-table_wrap_3 p {
    text-align: left;
}

/*年間行事画像*/
.year_event__landscape {
    justify-content: space-between;
}
.year_event__landscape__item{
    position: relative;
    width: 48%;
    margin-bottom: 40px;
    text-align: left;
}
.year_event__landscape__item__img {
    width: 80%;
}
.year_event__landscape__item__pop{
    position: absolute;
    top: 40%;
    left: 53%;
    width: 50%;
}


/*1日の流れ*/
.sec_day_schedule {}

.c-table_wrap4 {
    justify-content: space-between;
    margin-bottom: 40px;
}
.c-table_wrap4__item {
    width: calc(100% / 6);
    max-width: 120px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 100%;
    padding: 16px;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.c-table_wrap4__item:before {
    display: block;
    content: '';
    padding-top: 100%;
}

.c-table_wrap4__item:first-child {
    background: #A34A80;
}
.c-table_wrap4__item:nth-child(2) {
    background: #C15482;
}
.c-table_wrap4__item:nth-child(3) {
    background: #C75173;
}
.c-table_wrap4__item:nth-child(4) {
    background: #CE576D;
}
.c-table_wrap4__item:nth-child(5) {
    background: #C86168;
}
.c-table_wrap4__item:last-child {
    background: #C17062;
}

@media screen and (max-width: 1024px) {
    .c-table_wrap4__item {
        max-width: 16%;
    }
}
@media screen and (max-width: 880px) {
    .c-table_wrap4__item {
        font-size: 90%;
    }
}
@media screen and (max-width: 780px) {
    .c-table_wrap4__item {
        font-size: 85%;
    }
}
@media screen and (max-width: 767px) {
    .year_event__landscape__item__img{
        width: 90%;
    }
    .year_event__landscape__item__pop{
        width: 60%;
    }
    .c-table_wrap4 {
        justify-content: center;
    }
    .c-table_wrap2__item {
        width: calc((100% - 2px)/2);
    }
    .c-table_wrap4__item {
        font-size: 80%;
        max-width: 120px;
        width: calc(100% / 3);
        margin-right: 5px;
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 480px) {
    .year_event__landscape__item{
        width: 100%;
        text-align: center;
    }

}

/**/
.c-table_wrap5 {}
.c-table_wrap5__item{
    justify-content: space-between;
    margin-bottom: 2px;
}

.c-table_wrap5__item__L,
.c-table_wrap5__item__R__0,
.c-table_wrap5__item__R__15,
.c-table_wrap5__item__RR {
    padding-left: 1em;
    text-align: left;
    display: flex;
    align-items: center;
}

.c-table_wrap5__item__L {
    max-width: 268px;
    width: 28.2%;
    color: #C75173;
    font-weight: 700;
    background: #F9EDF1;
    padding-top: 11px;
    padding-bottom: 11px;
}

.c-table_wrap5__item__R {
    justify-content: space-around;
    width: calc(100% - 270px);
}

.c-table_wrap5__item__RR {
    width: calc(100% - 270px);
    display: flex;
    align-items: center;
    background: #FEFAFB;
    color: #333;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-right: 1em;
}
.rr-1 {
    background: #F9EDF1;
    color: #C75173;
    font-weight: 700;
    font-size: 125%;
}
.rr-2 {
    background: #F8F9FF;
    color: #C75173;
    font-weight: 700;
    padding-top: 11px;
    padding-bottom: 11px;
}
.rr-3 {
    background: #F9FFF8;
    color: #C75173;
    font-weight: 700;
    padding-top: 11px;
    padding-bottom: 11px;
}
.c-table_wrap5__item__R__0 {
    width: 30.1%;
    background: #FEFAFB;
}

.c-table_wrap5__item__R__15 {
    width: 69.0%;
    background: #FEFAFB;
}
/*1行目*/
.c-table_wrap5__item:first-child .c-table_wrap5__item__L {
    background: #A34A80;
}
.c-table_wrap5__item:first-child .c-table_wrap5__item__R__0 {
    background: #A34A80;
    color: #fff;
}
.c-table_wrap5__item:first-child .c-table_wrap5__item__R__15 {
    background: rgb(163,74,128);
background: linear-gradient(90deg, rgba(163,74,128,1) 0%, rgba(193,112,98,1) 100%);
    color: #fff;
}

@media screen and (max-width: 1280px) {
    .c-table_wrap5__item__L {
        flex: 1;
    }
    .c-table_wrap5__item__R,
    .c-table_wrap5__item__RR {
        width: 59vw;
    }
}
@media screen and (max-width: 767px) {
    .rr-1 {
        font-size: 100%;
    }
}

/*-----------------------------------------
お問い合わせページ
pg-contact
-----------------------------------------*/
.sec_contact {}

.contact_tel {}
.contact_tel__p1 {
}
.contact_tel__item {
    justify-content: center;
    max-width: 340px;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}
.contact_tel__L-icon {
    display: flex;
    margin-bottom: -4px;
    margin-right: 10px;
}
.contact_tel__R-no {
    font-size: 245%;
    font-weight: 700;
    color: #C17062 !important;
    letter-spacing: 0;
    max-width: 300px;
    text-align: right;
}

@media screen and (max-width: 560px) {
    .contact_tel__L-icon {
        margin-right: 0;
    }
    .contact_tel__L-icon img {
        width: 70%;
    }
    .contact_tel__R-no {
        font-size: 185%;
    }
}
.sec_contact .c-midasi2b {
    margin-top: 40px;
}

.contact_wrap {}
/* main css
----------------------------------------- */

.contact_wrap ul li{
	margin: 0 0 5px 5px;
	padding-left: 15px;
	background-image: url(../img/list_icon1.png);
	background-repeat: no-repeat;
	background-position: left 3px;
	background-size: 8px 10px;
	list-style-type: none;
}


.contact_wrap table{
	width: 98%;
	font-size: 100%;
	margin: 0px 0px 30px 0px;
    text-align: left;
}
.contact_wrap table p{
	padding-left: 0px;
}
.contact_wrap table ul,
.contact_wrap table ol{
	margin: 0;
	padding: 0;
}
.contact_wrap table th{
	color: #C17062;
	font-weight: bold;
	padding: 15px 10px;
	border-bottom: #C17062 solid 1px;
	vertical-align: top;
}
.contact_wrap table td{
	padding: 15px 10px;
	border-bottom: #CCCCCC solid 1px;
}
.contact_wrap table th:first-of-type{
	border-top: #C17062 solid 1px;
}
.contact_wrap table td:first-of-type{
	border-top: #CCCCCC solid 1px;
}


.contact_wrap ul li{
    text-align: left;
}



.contact_wrap section.form form span.supplement{
	font-size: 80%;
	font-weight: normal;
	margin-top: 5px;
	display: block;
}
.contact_wrap section.form form label#privacy-check{
	color: #111111;
	font-weight: bold;
	margin: 15px 0px 25px;
	padding: 5px 10px;
	background-color: #F3F3F3;
	display: block;
	position: relative;
}
.contact_wrap section.form form label#privacy-check label.error{
	width: 100%;
	margin-bottom: 35px;
	position: absolute;
	left: 0;
	top: 35px;
}

.contact_wrap section.form form input[type="text"],
.contact_wrap section.form form textarea{
	width: calc(100% - 12px);
	max-width: 360px;
	padding: 5px;
	/*border-radius: 5px;*/
	border: 1px solid #CCC;
	background-color: #F3F3F3;
}
.contact_wrap section.form form input[type="text"]:focus,
.contact_wrap section.form form textarea:focus{
	background-color: #FFF;
}
.contact_wrap form input[type="checkbox"]{
	border: 1px solid #CCC;
}
.contact_wrap .form-select-wrap{
  display: flex;

  align-items: center;
}
.contact_wrap select{
  padding: 8px 10px;
  margin-left: 10px;
  margin-right: 10px;
   border: 1px solid #CCC;

    background-color: #F3F3F3;
}
.contact_wrap select:first-child{
    margin-left: 0px;
}
.contact_wrap form .radio-list li{
    background-image:none;
    padding-left:0;
    padding-right:10px;
    display: inline-block;
    width:calc(33.3% - 10px);

}
.contact_wrap #privacy-area{
	height: 160px;
	margin: 0px;
	padding: 10px;
	border: #CCCCCC solid 1px;
	overflow: auto;
}
.contact_wrap form p.button{
	text-align: center;
}
.contact_wrap form p.button button,
.contact_wrap #formWrap form input[type="submit"]{
	color: #FFF;
	font-weight: bold;
	width: 280px;
	padding: 15px 10px;
	background-color: #C17062;
	border: #C17062 solid 1px;
	cursor: pointer;
    transition: .2s;
}


/*-----------------------------------------
施設紹介ページ
pg-facilities
-----------------------------------------*/
.sec_facilities {}
.playground_wrap {}
.playground_wrap__img_p {
    margin-top: 0.5em;
}


.playground_wrap__landscape {
    width: 100%;
    justify-content: space-between;
    margin-top: 40px;
}
.playground_wrap__landscape:after {
    content: "";
    width: 31.2%;
    margin-bottom: 30px;
}
.playground_wrap__landscape:before {
    content: "";
    width: 31.2%;
    order: 1;
    margin-bottom: 30px;
}
.playground_wrap__landscape__item {
    width: 31.2%;
    margin-bottom: 30px;
}
.playground_wrap__mainimg,
.playground_wrap__landscape__item img {
    width: 100%;
}
.playground_wrap__mainimg {
    margin-bottom: 2em;
}

.playground_wrap__landscape__item__name_p {
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.02em;
    color: #C86168;
    background: #ECD8DA;
    border-top-right-radius: 10px;
    padding-left: 0.5em;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0.5em;
}
.playground_wrap__landscape__item__p {
    margin-top: 0.5em;
    text-align: left;
}


.class_wrap .playground_wrap__landscape:after {
    content: "";
    width: 47.9%;
    margin-bottom: 30px;
}
.class_wrap .playground_wrap__landscape:before {
    content: "";
    width: 47.9%;
    order: 1;
    margin-bottom: 30px;
}
.class_wrap .playground_wrap__landscape__item {
    width: 47.9%;
    margin-bottom: 30px;
}

@media screen and (max-width: 580px) {
    .playground_wrap__landscape__item {
        width: 47.9%;
    }
}

/*-----------------------------------------
先生の紹介ページ
pg-teachers
-----------------------------------------*/
.sec_teachers {}
.teachers_wrap {}
.teachers_wrap__t1 {
    /*justify-content: space-between;*/
    margin-bottom: 60px;
    width: 100%;
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
    grid-template-columns: repeat(4, 1fr);/*カラム数*/
    gap: 30px 30px;/*要素間 上下　左右*/
}
.teachers_wrap__t1__item {
    max-width: 250px;
    border-radius: 215px;
}
.teachers_wrap__t1__item__img {
    margin-bottom: 0.5em;

    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
}
.teachers_wrap__t1__item__name_p,
.teachers_wrap__t1__item__kata_p {
    font-weight: 700;
    text-align: center;
    color: #C15482;
    line-height: 1.4;
}
/**/
.teacher-item {
	margin-top: 1em;
}
.teacher-item figure {
	float: right;
	width: 40%;
	margin-left: 1em;
	margin-bottom: 1em;
}
.teacher-item figcaption {
	font-size: 14px;
}
.teacher-item__desc {

	text-align: left;
}


@media screen and (max-width: 767px) {
    .teachers_wrap__t1 {
    gap: 20px 20px;/*要素間 上下　左右*/
    }
	.hoikusi .playground_wrap__landscape__item {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
    .teachers_wrap__t1 {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 375px) {
.teacher-item figure {
	float: none;
	width: 100%;
	margin-left: auto;
}
}

@media screen and (max-width: 767px) {
    .teachers_wrap__t1.wd950 {
        width: 100%;
    }
}

/*-----------------------------------------
Instagram表示
-----------------------------------------*/
.instagram-gallery {    max-width: 100%;    margin: auto; margin-bottom: 30px; }
.instagram-gallery__list {    display: flex;    flex-wrap: wrap;    -ms-flex-wrap: wrap;     justify-content: space-between; }
.instagram-gallery__item {    min-width: 23.1%;    width: 23.1%; margin-bottom: 3%; }
.instagram-gallery__item img { object-fit: cover; width: 100%; height: 100%;}
@media screen and (max-width: 767px) {
    .instagram-gallery__item {       width: 30.7%;    margin-bottom: 4%; }
}
@media screen and (max-width: 560px) {
    .instagram-gallery__item {       width: 47.7%;   }
}


/*===================================================================
    ブログボタン横並び
===================================================================*/
.top_blog_wrap {
    display: flex;
    justify-content:center;
}

.top_blog_wrap > figure {
    width: 300px;

}

.top_blog_wrap > figure:first-child {
    margin-right: 20px;
}



@media screen and (max-width: 1024px) {
    .top_blog_wrap {
        display: block;

    }
    .top_blog_wrap .c-block-btn_box {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }
}



.c-midasi2.w100 {
    width: 100%;
    border-top: none;
    border-bottom: none;
}

.c-midasi2__h2.h2-1 {
    text-align: center;

}
