/* ===============================================
   People Page (Interview List) Styles
   =============================================== */

/* グラデーション定義 */
.gradient-text {
  background: var(--rfa-color-bule01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.people-main {
  position: relative;
  background: #fff;
}
.people-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1306px;
  height: 1200px;
  background: var(--rfa-color-strong02);
  z-index: 0;
  pointer-events: none;
  /* HTML: <div class="triangle"></div> */
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
/* ===============================================
   メインビジュアル
   =============================================== */
.people-mv {
  position: relative;
  padding: 120px 0 60px;
}


.people-mv__inner {
  position: relative;
  width: 84%;
  max-width: 1080px;
  margin: 0 auto;
  z-index: 2;
}

/* ===============================================
   Section共通
   =============================================== */
.section-heading {
}

.section-heading__en {
  font-family: 'RFA Gothic Std', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}

.section-heading__ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #fff;
}

/* ===============================================
   インタビュー一覧セクション
   =============================================== */
.interview-list-section {
  position: relative;
  padding: 0 0 100px;
}

.interview-list-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 85%;
  background: #fff;
  padding: 24px;
}

/* インタビューグリッド */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* インタビューカード */
.interview-card {
  position: relative;
  background: #fff;
  transition: transform 0.3s ease;
}


.interview-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* カード画像 */
.interview-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.interview-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.interview-card:hover .interview-card__image img {
  transform: scale(1.05);
}

/* プレースホルダー */
.interview-card__image--placeholder {
  background: #d9d9d9;
}

.placeholder-bg {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
}

/* カードコンテンツ */
.interview-card__content {
  padding: 0;
}

/* キャッチコピー */
.interview-card__catch {
  margin-top: -3rem;
  position: relative;

}

.interview-card__catch-line {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1.6px;
  margin: 0;
  padding: 8px 20px;
  letter-spacing: 2.6px;
  background: #fff;
  display: inline-block;
}

.interview-card__catch-line:last-child {
  margin-bottom: 0;
}

.interview-card__catch-line--dark {
  background: linear-gradient(to right, #295D7E, #43506E 66%, #5D435E);
  color: #fff;
  padding: 8px 20px;
  margin: 0;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* カード情報 */
.interview-card__info {
  padding: 16px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.interview-card__department {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.6px;
  color: #272222;
  margin: 0;
  padding-left: 3px;
}

.interview-card__position {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.6px;
  color: #272222;
  margin: 0;
  padding-left: 3px;
}

.footer {
  margin: 178px 0 0 0;
}

/* ===============================================
   レスポンシブ
   =============================================== */

/* タブレット */
@media screen and (max-width: 1024px) {

  .people-main {
    overflow: hidden;
  }
  .people-mv__inner {
    padding: 0;
  }
  .interview-list-section {
    padding: 0 0 50px;
  }
  .interview-list-section__inner {
    padding: 30px;
  }

  .interview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom :0;
  }


}

/* スマートフォン */
@media screen and (max-width: 768px) {

  .people-main::before {
    width: 495px;
    height: 464px;
  }
  .people-mv {
    padding: 80px 0 40px;
  }

  .people-mv::before {
    top: 150px;
    width: 100%;
    height: 800px;
  }

  .people-mv__inner {
    padding: 0 30px;
  }
  .interview-list-section__inner {
    width: 78%;
    padding: 20px;
  }

  .section-heading__en {
    font-size: 14px;
  }

  .section-heading__ja {
    font-size: 28px;
    line-height: 32px;
  }

  .interview-list-section {
    padding: 0 0 60px;
  }

  .interview-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 0;
  }

  .interview-card__catch-line {
    font-size: 18px;
    line-height: 28px;
    padding: 5px 12px;
  }

  .interview-card__catch-line--dark {
    padding: 6px 16px;
    margin: 0;
  }

  .interview-card__info {
    padding: 12px 0 8px 0;
  }

  .interview-card__department,
  .interview-card__position {
    font-size: 12px;
    line-height: 18px;
    padding-left: 0;
  }

}

/* 極小画面 */
@media screen and (max-width: 375px) {
  .people-mv__inner {
    padding: 0 20px;
  }
  .interview-list-section__inner {
    padding: 20px;
  }
  .interview-card__catch {
    margin-top: -2rem;
  }

  .interview-card__catch-line {
    font-size: 12px;
    line-height: 24px;
  }

  .interview-card__catch-line--dark {
    padding: 5px 12px;
  }

}



/* ===============================================
   Interview Detail Page Styles
   =============================================== */

/* メインコンテナ */
.interview-detail {
  position: relative;
  background: #fff;
}
.interview-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55.0625rem;
  height: 50.625rem;
  background: var(--rfa-color-strong02);
  z-index: 0;
  pointer-events: none;
  /* HTML: <div class="triangle"></div> */
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
/* ===============================================
   メインビジュアル（Hero）
   =============================================== */
.interview-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.interview-hero__inner {
  position: relative;
  width: 84%;
  height: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 3rem;
}

.interview-hero__image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
    overflow: hidden;
}

