/* =========================================
   interview page
========================================= */
.interviewPage {
  color: #595554;
}

.interviewPage .c-pageTitle {
  margin-bottom: 56px;
  text-align: center;
}

.interviewPage .c-pageTitle__sub {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1d4f91;
}

.interviewPage .c-pageTitle__main {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.4;
}

.interviewPage .c-pageTitle__lead {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 1rem;
  line-height: 2;
}
/* =========================================
   interview header
========================================= */
.interviewHeader {
  display: flex;
  flex-direction: column;
  align-items: center; /* ← ボックス中央 */
  gap: 16px;
}
.interviewHeader__copy{
	width: 100%;
	text-align: center;
/*
	min-width: 600px;
*/
	font-size: var(--fz-md);
	font-family: "見出ゴMB31", sans-serif;
}
.interviewHeader__lead{
	position: relative;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.04em;
/*
	min-width: 600px;
*/
	color: #7a869a;
	text-align: left;

}

/* =========================================
   interview list
========================================= */
.interviewList {
  display: flex;
  flex-direction: column;
  gap: 40px;
	margin-top: var(--space-md);
}

.interviewCard {
  padding: 32px;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(29, 79, 145, 0.06);
}

.interviewCard__layout {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.interviewCard__side {
  width: 290px;
  flex-shrink: 0;
}

.interviewCard__photo {
  overflow: hidden;
  border-radius: 14px;
  background: #e9eef5;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 24px rgba(29, 79, 145, 0.08);
}

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

.interviewCard__person {
  margin-top: 18px;
}

.interviewCard__number {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #1d4f91;
  font-family: "ゴシックMB101 B", "見出ゴMB31", sans-serif;
}

.interviewCard__label {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1d4f91;
}

.interviewCard__name {
  margin: 0 0 10px;
  font-size: 1.65rem;
  line-height: 1.4;
  color: #222;
}

.interviewCard__meta {
  margin: 4px 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

.interviewCard__main {
  flex: 1;
  min-width: 0;
}

.interviewCard__career {
  margin-bottom: 28px;
  padding: 20px 22px;
  background: #f7f9fc;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
}

.interviewCard__careerTitle {
  position: relative;
  margin: 0 0 12px;
  padding-left: 34px;
  font-size: 1rem;
  font-weight: 700;
  color: #1d4f91;
}

.interviewCard__careerTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #1d4f91;
  transform: translateY(-50%);
}

.interviewCard__careerList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.interviewCard__careerList li {
  margin-top: 8px;
  line-height: 1.8;
}

.interviewCard__careerList li:first-child {
  margin-top: 0;
}

/* =========================================
   qa
========================================= */
.interviewCard__qa {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 30px 0 0;
}

.interviewQa {
  padding: 0 0 22px;
  border-bottom: 1px solid #edf2f7;
}

.interviewQa:last-child {
  border-bottom: none;
}

.interviewQa__question {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1d4f91;
  font-weight: 700;
}

.interviewQa__answer {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
}

/* =========================================
   quote
========================================= */
.interviewCard__quote {
/*
  margin: 30px 0 0;
*/
	margin: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  border-left: 4px solid #1d4f91;
	border-bottom: 1px solid rgba(29, 79, 145,0.08);
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 2;
  color: #333;
}

/* =========================================
   keywords
========================================= */
.interviewKeywords {
  margin-top: 64px;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(29, 79, 145, 0.05);
}

.interviewKeywords__title {
  margin: 0 0 22px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #222;
  text-align: center;
}

.interviewKeywords__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interviewKeywords__item {
  padding: 10px 16px;
  background: #f0f5fc;
  border: 1px solid #d8e4f2;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1d4f91;
  line-height: 1.4;
}
/* =========================
   other interview cards
========================= */
.intvRelated {
  margin-top: 56px;
}
/* 1枚のとき用 */
.intvRelated__list--single {
  justify-content: center;
}

.intvRelated__list--single .intvRelated__card {
  max-width: 520px;
}
.intvRelated__inner {
  padding: 40px 32px;
  background: #f7f9fc;
  border: 1px solid #dbe4f0;
  border-radius: 16px;
}

.intvRelated__head {
  margin-bottom: 28px;
  text-align: center;
}

.intvRelated__sub {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1d4f91;
}

.intvRelated__title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.4;
}

.intvRelated__lead {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #595554;
}

.intvRelated__list {
  display: flex;
  gap: 24px;
}

.intvRelated__card {
  display: flex;
  flex: 1;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.intvRelated__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(29, 79, 145, 0.08);
  border-color: #c9d9eb;
}

.intvRelated__photo {
  width: 140px;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8eef5;
}

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

.intvRelated__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.intvRelated__num {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #1d4f91;
  font-family: "ゴシックMB101 B", "見出ゴMB31", sans-serif;
}

.intvRelated__job {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1d4f91;
}

.intvRelated__name {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #222;
}

.intvRelated__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #595554;
}

.intvRelated__more {
  margin: auto 0 0;
  padding-top: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1d4f91;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.intvRelated__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.intvRelated__card:hover .intvRelated__icon {
  transform: translateX(4px);
}

/* =========================
   responsive
========================= */
@media (max-width: 900px) {
  .intvRelated__list {
    flex-direction: column;
  }

  .intvRelated__card {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .intvRelated {
    margin-top: 48px;
  }

  .intvRelated__inner {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .intvRelated__title {
    font-size: 1.45rem;
  }

  .intvRelated__card {
    flex-direction: column;
    padding: 16px;
    gap: 14px;
  }

  .intvRelated__photo {
    width: 100%;
    max-width: 260px;
  }

  .intvRelated__name {
    font-size: 1.08rem;
  }
}
/* =========================================
   cta
========================================= */
.interviewCta {
  margin: 64px 0;
}

.interviewCta__inner {
  padding: 44px 32px;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  border: 1px solid #dbe4f0;
  border-radius: 16px;
  text-align: center;
}

.interviewCta__title {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.interviewCta__text {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 2;
}

/* =========================================
   responsive
========================================= */
@media (max-width: 1100px) {
  .interviewCard__layout {
    gap: 28px;
  }

  .interviewCard__side {
    width: 240px;
  }
}

@media (max-width: 900px) {
  .interviewCard__layout {
    flex-direction: column;
  }

  .interviewCard__side {
    width: 100%;
  }

  .interviewCard__photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .interviewCard__person {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .interviewPage .c-pageTitle {
    margin-bottom: 40px;
  }

  .interviewList {
    gap: 28px;
  }

  .interviewCard,
  .interviewKeywords,
  .interviewCta__inner {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .interviewCard__name {
    font-size: 1.4rem;
  }

  .interviewCard__number {
    font-size: 1.6rem;
  }

  .interviewQa__question {
    font-size: 1.02rem;
  }

  .interviewCard__quote {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .interviewKeywords {
    margin-top: 48px;
  }

  .interviewCta {
    margin-top: 48px;
  }

  .interviewCta__title {
    font-size: 1.45rem;
  }

  .interviewPage .c-pageTitle__lead br,
  .interviewCta__text br {
    display: none;
  }
}