@charset "UTF-8";
/* CSS Document */

/* =================================
interview-list
================================= */

.interview-list__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}
.interview-list__item {
  width: calc((100% - 40px) / 3);
}
.interview-card {
  display: block;
  position: relative;
  color: #fff;
  background: #000;
}
.interview-card__img {
  position: relative;
}
.interview-card__img img {
  aspect-ratio: 387 / 521;
  object-fit: cover;
}
.interview-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, .92) 0%,
    rgba(0, 0, 0, .72) 26%,
    rgba(0, 0, 0, .18) 56%,
    rgba(0, 0, 0, 0) 76%
  );
}
.interview-card__catch {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
}
.interview-card__bottom {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.interview-card__name {
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.interview-card__meta {
  font-size: 1.3rem;
  line-height: 1.5;
}
.interview-card__meta + .interview-card__meta {
  margin-top: 2px;
}

@media screen and (max-width: 930px) {
  .interview-list {
    padding: 60px 0;
  }
  .interview-list__items {
    gap: 30px 20px;
  }
  .interview-list__item {
    width: calc((100% - 20px) / 2);
  }
  .interview-card__body {
    padding: 0 14px 14px;
  }
  .interview-card__catch {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .interview-card__bottom {
    gap: 12px;
  }
  .interview-card__name {
    font-size: 4.2rem;
  }
  .interview-card__meta {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 540px) {
  .interview-list {
    padding: 20px 0;
  }
  .interview-list__items {
    gap: 20px;
  }
  .interview-list__item {
    width: 100%;
    max-width: 500px;
  }
  .interview-card__img {
    max-width: 500px;
  }
  .interview-card__body {
    padding: 0 16px 16px;
  }
  .interview-card__catch {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
  .interview-card__name {
    font-size: 4.6rem;
  }
  .interview-card__meta {
    font-size: 1.3rem;
  }
}


/* =================================
interview-mv
================================= */

.interview-mv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.interview-mv__content {
  flex: 1;
}
.interview-mv__catch {
  color: #2aaae2;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.6;
  font-size: 3.2rem;
  letter-spacing: -0.15rem;
}
.interview-mv__catch::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background: #d0b57f;
  margin-top: 30px;
}
.interview-mv__name {
  font-family: "Noto Serif JP", serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 32px;
}
.interview-mv__meta {
  margin-top: 24px;
}
.interview-mv__meta-txt {
  line-height: 1.8;
}
.interview-mv__img {
  width: 445px;
  flex-shrink: 0;
}
.interview-mv__img img {
  display: block;
}

@media screen and (max-width: 768px) {
  .interview-mv__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
  .interview-mv__content {
    max-width: none;
    order: 2;
  }
  .interview-mv__catch {
    font-size: 2.6rem;
  }
  .interview-mv__img {
    width: 100%;
    order: 1;
  }
  .interview-mv__catch::after {
    margin-top: 20px;
  }
  .interview-mv__name {
    font-size: 4.8rem;
    margin-top: 24px;
  }
  .interview-mv__meta {
    margin-top: 18px;
  }
}
@media screen and (max-width: 500px) {
  .interview-mv__catch {
    font-size: 2.4rem;
  }
}


/* =================================
interview-block
================================= */

.interview-block + .interview-block,
.interview-mv + .interview-block,
.interview-schedule + .interview-block,
.interview-block + .interview-schedule {
  margin-top: 0;
}
.interview-block__ttl,
.interview-schedule__ttl {
  color: #2aaae2;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
}
.interview-block__txt {
  line-height: 1.7;
}
.interview-block--media .interview-block__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.interview-block--media .interview-block__content {
  flex: 1;
}
.interview-block--media .interview-block__img {
  width: 400px;
  flex-shrink: 0;
}
.interview-block--media .interview-block__img img {
  display: block;
}

@media screen and (max-width: 768px) {
  .interview-block__ttl,
  .interview-schedule__ttl {
    margin-bottom: 14px;
    font-size: 2.6rem;
  }
  .interview-block__txt {
    line-height: 1.9;
  }
  .interview-block--media .interview-block__wrap {
    flex-direction: column;
    gap: 20px;
  }
  .interview-block--media .interview-block__img {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .interview-mv__catch,
  .interview-block__ttl,
  .interview-schedule__ttl {
    font-size: 2.4rem;
  }
}


/* =================================
interview-schedule
================================= */

.interview-schedule__wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  background: #f7f8fa;
}
.interview-schedule__img--main {
  width: 58%;
}
.interview-schedule__img--comment {
  width: 42%;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .interview-schedule__wrap {
    flex-direction: column;
    gap: 20px;
  }
  .interview-schedule__img--main,
  .interview-schedule__img--comment {
    width: 100%;
  }
  .interview-schedule__img--comment {
    padding-right: 0;
  }
}


/* =================================
interview-block__imgs
================================= */
.interview-block__imgs {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 1200px) {
    .job-other {
        margin: 0 auto 80px;
    }
}

@media (max-width: 768px) {
  .interview-block__imgs {
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }
}

/* =================================
youtube
================================= */

.interview-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.interview-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =================================
interview-back
================================= */

.interview-back {
  text-align: center;
  margin-bottom: 100px;
}
.interview-back__link {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    min-height: 56px;
    margin: 30px auto 0;
    color: #fff;
    background: #00bce3;
    border-radius: 4px;
}
