@charset "UTF-8";

/* PC固定ページ スタッフ紹介（詳細） */
#staff_detail {
  padding: 100px 0;
}

#staff_detail .head {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 80px;
}

#staff_detail .image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}

#staff_detail .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

#staff_detail .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 24px 0;
}

#staff_detail .kana {
  font-size: 18px;
  color: #221E1F;
}

#staff_detail .title span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0em;
  color: #221E1F;
}

#staff_detail .title span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 5px;
  left: 0;
  background: #221E1F;
}

#staff_detail .text {
  background: #fff;
  border-radius: 16px;
  padding: 24px 40px;
  margin-top: 40px;
}

#staff_detail .dl-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 60px;
}

#staff_detail .dl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 32px;
}

#staff_detail .dt {
  min-width: 144px;
  height: max-content;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  background: #221E1F;
  border-radius: 20px;
  padding: 8px 16px 10px;
  text-align: center;
}

#staff_detail .dd {
  position: relative;
  top: 2px;
}

@media (max-width: 750px) {

  /* SP固定ページ スタッフ紹介（詳細） */
  #staff_detail {
    padding: 15.38vw 0;
  }

  #staff_detail .name {
    text-align: center;
  }

  #staff_detail .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 5.13vw;
  }

  #staff_detail .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 70%;
    margin-inline: auto;
  }

  #staff_detail .contents {
    width: 100%;
    padding: 0;
  }

  #staff_detail .kana {
    font-size: 3.6vw;
  }

  #staff_detail .title span {
    font-size: 7.69vw;
  }

  #staff_detail .title span::before {
    height: 1px;
    bottom: 0.51vw;
  }

  #staff_detail .text {
    font-size: 3.59vw;
    border-radius: 3.08vw;
    padding: 5.13vw;
    margin-top: 3.08vw;
  }

  #staff_detail .dl-wrap {
    grid-template-columns: 1fr;
    gap: 5.13vw;
    margin-top: 10.26vw;
  }

  #staff_detail .dl {
    gap: 6.15vw;
  }

  #staff_detail .dt {
    min-width: 28.21vw;
    font-size: 3.08vw;
    border-radius: 5.13vw;
    padding: 1.54vw 2.56vw 2.05vw;
  }

  #staff_detail .dd {
    top: 0.51vw;
  }
}