/* ============================================
   FAS Recruit - Interview Pages
   ============================================ */

/* --- Interview List --- */
.interview-list {
  background-color: var(--color-white);
  padding: 88px var(--container-padding) 120px;
  position: relative;
}

.interview-list__grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 56px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.interview-list__grid .interview-card {
  flex: 0 0 calc((100% - 64px) / 3);
}

.interview-list .interview-card__img {
  background-color: var(--color-bg-placeholder);
}

.interview-list .interview-card__info {
  color: var(--color-text);
}

.interview-list .interview-card__role,
.interview-list .interview-card__name {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
}

.interview-list .interview-card__name::before {
  content: '｜';
  margin: 0 2px;
  color: var(--color-text-light);
}

/* List page: enlarge number badge */
.interview-list .interview-card__number {
  height: 84px;
  padding: 0 32px;
}

.interview-list .interview-card__number span {
  font-size: 30px;
  letter-spacing: 1.2px;
}

.interview-list .interview-card__notch {
  width: 24px;
  height: 24px;
}

.interview-list .interview-card__notch--bottom {
  bottom: -24px;
}

.interview-list .interview-card__notch--right {
  right: -24px;
}

/* List page: show catch title (larger in 3-col layout) */
.interview-list .interview-card__catch {
  display: block;
  font-size: 20px;
}

/* List page: info spacing */
.interview-list .interview-card__info {
  gap: 16px;
}

/* List page: role + name on same line */
.interview-list .interview-card__meta {
  flex-direction: row;
  align-items: baseline;
  gap: 0;
}

/* --- Interview Detail: FV (Fixed) --- */
.interview-fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 0 var(--container-padding);
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.interview-fv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

.interview-fv__inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.interview-fv__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: calc(80px + var(--radius-section));
}

.interview-fv__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.interview-fv__meta-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.interview-fv__name {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1;
  text-shadow: var(--shadow-text);
}

.interview-fv__role {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
}

.interview-fv__catch {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-white);
  letter-spacing: 1.6px;
  line-height: 1.45;
  margin-top: 8px;
  text-shadow: var(--shadow-text);
}

.interview-fv__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: calc(32px + var(--radius-section));
  white-space: nowrap;
}

.interview-fv__breadcrumb .breadcrumb__item,
.interview-fv__breadcrumb .breadcrumb__separator {
  font-size: 12px;
}

.interview-fv + .page-body {
  margin-top: calc(700px - var(--radius-section) - 36px);
}

/* --- Interview Detail: Main Question --- */
.interview-main {
  background-color: var(--color-white);
  padding: 144px var(--container-padding) 128px;
  position: relative;
}

.interview-main__block {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 120px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.interview-main__block:last-child {
  margin-bottom: 0;
}

.interview-main__block--reverse {
  flex-direction: row-reverse;
}

.interview-main__img {
  width: 480px;
  height: 360px;
  border-radius: var(--radius-image);
  background-color: var(--color-bg-placeholder);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interview-main__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-main__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.interview-main__question {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.interview-main__q-number {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
}

.interview-main__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text);
  letter-spacing: 0.56px;
  line-height: 1.5;
}

.interview-main__text {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.85;
}

/* --- Interview Detail: Chat Q&A --- */
.interview-chat {
  background-color: var(--color-primary);
  padding: 128px var(--container-padding);
  position: relative;
}

.interview-chat__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.interview-chat__header-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.interview-chat__header-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 1px;
}

.interview-chat__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.interview-chat__phone {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--color-white);
  border: 8px solid var(--color-border);
  border-radius: 40px;
  padding: 80px 32px;
}

