/* CSS Document */
.spmask {
  display: inline-block;
}

.spmask-inline {
  display: inline;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .spmask-inline {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
.list {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .list {
    padding-bottom: 6rem;
  }
}
.list .thum-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 5.5rem;
       column-gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .list .thum-wrap {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    row-gap: 3.5rem;
  }
}
.list .thum-wrap a.thum {
  display: block;
}
.list .thum-wrap a.thum p.profile {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .list .thum-wrap a.thum p.profile {
    line-height: 1.5;
    margin-top: 1rem;
  }
}
.list .thum-wrap a.thum p.en {
  font-size: 3.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--main);
  margin-top: 0.4em;
}
@media screen and (max-width: 767px) {
  .list .thum-wrap a.thum p.en {
    font-size: 2.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .list .thum-wrap a.thum img {
    transition: scale 0.6s ease, opacity 0.3s ease;
  }
  .list .thum-wrap a.thum:hover img {
    scale: 1.03 !important;
    opacity: 0.7;
  }
}

/*--------------------*/
.mv {
  margin-top: 9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 8rem;
  }
}
.mv .mv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.mv .mv-wrap .copy-wrap {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: min(5vw, 80px) min(5vw, 80px) min(3.75vw, 60px) min(3.75vw, 60px);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .mv .mv-wrap .copy-wrap {
    padding: 3rem 2rem;
    left: 2rem;
    right: 2rem;
    bottom: -20rem;
  }
}
.mv .mv-wrap .copy-wrap p.en {
  color: var(--main);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.mv .mv-wrap .copy-wrap p.copy {
  font-size: min(2.5vw, 40px);
  font-weight: 600;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .mv .mv-wrap .copy-wrap p.copy {
    font-size: 2.8rem;
    margin-top: 1.5rem;
    line-height: 1.6;
  }
}
.mv .mv-wrap .copy-wrap h1 {
  margin-top: min(2.25vw, 36px);
}
@media screen and (max-width: 767px) {
  .mv .mv-wrap .copy-wrap h1 {
    margin-top: 3rem;
  }
}
.mv .mv-wrap .copy-wrap h1 span {
  font-size: min(2.5vw, 40px);
  font-weight: 700;
  font-style: italic;
  color: var(--main);
  display: inline-block;
  padding-bottom: 0.1em;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 767px) {
  .mv .mv-wrap .copy-wrap h1 span {
    font-size: 3.6rem;
  }
}
.mv .mv-wrap .copy-wrap p.profile {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .mv .mv-wrap .copy-wrap p.profile {
    margin-top: 1.5rem;
  }
}
.mv .mv-wrap .image {
  width: 65.625%;
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .mv .mv-wrap .image {
    width: 100%;
    height: calc(80svh - 8rem);
    position: relative;
    z-index: 1;
  }
  .mv .mv-wrap .image img {
    position: absolute;
    inset: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 67.5% center;
       object-position: 67.5% center;
    height: 100%;
  }
}
.mv .bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  bottom: -10rem;
  background: url(../../images/interview/interview_bg_01.jpg) no-repeat left center/contain;
}
@media screen and (max-width: 767px) {
  .mv .bg {
    z-index: 0;
    bottom: -40rem;
  }
}

/*--------------------*/
.interview {
  position: relative;
  background: url("../../images/interview/interview_bg_02.jpg") no-repeat right bottom;
  background-size: 35%;
  margin-top: 10rem;
}
.interview_wrap {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .interview_wrap {
    padding-top: 16rem;
  }
}
.interview_item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .interview_item {
    flex-direction: column-reverse;
    margin-bottom: 6rem;
  }
}
.interview_item.even {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .interview_item.even {
    flex-direction: column-reverse;
  }
}
.interview_item.type02 {
  flex-direction: column-reverse;
}
.interview_item:last-of-type {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .interview_item:last-of-type {
    margin-bottom: 6rem;
  }
}
.interview_item_photo {
  --line: 2;
  margin-left: calc(50% - 50vw);
  margin-top: calc(5.2rem * var(--line) + 3rem + 0.65rem);
  margin-right: 10%;
}
.type02 .interview_item_photo {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .type02 .interview_item_photo {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .interview_item_photo {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.interview_item.even .interview_item_photo {
  margin-right: calc(50% - 50vw);
  margin-left: 10%;
}
@media screen and (max-width: 767px) {
  .interview_item.even .interview_item_photo {
    margin-right: 0;
    margin-left: 0;
  }
}
.interview_item.type02 .interview_item_photo {
  width: 100%;
  margin-inline: 0;
}
.interview_item_text {
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .interview_item_text {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.interview_item.type02 .interview_item_text {
  width: 100%;
}
.interview_item_text_heading {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--main);
  line-height: 2;
  margin-bottom: 3rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .interview_item_text_heading {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
}
.interview_item_text .readText {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .interview_item_text .readText {
    margin-bottom: 2rem;
  }
}
.interview_item_text .readText:last-of-type {
  margin-bottom: 0;
}
.interview_btn {
  position: relative;
  width: 100%;
  background-color: #002164;
  padding-block: 12rem;
}
@media screen and (max-width: 767px) {
  .interview_btn {
    padding-block: 6rem;
  }
}
.interview_btn .inner {
  position: relative;
  z-index: 2;
}
.interview_btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url(../../images/top/top_polygon.gif) no-repeat left center/contain;
}
.interview_btn::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url(../../images/top/top_polygon.gif) no-repeat left center/contain;
  rotate: 180deg;
}
.interview_btn_link {
  position: relative;
  display: block;
  width: 53rem;
  margin: 0 auto;
  color: #fff;
  border: solid 1px #fff;
  padding-block: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .interview_btn_link {
    width: 100%;
    padding-block: 2rem;
  }
}
.interview_btn-en {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.interview_btn-jp {
  font-size: 2.1rem;
  font-weight: 600;
}
/*# sourceMappingURL=style.css.map */