@charset "utf-8"; 
/* ------------------------------------------------------------------------ */

/*  Parts

/* ------------------------------------------------------------------------ */

/* Layout
--------------------------------------------------------------------------- */

/* --- margin --- */

.auto  { margin-right : auto; margin-left : auto;}

.mt0   { margin-top	: 0 !important;}
.mt5   { margin-top	: 5px !important;}
.mt10  { margin-top	: 10px !important;}
.mt15  { margin-top	: 15px !important;}
.mt20  { margin-top	: 20px !important;}
.mt25  { margin-top	: 25px !important;}
.mt30  { margin-top	: 30px !important;}
.mt35  { margin-top	: 35px !important;}
.mt40  { margin-top	: 40px !important;}
.mt45  { margin-top	: 45px !important;}
.mt50  { margin-top	: 50px !important;}

.mr0   { margin-right : 0 !important;}
.mr5   { margin-right : 5px !important;}
.mr10  { margin-right : 10px !important;}
.mr15  { margin-right : 15px !important;}
.mr20  { margin-right : 20px !important;}
.mr25  { margin-right : 25px !important;}
.mr30  { margin-right : 30px !important;}
.mr35  { margin-right : 35px !important;}
.mr40  { margin-right : 40px !important;}
.mr45  { margin-right : 45px !important;}
.mr50  { margin-right : 50px !important;}

.mb0   { margin-bottom : 0 !important;}
.mb5   { margin-bottom : 5px !important;}
.mb10  { margin-bottom : 10px !important;}
.mb15  { margin-bottom : 15px !important;}
.mb20  { margin-bottom : 20px !important;}
.mb25  { margin-bottom : 25px !important;}
.mb30  { margin-bottom : 30px !important;}
.mb35  { margin-bottom : 35px !important;}
.mb40  { margin-bottom : 40px !important;}
.mb45  { margin-bottom : 45px !important;}
.mb50  { margin-bottom : 50px !important;}

.ml0   { margin-left : 0 !important;}
.ml5   { margin-left : 5px !important;}
.ml10  { margin-left : 10px !important;}
.ml15  { margin-left : 15px !important;}
.ml20  { margin-left : 20px !important;}
.ml25  { margin-left : 25px !important;}
.ml30  { margin-left : 30px !important;}
.ml35  { margin-left : 35px !important;}
.ml40  { margin-left : 40px !important;}
.ml45  { margin-left : 45px !important;}
.ml50  { margin-left : 50px !important;}

.m0   { margin : 0 !important;}
.m10  { margin : 10px !important;}
.m15  { margin : 15px !important;}
.m20  { margin : 20px !important;}
.m25  { margin : 25px !important;}
.m30  { margin : 30px !important;}
.m35  { margin : 35px !important;}
.m40  { margin : 40px !important;}
.m45  { margin : 45px !important;}
.m50  { margin : 50px !important;}


/* --- padding --- */

.pt0  { padding-top : 0 !important;}
.pt5  { padding-top : 5px !important;}
.pt10 { padding-top : 10px !important;}
.pt15 { padding-top : 15px !important;}
.pt20 { padding-top : 20px !important;}

.pr0  { padding-right : 0 !important;}
.pr5  { padding-right : 5px !important;}
.pr10 { padding-right : 10px !important;}
.pr15 { padding-right : 15px !important;}
.pr20 { padding-right : 20px !important;}

.pl0  { padding-left : 0 !important;}
.pl5  { padding-left : 5px !important;}
.pl10 { padding-left : 10px !important;}
.pl15 { padding-left : 15px !important;}
.pl20 { padding-left : 20px !important;}

.pb0  { padding-bottom : 0 !important;}
.pb5  { padding-bottom : 5px !important;}
.pb10 { padding-bottom : 10px !important;}
.pb15 { padding-bottom : 15px !important;}
.pb20 { padding-bottom : 20px !important;}

.pb0   { padding : 0  !important;}
.pb5   { padding : 5px !important;}
.pb10  { padding : 10px !important;}
.pb15  { padding : 15px !important;}
.pb20  { padding : 20px !important;}

.nowrap { white-space : nowrap;}

#crumb {
	margin		: 4px 0 8px;
	text-align	: left;
}

	#crumb li {
		display			: inline;
		line-height		: 110%;
		list-style-type	: none;
		font-size		: 85%;
	}


