﻿@charset "utf-8";
html{}
body {
	width:100%;
	box-sizing: border-box;
	position: relative;
	padding:0;
	margin:0;
	font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Helvetica', 'Arial', sans-serif;
}
ul, li{
	list-style:none;
	padding:0;
	margin:0;
}
i{
	font-style:normal;
}
img{
	max-width:100%;
	vertical-align:bottom;
}
a{
	display: block;
	color:#000;
	text-decoration:none;
}
h2{
	position: relative;
	line-height: 1;
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: bold;
	color: #083c7f;
}
.sub_title{
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	color: #4574b1;
}
a.tel{
	display: inline-block;
	font-size: 50px;
	font-size: 5.0rem;
	font-family: "Oswald", sans-serif;
	color: #eaf11e;
}
a.tel .icon-phone{
    transform: rotate(380deg);
    display: inline-block;
}
.y-txt{
	color: #eaf11e;
}
.button{
	position: relative;
	line-height: 1;
	margin: 0 auto;
	padding: 20px 0;
	background-image: linear-gradient(90deg, #f7b603, #f5ef95);
	border-radius: 40px;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	color: #46230d;
}
.button span{
	position: relative;
}
.button span:after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 1.2em;
	height: 1em;
	background: url(../images/allow.png) no-repeat;
	background-size: contain;
	position: absolute;
	right: -2.3em;
	top: 0px;
	bottom: 0;
	margin: auto;
}
.pc-block{
	display: block;
}
.sp-block{
	display: none;
}

/*******************
 * header
********************/
#header{
	position:absolute;
	right:0;
	top:-90px;
	z-index:10;
	width:100%;
	background: #fff;
	transition:all 1.2s ease-in-out 0s;
	opacity:1;
}
#header .inner {
	padding: 20px 0;
}
#header .inner h1{
	line-height: 1;
}
#header .inner h1 a{
	color: #0060ad;
	font-size: 18px;
	font-size: 1.8rem;
}
#header ul li+li{
	margin-left: 20px;
}
#header ul li a{
color: #083c7f;
}
#header.view{
	position:fixed;
	opacity:1;
	top:0;
	transition:all 0.8s ease-in-out 0s;
}
#header.out{
	position:fixed;
	opacity:0; 
	transition:all 0.8s ease-in-out 0s;
}


/*******************
 * slider-01
********************/
#main-block{
	position: relative;
}
div.slider-01{
	overflow:hidden;
}
div.slider-01 div.slide{
	position: relative;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:top center;
	height:100%;
	min-height: 840px;
}
div.slider-01 div.slide-01{background:url("../images/slider01.jpg") center;}
div.slider-01 div.slide-02{background:url("../images/slider02.jpg") center;}
div.slider-01 div.slide-03{background:url("../images/slider03.jpg") center;}

#main-block .slider-text{
	position: absolute;
	bottom: 4em;
	left: 10rem;
}
#main-block .slider-text .text-box{
	padding-right: 16rem;
}
#main-block .slider-text .text-box > p{
	color: #fff;
	font-family: "M PLUS 1p", sans-serif;
}
#main-block .slider-text .text-box > p.text{
	line-height: 1.2;
}
#main-block .slider-text .text-box > p.text span{
	display: block;
	font-size: 70px;
	font-size: 7.0rem;
	border-bottom: 1px solid #fff;
}
#main-block .slider-text .text-box > p.sub_text{
	line-height: 1.2;
	margin-top: 1rem;
	font-size: 36px;
	font-size: 3.6rem;
}
#main-block .slider-text > .button{
	width: 70%;
	margin: 3rem 0 0 auto;
	padding: 30px 30px 30px 0px;
}





/*******************************
box-sizing
*******************************/
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}


