@charset "UTF-8";
/*トップページ*/

*{box-sizing: border-box; margin: 0; padding: 0;}

*{font-size: 87.5%;}
ol,ul,dl,li,dt,dd{list-style: none;}

p,li{line-height: 1.4;}

a:not([class]){
	color: #407cba;
	text-decoration: underline;
}

a[target="_blank"]{
	display: inline-block;
	background: url(../images/icon_window.png) right center no-repeat;
	padding-right: 24px;
}

.alignC{text-align: center !important;}
.mb1em{margin-bottom: 1em;}
.mb2em{margin-bottom: 2em;}

.onlineEntry{
}
.header{
	display: none;
}
.spNavAbs{
	position: absolute;
	top: 0;
	border-top: 2px solid #0f1350;
	width: 100%;
	z-index: 9999;
	transition: .5s;
	border-bottom: 1px solid #CCC;
}
.spNavAbs .spHeader {
	width: 100%;
	margin: 0 auto;
	padding: 10px;
	position: relative;
	transition: .5s;
	box-sizing: border-box;
	z-index: 20;
	background-color:#FFF;
 }
.spNavAbs .spHeader .logo {
 background-image: url("/assets/img/common/logo.png");
 background-size: 100%;
 background-repeat: no-repeat;
 width: 90px;
 height: 40px;
 display: block;
}
.spNavAbs .spHeader .logo a {
	width: 90px;
	height: 40px;
	position: absolute;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	left: 0;
	top: 0;
}

.onlineEntry .pageTitle {
	min-height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1em 5%;
  text-align: center;
  margin: 0;
}
.onlineEntry .pageTitle h2 {
	padding: 0;
	margin: 0;
	font-size: 2rem;
	color: #0f1350;
	text-shadow: none;
	font-weight: normal;
	line-height: 1;
}
.onlineEntry .pageTitle p {
	display: block;
	padding: 1.5em 0 0 0;
	background: none;
	color: #4d4d4d;
}

.flow{
	overflow: hidden;
	padding: 0 5%;
}
.flow1, .flow2-3, .flow4{
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
}
.flow .imgBox,
.flow .txtBox{
	vertical-align: middle;
}
.flow .imgBox{

}
.flow .txtBox{
	margin-top: 0.5em;
	background: #dae2e8;
	padding: 0.5em;
	line-height: 1.25;
}
.flow .imgBox img{
	display: block;
	max-width: 100%;
	margin: 0 auto;
	width: 50%;
}
.flow .arrow{
}
.flow .flow2-3 .arrow{
}
.flow .arrow img{
	transform: rotate(90deg);
	width: 16px;
}