.interview-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 160px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.interview-hero__profile {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ADADAD;
}

.interview-hero__label {
  line-height: 2rem;
  display: inline-block;
}
.interview-hero__label p {
    color: #000;
      font-size: 1.125rem;
        font-weight: 500;
}
.interview-hero__name {
  font-size: 2.75rem;
  font-weight: 500;
  color: #000;
}


/* ===============================================
   キャッチコピー
   =============================================== */
.interview-catch {
  padding: 0;
  margin-top: -3.6rem;
  margin: -3.6rem auto 2.1rem;
  position: relative;
}

.interview-catch__inner {
  margin: 0 auto;
}

.interview-catch__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 2.4px;
  color: #272222;
  margin: 0;
}
.interview-catch-line {
  font-size: 1.782rem;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1.6px;
  margin: 0;
  padding: 0.81rem 1.62rem;
  letter-spacing: 0.12963rem;
  background: #fff;
  display: inline-block;
}
.interview-catch-line--dark {
    background: linear-gradient(to right, #295D7E, #43506E 66%, #5D435E);
    color: #fff;

    margin: 0;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}
/* ===============================================
   インタビュー本文
   =============================================== */
.interview-content {
  padding: 0 0 50px;
  background: #fff;
}

.interview-content__inner {
  max-width: 960px;
  margin: 0 auto;
  width: 84%;
}

/* Q&Aセクション */
.interview-qa {
  margin-bottom: 3.75rem;
  position: relative;
}

.interview-qa__question {

  margin-bottom: 1.88rem;
}

.interview-qa__question .gradient-bg {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 1.6px;
  color: #fff;
  background: linear-gradient(to right, #295D7E, #43506E 66%, #5D435E);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1.25rem;
}


.interview-qa__question h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.6px;
  color: #272222;
  margin: 8px 0 0 0;
  display: inline;
}


.interview-qa__answer p {
  font-size: 1.125rem;

  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  color: #000;
}

.interview-qa__answer p:last-child {
  margin-bottom: 0;
}
.interview-qa__answer dl {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  color: #000;
}
.interview-qa__answer dl:last-child {
  margin-bottom: 0;
}
.interview-qa__answer dt {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* 画像挿入 */
.interview-image {
  margin-bottom: 60px;
border-radius: 10px;
  overflow: hidden;
}

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

/* ===============================================
   関連インタビュー
   =============================================== */
.related-interviews {
  padding: 80px 0 100px;
  background: #f8f8f8;
}

.related-interviews__inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 85%;
}

.related-interviews__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 2.4px;
  text-align: center;
  margin: 0 0 60px 0;
}

.related-interviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.pagination-content {
  text-align: center;
    margin: 0 auto 5.69rem;
}
.pagination-content__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-home {

}
.pagination-home a {
  display: flex;
  width: 15rem;
  height: 4.375rem;
  padding: 1.1875rem 3.09375rem;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  border: 1px solid #3C3C3C;
  background: #000;
  box-sizing: border-box;
  color: #fff;
}
/* 関連インタビューカードは people.css のスタイルを継承 */


