@charset "utf-8";
/* CSS Document */

.skr_stafflist{padding: 140px 0;}
.skr_stafflist .skr_sectionttl{margin-bottom: 100px;}
.skr_stafflist h3{
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.01em;
  font-size: 1.25rem;
  color: #668285;
  opacity: 0;
  transition: all 0.25s linear;
}
.skr_stafflist h3.active{opacity: 1;}
.skr_stafflist ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.skr_stafflist ul li{
  position: relative;
  width: 48.5%;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.25s linear;
}
.skr_stafflist ul li:nth-of-type(2){transition-delay: 0.1s;}
.skr_stafflist ul li:nth-of-type(3){transition-delay: 0.2s;}
.skr_stafflist ul li:nth-of-type(4){transition-delay: 0.3s;}
.skr_stafflist ul li:nth-of-type(5){transition-delay: 0.4s;}
.skr_stafflist ul li:nth-of-type(6){transition-delay: 0.5s;}
.skr_stafflist ul li:nth-of-type(7){transition-delay: 0.6s;}
.skr_stafflist ul li:nth-of-type(8){transition-delay: 0.7s;}
.skr_stafflist ul li:nth-of-type(9){transition-delay: 0.8s;}
.skr_stafflist ul li:nth-of-type(10){transition-delay: 0.9s;}
.skr_stafflist ul li:nth-of-type(11){transition-delay: 1s;}
.skr_stafflist ul li:nth-of-type(12){transition-delay: 1.1s;}
.skr_stafflist ul li:nth-of-type(13){transition-delay: 1.2s;}
.skr_stafflist ul.active li{
  transform: translate(0);
  opacity: 1;
}

.skr_stafflist ul li::before{
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,#FFD4CE 0%, #FFD4CE 55%, rgba(167, 212, 205, 0.5) 100%);
}
.skr_stafflist ul li figure{
  position: relative;
  display: flex;
  align-items: center;
  padding: 28px 12px 28px 18px;
  cursor: pointer;
}
.skr_stafflist ul li figure::after{
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  right: 12px;
  top: calc(50% - 7px);
  border-right: 2px solid #D2D2D2;
  border-bottom: 2px solid #D2D2D2;
  transform: rotate(45deg);
}
.skr_stafflist ul li figure.active::after{
  transform: rotate(225deg);
  top: calc(50% - 2px);
}
.skr_stafflist ul li figure>p{
  width: 160px;
  height: 160px;
  margin-right: 30px;
  border-radius: 100%;
  overflow: hidden;
}
.skr_stafflist ul li figure>p img{width: 100%;}
.skr_stafflist ul li figure figcaption p{
  display: inline-block;
  margin-bottom: 8px;
  padding-bottom: 8px;
  letter-spacing: 0.01em;
  font-family: "Libre Franklin";
  font-weight: bold;
  font-size: 1.125rem;
  color: #383935;
  border-bottom: 2px solid #D2D2D2;
}
.skr_stafflist ul li figure figcaption span{
  display: block;
  letter-spacing: 0.01em;
  font-size: 0.875rem;
  font-weight: bold;
  color: #383935;
}
.skr_stafflist ul li figure figcaption span strong{
  vertical-align: baseline;
  font-size: 0.75rem;
  color: #666666;
}

.skr_staffprof{
  display: none;
  margin-bottom: 24px;
  padding: 16px 16px 24px;
}
.skr_staffprof dl{
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.skr_staffprof dl dt{
  width: 88px;
  color: #668285;
}
.skr_staffprof dl dd:first-of-type{margin-bottom: 10px;}
.skr_staffprof dl dd{
  width: calc(100% - 88px);
  color: #383935;
}
.skr_staffprof>p{
  font-size: 0.875rem;
  color: #383935;
}
.skr_staffprof>p.skr_indent{
  padding-left: 2em;
  text-indent: -2em;
}
.skr_staffprof>p a{color: #383935;}



@media screen and (min-width:821px){
  .skr_stafflist ul li figure:hover{opacity: 0.7;}

  .skr_staffprof>p a:hover{text-decoration: underline;}
}







@media screen and (max-width:820px){
  .skr_stafflist ul li{width: 100%;}
  .skr_stafflist ul li figure{padding: 24px 0;}
  .skr_stafflist ul li figure>p{
    width: 120px;
    height: 120px;
  }
  .skr_stafflist ul li figure figcaption p{
    font-size: 0.875rem;}
}

@media screen and (max-width:428px){
  .skr_stafflist{padding: 100px 0 80px;}
  .skr_stafflist .skr_sectionttl{margin-bottom: 40px;}

  .skr_staffprof{
    padding: 0;
    border: none;
  }
  .skr_staffprof dl dt{
    width: 100%;
    margin-bottom: 10px;
  }
  .skr_staffprof dl dd{width: 100%;}
  .skr_staffprof dl dd:nth-last-of-type(n+2){margin-bottom: 24px;}
}

