/* ===========================
   people
=========================== */
.member-list{
    display: flex;
    margin-top: 20px;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    font-size: 14px;
}
.member-list ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}
.member-list ul li a{
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #006EB2;
    padding: 5px 10px;
    border: 1px solid #006EB2;
    border-radius: 60px;
    background-color: #DFF5FF;
}
/* members card */
#people {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}
#people .member {
    display: flex;
    flex-direction: column;
  width: 100%;
  border-radius: 12px;
  margin-right: 0;
  margin-bottom: 20px;
  text-align: left;
}
.member-img{
  position: relative;
  overflow: hidden;
}
.member-img img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: top;
  display: block;
}/*
.member span {
    font-size: 12px;
    position: absolute;
    left: 15px;
    top: 10px;
    color: var(--black);
    text-shadow: -1px -1px 0 #fff,  
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
     1px 1px 0 #fff;
}
.member-prof{
    font-size: 13px;
    padding: 15px;
    border-radius: 12px 0 0 0;
    background: var(--white);
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 200px;
    text-align: left;
    margin-top: -50px;
    z-index: 2;
    float: right;
}*/
.member h4 {
  font-size: 22px;
  color: var(--MS_blue);
  margin-bottom: 5px;
  color: var(--MS_blue);
  position: relative;
  padding-right: 45px;
}
.member h4::after {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid var(--MS_blue_light);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 20px;
  box-sizing: border-box;
}
.member h4::before{
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: var(--MS_blue_light);
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -0.05em;
}
.member-title{
    font-weight: 600;
    margin: 10px 0;
    display: block;
}
@media (min-width: 768px) {
  #people .member-list{
      gap: 20px;
      align-items: center;
      flex-direction: row;
  }
  #people .members {
      margin-bottom: 50px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      margin: 50px auto 0;
      row-gap: 40px;
      justify-content: center;
  }
  .member-group {
    display: block;
  }
  .member-group.center {
    display: flex;
  }
  #people .member {
      width: 320px;
      margin: 0 20px;
  }
  #people .member .btn-blue{
      margin: 20px auto;
  }
  #people .member-box {
      margin-bottom: 20px;
  }
  #people .member-img{
    aspect-ratio:inherit;
  }
  #people .member-title{
      font-weight: bold;
      display: block;
      text-align: left;
      margin-top: 20px;
  }
}
@media (min-width: 1180px) {
  .member-group {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    margin-bottom: 40px;
  }
  .member-group.left {
    justify-content: flex-start;
  }
  .member-group.right {
    justify-content: flex-end;
  }
  .member-group.center {
    justify-content: center;
  }
    #people .member {
      margin-right: 0;
    }
}

