/* global
-----------------------------------------------------------*/
body,html{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	font-size:16px;
	line-height:2;
	letter-spacing:0;
	color:#1b1b1b;
	font-family:"游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
*{box-sizing:border-box}

::-webkit-scrollbar{
	width:6px;
}
::-webkit-scrollbar-track{
	background:#fff;
	border:none;
	border-radius:6px;
	box-shadow:inset 0 0 2px #777; 
}
::-webkit-scrollbar-thumb{
	background:#ccc;
	border-radius:6px;
	box-shadow:none;
}

.inner{
	width:calc(100% - 80px);
	max-width:1200px;
	margin:0 auto;
}

.left{float:left}
.right{float:right}
.pc{display:block}
.sp{display:none}
.clearfix:after{
	display:block;
	content:"";
	clear:both;
}
img{
	max-width:100%;
	height:auto;
}
a{
	color:#000;
	text-decoration:none;
		-webkit-transition: all .3s;
	transition: all .3s;
}
a:hover, a:active, a:focus{
	opacity:0.7;
	outline:none;
	text-decoration:none;
		-webkit-transition: all .3s;
	transition: all .3s;
}

ul.side{
	display:block;
	margin:0;
	padding:0;
	list-style:none;
}
ul.side:after{
	display:block;
	content:"";
	clear:both;
}
ul.side li{
	float:left;
	margin:0;
	padding:0;
}

ol{
	list-style:none;
	padding-left:30px;
}
ol li{
	position:relative;
}
ol li:before{
	display:block;
	content:"1.";
	color:#f59702;
	position:absolute;
	left:-28px;
	top:0;
}
ol li:nth-of-type(2):before{content:"2."}
ol li:nth-of-type(3):before{content:"3."}
ol li:nth-of-type(4):before{content:"4."}
ol li:nth-of-type(5):before{content:"5."}
ol li:nth-of-type(6):before{content:"6."}
ol li:nth-of-type(7):before{content:"7."}
ol li:nth-of-type(8):before{content:"8."}
ol li:nth-of-type(9):before{content:"9."}
ol li:nth-of-type(10):before{content:"10."}

.arrow{
	display:block;
	position:relative;
}
.arrow:after{
	display:block;
	content:"";
	width:6px;
	height:6px;
	border-top:2px #fff solid;
	border-right:2px #fff solid;
	position:absolute;
	top:50%;
	right:20px;
	z-index:1;
	transform:rotate(45deg) translateY(-50%);
	transform-origin:top;
}

main{
	float:left;
	width:840px;
	margin-bottom:142px;
}
body:not(.home) h2{
	margin:0 0 40px;
	padding:0 0 0 34px;
	font-size:32px;
	font-weight:bold;
	color:#ec6c00;
	line-height:1.4;
	position:relative;
}

/* form
-----------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
select{
	width:100%;
	height:48px;
	line-height:48px;
	padding:0 21px;
	border:1px #ddd solid;
	border-radius:3px;
	outline:none;
	font-size:16px;
}
select{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	background:transparent;
	z-index:1;
	position:relative;
}
.selectbox{
	width:100%;
	position:relative;
}
.selectbox:after{
	display:block;
	content:"";
	width:8px;
	height:8px;
	border-right:2px #999 solid;
	border-bottom:2px #999 solid;
	position:absolute;
	top:24px;
	right:23px;
	transform:translateY(-7px) rotate(45deg);
	z-index:0;
}
.mw_wp_form_confirm .selectbox:after{display:none}
textarea{
	width:100%;
	height:180px;
	padding:16px 21px;
	border:1px #ddd solid;
	border-radius:3px;
	outline:none;
	font-size:16px;
	line-height:1.3;
}
input[type=checkbox]{
	position:absolute;
	opacity:0;
	z-index:-1;
}
input[type=checkbox]+span{
	display:inline-block;
	margin:5px;
	padding-left:30px;
	letter-spacing:0;
	position:relative;
}
input[type=checkbox]+span:before{
	display:block;
	content:"";
	width:18px;
	height:18px;
	border:1px #555 solid;
	border-radius:2px;
	position:absolute;
	left:0;
	top:6px;
	cursor:pointer;
}
input[type=checkbox]:checked+span:before{background:#555}
input[type=checkbox]:checked+span:after{
	display:block;
	content:"";
	width:6px;
	height:10px;
	border-bottom:2px #fff solid;
	border-right:2px #fff solid;
	position:absolute;
	left:6px;
	top:8px;
	transform:rotate(45deg);
	cursor:pointer;
}
input[type=radio]{
	position:absolute;
	opacity:0;
	z-index:-1;
}
input[type=radio]+span{
	display:inline-block;
	margin:5px;
	padding-left:30px;
	letter-spacing:0;
	position:relative;
}
input[type=radio]+span:before{
	display:block;
	content:"";
	width:16px;
	height:16px;
	border:2px #dedede solid;
	border-radius:100%;
	position:absolute;
	left:0;
	top:5px;
	cursor:pointer;
}
input[type=radio]:checked+span:before{border-color:#555}
input[type=radio]:checked+span:after{
	display:block;
	content:"";
	width:12px;
	height:12px;
	border-radius:100%;
	background:#555;
	position:absolute;
	left:4px;
	top:9px;
	cursor:pointer;
}
.mw_wp_form .horizontal-item{margin-right:10px}
.mw_wp_form .horizontal-item + .horizontal-item{margin-left:0}

.mw_wp_form .error{
	margin-top:10px;
	margin-bottom:-14px;
	font-size:14px;
	color:#ff6473;
}
.mw_wp_form_confirm .agreebox{display:none}
.agreebox .error{
	margin-bottom:0;
	text-align:center;
}
label{cursor:pointer}

/* button */
#buttonbox{
	padding:22px 0 0;
	text-align:center;
}
#buttonbox #sendBtnBox{
	width:280px;
	height:80px;
	margin:0 auto;
	background:#e44a51;
	border:1px #e44a51 solid;
	color:#fff;
	border-radius:4px;
	box-shadow: 0 3px 0 #922f34;
	position:relative;
		-webkit-transition: all .3s;
	transition: all .3s;
}
#buttonbox #sendBtnBox:hover{
	/*background:#fff;*/
	opacity: .7;
		-webkit-transition: all .3s;
	transition: all .3s;
}
#buttonbox #sendBtnBox input{
	width:280px;
	height:80px;
	color:#fff;
	background:none;
	border:0;
	font-size:16px;
	cursor:pointer;
	position:absolute;
	top:0;
	left:0;
	z-index:2;
		-webkit-transition: all .3s;
	transition: all .3s;
	outline:none;
}
/*#buttonbox #sendBtnBox:hover input{
	color:#f59702;
		-webkit-transition: all .3s;
	transition: all .3s;
}*/
#buttonbox #backBtnBox input{
	margin-top:20px;
	background:none;
	border:0;
	font-size:12px;
	color:#555;
	text-decoration:underline;
	cursor:pointer;
	outline:none;
}

