/*-----------------------------------------------------------------------------------------
	下層ページ（Q＆A）
-----------------------------------------------------------------------------------------*/
/*------------------------------ ページ背景画像 ----------*/
#qa {
	overflow: hidden;
	background:url(../img/body.jpg) 50% 0 no-repeat #fff;
	background-size: 100% auto;
}
/*------------------------------ ページタイトル ----------*/
#qa h1 {
	background:rgba(0,54,100,0.70);
	color:#fff;
	font-size: 36px;
	letter-spacing: 15px;
	text-align: center;
	padding: 40px 0;
	line-height: 130%;
	margin-bottom:50px;
}
#qa h1 span {
	font-size: 12px !important;
	display: block;
	letter-spacing: 3px;
}
/*------------------------------ ページコンテンツ ----------*/
.qaBox {
	position: relative;
	clear: both;
	overflow: hidden;
	width:1050px;
	padding:55px 60px;
	margin: 0 auto 50px auto;
	background:rgba(255,255,255,0.85);
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
/*------------------------------ QandAタブ ----------*/
.qaTab {
	position: relative;
	overflow: hidden;
	width:100%;
	margin-bottom:70px;
	display: flex;
}
.qaTab li {
	width:47.5%;
	margin-right:5%;
	border:1px solid #003664;
	border-radius: 10px;
	text-align: left;
	font-size: 24px;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
.qaTab li:last-child {
	margin-right:0;
}
.qaTab a {
	display: block;
	padding:20px;
}
/*------------------------------ Q＆A一覧 ----------*/
.qa-list {
	position: relative;
	text-align: left;
}
/*---------- Qアイコン ----------*/
.qa-list dt {
	position: relative;
	padding:0 20px 20px 77px;
	color:#e95513;
	font-size: 21px;
	line-height: 150%;
}
.qa-list dt:before {
	position: absolute;
	content: '';
	top:-8px;
	left: 15px;
	background:#e95513;
	width:40px;
	height: 40px;
	border-radius: 50%;
}
.qa-list dt:after {
	position: absolute;
	content: 'Q';
	top:-3px;
	left: 25px;
	font-size:24px;
	color:#fff;
}
/*---------- Aアイコン ----------*/
.qa-list dd {
	position: relative;
	padding:0 30px 30px 77px;
	margin-bottom:30px;
	font-size: 16px;
	line-height: 180%;
	border-bottom:1px solid rgba(0,54,100,0.30);
}
.qa-list dd:before {
	position: absolute;
	content: '';
	top:-5px;
	left: 15px;
	background:#036eb7;
	width:40px;
	height: 40px;
	border-radius: 50%;
}
.qa-list dd:after {
	position: absolute;
	content: 'A';
	top:2px;
	left: 28px;
	font-size:24px;
	color:#fff;	
}
.qa-list dd:last-child {
	border-bottom:none;
}

/*-----------------------------------------------------------------------------------------
	レスポンシブ
-----------------------------------------------------------------------------------------*/
@media only screen and (max-width: 680px) {

	/*------------------------------ ページ背景画像 ----------*/
	#qa {
		background-size: 100% auto;
		margin-bottom:10%;
	}
	/*------------------------------ ページタイトル ----------*/
	#qa h1 {
		font-size: 1.2rem;
		letter-spacing: 8px;
		padding: 7% 0;
		line-height: 130%;
		margin-bottom:10%;
	}
	#qa h1 span {
		font-size: 0.7rem !important;
		display: block;
		letter-spacing: 2px;
	}
	/*------------------------------ ページコンテンツ ----------*/
	.qaBox {
		width:96%;
		padding:10% 0 0 0;
		margin: 0 auto 5% auto;
	}
	/*------------------------------ QandAタブ ----------*/
	.qaTab {
		margin:0 2% 0 2%;
	}
	.qaTab li {
		width:45%;
		text-align: center;
		font-size: 0.75rem;
		letter-spacing: 0;
	}
	.qaTab li:last-child {}
	.qaTab a {
		padding:4%;
	}
	/*----- タブスクロールでタイトルが隠れないように -----*/
	#student h2,
	#company h2 {
		padding-top:70px;
	}
	/*------------------------------ Q＆A一覧 ----------*/
	.qa-list {}
	/*---------- Qアイコン ----------*/
	.qa-list dt {
		padding:0 4% 4% 50px;
		font-size: 1.1rem;
		line-height: 150%;
	}
	.qa-list dt:before {
		top:-5px;
		left: 8px;
		width:30px;
		height: 30px;
	}
	.qa-list dt:after {
		top:-2px;
		left: 16px;
		font-size:1rem;
	}
	/*---------- Aアイコン ----------*/
	.qa-list dd {
		padding:0 4% 4% 50px;
		font-size: 1rem;

	}
	.qa-list dd:before {
		top:-5px;
		left: 8px;
		width:30px;
		height: 30px;
	}
	.qa-list dd:after {
		top:-3px;
		left: 17px;
		font-size:1rem;
	}
	.qa-list dd:last-child {}

}