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

.interview-hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.interview-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.interview-hero-overlay {
  position: absolute;
  top: 30%;
  left: 1%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding: 80px 60px;
}

.interview-hero-text {
  max-width: 600px;
}

.interview-hero-quote {
  font-size: 32px;
  color: #222;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Responsive - Interview Hero */
@media (max-width: 768px) {
  .interview-hero-section {
    height: 400px;
  }

  .interview-hero-overlay {
    padding: 40px 24px;
    top: 5%;
  }

  .interview-hero-quote {
    font-size: 16px;
    line-height: 1.5;
    writing-mode: vertical-lr;
  }
}

/* Interview Main Content */
.interview-main {
  background-color: #fff;
  padding: 80px 0 100px;
}

.interview-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  padding: 0 100px;
  display: grid;
  grid-template-columns: 280px 1fr;
  /* gap: 80px; */
  justify-items: end;
}

/* Sidebar */
.interview-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.interview-profile {
  margin-bottom: 40px;
}

.interview-profile-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
  
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.interview-profile-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  
  font-size: 13px;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.interview-profile-detail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  
  font-size: 13px;
  color: #222;
  margin: 0;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.interview-career-section {
  padding-top: 40px;
  border-top: 0px solid #d8d8d0;
}

.interview-career-title {
  font-family: "helvetica-now-display", "Helvetica Now", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px 0;
  letter-spacing: 0.1em;
}

.interview-career-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  
  font-size: 13px;
  color: #222;
  line-height: 2;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Main Content */
.interview-content {
  max-width: 720px;
}

.interview-section {
  margin-bottom: 60px;
}

.interview-section-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  
  font-size: 22px;
  color: #222;
  margin: 0 0 24px 0;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.interview-section-text {
  font-size: 15px;
  color: #222;
  line-height: 2;
  letter-spacing: 0.02em;
  margin: 0 0 20px 0;
  
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.interview-section-text:last-child {
  margin-bottom: 0;
}

.interview-image-container {
  width: 100%;
  margin: 60px 0;
}

.interview-content-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive - Interview Content */
@media (max-width: 1024px) {
  .interview-container {
    grid-template-columns: 240px 1fr;
    gap: 60px;
  }
}

/* Related Interview - Carousel */
.related-interview-section {
  background-color: #fff;
  padding: 100px 0 140px;
  border-top: 1px solid #e8e8e0;
}

.related-interview-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0; /* フルブリード */
}

.related-interview-title {
  font-size: 16px;
  color: #222;
  letter-spacing: 0.08em;
  margin: 0 0 24px 0;
  text-align: center; /* 中央寄せ */
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  width: 100vw; /* 画面幅いっぱい */
  margin-left: 50%;
  transform: translateX(-50%);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(50vw, 800px); /* 中央1枚 + 前後0.5ずつ見える */
  gap: 0;
  will-change: transform;
  transition: transform 600ms ease;
}

.carousel-slide {
  list-style: none;
}

.related-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.related-image,
.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  text-align: center;
  pointer-events: none; /* 画像全体をクリック可能に */
}

.related-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-size: 18px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
}

.related-name {
  position: absolute;
  bottom: 56px; /* 名前を少し上に */
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #fff;
  margin: 0 0 6px 0;
}

.related-meta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8c8c8;
  border: none;
  padding: 0;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #222;
}

@media (max-width: 768px) {
  .related-interview-section {
    padding: 60px 0 80px;
  }
  .carousel-dots {
    margin-top: 16px;
  }
  .carousel-track {
    grid-auto-columns: 80vw; /* モバイルは少し覗かせる程度 */
  }
}

@media (max-width: 768px) {
  .interview-main {
    padding: 60px 0 80px;
  }

  .interview-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .interview-sidebar {
    position: static;
    border-bottom: 1px solid #999;
    padding-bottom: 2em;
  }

.interview-career-section {
  padding-top: 0px;
}

  .interview-profile-name {
    font-size: 18px;
  }

  .interview-section {
    margin-bottom: 40px;
  }

  .interview-section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .interview-section-text {
    font-size: 14px;
    line-height: 1.9;
  }

  .interview-image-container {
    margin: 40px 0;
  }
}

.related-card .related-overlay {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.related-card:hover .related-overlay {
  opacity: 1;
}
.related-card img {
  filter: sepia(0) contrast(100%) brightness(100%) hue-rotate(0deg);
  transition: filter 0.2s ease-in-out;
}
.related-card:hover img {
  filter: sepia(1) contrast(90%) brightness(50%) hue-rotate(-10deg);
}