/* request
-----------------------------------------------------------*/
body.request main,
body.confirm main{
	float:none;
	margin-left:auto;
	margin-right:auto;
  padding-top: 120px;
}
body.request #sidebar,
body.confirm #sidebar{
	display:none;
}
body.request section+section{
	margin-top:60px;
}
body.request #text .box{
	padding:40px;
	border-radius:10px;
	border:2px #ddd solid;
}
body.request #text h3{
	margin:0;
	font-size:20px;
	font-weight:bold;
	color:#ec6c00;
}
body.request #text h3+p{
	margin-top:4px;
}
body.request #text b{
	color:#e44a51;
  font-weight: bold;
}
body.request #text p b{
	font-weight:normal;
}
body.request #text .tel{
	margin-top:32px;
	text-align:center;
	font-size:20px;
	line-height:1;
}
body.request #text .tel a{
	display:block;
	margin:16px auto 0;
	font-size:52px;
	font-weight:bold;
}
body.request #text .tel a img{
	width:36px;
	margin-right:8px;
}
body.request #text .tel span{
	font-size:14px;
}
body.request #formbox h2{
	margin:0 0 8px;
	padding:18px 0;
	background:#f8f8f8;
	text-align:center;
}
body.request #formbox h2:before{
	display:none;
}
body.request #formbox .note{
	font-size:14px;
	margin-bottom:32px;
}
body.request #formbox .note span{
	font-size:12px;
	color:#e44a51;
}

table.request{
	width:100%;
	border-collapse:collapse;
}
table.request tr{
	border-top:1px #ddd solid;
}
table.request tr:last-child{
	border-bottom:1px #ddd solid;
}

