/* =========== 社員インタビュー =========== */
.interview-container {
  margin: 60px auto;
}

.interview-container {
max-width: 900px;
}

.interview-container h2 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 30px;
  padding-left: 10px;
  border-left: 6px solid #5372b3;
}

/* メイン画像エリア */
.hero-area {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  /* 角丸(bdrs)を不要のため削除 */
}

/* 画像上のプロフィール：視認性を大幅改善 */
.hero-profile {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  color: #fff;
  padding: 15px 120px 15px 20px;
  backdrop-filter: blur(4px);
}

.corp-name, .post-name {
  font-size: 0.8em;
  font-weight: bold;
  margin: 0;
}

.staff-name {
  font-size: 1.5em;
  color: #fff;
  margin: 8px 0 0;
  letter-spacing: 0.1em;
  display: inline-block;
}

/* レイアウトグループ */
.interview-layout-group {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.text-main {
  flex: 1;
}

/* 質問タイトル：色を濃く、サイズを調整 */
.q-title {
  margin-top: 0;
  font-size: 1.4em;
  line-height: 1.5;
  color: #5372b3;
  font-weight: bold;
  margin-bottom: 0.5em;
  display: flex;
}

.q-title::before {
  content: "■";
  margin-right: 10px;
}

/* 本文：文字サイズを大きく、行間を広く */
.a-body {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 40px;
  text-align: justify;
}

/* 動画エリア */
.video-aside {
  width: 320px;
}

.interview-container .fluid-width-video-wrapper {
  padding-top: 0 !important;
  position: static !important;
}

.yt-container iframe {
  position: static !important;
  width: 100vw !important;
  max-width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* スマホ表示 */
@media (max-width: 767px) {

  .interview-container h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  
  .interview-layout-group {
    flex-direction: column;
    gap: 0;
  }
  
  .text-main {
    position: relative;
    order: 2;
  }
  .q-title {
    font-size: 1.2em;
  }
  .q-title::before {
    margin-right: 5px;
  }
  .a-body {
    margin-bottom: 20px;
  }
  
  .video-aside {
    display: contents;
  }
  .hero-area {
    margin-bottom: 20px;
    position: relative;
    order: 1;
  }
  .hero-profile {
    padding: 20px;
  }
  .yt-container {
    position: relative;
    order: 3;
  }
}