@charset "UTF-8";
/* CSS Document */
h1 {
  font-family: "garamond-premier-pro-display", serif;
  font-size: clamp(10px, 12vw, 60px);
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.8;
  letter-spacing: 0.1rem;
  padding: 6rem 3rem 0;
  color: #bd3628;
}
h1 span {
  font-family: "Roboto", sans-serif;
  font-size: clamp(10px, 3.56vw, 14px);
  text-align: left;
  line-height: 4;
  letter-spacing: 0;
}
h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: clamp(10px, 6vw, 25px);
}

.intro_text {
  padding: 5rem 3rem 6rem;
}
.intro p {
  padding-top: 1rem;
}

.zadankai {
  background-color: #f4f4f4;
  padding: 4rem 3rem;
}
.zadankai h2 {
  align-items: flex-start;
  color: #343434;
}
.zadankai_wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
}
.zadankai img {
  max-width: 210px;
  max-height: 210px;
  border-radius: 1rem;
  width: 40vw;
  height: auto;
}
.zadankai_name {
  line-height: 1.2;
}
@media (min-width: 500px) {
  .zadankai_name {
    font-size: 17px;
  }
}
.zadankai_navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 210px;
  width: 40vw;
}
.btn_maru {
  width: 10vw;
  height: 10vw;
  max-height: 50px;
  max-width: 50px;
  background-color: #d9d9d9;
  border-radius: 100px;
  position: relative;
}
.btn_maru::before {
  display: block;
  content: "→";
  font-size: 20px;
  color: #343434;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =============================================== */
/* Interview Swiper Layout (重ね合わせ強化版) */
/* =============================================== */

.interview {
  padding: 6rem 0 3rem;
  overflow: hidden;
}
.interview h2 {
  color: #bd3628;
  padding-bottom: 2rem;
}

.interview_list {
  perspective: 1200px;
}

.interview_list .swiper-wrapper {
  transform-style: preserve-3d;
}

.interview_list .swiper-slide {
  width: 85vw;
  max-width: 400px;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.interview_list .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.85);
  opacity: 0.7;
}

.interview_list .swiper-slide-active {
  z-index: 100;
}

.interview_list .swiper-slide-next,
.interview_list .swiper-slide-prev {
  transform: scale(0.85) translateZ(-150px);
  opacity: 0.8;
  z-index: 10;
}

.interview_list .swiper-slide-next + .swiper-slide-next,
.interview_list .swiper-slide-prev + .swiper-slide-prev {
  transform: scale(0.7) translateZ(-300px);
  opacity: 0.5;
  z-index: 0;
}

.interview_wrap {
  color: #fff;
  background-color: #bd3628;
  padding: 3rem;
  border-radius: 1rem;
  filter: drop-shadow(0px 0px 10px #00000035);
  height: 100%;
}
.interview img {
  border-radius: 1rem;
}
.interview_title,
.profile_title {
  font-weight: 600;
  font-size: clamp(10px, 5vw, 25px);
  line-height: 1.4;
}
.interview p,
.profile p {
  padding-top: 2rem;
}
.btn-more_red {
  background-color: #fff;
  border-color: transparent;
}
.btn-more_red:hover {
  border-color: #fff;
}

.profile {
  background-color: #bd3628;
  padding: 5rem 3rem;
  color: #fff;
}
.ui_title {
  color: #fff;
  align-items: center;
  font-size: clamp(10px, 8vw, 40px);
  padding-bottom: 3rem;
}
.profile img {
  border-radius: 1rem;
}
.profile_text {
  font-weight: 600;
}

.qa {
  padding: 3rem 3rem 5rem;
}
.q,
.a {
  font-weight: 600;
  font-size: clamp(10px, 4vw, 17px);
}
.q {
  padding-top: 3rem;
}
.a {
  color: #bd3628;
  padding-top: 1rem;
  line-height: 1.4;
}
.a_text {
  padding-top: 1rem;
}
.qa img {
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.zadankai_img {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.zadankai_img img {
  display: block;
}

.zadankai_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  max-width: 210px;
  max-height: 210px;
  border-radius: 1rem;
  width: 40vw;
  height: 40vw;
}

.zadankai_img::after {
  content: "COMING SOON\000a掲載まで今しばらく\000aお待ちください。";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  text-align: center;
  line-height: 1.8;
  white-space: pre-wrap;
  font-size: 14px;
  letter-spacing: 0.05em;
  width: 100%;
}