table.request th{
	width:260px;
	padding:35px 10px 35px 0;
	font-weight:bold;
	text-align:left;
	vertical-align:top;
}
table.request th.require:after{
	display:inline-block;
	content:"*";
	margin-left:3px;
	font-size:12px;
	color:#e44a51;
}
table.request td{
	padding:30px 0;
}
table.request td::after{
	display:block;
	content:"";
	clear:both;
}
table.request td b{
	display:block;
}
table.request .selectbox,
table.request select{
	max-width:240px;
}
table.request td #zip{
	width:120px;
	margin-bottom:12px;
}
table.request td #address,
table.request td #address2,
table.request td #address3{
	margin-top:12px;
}
table.request td input[type=hidden]+br{
	display:none;
}
table.request td #parent_name,
table.request td #parent_fname,
table.request td #parent_kana,
table.request td #parent_fkana,
table.request td #child_name,
table.request td #child_fname,
table.request td #child_kana,
table.request td #child_fkana{
	float:left;
	width:calc(50% - 5px);
}
table.request td #parent_fname,
table.request td #parent_fkana,
table.request td #child_fname,
table.request td #child_fkana{
	margin-left:10px;
}
table.request td.gray{
	padding:10px;
	background: #ddd;
	font-size: 18px;
}


/* 1280px以下
-------------------------------------------------------------- */
@media screen and (max-width:1280px){

	/* global
	-----------------------------------------------------------*/
	body,html{
		font-size:1.25vw;
	}
	ol{
		padding-left:2.344vw;
	}
	ol li:before{
		left:-2.187vw;
	}
	.arrow:after{
		width:0.469vw;
		height:0.469vw;
		border-top:0.156vw #fff solid;
		border-right:0.156vw #fff solid;
	}

	/* form
	-----------------------------------------------------------*/
	input[type=text],
	input[type=tel],
	input[type=email],
	input[type=password],
	input[type=number],
	select{
		height:3.75vw;
		line-height:3.75vw;
		padding:0 1.641vw;
		border-radius:0.234vw;
		font-size:1.25vw;
	}
	.selectbox:after{
		width:0.625vw;
		height:0.625vw;
		border-right:0.156vw #999 solid;
		border-bottom:0.156vw #999 solid;
		top:1.875vw;
		right:1.797vw;
		transform:translateY(-0.547vw) rotate(45deg);
	}
	textarea{
		height:14.063vw;
		padding:1.25vw 1.641vw;
		border-radius:0.234vw;
		font-size:1.25vw;
	}
	input[type=checkbox]+span{
		margin:0.391vw;
		padding-left:2.344vw;
	}
	input[type=checkbox]+span:before{
		width:1.406vw;
		height:1.406vw;
		border-radius:0.156vw;
		top:0.469vw;
	}
	input[type=checkbox]:checked+span:after{
		width:0.469vw;
		height:0.781vw;
		border-bottom:0.156vw #fff solid;
		border-right:0.156vw #fff solid;
		left:0.469vw;
		top:0.625vw;
	}
	input[type=radio]+span{
		margin:0.391vw;
		padding-left:2.344vw;
	}
	input[type=radio]+span:before{
		width:1.25vw;
		height:1.25vw;
		border:0.156vw #dedede solid;
		top:0.391vw;
	}
	input[type=radio]:checked+span:after{
		width:0.938vw;
		height:0.938vw;
		left:0.313vw;
		top:0.703vw;
	}
	.mw_wp_form .horizontal-item{margin-right:0.781vw}

	.mw_wp_form .error{
		margin-top:0.781vw;
		margin-bottom:-1.094vw;
		font-size:1.094vw;
	}

	/* button */
	#buttonbox{
		padding:1.719vw 0 0;
	}
	#buttonbox #sendBtnBox{
		width:21.875vw;
		height:6.25vw;
		border-radius:0.313vw;
	}
	#buttonbox #sendBtnBox input{
		width:21.875vw;
		height:6.25vw;
		font-size:1.25vw;
	}
	#buttonbox #backBtnBox input{
		margin-top:1.563vw;
		font-size:0.938vw;
	}

	/* common
	-----------------------------------------------------------*/
	body:not(.home) #wrapper{
		padding-top:9.375vw;
	}
	#title{
		padding:2.344vw 0;
	}
	#title.bg{
		height:31.25vw;
		padding-top:10.938vw;
	}
	#title h1,
	#title .headtitle{
		padding:0;
		font-size:3.125vw;
	}
	#title h1 .subTitle{
		font-size:1.25vw;
	}
	#title h1 .schoolTitle{
		font-size:1.563vw;
	}
	#title h1 small{
		font-size: 2.5vw;
	}
	main{
		width:calc((100% - 25vw) - 40px);
		margin-bottom:11.094vw;
	}
	body:not(.home) h2{
		margin:0 0 3.125vw;
		padding:0 0 0 2.656vw;
		font-size:2.5vw;
	}
	body:not(.home) h2:before{
		width:0.625vw;
		border-radius:0.313vw;
	}
	a.more{
		width:9.375vw;
		height:3.125vw;
		line-height:3.125vw;
		border-radius:0.313vw;
	}
	h3.h3{
		padding-left:2.813vw;
		background-size:2.422vw;
	}
	.shadowbox{
		padding:3.125vw;
		box-shadow:0.156vw 0 1.25vw rgba(0,0,0,.15);
		border-radius:0.781vw;
	}


	/* request
	-----------------------------------------------------------*/
	body.request section+section{
		margin-top:4.688vw;
	}
	body.request #text .box{
		padding:3.125vw;
		border-radius:0.781vw;
		border:2px #ddd solid;
	}
	body.request #text h3{
		font-size:1.563vw;
	}
	body.request #text h3+p{
		margin-top:0.313vw;
	}
	body.request #text .tel{
		margin-top:2.5vw;
		font-size:1.563vw;
	}
	body.request #text .tel a{
		margin:16px auto 0;
		font-size:4.063vw;
	}
	body.request #text .tel a img{
		width:2.813vw;
		margin-right:0.625vw;
	}
	body.request #text .tel span{
		font-size:1.094vw;
	}
	body.request #formbox h2{
		margin:0 0 0.625vw;
		padding:1.406vw 0;
	}
	body.request #formbox .note{
		font-size:1.094vw;
		margin-bottom:2.5vw;
	}
	body.request #formbox .note span{
		font-size:0.938vw;
	}
	table.request th{
		width:25vw;
		padding:2.734vw 0.781vw 2.734vw 0;
	}
	table.request th.require:after{
		margin-left:0.234vw;
		font-size:0.938vw;
	}
	table.request td{
		padding:2.344vw 0;
	}
	table.request .selectbox,
	table.request select{
		max-width:18.75vw;
	}
	table.request td #address{
		margin-top:0.938vw;
	}
	table.request td.gray{
		padding:0.781vw;
		font-size: 1.406vw;
	}

}