/*************************
/* flex-box
*************************/
.flex-box{
	display:-webkit-flex;
	display:flex;
}
.flex-box-nowrap{
	-webkit-flex-wrap:nowrap;
	flex-wrap:nowrap;
}
.flex-box-wrap{
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}
.flex-box-row-rever{
	-webkit-flex-direction:row-reverse;
	flex-direction:row-reverse;
}
.flex-box-column{
	-webkit-flex-direction:column;
	flex-direction:column;
}
.flex-box-column-r{
	-webkit-flex-direction:column-reverse;
	flex-direction:column-reverse;
}
.flex-box-space-b{
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.flex-box-space-a{
	-webkit-justify-content:space-around;
	justify-content:space-around;
}
.flex-box-space-c{
	-webkit-justify-content:center;
	justify-content:center;
}
.flex-box-space-e{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.flex-box-item-c{
	-webkit-align-items:center;
	align-items:center;
}
.flex-box-item-e{
	-webkit-align-items:flex-end;
	align-items:flex-end;
}

/*************************
/* TOP-PAGE
*************************/



#info-block .top_block{
	position: relative;
	background: #a6cbfa;
	padding: 5rem 0 0;
}
#info-block .top_block .head{
	background: #0d4082;
	text-align: center;
}
#info-block .top_block .head .head_inner{
	padding: 1rem 0 1.6rem;
}
#info-block .top_block .head p.sub_title{
	color: #fff;
}
#info-block .top_block .head h2{
	color: #fff;
	line-height: 1.2;
}
#info-block .top_block .body{
	position: relative;
	max-width: 780px;
	margin: 0 auto;
	padding-bottom: 5rem;
}
#info-block .top_block .body p.text{
	margin-top: 4rem;
	color: #083c7f;
	font-size: 18px;
	font-size: 1.8rem;
	text-align: center;
}
#info-block .top_block .body p.text span{
	display: block;
}
#info-block .top_block .body .img-box{
	position: absolute;
}
#info-block .top_block .body .img-box#img01{
	bottom: -20.2rem;
	left: -25rem;
	z-index: 10;
}
#info-block .top_block .body .img-box#img01 .info-img{
	width: clamp(210px, 7.8vw, 480px);
}
#info-block .top_block .body .img-box#img02{
	bottom: 0;
	right: -26rem;
}
#info-block .top_block .body .img-box#img02 .info-img{
	width: clamp(200px, 7.8vw, 480px);
}
#info-block .top_block .body .img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#info-block .bottom_block{
	background: #083c7f;
	padding: 0 0 4rem;
}
#info-block .bottom_block .allow {
	width: 100%;
	padding-top: 10rem;
	position: relative;
	overflow: hidden;
}
#info-block .bottom_block .allow::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	left: 50%;
	margin: auto;
	border-top: 100px solid #1259b3;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	transform: translateX(-50%);
}
#info-block .bottom_block .title-box{
	color: #fff;
	text-align: center;
}
#info-block .bottom_block .title-box .sub_title{
	color: #fff;
}
#info-block .bottom_block .title-box .title{
	font-size: 42px;
	font-size: 4.2rem;
}
#info-block .bottom_block div.flex-box{
	margin-top: 2rem;
}
#info-block .bottom_block div.flex-box .box{
	width: 300px;
	height: 300px;
	display: flex;
	flex-direction: column;
	margin: 0 2rem;
	padding: 4rem 2rem;
	background: #fff;
	border-radius: 50%;
	font-size: 30px;
	font-size: 3.0rem;
}
#info-block .bottom_block div.flex-box .box > p{
	text-align: center;
}
#info-block .bottom_block div.flex-box .box .number{
	color: #f56876;
	font-family: '游明朝', YuMincho, 'ヒラギノ明朝 Pr6 W6', 'Hiragino Mincho Pro', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
#info-block .bottom_block div.flex-box .box .number span{
	border-top: 1px solid #5a7daa;
}
#info-block .bottom_block div.flex-box .box .text{
	color: #083c7f;
	font-size: 18px;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	text-align: left;
}
#info-block .bottom_block div.flex-box .box .item{
	color: #f3364c;
	font-weight: bold;
}
#info-block .bottom_block div.flex-box .box > p.icon{
	margin-top: 1rem;
}

