@charset "UTF-8";

.h2_admi{
	color: #333;
	text-align: center;
	font-weight: normal;
	font-size: 1.6rem;
	margin-bottom: 30px;
}
.h2_admi:before{
	color: #01A1E6;
	content: "Information";
	display: block;
	font-family: dinosaur, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 4rem;
}


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

		ニュース sec_news

================================================================================== */
.sec_news{
	max-width: 1000px;
	margin-bottom: 80px;
}

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

		イベント sec_event

================================================================================== */
.sec_event{
	background-color: #F8F8F8;
	padding: 50px 0;
}

.sec_event h2{
	color: #333;
	text-align: center;
	font-weight: normal;
	font-size: 1.6rem;
	margin-bottom: 30px;
}
.sec_event h2:before{
	color: #01A1E6;
	content: "Event";
	display: block;
	font-family: dinosaur, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 4rem;
}

.sec_event p{
	text-align: center;
	font-size: 1.4rem;
	padding-top: 10px;
	color: #555;
}

.sec_event_flex > div:first-child{
	margin-bottom: 20px;
}
@media (min-width:768px){
	.sec_event_flex{
		display: flex;
		justify-content: space-between;
	}
	.sec_event_flex > div{
		flex-basis: 49%;
		margin-bottom: 0px;
	}
	.sec_event_flex > div:first-child{
		margin-bottom: 0px;
	}
}
/* ==================================================================================

		入学試験情報 sec_admi

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

/*背景**/
.sec_admi{
	/*background-color:rgba(1,161,230,0.47);*/
	background-image:url("../image/bg-dotted01.png");
	padding: 50px 20px;
}

/*拡がりすぎないwrap*/
.sec_admi_wrap{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2%;
}
@media (min-width:1024px){
	.sec_admi_wrap{
		padding: 0 1%;
	}
}

/*見出し（入学試験日程）*/
.sec_admi_title{
	color: #01A1E6;
	font-weight: normal;
	font-size: 3rem;
	margin-bottom: 20px;
}

/*入試概要・募集要項のボタン*/
.btn_e-exam-outline{
	width: 15em;
	display: inline-block;
	margin-bottom: 20px;
}
.btn_e-exam-outline a{
	background-color: #FFF;
	border: 2px solid #01A1E6;
	text-align: center;
	border-radius: 25px;
	font-weight: bold;
	padding: 10px 30px 10px 15px;
	width: 100%;
	display: block;
	position: relative;
	transition-duration: 0.3s;
}
.btn_e-exam-outline a:hover{
	background-color: #E1F5FE;
}
.btn_e-exam-outline a:after{
	content: "chevron_right";
	font-family: "Material Icons";
	display: inline-block;
	position: absolute;
	margin-left: 10px;
}


.sec_admi_title-wrap{
	text-align:center;
}

@media (min-width:1024px){
	.sec_admi_title-wrap{
		display: flex!important;
		justify-content: space-between;
		align-items: center;
	}
	/*見出し（入学試験日程）PC*/
	.sec_admi_title{
		color: #333;
		border-left: 5px solid #01A1E6;
		padding: 0 0 0 10px;
		line-height: 1;
	}
}


/*試験タイトル*/
.sec_admi_card h3{
	font-weight:normal;
	text-align: center;
	font-size: 2.7rem;
	margin-bottom: 30px;
	font-family: YakuHanJP, source-han-sans-japanese, sans-serif;
}
/*日程のリスト*/
.sec_admi_card dl{
	text-align: center;
	font-family: YakuHanJP, dinosaur, sans-serif;
	font-weight: 700;
	font-style: normal;
}
/*日程の見出し（出願期間・試験日）*/
.sec_admi_card dt{
	text-align: center;
	/*background-color: #FBB03B;*/
	color: #01A1E6;
	font-size: 1.4rem;
	width: 90%;
	margin: 0 20px 5px;
}
/*見出しにボーダーを重ねる*/
.sec_admi_card dt {
  overflow: hidden;
  text-align: center;
}
.sec_admi_card dt span {
  position: relative;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  text-align: left;
}
.sec_admi_card dt span::before,
.sec_admi_card dt span::after {
  position: absolute;
  top: 50%;
  content: '';
  width: 400%;
  height: 1px;
  background-color: #CCC;/*#ED7000*/
}
.sec_admi_card dt span::before {
  right: 100%;
}
.sec_admi_card dt span::after {
  left: 100%;
}


/*日程のスタイル*/
.sec_admi_card dd{
	font-size: 1.3rem;
	margin-bottom: 20px;
	line-height: 1.2;
}
/*日程のスタイル（西暦）*/
.sec_admi_card dd small{
	font-size: 2rem;
	font-weight: bold;
	display: block;
	line-height: 1;
}
/*日程の数字を大きく*/
.sec_admi_card em{
	font-size: 1.8em;
	font-weight: 700;
	font-style: normal;
}

/*各ブロック*/
.sec_admi_card{
	background-color: #FFFFFF;
	padding: 35px 5px 50px;
	border-radius: 3px;
	position: relative;
}
/*各ブロック（縦並びでは最後のマージンなし）*/
.sec_admi_card:not(:last-child){
	margin-bottom: 20px;
}

