@charset "utf-8";


.team-cont{
  padding-top: 1em;
  opacity: 0;
}
.team-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.team-list>li{
  width: 48.2%;
}
.team-list>li>a{
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5% 0;
  border-bottom: 1px solid #c9caca;
}
.team-list>li:nth-child(1)>a,
.team-list>li:nth-child(2)>a{
  border-top: 1px solid #c9caca;
}
.team-list>li>a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #212128;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s cubic-bezier(.15,1,.2,1);
}
.team-list>li>a:hover::after,
.team-list>li>a:active::after{
  transform: scale(1, 1);
  transform-origin: left top;
}
.team-list__image{
  width: 47.5%;
  margin-right: 5%;
  overflow: hidden;
}
.team-list__image img{
  transition: 1.5s cubic-bezier(.15,1,.2,1);
}
.team-list>li>a:hover .team-list__image img,
.team-list>li>a:active .team-list__image img{
  transform: scale(1.07);
}
.team-list__box{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 14%;
}
/* 1400-1920 18-21 */
.team-list__ttl{
  font-size: 1.188rem;
  font-size: clamp(1.188rem, 0.851rem + 0.38vw, 1.313rem);
  letter-spacing: 0.09em;
  line-height: 1.7;
}
.team-list__name{
  line-height: 1.6;
  margin-bottom: 1.4em;
}
/* 1200-1920 18-24 */
.team-list__arrow{
  position: absolute;
  bottom: calc(5% + 1.6em);
  right: 0.1em;
  width: 1.125rem;
  width: clamp(1.125rem, 0.5rem + 0.83vw, 1.5rem);
  height: 1.125rem;
  height: clamp(1.125rem, 0.5rem + 0.83vw, 1.5rem);
  overflow: hidden;
}
.team-list__arrow::after{
  content: "";
  display: block;
  height: 100%;
  background-image: url(../image/team/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(-80%) scale(0.8) rotate(0.5deg);
  opacity: 0;
  transition: 1s cubic-bezier(.15,1,.2,1);
}
.team-list>li>a:hover .team-list__arrow::after,
.team-list>li>a:active .team-list__arrow::after{
  transform: translateX(0) scale(1) rotate(0deg);
  opacity: 1;
}

@media (max-width: 1399px){
  .team-list__image{
    width: 46.5%;
    margin-right: 4.5%;
  }
  /* 1200-1399 16-19 */
  .team-list__ttl{
    font-size: 1rem;
    font-size: clamp(1rem, -0.131rem + 1.51vw, 1.188rem);
  }
}

@media (max-width: 1299px){
  .team-list__image{
    width: 45%;
    margin-right: 4%;
  }
}
@media (max-width: 1199px){
  .team-list{
    flex-direction: column;
    align-items: center;
  }
  .team-list>li{
    width: min(80%, 44.375em);
  }
  .team-list>li:nth-child(2)>a{
    border-top: none;
  }
  .team-list__image{
    margin-right: 4.5%;
  }
  /* 767-1199 18-20 */
  .team-list__ttl{
    font-size: 1.125rem;
    font-size: clamp(1.125rem, 0.902rem + 0.46vw, 1.25rem);
  }
}

@media (max-width: 767px){
  .team-list>li{
    width: min(100%,26.7em);
  }
  .team-list>li>a{
    flex-direction: column;
    padding: 8% 0 7%;
  }
  .team-list__image{
    width: 60%;
    margin: 0 auto;
  }
  .team-list__box{
    margin-top: 1.6em;
  }
  .team-list__ttl{
    font-size: 17px;
    line-height: 1.5;
  }
  .team-list__name{
    margin: 1.5em 0 0;
  }
  .team-list__arrow{
    bottom: 5.5%;
  }
  .team-list__arrow::after{
    transform: translateX(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}


/* other */
.lower-bg{
  position: relative;
}

.lower-bg__ttl{
  position: absolute;
  bottom:12%;
  left:2.4em;
}

.lower-bg__ttl-jp {
  padding-top: 1em;
}

.team-others__ttl-inner{
  padding-bottom: 1em;
}

.team-kadono__txt03{
  letter-spacing: 0.075em;
}


@media (max-width: 1299px){
  .team__person__desc{
    line-height: 1.81;
  }
}

@media (max-width: 1199px){
  .team-others__ttl{
    width: min(80%, 44.375em);
    margin: 0 auto;
  }
}

@media (max-width: 1023px){
  .lower-bg__ttl{
    left: 1em;
  }
}

@media (max-width: 767px){
  .lower-bg__ttl{
    bottom:5%;
    left:5%;
  }
  .team-others__ttl{
    width: min(100%, 26.7em);
  }
}