#lecturers-block section{
	max-width: 1100px;
	margin: 0 auto;
	padding: 8rem 0 4rem;
}
#lecturers-block section div.flex-box .img-box{
	min-width: 300px;
	padding-bottom: 12rem;
}
#lecturers-block section div.flex-box .img-box p{
	position: relative;
}
#lecturers-block section div.flex-box .img-box p:after{
	content: "";
	margin: auto;
	width: 300px;
	height: 380px;
	background: #083c7f;
	position: absolute;
	right: -4rem;
	top: 3rem;
	z-index: -1;
}
#lecturers-block section div.flex-box .text-box{
	width: calc(100%/2);
}
#lecturers-block section div.flex-box .text-box .head h2{
	margin-top: 1rem;
}
#lecturers-block section div.flex-box .text-box .text{
	line-height: 2;
	margin-top: 4rem;
	font-size: 18px;
	font-size: 1.8rem;
}
#lecturers-block section div.flex-box .text-box .text span{
	display: block;
}
#lecturers-block section div.flex-box .text-box .button{
	margin-top: 4rem;
	width: 70%;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: normal;
}

#class-block{
	background: #e4eefb;
}
#class-block section{
	max-width: 1100px;
	margin: 0 auto;
	padding: 6rem 0 12rem;
}
#class-block section .head{
	text-align: center;
}
#class-block section .head > h2{
	margin-top: 1rem;
}
#class-block section .body{
	margin-top: 8rem;
}
#class-block section .body div.flex-box .box{
	width: calc(100%/3 - 20px);
	margin: 0 1rem;
}
#class-block section .body div.flex-box .box .textarea{
	padding: 3rem 3rem 2rem;
	background: #fff;
	border-radius: 0 0 20px 20px;
	border: 1px solid #d3cfcf;
}
#class-block section .body div.flex-box .box .textarea .title{
	font-size: 30px;
	font-size: 3.0rem;
	text-align: center;
}
#class-block section .body div.flex-box .box .textarea .text{
	margin-top: 1rem;
}
#class-block section .body div.flex-box .box .textarea .button{
	margin-top: 2rem;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: normal;
}


#news-block section{
	max-width: 1100px;
	margin: 0 auto;
	padding: 5rem 0 8rem;
}
#news-block section div.flex-box > .box{
	width: calc(100%/2 - 20px);
}
#news-block section div.flex-box > .box .head > h2{
	line-height: 1.1;
}
#news-block section div.flex-box > .box .head > h2 span span{
	display: block;
}
#news-block section div.flex-box > .box:nth-child(2) .head > .title{
	text-align: center;
}
#news-block section div.flex-box > .box:nth-child(2) .head > .title .sub_title{
	display: block;
	margin-top: 1rem;
	font-size: 12px;
	font-size: 1.2rem;
	color: #0a3a9b;
}
#news-block section div.flex-box > .box:nth-child(2) .body{
	margin-top: 6rem;
}
#news-block section div.flex-box > .box:nth-child(2) .body > .button{
	width: 80%;
}
#news-block section div.flex-box > .box .body > ul{
	margin-top: 2rem;
	border-bottom: 1px solid #083c7f;
}
#news-block section div.flex-box > .box .body > ul li{
	border-top: 1px solid #083c7f;
}
#news-block section div.flex-box > .box .body > ul li a{
	padding: 3rem;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1;
}
#news-block section div.flex-box > .box .body > ul li a .data{
	margin-right: 3rem;
}
#news-block section div.flex-box > .box .body > .button-allow{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 2rem;
}
#news-block section div.flex-box > .box .body > .button-allow .icon-circle2-right{
	font-size: 20px;
	font-size: 2.0rem;
}
#news-block section div.flex-box > .box .body > .button-allow .icon-circle2-right .path1:before{
	color: #114ba2;
}



#footer{
	background: #114ba2;
}
#footer .inner{
	padding: 5rem 0 14rem;
}
#footer .footer-top ul li+li{
	margin-left: 20px;
}
#footer .footer-top ul li a{
	color: #fff;
}
#footer .footer-bottom{
	margin-top: 5rem;
	text-align: center;
}
#footer .footer-bottom > div div.flex-box address,#footer .footer-bottom > div div.flex-box p,#footer .footer-bottom > div > p{
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
}
#footer .copyright{
	margin-top: 5rem;
	color: #fff;
	text-align: center;
}
#footer .copyright p:nth-child(1){
	font-size: 16px;
	font-size: 1.6rem;
}
#footer .copyright p:nth-child(2){
	font-size: 12px;
	font-size: 1.2rem;
}


