@charset "utf-8";

.interview_lead {
	display: block;
	font-size: 18px;
	margin-top: 20px;
}


.interview_list {
	display: flex;
	gap: 15px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px dashed #919191;
}

.interview_list_col {
	width: calc(100% / 3 - 7px);
	position: relative;
}

.interview_list_col a {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.interview_list_col .ph {
	display: block;
	margin-bottom: 10px;
	line-height: 1;
}

.interview_list_col .title {
	display: block;
	font-size: 21px;
	padding: 0 5px;
	font-weight: bold;
	margin-bottom: 15px;
}

.interview_list_col .desc {
	display: block;
	font-size: 16px;
	line-height: 1.8;
}

.interview_contact {
	display: flex;
	align-items: center;
	max-width: 680px;
	margin: 0 auto;
}

.interview_contact img {
	max-width: 180px;
}

.interview_contact_left {
	width: 80%;
	margin-right: 8%;
}

.interview_contact_left p {
	font-size: 16px;
}

p.mail_btn {
	display: block;
	margin-top: 20px;
}

p.mail_btn a {
	display: block;
	background: rgba(255, 0, 0, 0.6);
	padding: 17px 25px;
	border-radius: 8px;
	font-size: 21px;
	color: #fff;
	line-height: 1;
}

p.mail_btn a:before {
	content: url("images/mail_icon.svg");
	display: inline-block;
	margin-right: 30px;
	vertical-align: middle;
	line-height: 1;
}

p.mail_btn a:hover {
	opacity: 0.7;
}


.interview_colum {
	display: flex;
	margin-top: 20px;
}

.interview_colum_left {
	width: 70%;
}

.interview_colum_right {
	width: 23%;
}

.title_flex {
	display: flex;
	align-items: center;
}

.title_flex .img {
	max-width: 130px;
	width: 100%;
	margin-right: 15px;
}

.interview_main_title {
	font-family: 'hiragino-kaku-gothic-pron', sans-serif;
	font-weight: bold;
	font-size: 24px;
}

.interview_main_title span {
	font-size: 16px;
}

.inteview_person {
	display: block;
	margin-top: -65px;
	position: relative;
	z-index: 99;
}

.inteview_person img {
	border-radius: 7px 7px 0 0;
}

.inteview_person .description {
	display: block;
	width: 100%;
	padding: 10px 20px;
	background-color: #fff3f3;
	border-radius: 0 0 10px 10px;
}

.inteview_person .description p {
	display: block;
	font-size: 14px;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px dashed #2c4df2;
	line-height: 1.8;
}

#woman .inteview_person .description p {
	border-bottom: 1px dashed #f42a2a;
}

.inteview_person .description p:last-child {
	border-bottom: none;
}




:root {
	--pink-bg: #fdeeee;
	--pink-bg-soft: #fbe6e6;
	--orange: #f2874a;
	--orange-dark: #e8752f;
	--text-dark: #2b2b2b;
	--text-gray: #6b6b6b;
	--blue-label: #2f6fb0;
	--white: #ffffff;
	--shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.page {
	max-width: 1080px;
	width: 100%;
	margin: 50px auto 20px auto;
	padding: 35px 40px;
	border-radius: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
	padding-top: 28px;
	position: relative;
}

.page:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 88%;
	background-color: #fbe6e6;
	z-index: -1;
	border-radius: 10px;
}

/* ===== LEFT COLUMN ===== */
.left-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.schedule-card {
	background: var(--pink-bg);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 6px 14px rgba(0, 0, 0, 0.2);
	position: relative;
	margin-top: -90px;
	z-index: 2;
}

.schedule-title {
	font-size: 17px;
	font-weight: 700;
	margin: 4px 4px 16px;
	color: var(--text-dark);
}

.schedule-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.schedule-row {
	display: flex;
	align-items: center;
	background: var(--white);
	border-radius: 8px;
	padding: 8px 12px;
	gap: 14px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.schedule-time {
	flex: 0 0 auto;
	background: var(--orange);
	color: var(--white);
	font-weight: 700;
	font-size: 13px;
	padding: 5px 10px;
	border-radius: 6px;
	min-width: 58px;
	text-align: center;
}

.schedule-label {
	font-size: 14px;
	color: var(--text-dark);
}

/* Speech bubble */
.quote-wrap {
	position: relative;
	margin-top: 8px;
}

#quote-wrap-txt {
	padding-left: 22px;
	margin-bottom: -50px;
}

#quote-wrap-txt img {
	width: 100%;
	max-width: 360px;
}

/* .quote-bubble {
	background: var(--white);
	border: 2px solid var(--orange);
	border-radius: 16px;
	padding: 18px 20px;
	font-size: 16px;
	line-height: 1.9;
	color: var(--text-dark);
	position: relative;
}

.quote-bubble::after {
	content: "";
	position: absolute;
	left: 60px;
	bottom: -16px;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 16px solid var(--orange);
}

.quote-bubble::before {
	content: "";
	position: absolute;
	left: 62px;
	bottom: -12px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 14px solid var(--white);
	z-index: 1;
} */

.person-row {
	display: flex;
	gap: 18px;
	margin-top: 0;
}

.avatar {
	flex: 0 0 auto;
	width: 185px;
	height: 185px;
	border-radius: 50%;
	overflow: hidden;
	background: linear-gradient(135deg, #f3d9c4, #e9b9a3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffffcc;
	font-size: 12px;
	text-align: center;
	border: 3px solid var(--white);
	box-shadow: var(--shadow);
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.boss-comment {
	background: var(--pink-bg-soft);
	border-radius: 16px;
	padding: 16px 18px;
	flex: 1;
}

.boss-label {
	color: var(--blue-label);
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 8px;
}

.boss-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-dark);
	margin: 0;
}

