@charset "UTF-8";
@media screen and (min-width: 992px) {
  .child-fv {
    padding: 5.75rem 0px 3rem;
  }
}

/* サムネイル */
.interview-thumbnail {
  aspect-ratio: 1440/500;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 30px;
}
.interview-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 992px) {
  .interview-thumbnail {
    margin-bottom: 48px;
  }
}

/* サムネイル */
/* インタビュー本文 */
.interview-wrap {
  border-bottom: 1px solid #dcdcdc;
}

.interview-head {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  row-gap: 20px;
}
@media screen and (min-width: 992px) {
  .interview-head {
    grid-template-columns: 50% 50%;
  }
}

.interview-head__figure {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 80px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media screen and (min-width: 992px) {
  .interview-head__figure {
    grid-template-columns: 100px 1fr;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

.interview-face-wrap {
  overflow: hidden;
  border-radius: 50%;
}
.interview-face-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.interview-head__profile-short {
  font-weight: 500;
}

/* インタビュー本文 */
/* 1日のスケジュール例 */
.ttl-pattern-3--interview-schedule {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .ttl-pattern-3--interview-schedule {
    margin-bottom: 28px;
  }
}

.interview-schedule {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 40px 20px 30px;
  position: relative;
  z-index: -10;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .interview-schedule {
    padding: 40px 60px 30px;
  }
}
@media screen and (min-width: 992px) {
  .interview-schedule {
    padding: 50px 82px 22px;
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 992px) {
  .interview-schedule::after {
    content: "";
    display: block;
    width: 50%;
    height: 48px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f8f8f8;
    z-index: 1;
  }
}

.interview-schedule__list {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
@media screen and (min-width: 992px) {
  .interview-schedule__list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 56px;
       -moz-column-gap: 56px;
            column-gap: 56px;
  }
}

.interview-schedule__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* 標準 */
  -webkit-column-break-inside: avoid; /* Safari */
  position: relative;
  padding-bottom: 16px;
}
@media screen and (min-width: 992px) {
  .interview-schedule__item {
    padding-bottom: 23px;
  }
}
.interview-schedule__item::before {
  content: "";
  width: 1px;
  height: 90%;
  background-image: repeating-linear-gradient(180deg, #c2c2c2, #c2c2c2 2px, transparent 2px, transparent 4px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
  position: absolute;
  left: 4.25rem;
  top: 0.9em;
  z-index: -10;
}
@media screen and (min-width: 768px) {
  .interview-schedule__item::before {
    left: 4.3rem;
  }
}
@media screen and (min-width: 992px) {
  .interview-schedule__item::before {
    height: 90%;
    top: 1em;
  }
}
@media screen and (min-width: 1400px) {
  .interview-schedule__item::before {
    height: 83%;
  }
}

.interview-schedule__item:last-child {
  padding-bottom: 0;
}
.interview-schedule__item:last-child::before {
  display: none;
}

.interview-schedule__item-head {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 4em auto 1fr;
}

.interview-schedule__time {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.0625em;
  color: #339599;
  position: relative;
  z-index: 10;
}

.interview-schedule__title-number-dot {
  width: 8px;
  height: 8px;
  position: relative;
  z-index: 10;
  margin-right: 0.6em;
}
@media screen and (min-width: 992px) {
  .interview-schedule__title-number-dot {
    width: 11px;
    height: 11px;
    margin-right: 1em;
  }
}
.interview-schedule__title-number-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #339599;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 992px) {
  .interview-schedule__title-number-dot::after {
    width: 11px;
    height: 11px;
  }
}

.interview-schedule__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #333;
  position: relative;
  z-index: 10;
}

.interview-schedule__detail {
  margin-left: 6em;
  letter-spacing: 0.1em;
  margin-left: 6.2em;
  margin-top: 4px;
  font-size: 0.8571428571rem;
  line-height: 1.75;
}
@media screen and (min-width: 992px) {
  .interview-schedule__detail {
    margin-top: 7px;
    margin-left: 6.6em;
    font-size: 0.875rem;
  }
}

.interview-qa__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 992px) {
  .interview-qa__list {
    gap: 76px;
  }
}

.interview-qa__item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .interview-qa__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 992px) {
  .interview-qa__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.interview-qa__text-wrap {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .interview-qa__text-wrap {
    width: 48.8%;
  }
}

.interview-qa__question {
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #339599;
}

.interview-qa__question-q-mark {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  color: #339599;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 992px) {
  .interview-qa__question-q-mark {
    font-size: 1.25rem;
    margin-right: 0.5em;
  }
}

.interview-qa__answer-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 992px) {
  .interview-qa__answer-title {
    font-size: 1.75rem;
    margin-bottom: 26px;
  }
}

.interview-qa__answer-body {
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.interview-qa__img {
  width: 100%;
  margin-top: 20px;
  aspect-ratio: 5/3;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .interview-qa__img {
    margin-top: 4px;
    width: 46.5%;
  }
}
.interview-qa__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.interview-qa__item:last-child {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .interview-qa__item:last-child {
    gap: 40px;
  }
}

.interview-qa__item:last-child .interview-qa__text-wrap {
  width: 100%;
}

.interview-qa__item:last-child .interview-qa__img {
  margin-top: 0;
  width: 100%;
  aspect-ratio: 1076/388;
  overflow: hidden;
}
.interview-qa__item:last-child .interview-qa__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* 他のインタビュー */
.other-interviews__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 25px;
}
@media screen and (min-width: 768px) {
  .other-interviews__list {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .other-interviews__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.other-interviews__item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.other-interviews__thumb {
  aspect-ratio: 342/259;
  overflow: hidden;
}
.other-interviews__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.other-interviews__meta {
  background-color: #f8f8f8;
  padding: 20px 20px 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .other-interviews__meta {
    padding: 20px 20px 30px 20px;
  }
}

/* その他のインタビュー：タイトルを2行で省略 */
.other-interviews__heading {
  color: #333;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ★ 2行でカット */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4; /* 行間は調整してOK */
  max-height: 2.8em; /* line-height × 2行分 */
  letter-spacing: 0.05em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 992px) {
  .other-interviews__heading {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}

.other-interviews__excerpt {
  color: #333;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.circle-arrow-wrap {
  position: absolute;
  bottom: 20px;
  right: 12px;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .circle-arrow-wrap {
    bottom: 12px;
    right: 6px;
  }
}
@media screen and (min-width: 1200px), print {
  .circle-arrow-wrap {
    bottom: 20px;
    right: 12px;
  }
}

.circle-arrow {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  background: url("../images/common/icon-arrow-green.svg") no-repeat center center/contain;
}

/* 一覧へ戻る */
.btn-standard.removal.btn-standard--other-interviews {
  font-weight: 500;
  letter-spacing: 0.1em;
}