/* 830px以下
-------------------------------------------------------------- */
@media screen and (max-width:830px){

	/* global
	-----------------------------------------------------------*/
	body,html{
		font-size:2.892vw;
		line-height:1.8;
	}
	.inner{
		width:calc(100% - 9.639vw);
	}
	ol{
		padding-left:4.819vw;
	}
	ol li:before{
		left:-3.373vw;
	}
	body.navOpen{overflow:hidden}
	.pc{display:none}
	.sp{display:block}
	span.sp{display:inline-block}
	.arrow:after{
		width:1.566vw;
		height:1.566vw;
		border-top:0.482vw #fff solid;
		border-right:0.482vw #fff solid;
		right:2.892vw;
	}


	/* form
	-----------------------------------------------------------*/
	input[type=text],
	input[type=tel],
	input[type=email],
	input[type=password],
	input[type=number],
	select{
		height:7.711vw;
		line-height:7.711vw;
		padding:0 3.855vw;
		border-radius:0.361vw;
		font-size:2.892vw;
	}
	.selectbox:after{
		width:0.964vw;
		height:0.964vw;
		border-right:0.241vw #999 solid;
		border-bottom:0.241vw #999 solid;
		top:2.892vw;
		right:2.771vw;
		transform:translateY(-0.843vw) rotate(45deg);
	}
	textarea{
		height:48.193vw;
		padding:1.928vw 3.855vw;
		border-radius:0.361vw;
		font-size:2.892vw;
	}
	input[type=checkbox]+span{
		margin:0.602vw;
		padding-left:3.614vw;
	}
	input[type=checkbox]+span:before{
		width:2.651vw;
		height:2.651vw;
		border-radius:0.241vw;
		top:0.964vw;
	}
	input[type=checkbox]:checked+span:after{
		width:0.964vw;
		height:1.687vw;
		border-bottom:0.482vw #fff solid;
		border-right:0.482vw #fff solid;
		left:0.723vw;
		top:0.964vw;
	}
	input[type=radio]+span{
		margin:0.602vw;
		padding-left:3.614vw;
	}
	input[type=radio]+span:before{
		width:2.41vw;
		height:2.41vw;
		border:0.241vw #dedede solid;
		top:0.964vw;
	}
	input[type=radio]:checked+span:after{
		width:1.928vw;
		height:1.928vw;
		left:0.482vw;
		top:1.446vw;
	}
	.mw_wp_form .horizontal-item{margin-right:1.205vw}

	.mw_wp_form .error{
		margin-top:1.205vw;
		margin-bottom:-1.687vw;
		font-size:2.41vw;
	}

	/* button */
	#buttonbox{
		padding:2.651vw 0 0;
	}
	#buttonbox #sendBtnBox{
		width:36.145vw;
		height:8.434vw;
		border-radius:0.723vw;
	}
	#buttonbox #sendBtnBox input{
		width:36.145vw;
		height:8.434vw;
		font-size:2.892vw;
	}
	#buttonbox #backBtnBox input{
		margin-top:2.41vw;
		font-size:1.446vw;
	}

	/* common
	-----------------------------------------------------------*/
	body:not(.home) #wrapper{
		padding-top:12.048vw;
	}
	#title{
		padding:3.614vw 0;
	}
	#title h1,
	#title .headtitle{
		font-size:4.819vw;
	}
	#title h1 .subTitle{
		font-size:1.928vw;
	}
	#title h1 .schoolTitle{
		font-size:2.41vw;
	}
	#title h1 small{
		font-size: 3.855vw;
	}
	main{
		width:100%;
	}
	body:not(.home) h2{
		margin:0 0 4.819vw;
		padding:0 0 0 4.096vw;
		font-size:3.855vw;
	}
	body:not(.home) h2:before{
		width:0.964vw;
		border-radius:0.482vw;
	}
	a.more{
		width:24.096vw;
		height:7.229vw;
		line-height:7.229vw;
		border-radius:0.482vw;
	}
	h3.h3{
		padding-left:8.434vw;
		background-size:7.108vw;
	}
	.shadowbox{
		padding:4.819vw;
		box-shadow:0 0 1.205vw rgba(0,0,0,.2);
		border-radius:1.205vw;
	}



	/* request
	-----------------------------------------------------------*/
  body.request main,
