@charset "UTF-8";
/**
 * インタビュー記事（single interview）専用スタイル
 * single-interview.php 用
 */
main {
  padding-bottom: 300px;
}

/* 下部スライダー：タイトル・装飾なし、上余白を詰める */
section#interview .center {
  padding-top: 80px;
}
@media (max-width: 870px) {
  section#interview .interview-pc .interview-list a.interview-item .img {
    aspect-ratio: 280/160 !important;
    border-radius: 20px;
    overflow: hidden;
  }
}
@media (max-width: 870px) {
  section#interview .interview-pc .interview-list a.interview-item .text {
    position: relative !important;
  }
}
@media (max-width: 870px) {
  section#interview .interview-pc .swiper-controll {
    padding-right: 20px;
  }
}
section#interview .interview-more-section {
  padding-top: 60px;
}
@media (max-width: 870px) {
  section#interview .interview-more-section {
    padding-top: 40px;
  }
}
section#interview {
  /* single-interview：SPでもスライダー表示（縦並びにしない） */
}
@media (max-width: 870px) {
  section#interview.interview-more-section .interview-pc {
    display: block;
  }
}

a.return-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
a.return-btn .circle {
  width: 33px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #0F1A45;
  border-radius: 50%;
  display: block;
  position: relative;
}
a.return-btn .circle::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-left: 2px solid #0F1A45;
  border-bottom: 2px solid #0F1A45;
  transform: translate(-55%, -50%) rotate(45deg);
  top: 50%;
  left: 18px;
}

header.interview-header {
  position: relative;
}
@media (max-width: 870px) {
  header.interview-header {
    margin-bottom: 20px;
  }
}
header.interview-header .interview-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header.interview-header .title-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 160px;
  padding: 20px 20px 10px 10px;
  font-size: 22px;
  background-color: #fff;
  font-weight: bold;
  border-radius: 0 20px 0 0;
  color: #0F1A45;
}
@media (max-width: 870px) {
  header.interview-header .title-wrapper {
    position: relative;
    background: none;
    padding: 0;
    font-size: 16px;
  }
}

.interview-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 20px;
}

.interview-article .interview-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
}
.interview-article .interview-president-link a {
  color: #0F1A45;
  text-decoration: none;
  font-weight: bold;
}
.interview-article .interview-president-link a:hover {
  opacity: 0.85;
}
.interview-article .interview-thumbnail {
  margin-bottom: 40px;
}
@media (max-width: 870px) {
  .interview-article .interview-thumbnail {
    margin-bottom: 20px;
  }
}
.interview-article .interview-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.interview-article .interview-body {
  line-height: 1.8;
  font-size: 15px;
  color: #0F1A45;
  margin-bottom: 60px;
  font-weight: normal;
}
.interview-article .interview-body h2, .interview-article .interview-body h3, .interview-article .interview-body h4, .interview-article .interview-body h5, .interview-article .interview-body h6 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
.interview-article .interview-body p {
  margin-bottom: 1.5em;
}
.interview-article .interview-footer-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.btn-president-profile {
  display: inline-block;
  padding: 15px 40px;
  background-color: #0F1A45;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: opacity 0.3s;
}
.btn-president-profile:hover {
  opacity: 0.9;
}

/* インタビュー単体ページのヘッダー */