/* ===== RIGHT COLUMN ===== */
.right-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.photo-card {
	border-radius: 16px;
	overflow: hidden;
}

.photo-frame {
	width: 100%;
	aspect-ratio: 16 / 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9aa0a6;
	font-size: 13px;
	text-align: center;
	padding: 12px;
}

.photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.photo-caption {
	font-size: 15px;
	color: var(--text-dark);
	padding: 0 14px;
	background: transparent;
}

/******************************************
								インタビュー
*******************************************/

/* ===== 基本変数セット ===== */
:root {
	--main-blue: #1c6ba0;
	--bg-light-blue: #e6f4f9;
	--bubble-border: #3b82f6;
	--text-color: #2b2b2b;
	--btn-red: #ff5e5e;
	--btn-red-hover: #e04848;
}

/* ===== メインコンテンツ背景エリア ===== */

.interview_wrapper {
	margin: 60px 0 30px 0;
}

.interview_body_card:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80%;
	background-color: #dcf4ff;
	z-index: -1;
	border-radius: 16px;
}

#woman .interview_body_card:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80%;
	background-color: #ffe9e9;
	z-index: -1;
	border-radius: 16px;
}

.interview_body_card {
	padding: 60px 30px 25px 30px;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.qa_column {
	flex: 1;
	margin-top: -160px;
	position: relative;
}

.photo_column {
	width: 400px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ===== Q&A 吹き出しスタイル ===== */
.qa_block {
	margin-bottom: 40px;
	max-width: 92%;
}

.q_bubble {
	position: relative;
	display: inline-block;
	background: #fff;
	border: 2px solid var(--bubble-border);
	border-radius: 10px;
	padding: 10px 20px;
	color: var(--main-blue);
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 12px;
	width: 100%;
	box-sizing: border-box;
}

/* 吹き出しの下三角 */
.q_bubble::after,
.q_bubble::before {
	top: 100%;
	left: 30px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.q_bubble::after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ffffff;
	border-width: 8px;
	margin-left: -8px;
}

.q_bubble::before {
	border-color: rgba(59, 130, 246, 0);
	border-top-color: var(--bubble-border);
	border-width: 11px;
	margin-left: -11px;
}

.a_text {
	font-size: 16px;
	line-height: 2;
	padding-left: 5px;
	color: #111;
	font-weight: 500;
}

/* 上司のコメント */
.boss_comment_block {
	max-width: 340px;
	padding: 10px 15px;
	margin: 30px 0 0 auto;
	background: #fff;
	border-radius: 7px;
}

.boss_title {
	color: var(--main-blue);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
}

.boss_text {
	font-size: 14px;
	color: #000;
	line-height: 1.6;
	letter-spacing: 2px;
}

/* ===== 右側写真ギャラリー ===== */
.photo_item .img_box {
	width: 100%;
	height: auto;
	border-radius: 12px;
	overflow: hidden;
}

.photo_item .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo_item .caption {
	font-size: 14px;
	color: #666;
	margin-top: 5px;
	text-align: left;
	font-weight: 500;
	padding: 5px;
	letter-spacing: 2px;
}


/* ===== フッター応募誘導エリア ===== */
.interview_footer_action {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 40px;
	padding: 0 10px;
}

.action_left {
	flex: 1;
}

.action_lead {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #111;
}

.entry_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--btn-red);
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
	padding: 16px 40px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(255, 94, 94, 0.3);
	transition: background-color 0.3s, transform 0.2s;
	width: 100%;
	max-width: 420px;
	box-sizing: border-box;
}

.entry_btn:hover {
	background-color: var(--btn-red-hover);
	transform: translateY(-2px);
}

/* アイコン用 (CSS擬似要素) */
.icon_mail {
	display: inline-block;
	width: 24px;
	height: 18px;
	border: 2px solid #fff;
	border-radius: 3px;
	margin-right: 12px;
	position: relative;
}

.icon_mail::after {
	content: "";
	position: absolute;
	top: 0;
	left: 3px;
	width: 14px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}


.illust_img {
	max-width: 100%;
	height: auto;
}

.description2 {
	background-color: #dcf4ff !important;
}










@media screen and (max-width: 760px) {
	.interview_list {
		flex-wrap: wrap;
	}

	.interview_list_col {
		width: 100%;
	}


	.page {
		grid-template-columns: 1fr;
		padding: 35px 20px;
		max-width: 100%;
	}

	.page:after {
		width: 100%;
	}

	.person-row {
		margin-top: 0;
		align-items: flex-start;
	}

	.boss-comment {
		padding: 0;
	}

	.interview_colum {
		flex-wrap: wrap;
		margin-bottom: 30px;
	}

	.interview_colum_left {
		width: 100%;
	}

	.interview_colum_right {
		width: 100%;
	}

	.inteview_person {
		margin-top: 10px;
	}

	.schedule-card {
		margin-top: 10px;
	}


	/******************************************
								インタビュー
*******************************************/
	.interview_header {
		flex-direction: column-reverse;
		gap: 20px;
	}

	.header_right {
		width: 100%;
	}

	.interview_body_card {
		flex-direction: column;
		padding: 25px 15px;
	}

	.interview_body_card:after {
		width: 100%;
	}

	.photo_column {
		width: 100%;
	}

	.interview_footer_action {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.qa_column {
		margin-top: 20px;
	}

	.interview_contact {
		max-width: 100%;
		padding: 0 20px;
	}

	p.mail_btn {
		padding: 0 20px;
	}

	.boss_comment_block {
		max-width: 100%;
		margin: 0;
	}

}

@media screen and (min-width: 761px) {
	.boss_comment_block {
		position: absolute;
		bottom: 0;
		right: 0;
	}
}