/* ============================================================
   interview.css — スタッフインタビュー ページ 追加スタイル
   ============================================================ */

/* ---------- プロフィールカード ---------- */
.profile-card {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 44px;
	align-items: center;
	background: var(--pink-50);
	border-radius: 20px;
	padding: 44px 52px;
}

.profile-card .photo {
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin: 0;
	max-width: 220px;
	max-height: 220px;
}

.profile-card__body .name-row {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.profile-card__body .name {
	font-size: 28px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: 0.04em;
}

.profile-card__body .role {
	font-size: 13px;
	font-weight: 700;
	color: var(--pink-600);
	background: #fff;
	padding: 6px 16px;
	border-radius: 999px;
	letter-spacing: 0.04em;
}

.profile-card__tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
}

.profile-card__tags li {
	font-size: 13px;
	font-weight: 700;
	color: var(--ink-2);
	background: #fff;
	border: 1px solid var(--pink-200);
	padding: 6px 16px;
	border-radius: 999px;
}

.profile-card__body p.bio {
	margin: 0;
	font-size: 16px;
	line-height: 2.0;
	color: var(--ink-2);
}

@media (max-width: 768px) {
	.profile-card {
		grid-template-columns: 1fr;
		padding: 32px 24px;
		text-align: center;
		gap: 20px;
	}

	.profile-card .photo {
		margin: 0 auto;
	}

	.profile-card__body .name-row,
	.profile-card__tags {
		justify-content: center;
	}

	.profile-card__body p.bio {
		font-size: 15px;
		text-align: left;
	}
}

/* ---------- プロフィールカード（ヒーロー内・省スペース版） ---------- */
.profile-card--compact {
	grid-template-columns: 1fr;
	background: #fff;
	border: 1px solid var(--line-2);
	box-shadow: 0 2px 0 rgba(180, 210, 230, 0.18);
	padding: 36px 32px;
	text-align: center;
	gap: 18px;
}

.profile-card--compact .profile-card__body .name-row,
.profile-card--compact .profile-card__tags {
	justify-content: center;
}

.profile-card--compact .profile-card__body .name {
	font-size: 22px;
}

.profile-card--compact .profile-card__body .role {
	background: var(--bg-soft);
}

.profile-card--compact .profile-card__body p.bio {
	font-size: 14.5px;
	line-height: 1.9;
	text-align: left;
}

@media (max-width: 768px) {
	.profile-card--compact {
		padding: 28px 22px;
	}
}

/* ---------- プロフィールカード：画像の装飾 ----------*/
.profile-photo{
	overflow: visible;
	background: none;
}

.profile-photo img{
  clip-path: polygon(
    50px 0, 100% 0, 100% calc(100% - 50px),
    calc(100% - 50px) 100%, 0 100%, 0 50px
  );
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));

}

.profile-photo .deco-txt {
	position: absolute;
	bottom: -70px;
	right: -60px;
	width: 300px;
	transform: rotate(-20deg)
}

.profile-photo .deco-txt img{
	clip-path: none;
}

@media (max-width: 1349px) {
	.profile-photo .deco-txt {
		position: absolute;
		bottom: -30px;
		right: -10px;
		width: 230px;
	}
}

@media (max-width: 960px) {
	.profile-photo{
		margin: 0 auto;
	}
}


@media (max-width: 768px) {
	.profile-photo .deco-txt {
		position: absolute;
		bottom: -40px;
		right: -10px;
		width: 200px;
		transform: rotate(-12deg)
	}
}

/* ---------- 目次 ---------- */
.interview-toc {
	background: #fff;
	border: 1px solid var(--line-2);
	border-radius: 20px;
	padding: 44px 48px;
	box-shadow: 0 2px 0 rgba(180, 210, 230, 0.18);
}

.interview-toc__ttl {
	display: flex;
	align-items: baseline;
	gap: 14px;
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: 0.08em;
	margin: 0 0 28px;
}

.interview-toc__ttl .en {
	font-family: var(--en);
	color: var(--pink-500);
	font-size: 13px;
	letter-spacing: 0.2em;
}

.interview-toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.interview-toc li a {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--bg-soft);
	border-radius: 12px;
	padding: 18px 22px;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.6;
	transition: background .2s ease, transform .15s ease;
}

.interview-toc li a:hover {
	background: var(--pink-100);
	transform: translateY(-1px);
}

.interview-toc li a .idx {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--pink-500);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--en);
	font-weight: 800;
	font-size: 13px;
}

@media (max-width: 768px) {
	.interview-toc {
		padding: 28px 22px;
	}

	.interview-toc ol {
		grid-template-columns: 1fr;
	}
}

/* ---------- チャプター見出し ---------- */
.chapter-head {
	display: flex;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 48px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--pink-100);
}

.chapter-head .num {
	font-family: var(--en);
	font-size: 64px;
	font-weight: 900;
	color: var(--rose-500);
	line-height: 1;
	letter-spacing: -0.02em;
}