.interview-chat__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.interview-chat__bubble {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.interview-chat__bubble--q {
  justify-content: flex-start;
}

.interview-chat__bubble--a {
  justify-content: flex-end;
  margin-left: 76px;
  padding-bottom: 8px;
}

.interview-chat__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.interview-chat__bubble--q .interview-chat__icon {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.interview-chat__bubble--a .interview-chat__icon {
  background-color: var(--color-bg-placeholder);
  color: transparent;
  order: 2;
}

.interview-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  order: 2;
}

.interview-chat__text {
  max-width: 560px;
  padding: 20px 24px;
  border-radius: 20px;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
}

.interview-chat__bubble--q .interview-chat__text {
  background-color: var(--color-bg-light);
  color: var(--color-text);
  border-top-left-radius: 4px;
}

.interview-chat__bubble--a .interview-chat__text {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-top-right-radius: 4px;
}

/* --- Interview Detail: Schedule --- */
.interview-schedule {
  background-color: var(--color-bg-light);
  padding: 128px var(--container-padding);
  position: relative;
}

.interview-schedule__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.interview-schedule__header-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.interview-schedule__header-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: 1px;
}

.interview-schedule__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.interview-schedule__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.interview-schedule__item {
  display: flex;
  align-items: flex-start;
}

.interview-schedule__time {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1;
  background-color: var(--color-primary);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  margin-top: 3px;
  min-width: 140px;
  text-align: center;
}

.interview-schedule__line {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  height: 34px;
  margin-top: 2px;
}

.interview-schedule__line::before {
  content: '';
  flex: 1;
  border-top: 2px dashed var(--color-border);
}

.interview-schedule__line::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-text);
  flex-shrink: 0;
}

.interview-schedule__content {
  padding-left: 16px;
  flex: 1;
}

.interview-schedule__activity {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  line-height: 34px;
}

.interview-schedule__desc {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-top: 4px;
}

/* --- Interview Detail: Other Interviews --- */
.interview-others {
  background-color: var(--color-white);
  padding: 128px var(--container-padding);
  position: relative;
}

.interview-others__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.interview-others__header-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.interview-others__header-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: 1px;
}

.interview-others__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 48px;
}

.interview-others .interview-card__catch {
  display: block;
}

.interview-others .interview-card__meta {
  flex-direction: row;
  align-items: baseline;
  gap: 0;
}

.interview-others .interview-card__role,
.interview-others .interview-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.interview-others .interview-card__name::before {
  content: '｜';
  margin: 0 2px;
  color: var(--color-text);
}

.interview-others__grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.interview-others__grid .interview-card {
  flex: 1;
  max-width: 300px;
}

.interview-others__btn {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

/* --- Interview Detail: Section Corner Decorations --- */
.interview-main__corner-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 88px;
  height: 88px;
  z-index: 1;
}

.interview-chat__corner-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  transform: rotate(180deg);
  z-index: 1;
}

.interview-chat__corner-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 88px;
  height: 88px;
  z-index: 1;
}

.interview-schedule__corner-tr {
  position: absolute;
  top: -1px;
  right: 0;
  width: 88px;
  height: 88px;
  transform: rotate(180deg);
  z-index: 1;
}

.interview-schedule__corner-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 88px;
  height: 88px;
  z-index: 1;
}

.interview-others__corner-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  transform: rotate(180deg);
  z-index: 1;
}

/* ============================================
   RESPONSIVE (max-width: 1080px) — Tablet
   ============================================ */
