@charset "utf-8";


/* ============================================================================================== */
/*                                                                                                */
/* ============================================================================================== */

#global-header .logo {
	display: none;
}

/* ---------------------------------------------------------------------------------------------- */
/* Keycisual */

.kvbg {
	width: 100%;
	height: 80vh;
	background: url(../images/home/kv.jpg) no-repeat center bottom;
	background-size: cover;
	position: relative;
}

.kvbg .catch {
	position: absolute;
	left: 0;
	right: 0;
	top: 15%;
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
}

.kvbg .catch img {
	width: 100%;
	vertical-align: bottom;
}

.is-show.cover-anm.catch:before {
	-webkit-animation: cover-animation 800ms cubic-bezier(.79,.14,.15,.86) 400ms 1 forwards;
	        animation: cover-animation 800ms cubic-bezier(.79,.14,.15,.86) 400ms 1 forwards;
}

.is-show.cover-anm.catch .inner {
	-webkit-animation: cover-animation-inner 400ms cubic-bezier(.79,.14,.15,.86) 800ms 1 forwards;
	        animation: cover-animation-inner 400ms cubic-bezier(.79,.14,.15,.86) 800ms 1 forwards;
}

.kvbg .catch:after {
	content: none;
}


/* ============================================================================================== */
/* photoblog                                                                                      */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* photoblog */

.photoblog-area {
	position: relative;
}

.photoblog-link {
	position: absolute;
	top: -60px;
	left: 0px;
	width:25%;
	max-width: 120px;
	min-width: 80px;
	background: url(../images/home/photoblog_title_bg.png) no-repeat center center;
	background-size: 100%;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

.photoblog-link:hover {
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
}

.photoblog-link a {
	display: block;
}

.photoblog-link img {
	width: 100%;
	vertical-align: bottom;
}

.photoblog-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 10px;
}