body.confirm main{
  padding-top: 40px;
}
	body.request section+section{
		margin-top:9.639vw;
	}
	body.request #text .box{
		padding:4.819vw 6.024vw;
		border-radius:1.205vw;
		border:0.241vw #ddd solid;
	}
	body.request #text h3{
		font-size:3.373vw;
	}
	body.request #text h3+p{
		margin-top:0.723vw;
	}
	body.request #text .tel{
		margin-top:5.542vw;
		font-size:3.373vw;
	}
	body.request #text .tel a{
		margin:1.928vw auto 0;
		font-size:8.193vw;
	}
	body.request #text .tel a img{
		width:6.024vw;
		margin-right:0.964vw;
	}
	body.request #text .tel span{
		font-size:2.41vw;
	}
	body.request #formbox h2{
		margin:0 0 0.964vw;
		padding:2.169vw 0;
	}
	body.request #formbox .note{
		font-size:2.41vw;
		margin-bottom:3.855vw;
	}
	body.request #formbox .note span{
		font-size:1.928vw;
	}
	table.request,
	table.request tbody,
	table.request tr,
	table.request th,
	table.request td{
		display:block;
	}
	table.request th{
		width:100%;
		padding:3.133vw 0 1.566vw;
	}
	table.request th.require:after{
		margin-left:0.361vw;
		font-size:1.928vw;
	}
	table.request th br{
		display:none;
	}
	table.request td{
		padding:0 0 3.614vw;
	}
	table.request .selectbox,
	table.request select{
		max-width:36.145vw;
	}
	table.request td #address{
		margin-top:1.687vw;
	}
	table.request td.gray{
		padding:1.687vw;
		font-size: 3.133vw;
	}
}

.btn-square a{
	float: left;
	display: block;
	width: 100%;
	height: 64px;
	line-height: 64px;
	text-align: center;
	background: #f59702;
	color: #fff;
	border-radius: 3px;
	box-shadow: 0 2px 0 #c47902;
	position: relative;
}

.btn-square a::after {
	display: block;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 1;
	transform: rotate(45deg) translateY(-50%);
	transform-origin: top;
}

.p-tel{
	margin-bottom: 60px;
}

.p-telLink__list-container{
	margin-bottom: 60px;
}

.p-telLink__list{
	margin-bottom: 20px;
}

.p-tel__table > table{
	border-top: 1px solid #ddd;
}

.p-tel__table > table tr{
	border-bottom: 1px solid #ddd;
}

.p-tel__table > table th{
	background-color: transparent!important;
	border:none !important;
}
.p-tel__table > table td{
	font-size: 18px;
	border-color: #ddd!important;
	border-width:0 0 0 1px!important;
	border-style: solid;
	color: #ec6c00!important;
}
.p-tel__table > table td a{
	color: inherit!important;
}

.page-tel .secTtl{
	margin-bottom: 60px;
}

@media screen and (max-width:768px){
	.p-telLink__list{
		margin-bottom: 0;
	}
	.p-telLink__list:last-of-type{
		margin-top: 20px;
	}
}