@media (max-width: 1080px) {

  .interview-main__img {
    width: 45%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

}

/* ============================================
   RESPONSIVE (max-width: 792px)
   ============================================ */
@media (max-width: 792px) {

  /* --- Interview List --- */
  .interview-list {
    padding: 80px var(--container-padding) 24px;
  }

  .interview-list__grid {
    flex-wrap: wrap;
    gap: 40px;
  }

  .interview-list .interview-card__catch {
    font-size: 17px;
  }

  .interview-list__grid .interview-card {
    flex: 0 0 100%;
    gap: 24px;
  }

  .interview-list .interview-card__number {
    height: 56px;
    padding: 0 20px;
  }

  .interview-list .interview-card__number span {
    font-size: 20px;
    letter-spacing: 0.8px;
  }

  .interview-list .interview-card__notch {
    width: 14px;
    height: 14px;
  }

  .interview-list .interview-card__notch--bottom {
    bottom: -14px;
  }

  .interview-list .interview-card__notch--right {
    right: -14px;
  }

  /* --- Interview Detail: FV --- */
  .interview-fv {
    height: 480px;
    padding: 0 var(--container-padding);
  }

  .interview-fv__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
  }

  .interview-fv__info {
    padding-bottom: 0;
    gap: 20px;
  }

  .interview-fv__catch {
    font-size: 28px;
  }

  .interview-fv__name {
    font-size: 14px;
  }

  .interview-fv__role {
    font-size: 12px;
  }

  .interview-fv__breadcrumb {
    padding-bottom: calc(56px + var(--radius-section));
  }

  .interview-fv + .page-body {
    margin-top: calc(480px - var(--radius-section) - 36px);
  }

  /* --- Interview Detail: Main Question --- */
  .interview-main {
    padding: 104px var(--container-padding) 80px;
  }

  .interview-main__block {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 72px;
  }

  .interview-main__block--reverse {
    flex-direction: column;
  }

  .interview-main__img {
    width: 100%;
    height: 200px;
  }

  .interview-main__content {
    gap: 16px;
  }

  .interview-main__question {
    font-size: 18px;
    gap: 8px;
  }

  .interview-main__q-number {
    font-size: 32px;
  }

  .interview-main__title {
    font-size: 18px;
  }

  .interview-main__text {
    font-size: 14px;
  }

  /* --- Interview Detail: Chat Q&A --- */
  .interview-chat {
    padding: 80px var(--container-padding);
  }

  .interview-chat__title {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .interview-chat__phone {
    border-width: 4px;
    border-radius: 24px;
    padding: 48px 16px;
  }

  .interview-chat__bubble {
    gap: 10px;
  }

  .interview-chat__bubble--a {
    margin-left: 54px;
    padding-bottom: 4px;
  }

  .interview-chat__icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .interview-chat__avatar {
    width: 32px;
    height: 32px;
  }

  .interview-chat__text {
    max-width: calc(100% - 42px);
    padding: 14px 16px;
    font-size: 13px;
    border-radius: 16px;
  }

  .interview-chat__bubble--q .interview-chat__text {
    border-top-left-radius: 4px;
  }

  .interview-chat__bubble--a .interview-chat__text {
    border-top-right-radius: 4px;
  }

  /* --- Interview Detail: Schedule --- */
  .interview-schedule {
    padding: 80px var(--container-padding);
  }

  .interview-schedule__header {
    justify-content: flex-start;
  }

  .interview-schedule__title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 32px;
  }

  .interview-schedule__list {
    gap: 24px;
  }

  .interview-schedule__time {
    font-size: 13px;
    padding: 5px 10px;
    margin-top: 5px;
    min-width: 64px;
  }

  .interview-schedule__line {
    width: 32px;
    height: 30px;
    margin-top: 3px;
  }

  .interview-schedule__line::after {
    width: 6px;
    height: 6px;
  }

  .interview-schedule__content {
    padding-left: 12px;
  }

  .interview-schedule__activity {
    font-size: 16px;
  }

  .interview-schedule__desc {
    font-size: 13px;
  }

  /* --- Interview Detail: Other Interviews --- */
  .interview-others {
    padding: 80px var(--container-padding);
  }

  .interview-others__header {
    justify-content: flex-start;
  }

  .interview-others__title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 32px;
  }

  .interview-others__grid {
    flex-wrap: wrap;
    row-gap: 32px;
    column-gap: 16px;
    justify-content: flex-start;
  }

  .interview-others__grid .interview-card {
    flex: 0 0 calc(50% - 8px);
    max-width: none;
  }

  .interview-others__btn {
    margin-top: 64px;
  }

  /* --- Interview Detail: Section Corners --- */
  .interview-main__corner-bl,
  .interview-chat__corner-tr,
  .interview-chat__corner-bl,
  .interview-schedule__corner-tr,
  .interview-schedule__corner-bl,
  .interview-others__corner-tr {
    width: 40px;
    height: 40px;
  }

}