/* --- display --- */

.block	{ display : block;}
.inline { display : inline;}

.fltbox { margin : 0 auto;}
.flt_r  { float : right !important;}
.flt_l  { float : left !important;}

.txt_r { text-align : right !important;} 
.txt_c { text-align : center !important;} 
.txt_l { text-align : left !important;} 

.psn { position : relative;}

.none {
	background	: none !important;
	border		: none !important;
}

/* 失瓦丟奈扑亦件
--------------------------------------------------------------------------- */
.fadein{
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s cubic-bezier(0.12, 0.57, 0.43, 0.89);
}
	.fadein.is-show{
		opacity: 1;
		transform: translateY(0);
	}

.popIn {
	transform: scale(0,0);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
	.popIn[data-emergence=visible] {
		transform: scale(1,1);
	}

.fuwafuwa {
	animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
	transition: 1.5s ease-in-out;
}

.yurayura {
	animation: yurayura 3s infinite linear;
	transition: 1.5s ease-in-out;
}

.delay01{
	animation-delay: 1s;
}
.delay02{
	transition-delay: 2s;
}

.updown {
	animation: updown 0.20s linear infinite;
	transform-origin: 50% 50%;
}
.updown-delay01 {
	animation: updown 0.20s linear 0.3s infinite;
	transform-origin: 50% 50%;
}

.popup {
	animation: popup 3s ease-in-out infinite;
	transform-origin: 50% 50%;
}
.popup-delay01 {
	animation: popup 3s ease-in-out 0.1s infinite;
	transform-origin: 50% 50%;
}

.slideIn-l {
	animation: slideIn-l 3.5s ease infinite;
	transform-origin: 50% 0%;
}
.slideIn-r {
	animation: slideIn-r 3.5s ease 0.3s infinite;
	transform-origin: 50% 0%;
}

@keyframes slideIn-l {
	0% {
		transform: translateX(-30px);
	}
	3.75% {
		transform: translateX(-15px);
	}
	12.5% {
		transform: translateX(-25px);
	}
	25% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes slideIn-r {
	0% {
		transform: translateX(30px);
	}
	3.75% {
		transform: translateX(15px);
	}
	12.5% {
		transform: translateX(25px);
	}
	25% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes updown {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(5px);
	}
	50% {
		transform: translateY(0px);
	}
	75% {
		transform: translateY(-5px);
	}
	100% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes popup {
	  0% {transform: scale(0.2);}
	 25% {transform: scale(0.5);}
	 50% {transform: scale(1);}
	 75% {transform: scale(0.5);}
	100% {transform: scale(0.2);}
}

@keyframes fuwafuwa {
	0% {transform:translate(0, 0);}
	50% {transform:translate(0, -7px);}
	100% {transform:translate(0, 0);}
}
@keyframes yurayura {
	0% {
		transform:rotate(-10deg);
	}
	50% {
		transform:rotate(10deg);
	}
	100% {
		transform:rotate(-10deg);
	}
}
@keyframes typing {
	from {
		width: 0;
	}
}



/* 伉件弁示正件
--------------------------------------------------------------------------- */
a.detailBtn{
	display: block;
	max-width: 380px;
	width: 90%;
	margin: 40px auto;
	padding: 20px 10px;
	color: #fff;
	background: #000;
	font-size: 2rem;
}
a.detailBtn:hover{
	text-decoration: none;
	opacity: 0.8;
}

@media screen and (max-width: 767px){
	a.detailBtn{
		font-size: 1.8rem;
		padding: 12px 10px 14px;
	}
}


/* Heading
--------------------------------------------------------------------------- */


/* image
--------------------------------------------------------------------------- */

img.image	{ border: solid 1px #d9d9d9; padding : 1px; background : #FFF;}

.imgbox	{
	margin		: 0 0 30px;
	_zoom		: 1;
	overflow	: hidden;
}

.imgL { float : left;  margin : 0 10px 5px 0; }
.imgR { float : right; margin : 0 0 5px 10px; }

.imgbox p {
	overflow	: hidden;
	_zoom		: 1;
}


/* table
--------------------------------------------------------------------------- */

.tblStyle01 {
	border-spacing: 0;
	empty-cells: show;
	margin: 0 auto;
	width: 100%;
	border-bottom: solid 1px #000;
}
	.tblStyle01 th,
	.tblStyle01 td {
		text-align: left;
		border-top: solid 1px #000;
	}

.tblStyle01 th {
	width: 30%;
	min-width: 230px;
	padding: 15px 8px 15px 20px;
}

.tblStyle01 td {
	padding: 10px;
}

.tblStyle01 input {
	height: 40px;
	border: none;
	font-size: 16px;
	padding: 0 8px;
	font-family: 'Noto Sans JP', sans-serif, Meiryo, MS PGothic, arial, sans-serif;
	background-color: #efefef;
	width: 100%;
}

.tblStyle01 textarea{
	width: 100%;
	height: 210px;
	border: none;
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif, Meiryo, MS PGothic, arial, sans-serif;
	background: #efefef;
}

.valign_t{
	vertical-align: top;
}


@media screen and (max-width: 767px){
	.tblStyle01{
		border-bottom: solid 1px #444;
		border-collapse: collapse;
		border: none;
	}
	.tblStyle01 th,
	.tblStyle01 td{
		display: block;
		border-bottom: none;
		border: none;
	}
	
	.tblStyle01 th{
		min-width: inherit;
		width: 100%;
		padding: 10px 0 5px;
	}
	.tblStyle01 td{
		padding: 0 0 10px;
	}
}

	
	
/* list
--------------------------------------------------------------------------- */

.olStyle01 {
	margin	: 0 35px 10px;
}

	.olStyle01 li {
		list-style		: decimal;
		margin-bottom	: 3px;
		padding			: 0;
		text-align		: left;
	}


.ulStyle01 {
	margin	: 0 15px 10px;
}

	.ulStyle01 li {
		list-style	: disc;
		margin		: 0 15px 3px;
		padding		: 0;
		text-align	: left;
	}

/*﹛狟茈琠`斥失件市奈伉件弁示正件﹛*/
.anker_link_ul{
	margin-bottom: 156px;
}
.anker_link_ul li{
	background: url("/admissions/academics/shinro/common/img/bg_gray.jpg");
	max-width: 330px;
	width: 30%;
}
.anker_link_ul li a{
	color: #333;
	display: block;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: left;
	position: relative;
	padding: 35px 60px 38px 35px;
	line-height: 1.2;
}
	.anker_link_ul li a:hover{
		text-decoration: none;
		opacity: .7;
	}
	.anker_link_ul li a::after{
		content: "";
		display: block;
		border-right: solid 2px #333;
		border-bottom: solid 2px #333;
		position: absolute;
		width: 25px;
		height: 25px;
		top: 42%;
		right: 30px;
		transform: translateY(-50%) rotate(45deg);
	}

@media screen and (max-width: 1160px){
	/*﹛狟茈琠`斥失件市奈伉件弁示正件﹛*/
	.anker_link_ul li a{
		font-size: 1.8vw;
	}
}
@media screen and (max-width: 1023px){
	/*﹛狟茈琠`斥失件市奈伉件弁示正件﹛*/
	.anker_link_ul{
		margin-bottom: 80px;
	}
	.anker_link_ul li{
		width: 32%;
	}
	.anker_link_ul li a{
		padding: 25px 50px 28px 15px;
	}
	.anker_link_ul li a::after{
		width: 15px;
		height: 15px;
		right: 20px;
	}
}
@media screen and (max-width: 767px){
	/*﹛狟茈琠`斥失件市奈伉件弁示正件﹛*/
	.anker_link_ul{
		display: block;
	}
	.anker_link_ul li{
		max-width: inherit;
		width: 100%;
		margin-bottom: 20px;
	}
	.anker_link_ul li a{
		font-size: 1.8rem;
		padding: 15px 50px 18px 15px;
	}
}

/* text
--------------------------------------------------------------------------- */

/* --- size --- */

.txt10 { font-size : 1rem !important;   font-size:10px !important;}
.txt12 { font-size : 1.2rem !important; font-size:12px !important;}
.txt14 { font-size : 1.4rem !important; font-size:14px !important;}


/* --- color --- */

.must   { color : #cc2727;}
.must2  { color : #cc2727;}


/* --- lineheight --- */

.height18 { line-height : 1.8;}
.height19 { line-height : 1.9;}
.height20 { line-height : 2;}


/* ------------------------------------------------------------------------ */

/*  Form

/* ------------------------------------------------------------------------ */

.formStyle01 {
	margin			: 0 auto;
	border			: 1px solid #D1D1D1;
	border-collapse	: collapse;
	border-spacing	: 0;
	empty-cells		: show;
}

	.formStyle01 th{
		border		: 1px solid #D1D1D1;
		padding		: 6px 8px;
		background	: #EDEDED;
		font-size	: 75%;
		font-weight	: normal;
	}

	.formStyle01 td{
		border		: 1px solid #D1D1D1;
		padding		: 6px 8px;
		font-size	: 75%;
	}

	.formStyle01 .txt10 { color:#444;}

	.wid20  { width : 20px; margin-bottom : 2px !important;}
	.wid40  { width : 40px; margin-bottom : 2px !important;}
	.wid60  { width : 60px; margin-bottom : 2px !important;}
	.wid80  { width : 80px; margin-bottom : 2px !important;}
	.wid100 { width : 100px; margin-bottom : 2px !important;}
	.wid120 { width : 120px; margin-bottom : 2px !important;}
	.wid140 { width : 140px; margin-bottom : 2px !important;}
	.wid160 { width : 160px; margin-bottom : 2px !important;}
	.wid180 { width : 180px; margin-bottom : 2px !important;}
	.wid200 { width : 200px; margin-bottom : 2px !important;}
	.wid220 { width : 220px; margin-bottom : 2px !important;}
	.wid240 { width : 240px; margin-bottom : 2px !important;}
	.wid260 { width : 260px; margin-bottom : 2px !important;}
	.wid280 { width : 280px; margin-bottom : 2px !important;}
	.wid300 { width : 300px; margin-bottom : 2px !important;}
	.wid400 { width : 400px; margin-bottom : 2px !important;}
	
	.txtarea01 { width : 100%; height : 120px; margin-bottom : 2px !important;}

	.must  { margin-left : 2px;}
	.must2 {
		float					: right;
		padding					: 5px 8px;
		margin-left				: 2px;
		background				: #cc2727;
		color					: #FFF;
		line-height				: 1;
		font-size				: 87%;
		border-radius			: 3px;
		-webkit-border-radius	: 3px;
		-moz-border-radius		: 3px;		
	}
	
	.free {
		float					: right;
		padding					: 5px 8px;
		margin-left				: 2px;
		background				: #6bc059;
		color					: #FFF;
		line-height				: 1;
		font-size				: 87%;
		border-radius			: 3px;
		-webkit-border-radius	: 3px;
		-moz-border-radius		: 3px;		
	}
	

	span.example { display:block; margin-top:5px; color:#666 !important;}

	label { margin : 0 0 0 -2px; padding:1px 0 0; cursor : pointer; vertical-align:middle;}
	label:hover { text-decoration:underline;}

	input:focus,
	textarea:focus {
		background-color : #f7fdeb;
	}

	input.txt {
		border-bottom	: 1px solid #CCC;
		border-left		: 1px solid #999;
		border-right	: 1px solid #CCC;
		border-top		: 1px solid #999;
		padding			: 4px;
	}
	
	textarea.txtarea {
		border-bottom	: 1px solid #CCC;
		border-left		: 1px solid #999;
		border-right	: 1px solid #CCC;
		border-top		: 1px solid #999;
		padding			: 4px;
	}
	
	input[type="radio"]{
		margin: -2px 5px 0 0;
		width: 15px;
		background: none;
	}
	
	input[type="checkbox"]{
		margin: -2px 5px 0 0;
		width: 15px;
		background: none;
	}

	select::-ms-expand {
		display: none;
	}

#chk_policy,
#entry_chk_policy{
	background: #efefef;
	padding: 40px;
	margin-top: 20px;
}
.policybg a{
	text-decoration: underline;
}
	.policybg a:hover{
		text-decoration: none;
	}

.form_btn{
	border: none;
	cursor: pointer;
}

::placeholder {
	color: #bfc0c0;
}
/* 導Edge */
::-ms-input-placeholder {
	color: #bfc0c0;
}
/* IE */
:-ms-input-placeholder {
	color: #bfc0c0;
}