.photoblog-list__item {
	width: calc(50% - 5px);
	border-radius: 20px;
	background: #fff;
	margin-bottom: 10px;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

.photoblog-list__item:nth-child(1),
.photoblog-list__item:nth-child(3) {
	position: relative;
	top: 40px;
}

.photoblog-list__item:hover {
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
	box-shadow: 0 15px 25px rgba(0,0,0,.1);
}

.photoblog-list__item a {
	display: block;
	text-decoration: none;
	color: rgba(0,0,0,.8);
	position: relative;
}

.photoblog-list__item .img-wrap {
	width: 100%;
	position: relative;
}

.photoblog-list__item .img-wrap:before {
	content:"";
	display: block;
	padding-top: 75%;
}
.photoblog-list__item .img-wrap figure {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
}

.photoblog-list__item .img-wrap img {
	object-fit: cover;
	font-family: 'object-fit: cover';
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
	border-radius: 20px 20px 0 0;
}

.photoblog-list__item .txt-wrap {
	padding: 15px 15px 20px 15px;
}

.photoblog-list__item .date {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0,144,217,1);
	font-family: 'Varela Round', sans-serif;
	font-size: 1.3rem;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

.photoblog-list__item .date span {
	display: block;
	margin-top: 11px;
	font-size: 1.0rem;
}

.photoblog-list__item .title {
	color: rgba(0,144,217,1);
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: .25em;
}

.photoblog-list__item .excerpt {
	font-size: .9em;
	line-height: 1.5;
}

/* ============================================================================================== */
/* pickup-contents                                                                                */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* pickup-contents */

.pickup-contents__kv {
	width: 80%;
	max-width: 1200px;
	height: 250px;
	position: relative;
}

.policy .pickup-contents__kv {
	border-radius: 0 20px 20px 0;
	background: url(../images/home/policy__pickup-contents__kv.jpg) no-repeat 35% center;
	background-size: cover;
}

.school .pickup-contents__kv {
	margin-left: auto;
	border-radius: 20px 0 0 20px;
	background: url(../images/home/school__pickup-contents__kv.jpg) no-repeat center center;
	background-size: cover;
}

.pickup-contents__inner {
	position: relative;
}

.policy .pickup-contents__title {
	position: absolute;
	right: 0px;
	top: -205px;
	z-index: 1;
}

.school .pickup-contents__title {
	position: absolute;
	left: 0px;
	top: -205px;
	z-index: 1;
}

.pickup-contents__title p {
	line-height: 1;
}

.pickup-contents__title p + p {
	margin-top: 10px;
}

.policy .pickup-contents__title .cover-anm {
	height: 35px;
	vertical-align: bottom;
}

.school .pickup-contents__title .cover-anm {
	height: 30px;
	vertical-align: bottom;
}

.pickup-contents__title img {
	height: 100%;
	vertical-align: bottom;
}

.pickup-contents__detail {
	border-radius: 20px;
	background: rgba(255,255,255,.7);
	padding: 25px;
	box-sizing: border-box;
	position: relative;
	width: 90%;
	max-width: 450px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	-webkit-align-items: center;
	        align-items: center;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
	color: rgba(0,0,0,.8);
	text-decoration: none;
}

.pickup-contents__detail:hover {
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
	box-shadow: 0 15px 25px rgba(0,0,0,.1);
}

.policy .pickup-contents__detail {
	margin: -60px 0 0 auto;
}

.school .pickup-contents__detail {
	margin: -60px auto 0 0;
}

.pickup-contents__detail .txt-area {
	width: 100%;
}

.pickup-contents__detail .title {
	margin-bottom: 1em;
}

.pickup-contents__detail .title img {
	height: 15px;
	display: block;
}

.pickup-contents__detail .title img + img {
	margin-top: 7px;
}

.pickup-contents__detail .img-area {
	display: none;
}

.pickup-contents__detail .excerpt {
	font-size: .9em;
	font-weight: 400;
}

.pickup-contents__detail .btn-wrapper {
	margin-top: 1.25em;
}

.pickup-contents__detail .btn-state {
	color: rgba(0,144,217,1);
	font-size: 1em;
	font-family: inherit;
	font-weight: 500;
	line-height: 1;
	text-align:;
	text-decoration: none;
	padding: 12px 25px 12px 20px;
	border: solid 1px rgba(0,144,217,1);
	border-radius: 50px;
	box-shadow: none;
	background-color: rgba(255,255,255,.9);
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
	transition: all .2s ease;
	min-width:;
	width:;
	margin:;
	-webkit-appearance: none;
}

.pickup-contents__detail:hover .btn-state {
	color: #fff;
	background-color: rgba(0,144,217,1);
	box-shadow: none;
}

.pickup-contents__detail:hover .btn-state .svg-icon {
	stroke: #fff;
}

.pickup-contents__detail .btn-state .svg-icon {
	width: 10px;
	height: 10px;
	fill: none;
	stroke-width: 6px;
	stroke: rgba(0,144,217,1);
	transition: all .2s ease;
	margin-right: 3px;
	vertical-align: middle;
}


/* ============================================================================================== */
/* childcare                                                                                      */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* childcare */

.childcare-area {
	margin-top: -20px;
}

.childcare-list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.childcare-list__item {
	width: calc(50% - 5px);
	border-radius: 0 20px 20px 20px;
	background: #fff;
	margin-top: 50px;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

.childcare-list__item:hover {
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
	box-shadow: 0 15px 25px rgba(0,0,0,.1);
}

.childcare-list__item:first-child {
	width: 100%;
}

.childcare-list__item a {
	display: block;
	text-decoration: none;
	color: rgba(0,0,0,.8);
	position: relative;
}

.childcare-list__item .title {
	position: absolute;
	top:-40px;
	left: 0;
	height: 40px;
	width: 60%;
	padding-left: 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	        align-items: center;
	color: #fff;
}

.childcare-list__item .title.orange {
	background-color: #f8b500;
}

.childcare-list__item .title.green {
	background-color: #aacd06;
}

.childcare-list__item .title.pink {
	background-color: #f4a69c;
}

.childcare-list__item .title:before {
	content: '';
	display: block;
	width: 13px;
	height: 40px;
	position: absolute;
	right: -13px;
	top: 0;
}

.childcare-list__item .title.orange:before {
	background: url(../images/home/childcare-list__parts__orange.png) no-repeat left top;
	background-size: 100% 100%;
}

.childcare-list__item .title.green:before {
	background: url(../images/home/childcare-list__parts__green.png) no-repeat left top;
	background-size: 100% 100%;
}

.childcare-list__item .title.pink:before {
	background: url(../images/home/childcare-list__parts__pink.png) no-repeat left top;
	background-size: 100% 100%;
}

.childcare-list__item .img img {
	width: 100%;
	border-radius: 0 20px 0 0;
	vertical-align: bottom;
}

.childcare-list__item .excerpt {
	padding: 15px 15px 20px 15px;
	font-size: .9em;
	line-height: 1.5;
}

.childcare-list__item:first-child .excerpt {
	padding: 20px;
}


/* ============================================================================================== */
/* news-access                                                                                    */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* news-access */

.news-access {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	position: relative;
	margin-top: -20px;
}

/* ---------------------------------------------------------------------------------------------- */
/* news-area */

.news-area {
	width: 100%;
}

.news-list {
	padding: 20px;
	border-radius: 20px;
	background: #fff;
}

.news-list__item {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	-webkit-align-items: center;
	        align-items: center;
	text-decoration: none;
	border-bottom: solid 1px rgba(0,144,217,.1);
	padding: 10px 0;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

.news-list__item:hover {
	-webkit-transform: translateX(5px);
	        transform: translateX(5px);
}

.news-list__item:first-child {
	padding-top: 0;
}

.news-list__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.news-list__item .svg-icon {
	width: 10px;
	height: 10px;
	fill: none;
	stroke-width: 6px;
	stroke: rgba(0,144,217,1);
	vertical-align: middle;
	margin-left: auto;
}

.news-list__item .date {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0,144,217,1);
	font-family: 'Varela Round', sans-serif;
	font-size: 1.3rem;
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

.news-list__item .date span {
	display: block;
	margin-top: 11px;
	font-size: 1.0rem;
}

.news-list__item .detail {
	width: calc(100% - 60px);
	box-sizing: border-box;
	padding: 0 10px;
}

.news-list__item .detail .category {
	font-size: .8em;
	font-weight: 400;
	color: rgba(0,0,0,.8);
}

.news-list__item .detail .title {
	color: rgba(0,144,217,1);
	font-weight: 500;
	line-height: 1.5;
}

/* ---------------------------------------------------------------------------------------------- */
/* news-area */

.access-area {
	width: 100%;
	margin-top: 60px;
}

.access-map {
	border-radius: 20px;
	background: #fff;
}

.access-map #maps {
	height: 250px;
	border-radius: 20px 20px 0 0;
}

.access-map .txt-area {
	padding: 20px;
}

.access-map .txt-area .tel {
	font-family: 'Varela Round', sans-serif;
	font-size: 1.5em;
	line-height: 1.2;
}


/* ============================================================================================== */
/* recruit-banner                                                                                 */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* recruit-banner */

.recruit-banner {
	margin: 0 auto;
	max-width: 600px;
	height: 140px;
	background: #fff;
	border-radius: 20px;
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	text-decoration: none;
	transition: all .2s ease;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

.recruit-banner:hover {
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
	box-shadow: 0 15px 25px rgba(0,0,0,.1);
}

.recruit-banner:before {
	content: '';
	display: block;
	width: 90px;
	height: 70px;
	background: url(../images/home/recruit-banner__balloon.png) no-repeat left top;
	background-size: 100%;
	position: absolute;
	right: 0px;
	top: -60px;
	z-index: 2;
}

.recruit-banner .txt-area {
	width: 50%;
	box-sizing: border-box;
	padding: 0 20px;
}

.recruit-banner .txt-area .title__en {
	width: 60%;
	line-height: 1;
	margin-bottom: 5px;
}

.recruit-banner .txt-area .title {
	width: 100%;
	line-height: 1;
	margin-bottom: 5px;
}

.recruit-banner .txt-area .title__en img,
.recruit-banner .txt-area .title img {
	width: 100%;
	vertical-align: bottom;
}

.recruit-banner .txt-area .excerpt {
	font-size: .8em;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(0,0,0,.8);
}

.recruit-banner .img-area {
	width: 50%;
	height: inherit;
	position: relative;
	background: url(../images/home/recruit-banner__bg.jpg) no-repeat center top;
	background-size: cover;
	border-radius: 0 20px 20px 0;
}

.recruit-banner .img-area .clipping {
	height: 120%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}


/* ============================================================================================== */
/* bg-illust__airplane                                                                            */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* bg-illust__airplane */

.bg-illust__airplane {
	position: absolute;
	width: 600px;
	top: 33%;
	right: 30px;
}

.bg-illust__airplane:before {
	content:"";
	display: block;
	padding-top: 40%;
}

.bg-illust__airplane div {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url(../images/home/bg-illust__airplane.png) no-repeat left center;
	background-size: 100%;
}


/* ============================================================================================== */
/* Media query                                                                                    */
/* ============================================================================================== */

/* ---------------------------------------------------------------------------------------------- */
/* SmartPhone */

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

	/* pickup-contents */
	.pickup-contents__detail .title img {
		height: 18px;
	}

}

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

	/* photoblog */
	.photoblog-list__item {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}

	/* pickup-contents */
	.policy .pickup-contents__title {
		right: 0px;
		top: -260px;
	}

	.school .pickup-contents__title {
		left: 0px;
		top: -260px;
	}

	.policy .pickup-contents__title .cover-anm {
		height: 45px;
	}

	.school .pickup-contents__title .cover-anm {
		height: 40px;
	}

	.pickup-contents__kv {
		height: 300px;
	}

	/* childcare */
	.childcare-list__item {
		width: calc(50% - 10px);
		margin-top: 60px;
	}

	/* recruit-banner */
	.recruit-banner .txt-area {
		width: calc(100% - 180px);
	}

	.recruit-banner .txt-area .title__en {
		max-width: 90px;
	}

	.recruit-banner .txt-area .title {
		max-width: 180px;
	}

	.recruit-banner .img-area {
		width: 180px;
	}

}


@media screen and (orientation:landscape) {

	/* Keycisual */
	.kvbg {
		height: 150vh;
	}

	.kvbg .catch {
		top: 10%;
		width: 70%;
	}

	/* bg-illust__airplane */
	.bg-illust__airplane {
		width: 800px;
		right: 80px;
	}

}

/* over iphone 6 plus landscape */
@media screen and (orientation:landscape) and (min-width: 736px) {

}


/* ---------------------------------------------------------------------------------------------- */
/* Tablet */

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

	/* photoblog */
	.photoblog-link {
		top: -100px;
		max-width: 150px;
	}

	.photoblog-list:before{
		content:"";
		display: block;
		width: calc(25% - 10px);
		order:1;
	}

	.photoblog-list:after{
		content:"";
		display: block;
		width: calc(25% - 10px);
	}

	.photoblog-list__item {
		width: calc(25% - 10px);
		margin-bottom: 0;
	}

	.photoblog-list__item .date {
		position: absolute;
		top: -15px;
		left: -15px;
		width: 60px;
		height: 60px;
	}

	.photoblog-list__item .date span {
		margin-top: 16px;
	}

	/* pickup-contents */
	.pickup-contents__kv {
		height: 450px;
	}

	.policy .pickup-contents__detail {
		margin: -120px 0 0 auto;
	}

	.school .pickup-contents__detail {
		margin: -120px auto 0 0;
	}

	.policy .pickup-contents__title {
		right: 0px;
		top: -360px;
	}

	.school .pickup-contents__title {
		left: 0px;
		top: -360px;
	}

	.pickup-contents__title p + p {
		margin-top: 15px;
	}

	.policy .pickup-contents__title .cover-anm {
		height: 70px;
	}

	.school .pickup-contents__title .cover-anm {
		height: 60px;
	}

	.pickup-contents__detail {
		padding: 40px;
		margin: -50px 0 0 auto;
		max-width: 600px;
	}

	.pickup-contents__detail .title {
		margin-bottom: 1.5em;
	}

	.pickup-contents__detail .title img {
		height: 25px;
	}

	.pickup-contents__detail .title img + img {
		margin-top: 10px;
	}

	.pickup-contents__detail .img {
		width: 150px;
		right: 40px;
		top: -100px;
	}

	.pickup-contents__detail .img img {
		border: solid 4px #fff;
	}

	.pickup-contents__detail .btn-state .svg-icon {
		width: 15px;
		height: 15px;
	}

	/* childcare */
	.childcare-area {
		margin-top: -40px;
	}

	.childcare-list__item {
		width: calc((100% / 3) - 10px);
	}

	.childcare-list__item:first-child {
		width: calc((100% / 3) - 10px);
	}

	.childcare-list__item .excerpt {
		padding: 20px;
	}

	/* news-access */
	.news-access {
		margin-top: -40px;
	}

	.news-area {
		width: calc(50% - 10px);
	}

	.access-area {
		width: calc(50% - 10px);
		margin-top: 0;
	}

	.access-map #maps {
		height: 275px;
	}

	/* recruit-banner */
	.recruit-banner {
		height: 160px;
	}

	.recruit-banner .txt-area {
		width: calc(100% - 250px);
		padding: 0 25px;
	}

	.recruit-banner .txt-area .title__en {
		max-width: 110px;
	}

	.recruit-banner .txt-area .title {
		max-width: 220px;
	}

	.recruit-banner .img-area {
		width: 250px;
	}

	/* bg-illust__airplane */
	.bg-illust__airplane {
		width: 95%;
		max-width: 1200px;
		right: auto;
		left: 0;
	}

}

