@charset "utf-8";

/*===========================================================

eyecatch

============================================================= */

#eyecatch {
	background:url(../img/eyecatch.jpg) center center no-repeat;
	background-size:cover;
	width:100%;
	height:40vh;
	position:relative;
}

#page_title {
	width:290px;
	padding:0.8em 0;
	text-align:center;
	background:rgba(91,137,185,0.85);
	position:absolute;
	bottom:0;
	left:50%;
	margin-left:-145px;
}

#page_title * {
	color:#fff;
}

#page_title .en {
	font-size:1.2rem;
	letter-spacing:2px;
}

#page_title h1 {
	font-weight:bold;
	font-size:2rem;
}

@media screen and (max-width:440px){
	#page_title .en {
		font-size:1rem;
	}
	#page_title h1 {
		font-size:1.8rem;
	}
}

/*===========================================================

content

============================================================= */
#content {
	padding-top:8%;
}
#content h2 {
	display:table;
	margin:0 auto 8% auto;
	font-size:2rem;
	font-weight:bold;
	border-bottom:1px solid #E83416;
	color:#606060;
	padding:0.3em 0.5em;
}

/*===========================================================

que_wrap

============================================================= */
.que_wrap {
	width:94%;
	max-width:970px;
	margin:0 auto;
}

.que_wrap > * {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	-ms-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-items:center;
	-moz-align-items:center;
	-ms-align-items:center;
	align-items:center;
}

.que_wrap > *:nth-child(2n) {
	-webkit-flex-direction:row-reverse;
	-moz-flex-direction:row-reverse;
	-ms-flex-direction:row-reverse;
	flex-direction:row-reverse;
}

.que_wrap > * + * {
	margin-top:6%;
}

.que_wrap .prof {
	position:relative;
	width:130px;
	padding-top:100px;
}

.que_wrap .prof .img {
	position:absolute;
	bottom:110px;
	left:0;
	right:0;
	text-align:center;
}

.que_wrap .prof .text {
	width:130px;
	height:130px;
	padding:1em;
	border-radius:999px;
	background:rgba(96,96,96,0.6);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items:center;
	-moz-align-items:center;
	-ms-align-items:center;
	align-items:center;
	-webkit-justify-content:center;
	-moz-justify-content:center;
	-ms-justify-content:center;
	justify-content:center;
	-webkit-flex-direction:column;
	-moz-flex-direction:column;
	-ms-flex-direction:column;
	flex-direction:column;
}

.que_wrap .prof .text * {
	width:100%;
	text-align:center;
	color:#fff;
}

.que_wrap .prof .text .category {
	font-size:1.2rem;
}

.que_wrap .prof .text .name {
	font-size:1.6rem;
}

.que_wrap .prof .text .year {
	font-size:1.2rem;
}

.que_wrap .qa {
	width:calc( 100% - 180px );
}

.que_wrap .qa dl + dl {
	margin-top:1em;
}

.que_wrap .qa dt {
	font-weight:bold;
	color:#606060;
}

.que_wrap .qa dt:before {
	display:inline-block;
	content:'Q.';
	color:#5B89B9;
	margin-right:5px;
}

.que_wrap .qa dd {
	background:#F0EBE1;
	padding:1em;
	border-radius:10px;
	margin-top:5px;
}

.que_wrap .qa dd li {
	padding-left:1em;
	position:relative;
}

.que_wrap .qa dd li:before {
	display:block;
	content:'・';
	position:absolute;
	top:0;
	left:0;
}

.que_wrap .qa dd li + li {
	margin-top:0.5em;
}

@media screen and (max-width:740px){
	.que_wrap .qa dt,
	.que_wrap .qa dd li {
		font-size:1.4rem;
	}
}

@media screen and (max-width:580px){
	.que_wrap > * {
		display:block;
	}
	.que_wrap > * + * {
		margin-top:10%;
	}
	.que_wrap .prof {
		width:100%;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: flex;
		-webkit-align-items:center;
		-moz-align-items:center;
		-ms-align-items:center;
		align-items:center;
		padding-top:0;
		margin-bottom:1em;
	}
	
	.que_wrap .prof .img {
		position:absolute;
		left:10px;
		right:auto;
		bottom:0;
	}
	.que_wrap .prof .text {
		width:100%;
		height:auto;
		border-radius:10px;
	}
	
	.que_wrap .qa {
		width:100%;
	}
		
}