.interview-detail-fv {
  position: relative;
  height: 696px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-block: 0 40px;
}
.interview-detail-fv__inner {
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
}
.interview-detail-fv__number {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.interview-detail-fv__heading {
  font-size: 2rem;
  line-height: 2;
  font-weight: normal;
  margin-bottom: 12px;
}
.interview-detail-fv__profile {
  font-size: 1rem;
  line-height: 2;
  display: flex;
  gap: 40px;
  align-items: flex-end;
}
.interview-detail-fv__profile__post {
  font-size: 0.875rem;
}
.interview-detail-fv__profile__name {
  font-size: 1.75rem;
  line-height: 1.3;
}
.interview-detail-fv__profile__ruby {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.interview-detail-fv__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.interview-detail-container {
  background-color: var(--white);
}

.interview-detail-section {
  margin-bottom: 80px;
  margin-inline: auto;
  max-width: 1000px;
  width: calc(350 / var(--spcalc));
}
.interview-detail-section__title {
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 30px;
  color: var(--black);
}
.interview-detail-section__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--black);
}

.interview-detail-image {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.interview-detail-image img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.interview-detail-image__caption {
  font-size: 0.75rem;
  color: var(--black);
}

.interview-detail-profile-section {
  border: 1px solid var(--black);
  padding-inline: 28px 72px;
  padding-block: 0 56px;
  margin-inline: auto;
  max-width: 1000px;
  width: calc(350 / var(--spcalc));
}
.interview-detail-profile-section__title {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  font-weight: normal;
  line-height: 0.7;
}
.interview-detail-profile-section__title::before {
  content: "";
  width: 2px;
  height: 40px;
  background: #454545;
  margin-right: 6px;
}

.profile-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding-inline: 24px 0;
}
.profile-item:last-child {
  margin-bottom: 0;
}
.profile-item__content {
  flex: 1;
  line-height: 2;
}
.profile-item__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.profile-item__name {
  font-size: 1.125rem;
  font-weight: normal;
  margin-bottom: 8px;
}
.profile-item__name-en {
  font-family: "Roboto", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}
.profile-item__text {
  font-size: 0.75rem;
  line-height: 2;
  max-width: 550px;
}
.profile-item__image {
  width: 280px;
  flex-shrink: 0;
}
.profile-item__image img {
  width: 100%;
  height: auto;
}

.interview-detail-back {
  text-align: center;
}
.interview-detail-back a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s;
}
.interview-detail-back a:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .interview-detail-fv__inner {
    color: var(--white);
  }
  .interview-detail-fv__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
  }
  .interview-detail-fv__image img {
    object-position: center 28%;
  }
  .interview-detail-body {
    padding-block: 80px 150px;
  }
}
@media (max-width: 991.98px) {
  .interview-detail-fv {
    height: calc(200 / var(--spcalc));
  }
  .interview-detail-fv__heading {
    font-size: 1.5rem;
  }
  .interview-detail-image {
    margin-bottom: 40px;
    gap: 2px;
  }
}
@media (max-width: 767.98px) {
  .interview-detail-fv {
    height: initial;
    flex-direction: column-reverse;
  }
  .interview-detail-fv__inner {
    color: var(--black);
  }
  .interview-detail-fv__number {
    margin: initial;
  }
  .interview-detail-fv__image {
    height: 100%;
    width: 100%;
    margin-bottom: calc(24 / var(--spcalc));
  }
  .interview-detail-fv__image img {
    aspect-ratio: 39/20;
  }
  .interview-detail-body {
    padding-block: 0 min(80 / var(--spcalc), 80px);
  }
  .interview-detail-section {
    margin-bottom: 40px;
  }
  .interview-detail-section__title {
    font-size: 1.125rem;
    line-height: 2;
  }
  .interview-detail-section__text {
    font-size: 0.875rem;
  }
  .interview-detail-profile-section {
    padding: 0 min(32 / var(--spcalc), 32px) min(48 / var(--spcalc), 48px);
  }
  .interview-detail-profile-section__title {
    margin-bottom: min(32 / var(--spcalc), 32px);
  }
  .profile-item {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: min(40 / var(--spcalc), 40px);
    padding: initial;
  }
  .profile-item__image {
    width: 100%;
  }
}