/* over ipad landscape */
@media screen and (orientation:landscape) and (min-width: 1024px) {

	.kvbg {
		height: 100vh;
	}

	.bg-illust__airplane {
		top: 5%;
	}

	/* pickup-contents */
	.policy .pickup-contents__title {
		top: -420px;
	}

	.school .pickup-contents__title {
		top: -420px;
	}

	.policy .pickup-contents__title .cover-anm {
		height: 79px;
	}

	.school .pickup-contents__title .cover-anm {
		height: 70px;
	}

	.pickup-contents__kv {
		height: 500px;
	}

	.pickup-contents__detail .title img {
		height: 30px;
	}

	.pickup-contents__detail .txt-area {
		width: calc(100% - 170px);
	}

	.pickup-contents__detail .img-area {
		display: block;
		width: 150px;
	}

	.pickup-contents__detail .img-area img {
		width: 100%;
		border-radius: 50%;
		border: solid 4px #fff;
	}

	.pickup-contents__detail .btn-wrapper {
		margin-top: 1.5em;
	}

	/* childcare */
	.childcare-area {
		margin-bottom: 40px;
	}

	.news-list__item .svg-icon {
		width: 15px;
		height: 15px;
	}

	.news-list__item .detail {
		width: calc(100% - 65px);
	}

	.news-access {
		margin-top: 0;
	}

}


