/*----------------------------------------------------
Interview
----------------------------------------------------*/
#interview .lead {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.56;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  #interview .lead {
    font-size: 24px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  #interview .lead {
    font-size: 18px;
  }
}
#interview .interview_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  #interview .interview_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}
#interview .interview_list > li {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
@media all and (min-width: 751px) {
  #interview .interview_list > li {
    border-radius: 15px;
  }
}
@media all and (min-width: 751px) {
  #interview .interview_list > li {
    width: min(292px, 40%);
  }
}
#interview .interview_list > li a {
  display: block;
}
#interview .interview_list > li a .image {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#interview .interview_list > li a .image img {
  -o-object-fit: contain;
     object-fit: contain;
}
#interview .interview_list > li a .image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#interview .interview_list > li a .profile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-size: 185%;
  background-repeat: no-repeat;
  background-position: center 95%;
  padding: 15px 20px;
}
#interview .interview_list > li a .profile.green {
  background-image: url(../images/common/watercolor/mdl_green.jpg);
}
#interview .interview_list > li a .profile.pink {
  background-image: url(../images/common/watercolor/mdl_pink.jpg);
}
#interview .interview_list > li a .profile .position {
  font-size: 13px;
}
@media all and (min-width: 751px) {
  #interview .interview_list > li a .profile .position {
    font-size: 14px;
  }
}
#interview .interview_list > li a .profile .name {
  font-size: 19px;
  margin-top: 5px;
}
@media all and (min-width: 751px) {
  #interview .interview_list > li a .profile .name {
    font-size: 20px;
  }
}
@media (hover: hover) {
  #interview .interview_list > li a .image img {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  #interview .interview_list > li a .image img:nth-child(2) {
    opacity: 0;
  }
  #interview .interview_list > li a:hover .image img:nth-child(2) {
    opacity: 1;
  }
}

/*----------------------------------------------------
Cross Talk
----------------------------------------------------*/
#crosstalk .lead {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.56;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  #crosstalk .lead {
    font-size: 24px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  #crosstalk .lead {
    font-size: 18px;
  }
}
#crosstalk .content a {
  display: block;
}
#crosstalk .content a .image {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  border-radius: 8px;
}
@media all and (min-width: 751px) {
  #crosstalk .content a .image {
    border-radius: 15px;
  }
}
#crosstalk .content a .image img {
  -o-object-fit: contain;
     object-fit: contain;
}
#crosstalk .content a .image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#crosstalk .content a .title {
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
}
@media all and (min-width: 751px) {
  #crosstalk .content a .title {
    font-size: 20px;
    margin-top: 24px;
  }
}
@media (hover: hover) {
  #crosstalk .content a .image img {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  #crosstalk .content a .image img:nth-child(2) {
    opacity: 0;
  }
  #crosstalk .content a:hover .image img:nth-child(2) {
    opacity: 1;
  }
}