@charset "UTF-8";
/* -----------------------------------
   interview base
----------------------------------- */
.interview {
  width: 100%;
  margin: 60px auto 0;
}

@media (min-width: 1024px) {
  .interview {
    margin: 100px auto 0;
  }
}


/* -----------------------------------
    Profile area
----------------------------------- */
.interview__profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 74px;
}

.interview__profile-img-wrap {
  position: relative;
  width: 100%;
}

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

.interview__profile-logo {
  position: absolute;
  right: 15px;
  width: 35px;
  height: auto;
  z-index: 2;
}

/* ボックス */
.interview__profile-box {
  width: 100%;
  border-radius: 15px;
  border: 1.5px solid #004397;
  background: #E8F9FF;
  padding: 20px 25px;
  position: relative;
}

@media (min-width: 1024px) {
  .interview__profile {
    position: relative;
    display: block;
    margin-bottom: 0;
  }

  .interview__profile-img-wrap {
    width: 100%;
    max-width: 900px;
    margin-bottom: 160px;
  }

  .interview__profile-logo {
    width: 45px;
  }

  .interview__profile-box {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 400px;
  }
}

/* 店舗名 */
.interview__profile-shop {
  position: relative;
  padding-left: 32px;
  color: #074684;
  font-family: var(--font-family-ja);
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.48px;
}

.interview__profile-shop::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.26em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* 役職 */
.interview__profile-position {
  color: #074684;
  font-family: var(--font-family-ja);
  font-size: 16px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0.36px;
  margin-top: 16px;
}

/* -----------------------------------
    Q&A
----------------------------------- */
.interview__qa {}

.interview__qa-item {
  margin-bottom: 50px;
}

/* “Q.” */
/* Q と 質問タイトルを横並び */
.interview__qa-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

/* Q. */
.interview__qa-label {
  font-family: "Josefin Sans";
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.8px;
  background: linear-gradient(90deg, #29c5f1, #004397);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0; /* flex用にリセット */
}

/* 質問タイトル */
.interview__qa-question {
  color: #004397;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.68px;
  margin: 0;
  flex: 1; /* 横幅は残りを使う */
}


/* 回答テキスト */
.interview__qa-answer {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.3px;
  color: #074684;
}

/* 途中に挿入される画像 */
.interview__image {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 60px auto;
  border-radius: 10px;
}

.interview__btn-wrap {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .interview__qa-question {
    font-size: 24px;
  }
}


/* -----------------------------------
    インタビュー一覧
----------------------------------- */

/* グリッド配置 */
.interview-cards {
  display: grid;
  gap: 30px;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1770px;
  margin: 0 auto;
}

/* タブレット：2列 */
@media (max-width: 1024px) {
  .interview-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SP:1列 */
@media (max-width: 768px) {
  .interview-cards {
    grid-template-columns: 1fr;
    max-width: 370px;
  }
}

/* カード本体 */
.interview-card {
  width: 100%;
  max-width: 570px;
  background: #FFF;
  border: 2px solid #D7DDE4;
  position: relative;
  padding-top: 16px;
  padding-bottom: 70px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .interview-card {
    padding-top: 0;
    padding-bottom: 34px;
  }
}

/* グラデ影 */
.interview-card__shadow {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  max-width: 570px;
  opacity: 0.8;
  background: linear-gradient(90deg, #29CDFC 0%, #004397 100%);
  z-index: -1;
}

/* 本文 */
.interview-card__body {
  padding: 0 26px;
}

/* 職種 */
.interview-card__job {
  color: #004397;
  font-family: var(--font-family-ja);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 1.44px;
  text-align: center;
  margin-bottom: 24px;
}

/* 画像枠 */
.interview-card__thumb-wrap {
  width: 100%;
  max-width: 489px;
  height: 307px;
  margin: 0 auto 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 画像 */
.interview-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 説明文 */
.interview-card__desc {
  color: #074684;
  font-family: var(--font-family-ja);
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.36px;
  margin-bottom: 22px;
}

/* ボタン */
.interview-card__btn-wrap {
  text-align: center;
}