/* ---------------------------------------------------------------------------------------------- */
/* Desktop                                                                                        */

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

	/* Keycisual */
	.kvbg {
		height: 100vh;
	}

	/* pickup-contents */
	.pickup-contents__kv {
		height: 600px;
	}

}

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

	/* Keycisual */
	.kvbg .catch {
		max-width: 700px;
	}

	/* photoblog */
	.photoblog-link {
		top: -160px;
		max-width: 180px;
	}

	.photoblog-list:before{
		width: calc(25% - 20px);
	}

	.photoblog-list:after{
		width: calc(25% - 20px);
	}

	.photoblog-list__item {
		width: calc(25% - 20px);
	}

	/* pickup-contents */
	.pickup-contents__kv {
		max-width: 1350px;
	}

	.pickup-contents__detail .excerpt {
		font-size: 1em;
	}

	/* childcare */
	.childcare-list__item {
		width: calc((100% / 3) - 20px);
	}

	.childcare-list__item .excerpt {
		font-size: 1em;
	}

	/* news-access */
	.news-area {
		width: calc(50% - 20px);
	}

	.access-area {
		width: calc(50% - 20px);
	}

	/* bg-illust__airplane */
	.bg-illust__airplane {
		top: 0;
		max-width: 1700px;
	}

}