.chapter-head .ttl h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	color: var(--ink);
	line-height: 1.5;
	letter-spacing: 0.03em;
}

@media (max-width: 768px) {
	.chapter-head {
		gap: 14px;
		margin-bottom: 32px;
		padding-bottom: 16px;
	}

	.chapter-head .num {
		font-size: 40px;
	}

	.chapter-head .ttl h2 {
		font-size: 19px;
	}
}

/* ---------- チャプター内の小見出し ---------- */
.chapter-subhead {
  position: relative;
  display: inline-block;
  padding: 4px 24px;
  color: var(--ink);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.chapter-subhead::before,
.chapter-subhead::after {
  content: "";
  position: absolute;
  top: 0;
  width: 13px;
  height: 100%;
  background: linear-gradient(to bottom, var(--rose-300), var(--pink-400));
}

.chapter-subhead::before {
  left: 0;
  clip-path: polygon(
    0 0, 100% 0, 100% 4px,
    4px 4px, 4px calc(100% - 4px), 100% calc(100% - 4px),
    100% 100%, 0 100%
  );
  border-radius: 4px 0 0 4px;
}

.chapter-subhead::after {
  right: 0;
  clip-path: polygon(
    100% 0, 0 0, 0 4px,
    calc(100% - 4px) 4px, calc(100% - 4px) calc(100% - 4px), 0 calc(100% - 4px),
    0 100%, 100% 100%
  );
  border-radius: 0 4px 4px 0;
}

.chapter-subhead.is-2nd {
	margin-top: 48px;
}

@media (max-width: 768px) {
	.chapter-subhead {
		font-size: 18px;
		padding: 4px 18px;
		margin-bottom: 24px;
	}
	.chapter-subhead::before,
  .chapter-subhead::after {
    width: 11px;
  }
}

/* ---------- チャプター本文（インタビュー形式） ---------- */
.chapter-body p {
	margin: 0 0 30px;
	font-size: 17px;
	line-height: 2.1;
	color: var(--ink-2);
}

.chapter-body p:last-child {
	margin-bottom: 0;
}

.chapter-body p.q {
	position: relative;
	margin: 44px 0 16px;
	padding-left: 1.6em;
	font-size: 20px;
	font-weight: 700;
	color: var(--pink-600);
	line-height: 1.85;
}

.chapter-body p.q:first-child {
	margin-top: 0;
}

.chapter-body p.q::before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(1em - 2px);
	width: 1em;
	height: 2px;
	background: var(--pink-600);
}

@media (max-width: 768px) {
	.chapter-body p {
		font-size: 15.5px;
		line-height: 1.95;
		margin-bottom: 22px;
	}

	.chapter-body p.q {
		font-size: 15.5px;
		margin: 32px 0 12px;
	}
}

/* ---------- チャプター本文：写真挿入箇所 ---------- */
.chapter-cont-wrap{
	display: flex;
	justify-content: space-between;
}

.chapter-cont-wrap .txt{
	width: calc(65% - 15px);
}

.chapter-cont-wrap .img{
	width: calc(35% - 15px);
}

@media (max-width: 768px) {
	.chapter-cont-wrap {
		flex-direction: column-reverse;
	}

	.chapter-cont-wrap .txt{
		width: 100%;
	}

	.chapter-cont-wrap .img{
		width: 100%;
		margin-bottom: 20px !important;
	}


}



/* ---------- 他のインタビュー・一覧への導線 ---------- */
.interview-nav-link {
	text-align: center;
	margin-top: 8px;
}

.interview-nav-link a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--pink-600);
	letter-spacing: 0.04em;
}

.interview-nav-link a:hover {
	color: var(--rose-500);
}

/* ---------- ヒーロー：本文内プロフィールの余白調整 ---------- */
.hero-grid .profile-card--compact {
	margin: 8px 0 32px;
}

/* ---------- ヒーロー：本ページ専用の見出しサイズ調整 ----------
   960px以下・768px以下のフォントサイズ調整は
   lp-recruit-psychologist-new.css 側のレスポンシブ指定を維持する */
h1.hero-title.hero-title--interview {
	font-size: 48px;
	line-height: 1.6;
	margin: 0 0 24px;
	letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
	h1.hero-title.hero-title--interview {
		font-size: 38px;
	}
}

/* ---------- クロージング：本ページ専用の余白調整 ---------- */
.msg-outro.msg-outro--flush {
	margin-top: 0;
	padding-top: 0;
}

.entry-cta-wrap.entry-cta-wrap--tight {
	margin: 32px auto 0;
}

/* ---------- クロージングの内部リンク ---------- */
.entry-cta-wrap .sub a {
	color: var(--pink-600);
	text-decoration: underline;
}

.entry-cta-wrap .sub a:hover {
	color: var(--rose-500);
}
