@charset "UTF-8";

:root{
 --dmk--maincolor: #1d2088;	/* DMKメインカラー（紺）： #1d2088 */
 --dmk--subcolor: #0883cd;	/* DMKアクセントカラー（水色）： #0080cc */
 --text-color: #192c55;
 --card-bg-color:#f3f8fc;
 --intvQ--line-color:#E5E7EB;
 }

.contents{
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)), url('../images/bg.png');
	width:100%;
	background-repeat:repeat-y;
	background-size: contain;
}
 
.section__header{
	display: flex;
	flex-direction: column;
	margin-left:auto;
	width:90%;
}

.section__eyebrow{
	color: var(--dmk--subcolor);
	font-weight: 800;
	letter-spacing: .06em;
	font-size: clamp(12px, 2.6vw, 14px);
}

.section__title{
	font-size: clamp(20px, 4vw, 32px);
	font-weight: 800;
	margin: 0;
}

#sec__others{
	text-align: center;
	margin:0 auto 30px;
}

.mainImg{
	margin:0 auto;
	text-align: center;
	width:100%;
}

.mainImg img{
	width:80%;
	height:auto;
}

.mainImg-phone{
	display: none;
}
 
.__1daySchedule{
	text-align:center;
	margin : 50px auto;
}

.__1daySchedule img{
	width:45%;
	margin: 0;
}

.intvFlexItem{
	width:90%;
	letter-spacing: .06em;
}

/* 先輩プロフィールカード */
.profile-card{
	display: flex;
	justify-content: space-between;
	position: relative;
	border:solid 2px var(--dmk--subcolor);
	background-color: var(--card-bg-color);
	width:70%;
	margin:35px auto 40px;
	padding:20px;
	padding-left:10%;
	text-align:left;
}

.profile-card::before{
	position: absolute;
	content:"";
	top: -25px;
    right: -25px;
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    pointer-events: none;
    background-image: url("../images/push-pin.png");
}

.profile-card::after{
	position: absolute;
	content:"";
	bottom: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    pointer-events: none;
}

#intv1::after{
    left: 0;
	width: 110%;
    height: 110%;
	background-image: url("../images/interview/intv001/intv1-1_trans.png");
}

#intv2::after{
    left: 0;
	width: 110%;
    height: 110%;
	background-image: url("../images/interview/intv002/intv2-1_trans.png");
}

#intv3::after{
    left: 0;
	width: 110%;
    height: 110%;
	background-image: url("../images/interview/intv003/intv3-1_trans.png");	
}
.profile-card span{
	color: var(--dmk--subcolor);
	font-weight: bold;
	font-size: 18px;
}

.profile_disp{
	display: flex;
	flex-direction: column;
	width:90%;
	margin-left:30px;
}

.profile_disp .name{
	color: var(--text-color);
	font-weight: bold;
	font-size: 20px;
}

.profile_disp .profile{
	color: var(--text-color);
	font-weight: normal;
	font-size: 16px;
	margin-top:10px;
}
/* インタビュー詳細：親要素 */
.intvFlexBox{
	display:block;
	margin-right:auto;
	margin-left:auto;
	width:80%;
	margin-top:25px;
}

/* インタビュー詳細：子要素 */
.intvFlexItem{
	padding-top:10px;
	padding-left:10px;
}

.intvFlexItem div{
	padding-left:20px;
	padding-right:20px;
	text-align:left;
	font-size:16px;
}

.intvQ{
	position:relative;
	color: var( --text-color);
	font-weight:bold;
	font-size:clamp(22px, 4vw, 24px);
	text-align:left;
	margin:10px 0 auto;
	width:100%;
	padding-left:10px;
	border-bottom: 3px solid var(--intvQ--line-color);
 }

.intvQ::before{
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0px;
	display: block;
	width:150px;
	height: 3px;
	background: var(--dmk--subcolor);
}

h4{
	color: var(--dmk--subcolor);
	font-size: 20px;
	margin:10px auto;
	padding:0;
}

h4::before {
    content: "●";
    color: var(--dmk--subcolor);
    margin-right: 8px;
    font-size: 20px;
}

/* 他の先輩カード */
.others{
	width:65%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin:0 auto;
	text-align:center;
	
}

.others a{
	text-decoration: none;
	transition: all 0.3s;
}

.others a:hover{
	opacity: 0.7;
	transform: scale(1.1, 1.1);
}
.others-card{
	position: relative;
	background-color: #FFFFFF;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
	padding:0;
	height:350px;
}

.others-card-cap{
	display: flex;
	flex-direction: column;
	text-align: left;
	background-color: var(--dmk--subcolor);
	color: #FFFFFF;
	padding:15px;
	border-radius: 0 0 15px 15px;
}

.others-card-cap .hireY{
	font-size: 14px;
}

.others-card-cap .busyo{
	font-size: 16px;
}


.others-card-cap .name{
	font-size: 20px;
}


.others-card img{
	margin:0 auto;
	width:230px;
}


@media screen and (max-width: 480px) {
	.contents{
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)), url('../images/bg_phone.png');
	}
	
	/* スマホ用メイン画像 */
	.mainImg{
		display: none;
	}
	
	.mainImg-phone{
		display: block;
		width:100%;
	}
	
	.mainImg-phone img{
		width:100%;
		margin:0 auto;
	}
	
	/* 先輩プロフィール */
	.profile-card{
		width:80%;
		padding:20px;
	}
	
	.profile-card::before{
	    width: 50px;
	    height: 50px;
	}
	
	.profile_disp{
		margin:10px auto 0;
	}
	
	.profile-card::after{
		display: none;
	}

	
	h4::before{
		display:none;
		
	}
	.intvFlexItem{
		width:100%;
	}
	
	.intvFlexItem div{
		padding:0;
	}
	.__1daySchedule{
		margin : 50px auto;
	}
	.__1daySchedule img{
		width:100%;
	}
	
	/* 他の先輩カード */
	.others{
		width:80%;
		display: flex;
		flex-direction: column;
	}
	
	.others-card{
		margin-bottom:30px;
		height:400px;
	}
	
	.others-card img{
		width:90%;
	}
	
	#sec__others .section__title{
		width:150px;
		margin:0 auto;
	}

}