.after_flow{
	display: -webkit-flex;
	display: flex;
	padding: 0 5%;
	align-items: center;
}
.after_flow1, .after_flow2, .after_flow3{
	width: 30%;
}
.after_flow1 img, .after_flow2 img, .after_flow3 img, .after_flow .arrow img{
	max-width: 100%;
}
.after_flow .arrow{
	width: 5%;
	padding: .5em;
}
.after_flow .arrow img{
}
.innerLinkBtn{
	padding: 2em 0;
	width: 50%;
	min-width: 20em;
	max-width: 512px;
	margin: 0 auto;
}
.innerLinkBtn a{
	position: relative;
	display: block;
	background-color:#0f1350;
	padding: 1em;
	font-size: 1.5em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	color: #fff;
	border-radius: 1.5em;
}
.innerLinkBtn a:before{
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0f1350;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.innerLinkBtn a::after {
	content:"";
	display: block;
	width:16px;
	height:16px;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top:50%;
	right:1em;
	margin-top:-14px;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  transition: .3s;
}

section{
	padding: 3em 5%;
}
section.onBg{
	background-color: #ecf0f3;
}

div.secTtl{
	text-align: center;
	padding-bottom: 2em;
}
div.secTtl h3{
	display: inline-block;
	padding-bottom: .5em;
	font-size: 1.25em;
	font-weight: normal;
	color: #0f1350;
	border-bottom: solid 1px #0f1350;
}

/* --開閉処理-- */
.accordion{
	position: relative;
}
.accordionBtn{
	position: absolute;
	top: .5em;
	right: 5%;
}
.accordionBtn .open,
.accordionBtn .close{
	position: relative;
	display: none;
	background-color: #0f1350;
	padding: 0 1em 0 2em;
	width: 72px;
	height: 32px;
	border-radius: 16px;
	font-size: .75em;
	color: #fff;
	line-height: 32px;
	text-align: center;
}
.accordionBtn .open.on,
.accordionBtn .close.on{
	display: block;
}
.accordionBtn .open::before,
.accordionBtn .close::before{
	content: "";
	position: absolute;
	left: 8px;
	top: 15px;
	display: block;
	width: 11px;
	height: 11px;
	border-top: 1px solid #fff;
}
.accordionBtn .open::after{
	content: "";
	position: absolute;
	left: 13px;
	top: 10px;
	display: block;
	width: 11px;
	height: 11px;
	border-left: 1px solid #fff;
}

.accordion .innerContent{
	display: none;
}

.innerContent p{
	margin-bottom: 1.5em;
}

.listInd01 li,.listInd02 li{
	display: block;
}
.listInd01 li{
	padding-left: .5em;
	text-indent: -0.5em;
}
.listInd02 li{
	padding-left: 1em;
	text-indent: -1em;
}
.listInd01 li ~ li,
.listInd02 li ~ li{
	margin-top: .75em;
}

.boxB,.boxR,.boxW{padding: 1em;margin-bottom: 1.5em;}
.boxB:last-child,.boxR:last-child,.boxW:last-child{margin-bottom: 0;}
.boxB{background-color: #dae2e8;}
.boxR{background-color: #ffd3cc;}
.boxW{background-color: #cff3ee;}

#entry{
	background: #505580;
	background: -moz-radial-gradient(center, ellipse cover, #505580 25%, #0f1350 100%);
	background: -webkit-radial-gradient(center, ellipse cover, #505580 25%,#0f1350 100%);
	background: radial-gradient(ellipse at center, #505580 25%,#0f1350 100%);
	color: #fff;
}
.entryTtl,.studentTtl{
	text-align: center;
	margin-bottom: 1.5em;
}
.entryTtl{
	font-size: 2em;
	font-weight: bold;
}
.studentTtl{
	font-size: 1.5em;
	font-weight: normal;
	color: #ed1e79;
}

#entry div.secTtl h3{
	color: #fff;
	border-bottom-color: #fff;
}
#entry .linkBtn02{
	padding: 11px 24px 10px 12px;
}
#entry .linkBtn02::after{
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#entry_student{
	background-color: #ecf0f3;
}
#entry_student div.secTtl{
	padding-bottom: 0;
}
.selectArea{
	overflow: hidden;
	padding-top: 2em;
}
.selectArea .selectBtn{
	display: block;
	float: left;
	width: 47.5%;
	border: solid 2px #0f1350;
	background: -moz-linear-gradient(top, #ffffff 50%, #d1dbff 100%);
	background: -webkit-linear-gradient(top, #ffffff 50%,#d1dbff 100%);
	background: linear-gradient(to bottom, #ffffff 50%,#d1dbff 100%);
	border-radius: 3em;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
	transition: .3s;
}
.selectArea .selectBtn:active{
	opacity: .5;
}
.selectBtn ~ .selectBtn{
	margin-left: 5%;
}
.selectArea.col3 .selectBtn{
	float: none;
	width: 80%;
	margin: 0 auto;
} 
.selectArea.col3 .selectBtn ~ .selectBtn{
	margin: 1em auto 0;
}

.selectBtn.centering{
	float: none;
	margin:0 auto;
}
.selectBtn a{
	display: block;
	padding: 9em 1em 1em 1em;
}
.selectBtn a.mastercard{
	background: url(../images/logo_mastercard.png) center 1.8em no-repeat;
	background-size: 100px auto;
}
.selectBtn a.visa{
	background: url(../images/logo_visa.png) center 3em no-repeat;
	background-size: 120px auto;
}
.selectBtn a span{
	display: block;
	text-align: center;
}
.selectBtn a span.cardName{
	font-size: 1.25em;
	font-weight: bold;
	color:#0f1350;
	line-height: 1.25;
}
.selectBtn a span.fee{
	margin-top: 10px;
	font-size: .875em;
	color: #333333;
}

.guidance h2{
	display: block;
	background-color: #0f1350;
	color: #fff;
	padding: 1em;
	text-align: center;
	font-size: 1.25em;
}
.guidance .cont{
	background:#dae2e8 url(../images/operator.png) 95% center no-repeat;
	background-size: auto 85%;
	padding: 1.5em;
	text-align: center;
}
.guidance .cont .tel{
	font-size: 1.75em;
	letter-spacing: 1px;
	color: #0f1350;
}
footer{
	padding: 1em 0;
}

@media screen and (min-width: 768px) {
	.spNavAbs{display: none;}
	.header{
		display: block;
		padding: 10px 0 14px;
    border-top: 2px solid #0f1350;
    z-index: 9999;
    background-color: rgba(255, 255, 255, .9);
    border-bottom: 1px solid #ccc;
	}
	.header .inner{
		width: 1080px;
		margin: 0 auto;
	}
	.header h1 .logo{
		position: static;
	}
	
	.onlineEntry .pageTitle {
		padding: 3em 0;
	}
	.onlineEntry .pageTitle h2 {
		font-size: 3rem;
	}
	.onlineEntry .pageTitle p {
		padding: 2.5em 0 0 0;
	}
	.boxB,.boxR,.boxW{padding: 2em;}

	.flow{
		width: 1080px;
		overflow: hidden;
		padding: 0;
		margin: 0 auto;
	}
	.flow1, .flow2-3, .flow2, .flow3, .flow4, .arrow{
		display: block;
		float: left;
	}
	.flow1,.flow2, .flow3, .flow4{
		width: 246px;
	}
	.flow2-3{
		width: 524px;
	}
	.flow2-3 .imgBox{
		overflow: hidden;
	}
	.flow2-3 .imgBox img,.flow2-3 .imgBox .arrow{
		float: left;
	}
	.flow .imgBox{
		width: 100%;
		min-width: auto;
	}
	.flow .txtBox{
		width: 100%;
		min-height: 192px;
		margin-top: 1em;
		padding: 1em;
	}
	_::-webkit-full-page-media, _:future, :root .flow .txtBox{
		min-height: 222px;
	}
	.flow .txtBox a.linkBtn01 br{
		display: none;
	}
	.flow .imgBox img{
		display: block;
		width: auto;
		max-width: 100%;
	}
	.flow .arrow{
		padding: 6px;
	}
	.flow .flow2-3 .arrow{
		padding: 6px;
	}
	.flow .arrow img{
		transform: none;
		margin-top: 90px;
	}
	.after_flow{
		width: 800px;
		overflow: hidden;
		padding: 0;
		margin: 0 auto;
	}
	.after_flow1, .after_flow2, .after_flow3{
		width: 246px;
	}
	.after_flow .arrow{
		width: 31px;
		padding: 6px;
	}	
	.innerLinkBtn{
		padding: 3em 0;
	}
	.innerContent{
		width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	div.secTtl h3{
		font-size: 1.5em;
	}
	.selectArea{
		width: 704px;
		margin-left: auto;
		margin-right: auto;
	}
	.selectArea .selectBtn{
		width: 320px;
		border-width: 4px;
	}
	.selectArea .selectBtn:hover{
		opacity: .5;
	}
	.selectBtn ~ .selectBtn{
		margin-left: 64px;
	}
	.selectBtn a.mastercard{
		background-size: auto;
	}
	.selectArea.col3{
		width: 840px;
	}
	.selectArea.col3 .selectBtn{
		float: left;
		width: 264px;
		margin: 0;
	} 
	.selectArea.col3 .selectBtn ~ .selectBtn{
		margin: 0 0 0 24px;
	}
	.guidance{
		width: 800px;
		margin: 4em auto;
		overflow: hidden;
		padding: 0;
	}
	.guidance .title{
		float: left;
		width: 320px;
	}
	.guidance .title h2{
		height: 128px;
		padding: 0;
		line-height: 128px;
	}
	.guidance .cont{
		float: left;
		width: 480px;
		height: 128px;
		padding: 2.5em;
		text-align: left;
		background-size: auto;
	}
	.guidance .cont .tel{
		font-size: 1.875em;
	}
	
	.atu .linkBtn01{
		padding-left: 4em;
		padding-right: 5em;
	}

	.accordionBtn .open.on,
	.accordionBtn .close.on{
		display: none;
	}
	.accordion .innerContent{
		display: block;
	}
}
@media all and (-ms-high-contrast:none) {
	.flow .txtBox{
		min-height: 222px;
	}
}

/* iframe */
.iframe{
	font-size: 14px;
}
.iframe section{
	padding: 1.4em 5%;
}
.iframe .innerContent p{
	margin-bottom: 0;
}
.iframe div.secTtl h3{
	padding-bottom: .3em;
}
a.noicon{
	display: inline !important;
	background: none !important;
	padding-right: 0 !important;
	color: #407cba;
	text-decoration: underline;
}
.iframe .after_flow{
	padding: 0 5% !important;
	margin: 0 auto;
	max-width: 562px;
}
.iframe .after_flow1, .iframe .after_flow2, .iframe .after_flow3 {
	max-width: 145px;
}
.iframe div.secTtl{
	padding-bottom: 1em;
}
.iframe .listInd01 li ~ li,
.iframe .listInd02 li ~ li{
	margin-top: .7em;
}

@media screen and (min-width: 768px){
	.iframe .after_flow1, .iframe .after_flow2, .iframe .after_flow3 {
		width: 145px !important;
	}
	.iframe .after_flow{
		padding: 0 5% !important;
		width: 624px;
	}
}

.new_adult_text_show {display:none;}