/* ============================================================
   single-interview.css — 合格者対談個別ページ
   V0デザインより変換 / iv- プレフィックス
   ※ ヘッダー・フッターは base.css のみで管理
   ============================================================ */

/* ========================================
   リセット・共通
   ======================================== */
.iv-page {
  background: #f8f6f1;
}

.iv-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.iv-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 8px;
  display: block;
}

.iv-eyebrow--red   { color: #c0392b; }
.iv-eyebrow--light { color: rgba(255,255,255,0.6); }

.iv-section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a2e;
}

.iv-section-title--white { color: #ffffff; }

/* ボタン */
.iv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.iv-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.iv-btn--navy       { background: #1a1a2e; color: #ffffff; }
.iv-btn--red        { background: #c0392b; color: #ffffff; }
.iv-btn--red-large  { background: #c0392b; color: #ffffff; padding: 18px 48px; font-size: 16px; }
.iv-btn--white-line { background: #ffffff; color: #06C755; font-weight: 600; }

/* ========================================
   base.css の body.single-interview 余白リセット
   ======================================== */
body.single-interview .keikyo-interview-header,
body.single-interview .keikyo-interview-site-footer { margin: 0 !important; }

body.single-interview .site-main,
body.single-interview #main {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* ========================================
   1. HERO
   ======================================== */
.iv-hero {
  background: #f7f3ec;
  padding: 80px 0 100px;
}

.iv-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.iv-hero__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 16px;
  display: block;
}

.iv-hero__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.iv-hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  margin-bottom: 24px;
}

.iv-hero__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 32px;
}

.iv-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.iv-hero__scroll {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #999;
}

.iv-hero__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
}

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

.iv-hero__photo--placeholder {
  background: #f4f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
}

.iv-hero__visual { position: relative; }

.iv-hero__info-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #ffffff;
  border-radius: 6px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-width: 260px;
}

.iv-hero__info-card dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 12px;
  font-size: 13px;
}

