@charset "utf-8";

/* ↓↓↓ fv ↓↓↓ */
.fv-wrap {
  position: relative;
  height: 415px;
  padding-top: 100px;
  background: linear-gradient(90deg, var(--gradation));
}

@media screen and (max-width: 768px) {
  .fv-wrap {
    height: 295px;
    padding-top: 70px;
  }
}

.fv-wrap .title-group {
  position: relative;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
}

.fv-wrap .title-group .title {
  position: absolute;
  transform: translateY(-50%);
  top: 47%;
  left: 10.157%;
  font-family: var(--font-zen);
  font-size: 6.5rem;
  font-weight: 900;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .fv-wrap .title-group .title {
    top: 35%;
    left: 25px;
    font-size: 4.8rem;
  }
}

.fv-wrap .title-group .title-en {
  position: absolute;
  width: auto;
  height: min(10.157vw, 130px);
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .fv-wrap .title-group .title-en {
    height: 58px;
  }
}

/* ↑↑↑ fv ↑↑↑ */

.more-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gradation));
  margin: 25px auto 0;
}

.more-btn::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #fff;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.more-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: url(../img/person/more-angle_wh.svg) no-repeat;
  background-size: cover;
  z-index: 1;
}

.more-btn[target="_blank"]::after {
  background: url(../img/person/more-blank_wh.svg) no-repeat;
  background-size: cover;
}

.more-btn .txt {
  position: relative;
  width: 47px;
  height: 12px;
  z-index: 1;
}

.more-btn .txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 49px;
  height: 12px;
  background: url(../img/common/more-text_wh.png) no-repeat;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .more-btn:hover::before {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .more-btn:hover::after {
    background: url(../img/person/more-angle_og.svg) no-repeat;
    background-size: cover;
  }

  .more-btn:hover .txt::before {
    background: url(../img/common/more-text_og.png) no-repeat;
    background-size: cover;
  }

  .more-btn[target="_blank"]:hover::after {
    background: url(../img/person/more-blank_og.svg) no-repeat;
    background-size: cover;
  }
  
}

/* ↓↓↓ box1 ↓↓↓ */
.box1 {
  margin-top: 135px;
}

@media screen and (max-width: 768px) {
  .box1 {
    margin-top: 50px;
  }
}

.box1 .inner {
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .box1 .inner {
    padding: 0 28px;
  }
}

.box1 .inner .interview-list {
  max-width: 856px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .box1 .inner .interview-list {
    flex-direction: column;
    align-items: center;
  }
}

.box1 .inner .interview-list .item {
  min-width: 340px;
  width: calc((100% - 72px) / 2);
}

.box1 .inner .interview-list .item:nth-child(n + 3) {
  margin-top: 110px;
}


@media screen and (max-width: 768px) {
  .box1 .inner .interview-list .item {
    max-width: 500px;
    min-width: initial;
    width: 100%;
  }

  .box1 .inner .interview-list .item:nth-child(n + 2) {
    margin-top: 70px;
  }
}

.box1 .inner .interview-list .item .lead {
  width: 72px;
  margin-bottom: 10px;
}

.box1 .inner .interview-list .item .image {
  position: relative;
  filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.15));
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .box1 .inner .interview-list .item a .image img {
    transition: transform 0.3s ease;
  }

  .box1 .inner .interview-list .item a:hover .image img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
}

.box1 .inner .interview-list .item .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
  z-index: 1;
}

.box1 .inner .interview-list .item:nth-child(1) .image:before {
  background: url(../img/person/item-angle01.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item:nth-child(2) .image:before {
  background: url(../img/person/item-angle02.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item:nth-child(3) .image:before {
  background: url(../img/person/item-angle03.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item:nth-child(4) .image:before {
  background: url(../img/person/item-angle04.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item:nth-child(5) .image:before {
  background: url(../img/person/item-angle05.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item:nth-child(6) .image:before {
  background: url(../img/person/item-angle06.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item:nth-child(7) .image:before {
  background: url(../img/person/item-angle07.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item:nth-child(8) .image:before {
  background: url(../img/person/item-angle08.png) no-repeat;
  background-size: cover;
}

.box1 .inner .interview-list .item .image figcaption {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
  left: 0;
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .box1 .inner .interview-list .item .image figcaption {
    font-size: calc((23 - 20) * ((100vw - 769px) / (1280 - 769)) + 20px);
  }
}

@media screen and (max-width: 768px) {
  .box1 .inner .interview-list .item .image figcaption {
    font-size: 2rem;
  }
}

.box1 .inner .interview-list .item .name-group {
  text-align: center;
  font-family: var(--font-noto);
  min-height: 74px;
  margin: 35px 0 0;
}

@media screen and (max-width: 768px) {
  .box1 .inner .interview-list .item .name-group {
    min-height: initial;
    margin: 25px 0 0;
  }
}

.box1 .inner .interview-list .item .name-group .department {
  font-size: 1.4rem;
}

.box1 .inner .interview-list .item .name-group .department.-small {
  font-size: 1.2rem;
}

.box1 .inner .interview-list .item .name-group .name {
  font-size: 2rem;
  line-height: 1;
  margin-top: 10px;
}

.box1 .inner .interview-list .item .name-group .director {
  font-size: 1.4rem;
}

.box1 .inner .interview-list .item .name-group .year {
  font-size: 1.2rem;
}

/* ↑↑↑ box1 ↑↑↑ */

/* ↓↓↓ box2 ↓↓↓ */
.box2 {
  margin: 156px auto 120px;
}

@media screen and (max-width: 768px) {
  .box2 {
    margin: 75px auto 100px;
  }
}

.box2 .inner {
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .box2 .inner {
    padding: 0 28px;
  }
}

.box2 .page-link {
  position: relative;
  max-width: 856px;
  margin: 0 auto;
  filter: drop-shadow(7px 7px 10px rgba(0, 0, 0, 0.2));

  + .page-link {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .box2 .page-link {
    max-width: 500px;
    
    + .page-link {
      margin-top: 50px;
    }
  }
}

.box2 .page-link .more-btn {
  position: absolute;
  transform: translateX(-50%);
  bottom: 28px;
  left: 50%;
}

.box2 .page-link.-voice .more-btn {
  transform: translateX(0);
  left: initial;
  right: 18.693%;
}

@media screen and (max-width: 768px) {
  .box2 .page-link.-voice .more-btn {
    transform: translateX(-50%);
    right: initial;
    left: 50%;
  }
}
/* ↑↑↑ box2 ↑↑↑ */