/* ===============================================
   レスポンシブ対応
   =============================================== */

/* タブレット */
@media screen and (max-width: 1024px) {


  .interview-hero__name {
    font-size: 40px;
    line-height: 48px;
  }

  .interview-catch__title {
    font-size: 28px;
    line-height: 44px;
  }

  .interview-content {
    padding: 0 0 80px;
  }

  .interview-qa {
    margin-bottom: 50px;
  }

  .interview-image {
    margin-bottom: 50px;
  }

  .related-interviews {
    padding: 60px 0 80px;
  }

  .related-interviews__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .related-interviews__grid {
    gap: 30px;
  }

  .interview-cta {
    padding: 60px 0;
  }

  .interview-cta__title {
    font-size: 32px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1306px) {
  .interview-detail {
      overflow: hidden;
    }
}
/* スマートフォン */
@media screen and (max-width: 768px) {

  .interview-detail::before {
    width: 30.9375rem;
    height: 29rem;
  }
  .interview-hero__inner {
    width: 90%;
    padding-top: 1rem;
  }
  .interview-hero__profile {
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .interview-hero__label p {
    font-size: 0.875rem;
      font-weight: 400;
  }
  .interview-hero__name {
    font-size: 2rem;
    line-height: 40px;
    letter-spacing: 1.6px;
    text-align: right;
  }

  .interview-hero__position {
    font-size: 14px;
    line-height: 20px;
  }

  .interview-catch-line {
    font-size: 1.125rem;
    padding: 0.39rem 0.78rem;
  }


  .interview-content {
    padding: 0 0 20px;
  }
  .interview-content__inner {
    width: 90%;
  }
  .interview-qa {
    margin-bottom: 40px;
  }

  .interview-qa__label {
    font-size: 20px;
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .interview-qa__question h3 {
    letter-spacing: 1.2px;
  }

  .interview-qa__answer {
    padding-left: 0;
    margin-top: 16px;
  }

  .interview-qa__answer p {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }
  .interview-qa__answer dl {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }
  .interview-image {
    margin-bottom: 40px;
  }

  .related-interviews {
    padding: 40px 0 60px;
  }

  .related-interviews__inner {
    width: 90%;
  }

  .related-interviews__title {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .related-interviews__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .interview-cta {
    padding: 40px 0;
  }

  .interview-cta__title {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 1.6px;
    margin-bottom: 30px;
  }

  .interview-cta__button {
    font-size: 18px;
    padding: 14px 36px;
    gap: 8px;
  }
    .pagination-home a {
      padding: 0.94994rem 2.05006rem 0.92506rem 2.07494rem;
      width: 12rem;
      height: 3.5rem;
    }
  .sp-only {
    display: inline;
  }
}

/* PC表示時は改行を非表示 */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

/* 極小画面 */
@media screen and (max-width: 375px) {

  .interview-hero__overlay {
    padding: 20px;
  }

  .interview-catch {
    margin: -2.6rem auto 1.1rem;
  }
  .interview-catch__title {
    font-size: 20px;
    line-height: 32px;
  }

  .interview-qa__question .gradient-bg {
    letter-spacing: 0;
  }

  .interview-qa__answer p {
    font-size: 13px;
    line-height: 26px;
  }
  .interview-qa__answer dl {
    font-size: 13px;
      line-height: 26px;
  }
  .related-interviews__title {
    font-size: 20px;
    line-height: 32px;
  }

  .interview-cta__title {
    font-size: 22px;
    line-height: 32px;
  }

  .interview-cta__button {
    font-size: 16px;
    padding: 12px 30px;
  }
    .pagination-content {
      margin: 0 auto 2.69rem;
    }
.footer {
  margin: 113px 0 0 0;
}
}

/******************
* CEO message
*******************/
.interview-detail.ceo-message::before {
  width: 1306px;
  height: 1200px;
}
.interview-hero .section-heading {
  width: 84%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .interview-hero .section-heading {
    width: 90%;
  }
  .interview-hero .section-heading .section-heading__ja {
    font-size: 1.5rem;
  }
}
