@charset "UTF-8";
@import url(/css/root.css);
.p-staff {
  margin-bottom: var(--m70);
  border-top: 1px solid var(--mainblack);
  border-bottom: 1px solid var(--mainblack);
}
.p-staff__inner {
  border-left: 1px solid var(--mainblack);
  border-right: 1px solid var(--mainblack);
}
.p-staff__list {
  display: flex;
  flex-wrap: wrap;
}
.p-staff__box {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
.p-staff__imageArea {
  width: 57.45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}
.p-staff__imageInner {
  aspect-ratio: 253/270;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 2px;
}
.p-staff__imageInner::after {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 254/247;
  background: url(/images/staff/bg_image.svg) center/100% no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-staff__image {
  transform: translateY(-1px);
}
.p-staff__image.hov_on {
  display: none;
}
.p-staff__figcaption {
  width: 100%;
  margin-top: 5px;
}
.p-staff__name {
  font-size: var(--fs16_18);
  font-weight: 600;
}
.p-staff__nameEn {
  font-size: var(--fs12);
  font-weight: 600;
}
.p-staff__textArea {
  width: 42.55%;
  padding: var(--m20);
  background-color: var(--blue01_opa);
}
.p-staff__text {
  font-size: var(--fs14);
  margin-bottom: 1em;
}
.p-staff__profileBox:not(:last-of-type) {
  margin-bottom: 16px;
}
.p-staff__profileDt {
  padding: 5px 1em;
  font-size: var(--fs14);
  font-weight: normal;
  color: #fff;
  background-color: var(--mainblack);
  width: -moz-fit-content;
  width: fit-content;
}
.p-staff__profileDd {
  padding: 7px 1em;
  font-size: var(--fs14);
  font-weight: normal;
  border: 1px solid var(--mainblack);
  background-color: var(--white);
}

/* ----------------------------------------------
　PAD以下設定
------------------------------------------------*/
@media all and (min-width: 621px) {
  .p-staff__imageArea {
    border-right: 1px solid var(--mainblack);
  }
}
@media all and (min-width: 769px) {
  .p-staff__imageInner:hover .p-staff__image.hov_off {
    display: none;
  }
  .p-staff__imageInner:hover .p-staff__image.hov_on {
    display: block;
  }
}
@media all and (min-width: 981px) {
  .p-staff__box:nth-child(odd) {
    border-right: 1px solid var(--mainblack);
  }
  .p-staff__box:nth-child(n+3) {
    border-top: 1px solid var(--mainblack);
  }
}
@media all and (max-width: 980px) {
  .p-staff__box {
    width: 100%;
  }
  .p-staff__box:nth-child(n+2) {
    border-top: 1px solid var(--mainblack);
  }
  .p-staff__imageArea {
    padding-top: var(--m50);
    padding-bottom: var(--m50);
  }
}
@media all and (max-width: 768px) {
  .p-staff__imageArea {
    position: relative;
  }
  .p-staff__imageArea::after {
    content: "";
    display: inline-block;
    width: 15%;
    aspect-ratio: 52/51;
    background: url(/images/staff/icon_smile.svg) center/100% no-repeat;
    position: absolute;
    bottom: var(--m20);
    right: var(--m20);
  }
  .p-staff__image.hov_off.is-hide {
    display: none;
  }
  .p-staff__image.hov_on.is-show {
    display: block;
  }
}
/* ----------------------------------------------
　SP調整
------------------------------------------------*/
@media all and (max-width: 620px) {
  .p-staff__imageArea {
    width: 100%;
    padding: 20px;
    flex-direction: row;
    justify-content: space-between;
  }
  .p-staff__imageInner {
    width: 55%;
  }
  .p-staff__figcaption {
    width: 40%;
  }
  .p-staff__textArea {
    width: 100%;
    padding: 20px;
    border-top: 1px solid var(--mainblack);
  }
}