@charset "UTF-8";
/* CSS Document */

/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
}
.tab li{
	width: 50%;
    text-align: center;
}
.tab li a{
	display: block;
	background:#7E99BD;
	color:#fff;
	margin:0 2px;
	padding:16px 20px;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#00367D;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #F5F6F8;
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

/*募集要項テーブル*/

.outline_contents_box th,
.outline_contents_box td
{
	padding:20px;
	border-bottom: 1px solid #C5C5C5;
}
.outline_contents_box th{
	color:#064286;
}

/*エントリーボタン*/
a.entry_btn{
	background: rgb(18,123,197);
	background: linear-gradient(90deg, rgba(18,123,197,1) 0%, rgba(6,66,134,1) 100%);
	font-size: 15px;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 500;
	padding: 22px 22px;
	width: 300px;
	border-radius: 50px;
	display: block;
	margin: 0 auto;
	margin-top: 40px;
	text-align: center;
}
.entry_btn:hover{
	opacity: 0.7;
	transition: 0.3s;
}

@media screen and (max-width: 767px) {
	a.entry_btn{
		width: auto;
	}
	.outline_contents_box th,
	.outline_contents_box td{
		display: block;
		padding: 10px;
	}
	.outline_contents_box th{
		border-bottom: none;
	}
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}