/* ブログ・インタビュー記事専用スタイル */

/* インタビューコンテンツ */
.interview-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.interview-content h3 {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 80px 0 50px;
  padding-left: 20px;
  border-left: 5px solid #4cc2a8;
  color: #333;
  line-height: 1.5;
  text-align: left;
}

.interview-content h4 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 60px 0 40px;
  color: #333;
  line-height: 1.5;
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.interview-content p {
  margin-bottom: 28px;
  line-height: 1.9;
  font-size: 1.7rem;
  color: #333;
}

/* スピーカー（話者）スタイル */
.interview-content .speaker {
  font-weight: bold;
  margin-right: 12px;
  border: 1px solid #333;
  padding: 2px 6px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0.7;
  vertical-align: middle;
  font-size: 1.4rem;
  height: 22px;
  min-width: 40px;
}

.speaker-kurita {
  color: #4cc2a8;
  border-color: #333;
}

.speaker-koike {
  color: #2e7cd6;
  border-color: #333;
}

.speaker-tachiki {
  color: #666;
  border-color: #333;
}

/* プロフィールセクション */
.profile-section {
  padding: 40px 0;
  margin: 50px 0;
}

.profile-section h3 {
  font-size: 2.4rem;
  margin-bottom: 35px;
  color: #333;
  border-bottom: 2px solid #4cc2a8;
  padding-bottom: 12px;
  border-left: none !important;
  padding-left: 0 !important;
}

.profile-container {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.profile-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.profile-img {
  width: 180px !important;
  height: 180px !important;
  object-fit: cover;
  border: 1px solid #ddd;
  flex-shrink: 0;
  aspect-ratio: 1 / 1 !important;
}

.profile-text {
  flex: 1;
}

.profile-name {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #333;
}

.profile-role {
  color: #666;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.profile-bio {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.7;
}

/* リード文 */
.lead-text {
  background: #f9f9f9;
  padding: 30px;
  margin: 40px 0;
  border: 2px solid #999;
  font-size: 1.7rem;
  line-height: 1.8;
}

/* 目次セクション */
.toc-section {
  background: #fff;
  border: 2px solid #4cc2a8;
  padding: 30px;
  margin: 40px 0;
}

.toc-section h4 {
  color: #4cc2a8;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 2rem;
}

.toc-section ul {
  list-style: none;
  padding: 0;
}

.toc-section li {
  padding: 12px 0 12px 25px;
  border-bottom: 1px solid #eee;
  font-size: 1.6rem;
  position: relative;
}

.toc-section li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #4cc2a8;
}

.toc-section li:last-child {
  border-bottom: none;
}

.toc-section a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.toc-section a:hover {
  color: #4cc2a8;
}

/* セクション分割線 */
.section-divider {
  text-align: center;
  margin: 60px 0 40px;
  padding: 20px 0;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  font-size: 2rem;
  font-weight: bold;
  color: #4cc2a8;
}

/* 次回・前回リンク */
.next-link, .prev-link {
  text-align: center;
  margin: 60px 0;
  padding: 35px;
  background: #f9f9f9;
}

.next-link .more-button span,
.prev-link .more-button span {
  border: none !important;
}

.next-link p,
.prev-link p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.6rem;
  line-height: 1.7;
}

/* インフォボックス */
.info-box {
  background: rgba(76, 194, 168, 0.1);
  border-left: 4px solid #4cc2a8;
  padding: 15px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: #555;
}

/* 画像関連 */
.img {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.img img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block !important;
}

.content-image {
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.content-image img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 2 !important;
  object-fit: cover !important;
  background-color: #f0f0f0;
  margin-bottom: 10px;
  display: block !important;
}

.content-image .image-caption {
  font-size: 1.2rem !important;
  color: #999 !important;
  margin-top: 3px;
  margin-bottom: 0;
  font-style: italic;
}

/* ポートレート画像 */
.content-image-portrait {
  max-width: 500px !important;
  margin: 30px auto;
  position: relative !important;
}

.content-image-portrait .image-container {
  width: 100%;
  aspect-ratio: 2 / 3 !important;
  overflow: hidden !important;
  position: relative !important;
  background-color: #f0f0f0;
}

.content-image-portrait img {
  width: 100% !important;
  height: auto !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .interview-content h3 {
    margin: 60px 20px 40px;
    padding-left: 15px;
    font-size: 2.4rem;
  }
  
  .interview-content h4 {
    margin: 50px 20px 35px;
    font-size: 2rem;
  }
  
  .interview-content p {
    margin: 0 20px 20px;
    line-height: 1.8;
    font-size: 1.6rem;
  }
  
  .interview-content .speaker {
    font-size: 1.3rem;
    padding: 2px 6px 0;
    min-height: 18px;
  }
  
  .profile-section {
    margin: 40px 20px;
    padding: 30px 0;
  }
  
  .profile-container {
    flex-direction: column;
    gap: 35px;
  }
  
  .profile-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }
  
  .profile-img {
    width: 120px !important;
    height: 120px !important;
  }
  
  .profile-name {
    font-size: 1.6rem;
  }
  
  .profile-role {
    font-size: 1.3rem;
  }
  
  .profile-bio {
    font-size: 1.2rem;
  }
  
  .lead-text {
    margin: 30px 20px;
    padding: 25px;
    font-size: 1.6rem;
  }
  
  .toc-section {
    margin: 30px 20px;
    padding: 25px;
  }
  
  .toc-section h4 {
    font-size: 1.8rem;
  }
  
  .toc-section li {
    padding: 10px 0;
    font-size: 1.5rem;
  }
  
  .next-link,
  .prev-link {
    margin: 40px 20px;
    padding: 25px;
  }
  
  .info-box {
    margin: 20px;
  }
}