/* ===========================
   interview
=========================== */
#interview {
  padding-top: 90px;
  margin-bottom: 80px;
  overflow: hidden;
}
/* interview-visual */
#interview .interview-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 640 / 894; /* SPの比率約0.71 */
}
#interview .interview-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 1;
}
#interview .interview-visual picture,
#interview .interview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* interview point  */
#interview .interview-point {
  background: linear-gradient(175deg, #0166AE, #37C1E1);
  color: var(--white);
  padding: 30px 0;
}
#interview .interview-point .point-title{
  font-size: 15px;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 6px 8px;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
}
#interview .interview-point li{
  list-style: none;
  padding: 5px;
  font-weight: 600;
  position: relative;
  padding: 5px 5px 5px 30px;
}
#interview .interview-point li::before{
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/icon_check_white.svg) no-repeat;
  background-size: contain;
  display: inline-flex;
  background-size: contain;
  align-items: center;
  margin-right: 10px;
  position: absolute;
    bottom: 5px;
    left: 0;
    top: 10px;
}
/* interview  */
#interview .interview-profile {
  background: rgba(255,255,255,0.6);
  text-align: center;
  padding: 30px 20px;
  box-shadow: 3px 2px 10px #ddd;
  position: relative;
}
#interview .interview-profile .container{
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
#interview .title-tag{
    padding: 10px 0 10px 40px;
    position: relative;
    display: block;
    margin-bottom: 0;
    font-size: 14px;
}
#interview .title-tag::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16px;
    width: 33px;
    height: 33px;
    background: url(../images/arrow_back.svg) no-repeat;
    background-size: contain;
}
#interview .catchcopy {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  z-index: 2;
}
#interview .profile-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
#interview .profile-text{
  color: var(--MS_blue_dark);
}
#interview .profile-text .position {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: left;
}
#interview .profile-text .desc {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.comment-box{
  color: var(--MS_blue);
  font-weight: 600;
  background: var(--blue000);
  padding: 20px;
  line-height: 1.7;
  max-width: 920px;
  margin: 40px auto;
  border-radius: 16px;
  border: 1px solid var(--MS_blue);
}
@media (min-width: 768px) {
  #interview .interview-visual {
    aspect-ratio: 2880 / 1360; /* PCの比率 2.11 */
  }
  #interview .catchcopy {
      font-size: 43px;
  }
}
@media (min-width: 1024px) {
  #interview {
    display: flex;
    flex-direction: column;
    padding-top: 102px;
  }
  #interview .interview-profile .container{
    flex-direction: row;
  }
  #interview .title-tag{
    padding: 20px 20px 20px 60px;
    position: relative;
    font-size: 18px;
  }
  #interview .title-tag::before{
    left: 0;
    top: 50%;
    margin-top: -23px;
    width: 46px;
    height: 46px;
  }
  #interview .interview-visual {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
  }
  #interview .catchcopy {
    font-size: 60px;
    bottom: 40px;
    right: 40px;
    text-align: left;
    max-width: 1240px;
    margin: 0 auto;
  }
  #interview .interview-profile {
    display: flex;
    align-items: center;
    padding: 40px;
    text-align: left;
  }
  #interview .profile-img {
    flex: 0 0 120px;
    margin-right: 30px;
  }
  #interview .profile-img img {
    width: 120px;
    height: 120px;
  }
  #interview .profile-text h3 {
    font-size: 24px;
  }
  #interview .profile-text .desc {
    font-size: 15px;
  }
}
/* #interview .interview-main */
#interview .interview-main{
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }
#interview .people-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    margin: 30px 0;
    align-items: center;
}
#interview .people-box h3 {
    color: var(--MS_blue);
    font-size: 24px;
    margin-bottom: 2rem;
}
#interview .people-box p {
    margin-bottom: 2rem;
}
#interview .people-box img {
    border-radius: 12px;
    max-width: 584px;
    width: 100%;
    margin: 0 auto;
}
#interview .people-box.last picture{
    margin: 0 -20px;
}
#interview .people-box.last img {
    border-radius: 0;
    max-width: 100%;
}
#interview .team{
    text-align: left;
    overflow: hidden;
}
#interview .team .container{
    position: relative;
}
#interview .team .container::before{
    content: '';
    background: url('../images/icon_round.svg') no-repeat center center/cover;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    opacity: .07;
    top: -70px;
    left: -100px;
    display: block;
    position: absolute;
    z-index: -1;
  }
@media (min-width: 768px) {
    #interview .team{
        top: 0;
        margin-bottom: 0;
    }
    #interview .team .container::before{
        top: -70px;
    }
}
@media (min-width: 1024px) {
    #interview .interview-profile::before{
        content: '';
        background: url('../images/icon_round.svg') no-repeat center center/cover;
        width: 974px;
        height: 974px;
        border-radius: 50%;
        opacity: .07;
        top: -200px;
        right: 60%;
        display: block;
        position: absolute;
        z-index: -1;
    }
    #interview .interview-profile::after{
        content: '';
        background: url('../images/icon_round.svg') no-repeat center center/cover;
        width: 974px;
        height: 974px;
        border-radius: 50%;
        opacity: .07;
        top: 1400px;
        left: 45%;
        display: block;
        position: absolute;
        z-index: -1;
    }
    #interview .people-box{
        flex-direction: row;
        gap: 60px;
        margin: 60px auto;
    }
    #interview .people-box.rev{
        flex-direction: row-reverse;
    }
    #interview .people-box h3 {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    #interview .people-box img {
        border-radius: 100px 0 0 0;
        max-width: 584px;
        height: auto;
        margin-right: -100px;
        width: auto;
    }
    #interview .people-box.rev img {
        margin-right: 0;
        margin-left: -100px;
        border-radius: 0 100px 0 0;
    }
    #interview .people-box .people-text {
        line-height: 1.8;
    }
    #interview .people-box .people-text p{
        margin-bottom: 2rem;
        line-height: 2;
        font-size: 16px;
    }
    #interview .people-box.last{
        flex-direction: column;
        gap: 20px;
    }
    #interview .people-box.last img {
        border-radius: 0;
        max-width: 100%;
        height: auto;
        margin: 0;
    }
}
@media (min-width: 1440px) {
    #interview .interview-main{
        overflow: visible;
    }
}