/*******************
 * footer-overlay
********************/
#footer-overlay{
	position:absolute;
	right:0;
	bottom:-94px;
	z-index:10;
	width:100%;
	padding: 1rem;
	background: #1259b3;
	transition:all 1.2s ease-in-out 0s;
	opacity:1;
}
#footer-overlay.view{
	position:fixed;
	opacity:1;
	bottom:0;
	transition:all 0.8s ease-in-out 0s;
}
#footer-overlay.out{
	position:fixed;
	opacity:0; 
	transition:all 0.8s ease-in-out 0s;
}
#footer-overlay div.flex-box > div{
	margin: 0 4rem;
}
#footer-overlay div.flex-box > div:nth-child(2){
	text-align: center;
}
#footer-overlay div.flex-box > div:nth-child(2) > p{
	line-height: 1;
	color: #eaf11e;
	font-size: 20px;
	font-size: 2.0rem;
}
#footer-overlay div.flex-box > div:nth-child(2) > a{
	line-height: 1;
}




/*インナー*/
body.page .main-image,body.category .main-image,body.archive .main-image,body.single .main-image{
	position: relative;
	width: 100%;
	height: 680px;
}
body.page .inner-container-page #inner-top-block{
	background: #083c7f;
	color: #fff;
}
body.page .inner-container-page #inner-top-block section{
	max-width: 1100px;
	margin: 0 auto;
	padding: 8rem 0;
}
body.page .inner-container-page #inner-top-block section .head{
	text-align: center;
}
body.page .inner-container-page #inner-top-block section .head > h2{
	color: #fff;
}
body.page .inner-container-page #inner-top-block .head > h2{
	font-size: 48px;
	font-size: 4.8rem;
	font-weight: 400;
}
body.page .inner-container-page #inner-top-block .body{
	text-align: center;
}
body.page .inner-container-page #inner-top-block .body > .text-box > p.text{
	margin: 4rem auto 0;
	max-width: 780px;
	font-size: 18px;
	font-size: 1.8rem;
}
body.page .inner-container-page #inner-top-block .body > .text-box > p.text span{
	display: block;
}
body.page .inner-container-page #inner-top-block .body > .text-box > .info-img{
	margin-top: 10rem;
}
body.page .inner-container-page #inner-bottom-block{
	background: #e4eefb;
	padding: 8rem 0 0;
	z-index: -2;
}
body.page .inner-container-page #inner-bottom-block .head{
	text-align: center;
}
body.page #inner-bottom-block section .body div.flex-box{
	margin-top: 8rem;
}
body.page #inner-bottom-block section .body div.flex-box .img-box > p{
	position: relative;
	z-index: 1;
}
body.page #inner-bottom-block section .body div.flex-box .img-box > p:after {
	content: "";
	margin: auto;
	width: 380px;
	height: 480px;
	background: #083c7f;
	position: absolute;
	right: -4rem;
	top: 16rem;
	z-index: -1;
}
body.page #inner-bottom-block section .body div.flex-box .text-box{
	max-width: 500px;
	margin-left: 10rem;
}
body.page #inner-bottom-block section .body div.flex-box .text-box p.text{
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 2;
}
body.page #inner-bottom-block section .body div.flex-box .text-box p.text span{
	display: block;
}
body.page #inner-bottom-block section .body .text-box .w-box,body.page #inner-top-block section .body .text-box .w-box{
	background: #ffffff;
	margin-top: 4rem;
	padding: 2rem;
}
body.page #inner-bottom-block section .body .text-box .w-box dl+dl{
	margin-top: 3rem;
}
body.page #inner-bottom-block section .body .text-box .w-box dl dt,body.page #inner-bottom-block section .body .text-box .w-box dl dd{
	line-height: 1.5;
	font-size: 18px;
	font-size: 1.8rem;
}
body.page #inner-bottom-block section .body div.flex-box .text-box .w-box dl dd{
	margin-top: 1rem;
}
body.page #inner-bottom-block section .body div.flex-box .text-box .w-box dl dt .b-txt{
	color: #083c7f;
	font-weight: bold;
}
body.page #inner-bottom-block section .body div.flex-box .text-box .w-box dl dd .bold-txt{
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: bold;
}
body.page #inner-bottom-block section .body div.flex-box .text-box .w-box dl dd .caution-txt{
	font-size: 14px;
	font-size: 1.4rem;
}


