@charset "UTF-8";
/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
.yumin {
  font-family: "YakuHanMP", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, "Noto Serif JP", serif;
}

.wrap-interview {
  max-width: 1046px;
  margin: 0 auto;
}

.fv-content {
  width: 100%;
  height: 60vh;
  position: relative;
}
@media (min-width: 768px) {
  .fv-content {
    height: 70vh;
  }
}
.fv-content-img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/special/fv.jpg");
}
.fv-content-img .caption {
  position: absolute;
  right: 25px;
  bottom: 70px;
  font-size: 10px;
  z-index: 3;
}
.fv-content-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .fv-content-img {
    background-image: url("../img/special/fv.jpg");
  }
}
.fv-content-img:after {
  background: rgba(0, 0, 0, 0.5);
}
.fv-content .bottomline {
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.fv-content-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .fv-content-title {
    font-size: 48px;
    line-height: 1.2;
  }
}
.fv-content-title-img {
  max-width: 60%;
}
@media (min-width: 768px) {
  .fv-content-title-img {
    max-width: 100%;
  }
}
.fv-content-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 15px;
  pointer-events: none;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .fv-content-text {
    padding: 100px 50px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    justify-content: flex-end;
  }
}
.fv-content .scroll {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  height: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv-content .scroll {
    bottom: 0;
  }
}
.fv-content .scroll:after {
  content: "";
  top: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  position: absolute;
  background: #fff;
  animation: scrollanimation 1.3s infinite;
}

.pw15 {
  padding: 0 15px;
}

.interview {
  background: #ecece8;
  padding-bottom: 70px;
}
.interview-intro {
  padding: 50px 15px;
}
@media (min-width: 768px) {
  .interview-intro {
    padding: 70px 15px;
  }
}
.interview-intro-title {
  padding: 15px 0;
  text-align: center;
}
.interview-intro-subtitle {
  padding: 15px;
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 30px auto;
  border-top: 1px solid #136992;
  border-bottom: 1px solid #136992;
}
.interview-intro-text {
  text-align: left;
  line-height: 1.8;
  font-weight: 500;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .interview-intro-text {
    text-align: center;
  }
}
.interview-contents-title {
  background: #136992;
  padding: 15px;
  display: flex;
  justify-content: center;
}
.interview-contents .video-container {
  margin-top: 30px;
  position: relative;
  width: 100%; /* 動画の幅に合わせて調整 */
  aspect-ratio: 16/9;
  cursor: pointer;
}
.interview-contents .youtube-iframe,
.interview-contents .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.interview-contents .youtube-iframe {
  display: none; /* 最初は非表示 */
}
.interview-contents .thumbnail {
  object-fit: cover;
}
.interview-link {
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.interview-link-btn {
  background: #136992;
  padding: 15px;
  transition: all 0.5s ease;
}
.interview-link-btn:hover {
  opacity: 0.6;
}
.interview-link-btn .linkbtn {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  position: relative;
}
.interview-link-btn .linkbtn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  background: #fff;
  width: 12px;
  height: 15px;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@keyframes scrollanimation {
  0% {
    top: 15px;
    height: 1px;
  }
  50% {
    top: 15px;
    height: 70px;
  }
  100% {
    top: 80px;
  }
}/*# sourceMappingURL=interview.css.map */