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

/* -----------------------------
TITLE BLOCK 
----------------------------- */
#title{
	width:100%;
	height:0;
	padding-bottom:calc(380 / 1400 * 100%);
	background:url("../image/main.jpg") no-repeat center top;
	background-size:cover;
	position:relative;
	margin:70px auto 0;
}
#title h1{
	position:absolute;
	top:3.571vw;
	left:4.286vw;
	
	font-size:3.0rem;
	line-height:1.6;
	letter-spacing:initial;
	
	color:#FFF;
}
#title h1 span{
	display:block;
	font-size:2.4rem;
	font-weight:300;
}

@media screen and (max-width:767px) {
	#title{
		padding-bottom:calc(380 / 1400 * 165%);
		background:url("../image/main.jpg") no-repeat left top;
		background-size:165%;
		margin:80px auto 0;
	}
	#title h1{
		top:1.5vh;
		left:3.5vw;
		margin-right:3.5vw;

		font-size:1.95rem;
		line-height:1.5;
	}
	#title h1 span{
		font-size:1.3rem;
		padding-bottom:0.5vh;
	}
}

/* -----------------------------
SPEC BLOCK
----------------------------- */
#interview{
	width:90%;
	max-width:1100px;
	margin:5vw auto;
	
	position:relative;
	
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	
	justify-content: space-between;
	align-items:flex-start;
}

#interview .left{
	width:52%;
}
#interview .right{
	width:44%;
	position:sticky;
	top:70px;
}

#interview .left p{
	margin:2.143vw 0;
}
#interview .copy_box{
	margin:0;
	padding:0 0 2.143vw 0;
}
#interview h3{
	font-size:2.4rem;
	line-height:1.6;
	display:block;
}
#interview .copy_box .cap{
	text-align:right;
	padding-right:0.5rem;
}

#interview .right .copy_box{
	display:block;
	font-size:1.7rem;
	margin-bottom:1.429vw;
}
#interview .right p{
	display:block;
	margin-bottom:1.429vw;
}

@media screen and (max-width:767px) {
	#interview{
		width:90%;
	}

	#interview .left{
		width:100%;
	}
	#interview .right{
		width:100%;
		position:initial;
		top:initial;
	}

	#interview .left p{
		margin:2.143vw 0 5vh;
	}
	#interview .copy_box{
		margin:0;
		padding:0 0 2.143vw 0;
	}
	#interview h3{
		font-size:2.3rem;
		line-height:1.4;
		display:block;
		margin-bottom:2vh;
	}


	#interview .right .copy_box{
		display:block;
		font-size:1.6rem;
		margin-bottom:1.429vw;
	}
	#interview .right .spec_box{
		display:block;
		margin-bottom:1.429vw;
	}
}