.iv-hero__info-card dt { color: #888; }
.iv-hero__info-card dd { font-weight: 500; }

@media (max-width: 767px) {
  .iv-hero { padding: 60px 0 80px; }
  .iv-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .iv-hero__info-card { position: static; margin-top: 20px; }
}

/* ========================================
   2 & 9. INLINE CTA（無料相談）
   ======================================== */
.iv-inline-cta {
  background: #1a1a2e;
  padding: 24px 0;
}

.iv-inline-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.iv-inline-cta__text {
  font-size: 15px;
  color: #ffffff;
}

/* LINE CTA */
.iv-inline-cta--line { background: #06C755; }

.iv-inline-cta--line .iv-inline-cta__inner {
  justify-content: space-between;
}

.iv-inline-cta__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.iv-inline-cta__icon { font-size: 32px; }

.iv-inline-cta--line .iv-inline-cta__text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.iv-inline-cta__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 767px) {
  .iv-inline-cta--line .iv-inline-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .iv-inline-cta__left { flex-direction: column; }
}

/* ========================================
   3. CONTENTS
   ======================================== */
.iv-contents {
  background: #f8f6f1;
  padding: 80px 0;
}

.iv-contents__header {
  text-align: center;
  margin-bottom: 48px;
}

.iv-contents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.iv-contents__card {
  background: #ffffff;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}

.iv-contents__card-icon { font-size: 28px; margin-bottom: 12px; color: #c0392b; }
.iv-contents__card-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.iv-contents__card-text { font-size: 13px; color: #666; line-height: 1.7; }

.iv-contents__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.iv-contents__bottom--no-video { grid-template-columns: 1fr; max-width: 560px; }

.iv-contents__video {
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a2e;
}

.iv-contents__video iframe { width: 100%; height: 100%; border: 0; display: block; }

.iv-contents__recommend h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.iv-contents__recommend ul { list-style: none; padding: 0; }
.iv-contents__recommend li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
}
.iv-contents__recommend li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: #c0392b;
  border-radius: 50%;
}

@media (max-width: 1023px) { .iv-contents__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px) {
  .iv-contents__grid { grid-template-columns: 1fr; }
  .iv-contents__bottom { grid-template-columns: 1fr; }
}

/* ========================================
   4. KEY POINTS
   ======================================== */
.iv-keypoints {
  background: #203458;
  padding: 80px 0;
}

.iv-keypoints__header { text-align: center; margin-bottom: 48px; }

.iv-keypoints__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.iv-keypoints__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.iv-keypoints__card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

.iv-keypoints__card-label { font-size: 11px; color: #c0392b; letter-spacing: 0.1em; margin-bottom: 12px; }
.iv-keypoints__card-title { font-size: 18px; font-weight: 600; color: #ffffff; margin-bottom: 12px; }
.iv-keypoints__card-text  { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }

@media (max-width: 767px) { .iv-keypoints__grid { grid-template-columns: 1fr; } }

/* ========================================
   5. PROFILE
   ======================================== */
.iv-profile {
  background: #f8f6f1;
  padding: 80px 0;
}

.iv-profile__header { text-align: center; margin-bottom: 48px; }

.iv-profile__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.iv-profile__photo {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.iv-profile__photo--placeholder {
  background: #f4f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
}

.iv-profile__quote {
  border-left: 3px solid #c0392b;
  padding-left: 16px;
  font-size: 15px;
  font-style: italic;
  color: #555;
  line-height: 1.8;
}

.iv-profile__name     { font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.iv-profile__furigana { font-size: 13px; color: #888; margin-bottom: 24px; }

.iv-profile__table { margin-bottom: 24px; }
.iv-profile__table dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 16px;
  font-size: 14px;
}
.iv-profile__table dt { color: #888; }
.iv-profile__table dd { font-weight: 500; }

.iv-profile__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.iv-profile__chip {
  background: #1a1a2e;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 3px;
}

@media (max-width: 767px) { .iv-profile__inner { grid-template-columns: 1fr; } }

/* ========================================
   7. ARTICLE BODY
   ======================================== */
.iv-article-body {
  background: #f8f6f1;
  padding: 80px 0;
}

.iv-article-body__header { text-align: center; margin-bottom: 48px; }

.iv-article-body__content {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.iv-article-body__content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  border-left: 4px solid #c0392b;
  padding-left: 16px;
  margin: 40px 0 20px;
  line-height: 1.5;
}

.iv-article-body__content h2:first-child { margin-top: 0; }

.iv-article-body__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 32px 0 16px;
}

.iv-article-body__content p {
  font-size: 15px;
  line-height: 2.0;
  color: rgba(26,26,46,0.85);
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .iv-article-body__content { padding: 32px 24px; }
}

/* ========================================
   8. STORY TIMELINE
   ======================================== */
.iv-timeline {
  background: #f8f6f1;
  padding: 80px 0;
}

.iv-timeline__header { text-align: center; margin-bottom: 48px; }

.iv-timeline__track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.iv-timeline__track::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.1);
  transform: translateX(-50%);
}

.iv-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.iv-timeline__item:nth-child(odd) .iv-timeline__card  { grid-column: 1; text-align: right; }
.iv-timeline__item:nth-child(even) .iv-timeline__card { grid-column: 2; }

.iv-timeline__item::before {
  content: '';
  position: absolute;
  left: 50%; top: 20px;
  width: 14px; height: 14px;
  background: #c0392b;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.iv-timeline__card {
  background: #ffffff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.iv-timeline__badge {
  display: inline-block;
  background: #c0392b;
  color: #ffffff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.iv-timeline__period { font-size: 12px; color: #888; margin-bottom: 8px; }
.iv-timeline__title  { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.iv-timeline__text   { font-size: 14px; color: #666; line-height: 1.7; }

@media (max-width: 767px) {
  .iv-timeline__track::before { left: 20px; }
  .iv-timeline__item { grid-template-columns: 1fr; padding-left: 50px; }
  .iv-timeline__item::before { left: 20px; }
  .iv-timeline__item:nth-child(odd) .iv-timeline__card,
  .iv-timeline__item:nth-child(even) .iv-timeline__card { grid-column: 1; text-align: left; }
}

/* ========================================
   10. MESSAGE
   ======================================== */
.iv-message {
  background: #f8f6f1;
  padding: 80px 0;
}

.iv-message__header { text-align: center; margin-bottom: 48px; }

.iv-message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.iv-message__video {
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a2e;
}

.iv-message__video iframe { width: 100%; height: 100%; border: 0; display: block; }

.iv-message__video--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.iv-message__profile { display: flex; gap: 20px; margin-bottom: 20px; align-items: center; }

.iv-message__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.iv-message__photo--placeholder {
  background: #f4f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 10px;
}

.iv-message__name  { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.iv-message__role  { font-size: 13px; color: #888; }
.iv-message__bio   { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 20px; }
.iv-message__list-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }

.iv-message__list { list-style: none; padding: 0; }
.iv-message__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
}
.iv-message__list li::before { content: '✓'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

.iv-message__cta { text-align: center; margin-top: 48px; }

@media (max-width: 767px) { .iv-message__inner { grid-template-columns: 1fr; } }

/* ========================================
   11. FINAL CTA
   ======================================== */
.iv-final-cta {
  background: #203458;
  padding: 100px 0;
  text-align: center;
}

.iv-final-cta__line { width: 40px; height: 2px; background: #c0392b; margin: 0 auto 16px; }
.iv-final-cta__title { font-size: clamp(24px,4vw,36px); font-weight: 700; color: #ffffff; margin-bottom: 16px; }
.iv-final-cta__text  {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 32px;
  max-width: 600px;
}

.iv-final-cta__benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.iv-final-cta__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.iv-final-cta__benefit::before { content: '✓'; color: #c0392b; font-weight: 700; }

.iv-final-cta__note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 20px; }

/* ========================================
   アクセシビリティ
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .iv-btn { transition: none !important; }
}
:focus-visible { outline: 2px solid #c0392b; outline-offset: 3px; }