.sec_admi_card:before{
	content: "";
	position: absolute;
	top:-3px;
	left:-3px;
	border-top: 20px solid #f6da69;
	border-right: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid #f6da69;
}

/*詳しい情報を観るボタン*/
.btn_admi{
	text-align: center;
	font-size: 1.4rem;
	width: 100%;
	position: absolute;
	left: 50%;
	bottom: 15px;
	transform: translateX(-50%);
}
.btn_admi a{
	display: inline-block;
	padding: 0 1rem;
	background-color:#01A1E6;
	color: #FFF;
	line-height: 3em;
	width: 90%;
	position: relative;
	transition-duration: 0.5s;
}
.btn_admi a:after{
	content: "chevron_right";
	font-family: "Material Icons";
	font-size: 2rem;
	position: absolute;
	right: 10px;
}
.btn_admi a:hover{
	background-color:#016591;
}



@media (min-width:600px){
	.sec_admi{
		margin-left: 0;
		margin-right: 0;
	}
	.sec_admi_flex{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.sec_admi_card{
		flex-basis: 48%;
		margin-bottom: 20px;
		border-radius: 0;
	}
}
@media (min-width:1024px){
	.sec_admi_card{
		flex-basis: 24%;
	}
	
}


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

		入学試験情報 sec_admi　作り直し2025

================================================================================== */
/*背景**/
.sec_admi{
	background-color:rgba(0,172,246,0.07);
	background-image:none;
	padding: 50px 20px;
}

.schedule-ul ul{
	font-feature-settings: "palt" 1;
	width: 100%;
}
.schedule-ul ul li{
	padding: 25px 5px;
	display: block;
	border-top: 1px solid rgba(0,0,0,0.20);
	position: relative;
}
.schedule-ul ul li:last-child{
	border-bottom: 1px solid rgba(0,0,0,0.20);
}
.schedule-ul h4{
	font-size: 2rem;
	font-weight: 300;
	color: #00A4EC;
}
a.sp-link-exam{
	position: absolute;
	top:0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}
a.sp-link-exam::after{
	content: '\e5e1';
	font-family: 'Material Icons';
	color: #00A4EC;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	
}
.kakko{
	margin-right: 0.5em;
	padding-top: 0.5em;
	display: inline-block;
	font-size: 94%;
}
.kakko.app{
	display: block;
}
@media (min-width:900px){
	.schedule-ul ul li{
		display: flex;
		gap: 0 20px;
	}
	.schedule-ul ul li:hover{
		background: rgba(255,255,255,0.4);
	}
	.kakko.app{
		display: inline-block;
	}
	.schedule-ul h4{
		font-size: 100%;
		width: 20%;
	}
	.kakko{
		padding: 0;
	}
	.flex-day{
		width: 30%;
	}
	.flex-app{
		width: 50%;
	}
}







.schedule-table table{
	font-feature-settings: "palt" 1;
	width: 100%;
}
.schedule-table table th,
.schedule-table table td{
	padding: 0px;
	display: block;
}
.schedule-table table tr{
	padding: 25px 5px;
	display: block;
	border-top: 1px solid rgba(0,0,0,0.20);
}

.schedule-table table th{
	font-size: 2rem;
	font-weight: 300;
	color: #00A4EC;
}



@media (min-width:768px){
	.schedule-table table tr{
		display: flex;
		justify-content: space-between
	}
	
}
/* ==================================================================================

		学費ブロック

================================================================================== */
.sec_pickup{
	padding: 50px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.sec_pickup > div{
	border: 1px solid #01A1E6;
	border-radius: 3px;
	text-align: center;
	flex-basis: 80%;
	margin-bottom: 20px;
	transition-duration: 0.5s;
}

.sec_pickup > div:hover{
	background-color: #DFEFF6;
	
}
@media (min-width:768px){
	.sec_pickup > div{
		flex-basis: 40%;
		margin: 0 20px;
	}
}
.sec_pickup > div a{
	display: block;
	padding: 15px 0;
}
.sec_pickup h3{
	color: #01A1E6;
	font-size: 1.8rem;
}
.sec_pickup p{
	font-size: 1.2rem;
	line-height: 1.6;
}

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

		３つパネル

================================================================================== */
.sec_utility{
	display: flex;
	justify-content: space-between;
}
.sec_utility > div{
	flex-basis: 33.33%;
	text-align: center;
	background-position: center center;
	background-size: cover;
	position: relative;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
}
.sec_utility a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	transition-duration: 0.3s;
}

.sec_utility div:nth-of-type(odd) a{
	background-color: rgba(1,161,230,0.70);
}
.sec_utility div:nth-of-type(even) a{
	background-color: rgba(207,197,47,0.83);
}

.sec_utility a:hover{
	opacity: 0.7;
}
.sec_utility h3{
	font-weight: normal;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50% , -50%);
}
.sec_utility .material-icons-outlined{
	font-size: 5rem;
}