/* =====================
  インタビュー詳細
===================== */
.interview-detail {
  padding: 90px 0 120px;
  background: #fff;
}
.interview-detail-main-photo {
  margin-bottom: 56px;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.interview-detail-main-photo img, .interview-inline-photo img, .interview-other-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-profile-box {
  background: #06379f;
  padding: 36px 40px;
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
.interview-profile-head {
  color: #fff;
}
.interview-detail-office {
  font-size: 17px;
  font-weight: 900;
}
.interview-profile-head h1 {
  margin: 0;
  color: #fff;
  line-height: 1.2;
}
.interview-detail-name-ja {
  display: block;
  font-size: 46px;
  font-weight: 900;
}
.interview-profile-text {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 40px;
}
.interview-profile-text h2 {
  display: inline-block;
  margin: 0 0 10px;
  padding: 8px 30px;
  background: #fff;
  color: #06379f;
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.interview-profile-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #fff;
}
.interview-detail-body {
  margin: 0;
}
.interview-question-block h2 {
  margin: 0 0 34px;
  color: #06379f;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.6;
}
.interview-question-block p {
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: 700;
  line-height: 2.1;
}
.interview-question-block + .interview-question-block {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid #ddd;
}
.interview-inline-photo {
  margin: 48px 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.interview-other {
  margin-top: 90px;
  padding-top: 60px;
  border-top: 1px solid #ddd;
}
.interview-other h2 {
  margin: 0 0 28px;
  color: #06379f;
  font-family: 'Lato', sans-serif;
  font-size: 85px;
  font-weight: 900;
}
.interview-other-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.interview-other-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.interview-other-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.interview-other-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.interview-other-office {
  margin: 0;
  color: #06379f;
  font-size: 14px;
  font-weight: 900;
}
.interview-other-name {
  margin: 0;
  color: #06379f;
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 900;
}
.interview-other-lead {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.6;
}
.interview-other-lead span {
  background-image: linear-gradient(#06379f, #06379f);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size 0.35s ease;
}
.interview-other-card:hover .interview-other-lead span {
  background-size: 100% 2px;
}
.interview-other-card:hover .interview-other-photo img {
  transform: scale(1.08);
}
.interview-detail-back {
  width: 350px;
  margin: 48px auto 0;
}
.interview-back-btn {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #06379f;
  background: #ffffff;
  color: #06379f;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 20px 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 0;
}
.interview-back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #06379f;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.interview-back-btn:hover::before {
  left: 0;
}
.interview-back-btn:hover {
  color: #ffffff;
}
.interview-back-btn:hover .interview-back-btn-arrow {
  filter: brightness(0) invert(1);
}
.interview-back-btn-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: filter 0.4s ease;
}
/* =====================
  SP
===================== */
@media (max-width: 768px) {
  .interview-detail {
    padding: 60px 0 80px;
  }
  .interview-detail-main-photo {
    aspect-ratio: 4 / 3;
    margin-bottom: 38px;
  }
  .interview-profile-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 20px;
    margin-bottom: 48px;
  }
  .interview-detail-office {
    font-size: 15px;
  }
  .interview-detail-name-ja {
    font-size: 34px;
  }
  .interview-profile-text {
    border-left: none;
    padding-left: 0;
  }
  .interview-profile-head {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 14px;
  }
  .interview-detail-office {
    margin: 0;
  }
  .interview-profile-head h1 {
    margin: 0;
    flex-shrink: 0;
  }
  .interview-profile-text h2 {
    font-size: 22px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .interview-profile-text p {
    font-size: 15px;
    line-height: 1.9;
  }
  .interview-question-block h2 {
    font-size: 24px;
    margin: 0 0 28px;
  }
  .interview-question-block p {
    font-size: 15px;
    line-height: 2;
    margin: 0 0 20px;
  }
  .interview-question-block + .interview-question-block {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
  }
  .interview-inline-photo {
    margin: 36px 0;
    aspect-ratio: 4 / 3;
  }
  .interview-other {
    margin-top: 40px;
    padding-top: 40px;
  }
  .interview-other h2 {
    font-size: 38px;
    margin: 0 0 20px;
  }
  .interview-other-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .interview-detail-back {
    margin-top: 46px;
    width: 100%;
  }
  .interview-back-btn {
    width: 100%;
    min-width: 0;
    padding: 15px 16px;
  }
  .interview-other-lead {
    font-size: 18px;
  }
  .interview-other-lead::after {
    bottom: -4px;
    height: 1px;
  }
  .interview-inline-photo-center img {
    object-position: 0% center;
  }
}