@charset "UTF-8";
/* CSS Document */
main {
  padding-top: 128px;
}
@media only screen and (max-width: 767px) {
  main {
    padding-top: 76px;
  }
}

.lowerFv {
  width: 100%;
  aspect-ratio: 1920/1080;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .lowerFv {
    aspect-ratio: 16/9;
  }
}

.fv-video {
  display: block;
  width: 100%;
  height: 80%;
  border: 0;
}

@media only screen and (max-width: 767px) {
  .fv-video--pc {
    display: none;
  }
}

.fv-video-trigger {
  display: none;
}
@media only screen and (max-width: 767px) {
  .fv-video-trigger {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #000;
    cursor: pointer;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .fv-video-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 767px) {
  .fv-video-trigger__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    padding-left: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  }
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.video-modal__content {
  position: relative;
  width: min(88vw, 400px);
  max-height: 86vh;
  aspect-ratio: 9/16;
}
.video-modal__frame {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.video-modal__close:hover, .video-modal__close:focus {
  background: #f2f2f2;
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.video-modal-open {
  overflow: hidden;
}

.introduction-section {
  position: relative;
  padding: 80px 0;
  margin-top: 0;
}

.introduction-section::before {
  content: "";
  background: url("../img/interview-blue02.svg") no-repeat;
  position: absolute;
  z-index: -9;
  left: 0;
  top: 0;
  background-size: contain;
  background-position: left;
  width: 90%;
  height: 681px;
}

@media (max-width: 768px) {
  .introduction-section {
    padding: 40px 0 0;
    margin-top: min(55 / 393 * 100vw, 55px);
  }
  .introduction-section::before {
    background-position: right;
  }
  .introduction-section::after {
    background-position: left;
  }
  .introduction-section::before, .introduction-section::after {
    background-size: cover;
    width: 90%;
    height: min(516 / 393 * 100vw, 516px);
  }
}
.interviewH1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 8px;
  margin-bottom: 80px;
}

.introductionArea {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4.8px;
  margin-bottom: 40px;
  line-height: 1.4;
}

.introductionTitle {
  color: #fff;
  background-color: #1b3e66;
  display: inline-flex;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 3.2px;
}

.introduction-section ul {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 80px;
  margin: 80px auto;
}

.introduction-section ul li a {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: #FFF;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
}

.introductionFooter {
  width: 100%;
  text-align: right;
  font-size: 56px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 5.6px;
}

@media (max-width: 768px) {
  .interviewH1 {
    font-size: min(24 / 393 * 100vw, 24px);
    letter-spacing: 4px;
    margin-bottom: 40px;
  }
  .introductionArea {
    font-size: min(14 / 393 * 100vw, 14px);
    letter-spacing: 2.4px;
    margin-bottom: 20px;
  }
  .introductionTitle {
    padding-left: min(8 / 393 * 100vw, 8px);
    padding-right: min(8 / 393 * 100vw, 8px);
    padding-top: min(4 / 393 * 100vw, 4px);
    padding-bottom: min(4 / 393 * 100vw, 4px);
    margin-bottom: min(12 / 393 * 100vw, 12px);
    font-size: min(16 / 393 * 100vw, 16px);
    letter-spacing: 1.6px;
  }
  .introductionImg {
    width: 100%;
    margin: 40px auto;
  }
  .introduction-section ul {
    justify-content: center;
    gap: 24px;
    margin: 40px auto;
  }
  .introduction-section ul li a {
    padding: 6px 12px;
    gap: 12px;
    font-size: 20px;
    letter-spacing: 2.4px;
  }
  .introduction-section ul li a svg {
    width: 8px;
  }
  .introductionFooter {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 2.4px;
  }
}
.interview-lower-inner {
  width: 80%;
  max-width: 1280px;
  margin: 320px auto 132px;
  position: relative;
}

.interview-lower-section {
  position: relative;
  margin-top: 240px;
}
@media only screen and (max-width: 767px) {
  .interview-lower-section {
    margin-top: min(70 / 393 * 100vw, 70px);
  }
}

.interview-lower-section::before {
  content: "";
  position: absolute;
  background: url("../img/interview-bgNew.webp") no-repeat;
  width: 713px;
  aspect-ratio: 1/1;
  right: 0;
  top: 16%;
  z-index: -10;
  background-size: contain;
}

.interview-lower-section::after {
  content: "";
  position: absolute;
  background: url("../img/interview-bgNew.webp") no-repeat;
  width: 713px;
  aspect-ratio: 1/1;
  left: 0;
  bottom: 11%;
  z-index: -10;
  background-size: contain;
}

.interview-lower-inner div {
  margin-top: 120px;
}

.interview-lower-inner h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
}

.interview-lower-inner p {
  font-size: 24px;
  font-weight: 500;
  line-height: 200%;
  margin: 40px auto;
}

.interview-lower-img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .interview-lower-inner {
    width: 90%;
    margin: 0 auto 160px;
  }
  .interview-lower-section::before {
    width: min(208 / 393 * 100vw, 208px);
    top: min(625 / 393 * 100vw, 625px);
    background-position: right;
    background-size: contain;
  }
  .interview-lower-section::after {
    width: min(208 / 393 * 100vw, 208px);
    bottom: min(226 / 393 * 100vw, 226px);
    background-position: left;
    background-size: contain;
  }
  .interview-lower-inner div {
    margin-top: 60px;
  }
  .interview-lower-inner h3 {
    font-size: min(18 / 393 * 100vw, 18px);
    letter-spacing: 2.4px;
  }
  .interview-lower-inner p {
    font-size: 14px;
    margin: 20px auto;
  }
}
.video-wrapper {
  position: relative;
  display: inline-block;
}

/* 中央再生ボタン */
.center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-play-btn:focus {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.center-play-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

@media only screen and (max-width: 767px) {
  .-pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .-sp {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .introduction-inner {
    max-width: 1280px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .introduction-inner .introductionImg {
    width: min(701 / 393 * 100vw, 701px);
  }
}

.interview-lower-caption {
  font-size: 56px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .interview-lower-caption {
    font-size: min(28 / 393 * 100vw, 28px);
  }
}

@media only screen and (min-width: 768px) {
  .interview-lower-item.-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.interview-lower-item.-grid h3 {
  grid-row: 1/2;
  grid-column: 1/2;
}
.interview-lower-item.-grid p {
  grid-row: 2/3;
  grid-column: 1/2;
}
.interview-lower-item.-grid img {
  grid-row: 1/3;
  grid-column: 2/3;
}
.interview-lower-item.-grid:nth-child(odd) h3 {
  grid-column: 2/3;
}
.interview-lower-item.-grid:nth-child(odd) p {
  grid-column: 2/3;
}
.interview-lower-item.-grid:nth-child(odd) img {
  grid-column: 1/2;
}/*# sourceMappingURL=style-interview.css.map */