/*スクールのご案内*/
body.school .main-image{
	background-image: url(../images/school/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.school .inner-container-page #inner-top-block .body > .text-box > p.title{
	font-size: 30px;
	font-size: 3.0rem;
}
body.school .inner-container-page #inner-top-block .body > .text-box > p.text span{
	margin-top: 4rem;
}
body.school .inner-container-page #inner-top-block .body > .text-box > .info-img span{
	display: block;
	margin-top: 1rem;
	font-size: 14px;
	font-size: 1.4rem;
}
body.school #inner-bottom-block section .box-block{
	padding: 0 0 8rem;
}
body.school #inner-bottom-block section .box-block:nth-child(2){
	background: #fff;
}
body.school #inner-bottom-block section .box-block .box-block-inner{
	max-width: 1100px;
	background: #fff;
	margin: 0 auto;
	padding: 6rem 0;
}
body.school #inner-bottom-block section .box-block .box-block-inner .head > h2{
	margin-top: 2rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body{
	position: relative;
	margin-top: 4rem;
	text-align: center;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .text{
	font-size: 18px;
	font-size: 1.8rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .text span{
	display: block;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .img-layout{
	position: absolute;
	left: 10rem;
	bottom: 2rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .tel-box{
	margin-top: 6rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .tel-box > p{
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #083c7f;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .tel-box > a.tel{
	background: #083c7f;
	margin-top: 1rem;
	padding: 0 4rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .map-box{
	margin-top: 6rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .chart-box{
	margin-top: 6rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .chart-box > table{
	width: 100%;
	border-bottom: 1px solid #717070;
	border-collapse: collapse;
	font-size: 18px;
	font-size: 1.8rem;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .chart-box > table tr{}
body.school #inner-bottom-block section .box-block .box-block-inner .body .chart-box > table tr th{
	width: 30%;
	background: #083c7f;
	padding: 1.5rem;
	border-top: 1px solid #717070;
	border-left: 1px solid #717070;
	color: #fff;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .chart-box > table tr td{
	width: 100%;
	padding: 1.5rem 2rem  1.5rem 5rem;
	border-top: 1px solid #717070;
	border-right: 1px solid #717070;
	text-align: left;
}
body.school #inner-bottom-block section .box-block .box-block-inner .body .chart-box > table tr:nth-child(3) td{
	color: #3d66ce;
}



/*キンダークラス*/
body.lessons-class-junior .main-image{
	background-image: url(../images/junior/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.lessons-class-junior #inner-bottom-block section .body{
	padding-bottom: 20rem;
}



/*プライベートクラス*/
body.lessons-class-adult .main-image{
	background-image: url(../images/adult/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.lessons-class-adult #inner-bottom-block section .body{
	padding-bottom: 20rem;
}


/*小学生＆学生のクラス*/
body.lessons-class-general .main-image{
	background-image: url(../images/general/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.lessons-class-general .inner-container-page #inner-top-block .body > .text-box > p.text{
	max-width: 910px;
}
body.lessons-class-general #inner-bottom-block section .body{
	padding-bottom: 20rem;
}
body.lessons-class-general #inner-bottom-block section div:nth-child(even) .body div.flex-box .text-box{
	margin-right: 10rem;
	margin-left: 0;
}
body.lessons-class-general #inner-bottom-block section div:nth-child(even) .body div.flex-box .img-box > p:after{
	left: -4rem;
	right: auto;
}



/*講師の紹介*/
body.lecturers .main-image{
	background-image: url(../images/lecturers/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.lecturers .body .w-box{
	padding: 6rem 2rem;
}
body.lecturers .body div.w-box div.flex-box .img-box{
	min-width: 420px;
}
body.lecturers .body div.w-box div.flex-box .text-box{
	width: calc(100% / 2);
	margin-left: 3rem;
}
body.lecturers .body div.w-box div.flex-box .text-box .text{
	color: #000;
	font-size: 18px;
	line-height: 2;
	margin-top: 5rem;
	text-align: left;
}
body.lecturers .body div.w-box div.flex-box .text-box .head{
	display: flex;
	align-items: flex-end;
	line-height: 1;
}
body.lecturers .inner-container-page #inner-top-block .body div.w-box{
	margin-top: 8rem;
	padding: 6rem 3rem;
}
body.lecturers .inner-container-page #inner-top-block .body div.w-box div.flex-box .text-box .head h2{
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: bold;
	color: #083c7f;
	text-align: left;
}
body.lecturers .inner-container-page #inner-top-block .body div.w-box div.flex-box .text-box .head h2 span{
	display: block;
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom: 1rem;
}
body.lecturers .body div.w-box div.flex-box .text-box .caution{
	color: #000;
	text-align: left;
	margin-top: 2rem;
}


/*お問い合わせ*/
body.contact .main-image{
	background-image: url(../images/school/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.contact #inner-top-block .formblock{
	width: 80%;
	margin: 0 auto 0;
}
body.contact #inner-top-block .formblock > p{
	text-align: center;
	margin-bottom: 2rem;
}
body.contact #inner-top-block .formblock dl{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-top: solid 1px #ddd;
}
body.contact #inner-top-block .formblock dl dt{
	width: 30%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #a6cbfa;
}
body.contact #inner-top-block .formblock dl dt p{
	text-align: center;
	display: flex;
}
body.contact #inner-top-block .formblock dl dt p span:nth-child(1){
	display: block;
	color: #1259b3;
	font-weight: bold;
}
body.contact #inner-top-block .formblock dl dt p .txt-red{
	color: red;
}
body.contact #inner-top-block .formblock dl dd {
	width: 70%;
	padding: 20px;
	background: #fff;
}
body.contact #inner-top-block .formblock dl dd .wpcf7-list-item{
	display: block;
}
body.contact #inner-top-block .formblock dl dd input[type="text"],body.contact #inner-top-block .formblock dl dd input[type="email"],body.contact #inner-top-block .formblock dl dd input[type="tel"]{
	width: 90%;
	height: 3.2em;
	border-radius: 4px;
	border: 1px solid #ddd;
	padding: 1.4em 1.4em;
}
body.contact #inner-top-block .formblock dl dd textarea{
	width: 90%;
	border-radius: 4px;
	border: 1px solid #ddd;
	padding: 1.4em 1.4em;
}
body.contact #inner-top-block .formblock .button-erea{
	margin-top: 80px;
	text-align: center;
}
body.contact #inner-top-block .formblock input[type="submit"] {
	width: 60%;
	line-height: 1;
	margin: 0 auto;
	padding: 20px 0;
	background-image: linear-gradient(90deg, #f7b603, #f5ef95);
	border-radius: 40px;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	color: #46230d;
}
body.contact #inner-top-block .formblock .button-erea p > span{
	position: relative;
	display: block;
	width: 100%;
}
body.contact #inner-top-block .formblock .button-erea p > span:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 1.2em;
	height: 1em;
	background: url(../images/allow.png) no-repeat;
	background-size: contain;
	position: absolute;
	right: 16em;
	top: 25px;
	margin: auto;
}


