/* Page: Interview Detail */

/* ── Interview Top (2-column hero + profile) ── */
.interview-top {
  width: 100%;
  /* background: #fff; */
  padding-top: 120px;
  margin-bottom: 60px;
}
.interview-top__inner {
  display: flex;
  align-items: stretch;
  min-height: 480px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 20px;
  gap: 48px;
}
.interview-top__media {
  flex: 0 0 55%;
  overflow: hidden;
  border-radius: 4px;
}
.interview-top__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.interview-top__placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}
.interview-top__info {
  flex: 1;
  padding: 48px 48px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.interview-top__badge {
  display: inline-block;
  background: var(--color-primary, #e60012);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 0px 20px;
  /* letter-spacing: 0.1em; */
  margin-bottom: 20px;
  align-self: flex-start;
}
.interview-top__title {
  font-size: clamp(22px, 32px, 32px);
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.interview-top__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.interview-top__name-ja {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
}
.interview-top__name-en {
  font-size: 14px;
  color: var(--color-primary, #e60012);
  font-weight: 500;
}
.interview-top__company {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text, #333);
  border: 1px solid var(--color-text, #333);
  border-radius: 5px;
  padding: 0px 10px;
  margin-bottom: 12px;
  width: fit-content;
}
.interview-top__meta {
  font-size: 16px;
  font-weight: 500;
  /* color: #666; */
  margin-bottom: 20px;
}
.interview-top__intro {
  font-size: 14px;
  line-height: 1.8;
  /* color: #555; */
}

/* Hero */
.interview-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.interview-hero__image {
  width: 100%;
  height: 100%;
}

.interview-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-hero__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}

.interview-hero__badge {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: var(--color-primary, #e60012);
  color: #fff;
  /* font-family: var(--font-en, "Inter"), sans-serif; */
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  letter-spacing: 0.1em;
}

/* Profile */
.interview-profile {
  padding: 48px 0 40px;
}

.interview-profile__catchcopy {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000;
}

.interview-profile__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.interview-profile__name-ja {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.interview-profile__name-en {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--color-primary, #e60012);
  font-weight: 600;
}

.interview-profile__meta {
  font-size: 14px;
  /* color: #666; */
  margin-bottom: 24px;
}

.interview-profile__intro {
  font-size: 15px;
  line-height: 1.8;
  /* color: #333; */
  max-width: 700px;
}

/* Q&A Body */
.interview-body {
  padding: 0 0 60px;
}

/* Q&A Sections */
.interview-qa {
  margin-bottom: 64px;
}
.interview-qa:last-child {
  margin-bottom: 0;
}
.interview-qa__title {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-primary, #e60012);
  margin-bottom: 24px;
}
.interview-qa__content {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 32px;
}
.interview-qa__content p {
  margin-bottom: 16px;
}
.interview-qa__image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.interview-qa__image img {
  width: 100%;
  height: auto;
  display: block;
}
.interview-qa__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border: 2px dashed #ddd;
  border-radius: 4px;
}

/* Schedule */
.interview-schedule {
  padding-top: 80px;
}

.interview-schedule__card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 48px clamp(20px, 5vw, 60px);
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}

.interview-schedule__header {
  text-align: center;
  margin-bottom: 48px;
}

.interview-schedule__heading {
  /* font-family: var(--font-en, "Inter"), sans-serif; */
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.interview-schedule__sub {
  font-size: 16px;
  color: var(--color-primary, #e60012);
  font-weight: 700;
}

.interview-schedule__timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 120px;
}

.interview-schedule__timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary, #e60012);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}
.interview-schedule__timeline--proportional .timeline-item {
  padding: 0;
}

.timeline-item__time {
  position: absolute;
  left: -120px;
  width: 100px;
  text-align: right;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary, #e60012);
}

.timeline-item__dot {
  position: absolute;
  left: -14px;
  width: 12px;
  height: 12px;
  background: var(--color-primary, #e60012);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary, #e60012);
}

.timeline-item__activity {
  color: #333;
  margin-left: 16px;
}

.schedule-item__title {
  font-weight: 700;
  font-size: 1.125rem; /* 18px */
  margin: 0 0 0.25em;
}

.schedule-item__desc {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* Bottom wrapper (Schedule + Back) */
.interview-bottom {
  background: #eef0f4;
}

/* Back to list */
.interview-back {
  padding: 48px 0;
  text-align: center;
}

.interview-back .container {
  display: flex;
  justify-content: center;
}

/* 矢印を左向きにするだけ（ベーススタイルはmain.cssの.btn--outline-roundを継承） */
.interview-back .btn--outline-round .btn__circle-arrow {
  transform: rotate(180deg);
}

@media (min-width: 769px) {
  .interview-top__media {
    flex: 7 1 0;
    max-width: 680px;
    min-width: 0;
  }

  .interview-top__info {
    flex: 5 1 0;
    max-width: 540px;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  /* Top Hero + Profile */
  .interview-top {
    padding-top: 100px;
    margin-bottom: 32px;
  }
  .interview-top__inner {
    flex-direction: column;
    padding: 0 16px;
    gap: 0;
    min-height: auto;
  }
  .interview-top__media {
    flex: none;
    height: auto;
    border-radius: 7px;
  }
  .interview-top__img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .interview-top__placeholder {
    min-height: 240px;
  }
  .interview-top__info {
    padding: 24px 0;
  }
  .interview-top__badge {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }
  .interview-top__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .interview-top__name {
    gap: 8px;
    margin-bottom: 6px;
  }
  .interview-top__name-ja {
    font-size: 14px;
  }
  .interview-top__name-en {
    font-size: 14px;
  }
  .interview-top__company {
    font-size: 13px;
  }
  .interview-top__meta {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .interview-top__intro {
    font-size: 13px;
    line-height: 1.8;
  }

  /* Hero (legacy) */
  .interview-hero {
    height: 250px;
  }

  /* Q&A Body */
  .interview-body {
    padding: 0 0 40px;
  }
  .interview-qa {
    margin-bottom: 40px;
  }
  .interview-qa__title {
    font-size: 18px;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .interview-qa__content {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  /* Schedule */
  .interview-schedule {
    padding: 0;
    padding-top: 20px;
  }
  .interview-schedule__card {
    min-width: 0;
    padding: 32px 20px;
  }
  .interview-schedule__header {
    margin-bottom: 32px;
  }
  .interview-schedule__heading {
    font-size: 24px;
  }
  .interview-schedule__sub {
    font-size: 14px;
  }

  /* Timeline mobile: vertical stacked layout, no line */
  .interview-schedule__timeline {
    padding-left: 0;
    max-width: 100%;
  }
  .interview-schedule__timeline::before {
    display: none;
  }

  .timeline-item {
    display: block;
    position: relative;
    padding: 0;
    margin-top: 0 !important;
  }
  .timeline-item + .timeline-item {
    margin-top: 24px !important;
  }
  .interview-schedule__timeline--proportional .timeline-item {
    padding: 0;
  }

  .timeline-item__time {
    position: relative;
    left: auto;
    width: auto;
    text-align: left;
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary, #e60012);
  }

  .timeline-item__dot {
    display: none;
  }

  .timeline-item__activity {
    margin-left: 0;
  }

  .schedule-item__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
  }

  .schedule-item__desc {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Back to list */
  .interview-back {
    padding: 32px 0;
  }
}

/* Interview Note (注釈) */
.interview-note {
  padding: 0 0 12px;
}

.interview-note__text {
  font-size: 12px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