/*お知らせ*/
body.category .main-image{
	background-image: url(../images/school/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.category #news-block section .head > h2 span span {
	display: block;
}
body.category #news-block section ul{
	margin-top: 2rem;
	border-bottom: 1px solid #083c7f;
}
body.category #news-block section .body > ul li{
	border-top: 1px solid #083c7f;
}
body.category #news-block section .body > ul li a{
	padding: 3rem;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1;
}
body.category #news-block section .body > ul li a .data{
	margin-right: 3rem;
}


body.single .main-image{
	background-image: url(../images/school/inner-main.jpg);
	background-size: cover;
	background-position: center;
}
body.single div.inner-container-page{
	padding: 10rem 0 30rem;
}
body.single div.inner-container-page #erea-block::before{
	z-index: -1;
}
body.single div.inner-container-page section{
	max-width: 1100px;
	margin: 0 auto;
}
body.single div.inner-container-page section .body .data{
	background: #0d4082;
	text-align: right;
	color: #fff;
	padding: 1rem 4rem;
	font-size: 18px;
	font-size: 1.8rem;
}
body.single div.inner-container-page section .body .title{
	margin-top: 2rem;
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: bold;
	color: #083c7f;
}
body.single div.inner-container-page section .body .post-texterea{
	margin-top: 4rem;
}

.grecaptcha-badge {
	visibility: hidden;
}

