@charset "UTF-8";

/*=======================================================
MV
=======================================================*/
.bl_lower_mv_ttl {
  position: relative;
  z-index: 0;
}
.bl_lower_mv_ttl::before {
  background-image: url("../images/staff/mv_ttl_bg_icon.svg");
  background-position: center bottom;
  z-index: -1;
}
.bl_lower_mv_ttl::after {
  height: 17px;
  background-image: url("../images/staff/mv_ttl__en.svg");
  background-size: 65px 17px;
}

/*=======================================================
一覧
=======================================================*/
#list {
  padding-top: 60px;
  /* padding-bottom: 90px; */
}
/* @media screen and (max-width: 750px) {
  #list {
    padding-bottom: 120px;
  }
} */
.bl_staffList {
  display: flex;
  flex-direction: column;
}
.bl_staffList_ttlWrapper {
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .bl_staffList_ttlWrapper {
    margin-bottom: 60px;
  }
}
.bl_staffList_ttl {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  color: #333c4e;
}
.bl_staffList_lead {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .bl_staffList_ttl {
    font-size: 48px;
    text-align: left;
  }
  .bl_staffList_lead {
    font-size: 32px;
    line-height: 1.7;
    text-align: left;
    margin-top: 40px;
  }
}
.bl_staff {
  cursor: pointer;
  border-bottom: solid 1px #eaeaea;
  transition: padding 0.3s ease;
}
.bl_staff.active {
  padding: 20px 0;
}
@media screen and (max-width: 750px) {
  .bl_staff.active {
    padding: 40px 0;
  }
}
.bl_staff_inner {
  padding: 20px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 750px) {
  .bl_staff_inner {
    padding: 40px;
  }
}
.bl_staff.active .bl_staff_inner {
  background-color: #f4f4f4;
}
.bl_staff_head {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  padding-right: 32px;
}
@media screen and (max-width: 750px) {
  .bl_staff_head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
  }
}
.bl_staff_body {
  margin-top: 30px;
  display: none;
}
.bl_staff_body > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .bl_staff_body {
    margin-top: 40px;
  }
}
.bl_staff_bodyTtl {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  padding-left: 25px;
  margin-bottom: 10px;
  margin-top: 30px;
  position: relative;
}
.bl_staff_bodyTtl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 30px;
  background: #9e8b5f;
}
@media screen and (max-width: 750px) {
  .bl_staff_bodyTtl {
    font-size: 32px;
    padding-left: 60px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .bl_staff_bodyTtl::before {
    width: 20px;
    height: 44px;
  }
}
.bl_staff_bodyTxt {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .bl_staff_bodyTxt {
    font-size: 28px;
  }
}
.bl_staff_icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: rgba(158, 139, 95, 0.15);
}
.bl_staff_icon::before,
.bl_staff_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #9e8b5f;
}
.bl_staff_icon::before {
  width: 14px;
  height: 2px;
}
.bl_staff_icon::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.3s ease;
}
.bl_staff.active .bl_staff_icon::after {
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .bl_staff_icon {
    top: auto;
    bottom: 0;
    transform: translateY(0);
    width: 40px;
    height: 40px;
  }
  .bl_staff_icon::before {
    width: 28px;
  }
  .bl_staff_icon::after {
    height: 28px;
  }
}
.bl_staff_imgWrapper {
  width: 300px;
  flex-shrink: 0;
  border-radius: 16px;
  aspect-ratio: 300 / 204;
  overflow: hidden;
  margin-bottom: 0;
}
.bl_staff_imgWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media screen and (max-width: 750px) {
  .bl_staff_imgWrapper {
    width: 100%;
  }
}
.bl_staff_txtbox {
  flex: 1;
}
.bl_staff_ttl {
  font-weight: 700;
  font-size: 23px;
  line-height: 1.5;
}
.bl_staff_txt {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .bl_staff_ttl {
    font-size: 38px;
  }
  .bl_staff_txt {
    font-size: 28px;
  }
}
.bl_staff_bottom {
  margin-top: 90px;
  padding: 90px 0 60px;
  background-image: url("../images/staff/staff_bottom_bg.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottom {
    margin-top: 120px;
    padding: 120px 0 60px;
  }
}
.bl_staff_bottomTtl {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomTtl {
    font-size: 48px;
    margin-bottom: 60px;
  }
}
.bl_staff_bottomLead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px;
  padding: 7px 0;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.5;
  color: #fff;
  background: rgba(51, 60, 78, 0.6);
  border-radius: 300px;
}
.bl_staff_bottomLead img {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomLead {
    gap: 40px;
    margin: 0 auto 40px;
    padding: 14px 0;
    font-size: 32px;
  }
  .bl_staff_bottomLead img {
    width: 48px;
    height: 48px;
  }
}
.bl_staff_bottomList {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 60px;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomList {
    flex-direction: column;
    gap: 20px;
  }
}
.bl_staff_bottomListItem {
  width: calc((100% - 120px) / 3);
  border: solid 3px #fff;
  padding: 20px 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  position: relative;
  margin: 25px 0 15px;
}
.bl_staff_bottomListItem::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #fff transparent transparent transparent;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomListItem {
    width: 100%;
    border: solid 4px #fff;
    padding: 40px;
    font-size: 34px;
    margin: 40px 0 0;
  }
  .bl_staff_bottomListItem::after {
    display: none;
  }
}
.bl_staff_bottomListItemNum {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 28px;
  background: #fff;
  color: #333c4e;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px 100px 0 0;
  padding-top: 5px;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomListItemNum {
    top: -42px;
    width: 76px;
    height: 42px;
    font-size: 24px;
  }
}
.bl_staff_bottomVoice {
  margin-top: 60px;
  padding-top: 60px;
  border-top: solid 1px #888;
}
.bl_staff_bottomVoiceContent {
  background: rgba(255, 255, 255, 0.3);
  padding: 40px 120px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomVoiceContent {
    padding: 40px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
  }
}
.bl_staff_bottomVoiceItem {
  display: flex;
  gap: 30px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}
.bl_staff_bottomVoiceItem img {
  flex-shrink: 0;
  width: 59px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomVoiceItem {
    gap: 20px;
    align-items: center;
    font-size: 34px;
  }
  .bl_staff_bottomVoiceItem img {
    width: 78px;
  }
}
.bl_staff_bottomVoiceBtn {
  flex-shrink: 0;
}
.bl_staff_bottomVoiceBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  background: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #333c4e;
}
@media screen and (max-width: 750px) {
  .bl_staff_bottomVoiceBtn a {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    height: 100px;
    font-size: 30px;
  }
}
.staff .bl_banner {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.staff .bl_banner img {
  vertical-align: bottom;
}
.staff .bl_banner_ttl {
  display: block;
  width: fit-content;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}
.staff .bl_banner_ttl::before,
.staff .bl_banner_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  width: 28px;
  height: 3px;
  background: #fff;
}
.staff .bl_banner_ttl::before {
  left: 0;
  transform: rotate(60deg);
  transform-origin: left center;
}
.staff .bl_banner_ttl::after {
  right: 0;
  transform: rotate(-60deg);
  transform-origin: right center;
}
@media screen and (max-width: 750px) {
  .staff .bl_banner_ttl {
    font-size: 38px;
    margin-bottom: 40px;
    padding: 0 40px;
  }
  .staff .bl_banner_ttl::before,
  .staff .bl_banner_ttl::after {
    width: 38px;
    height: 4px;
  }
}
/*=======================================================
詳細
=======================================================*/
.staff .wp-pagenavi a {
  border: solid 1px #65bedd;
  background: #fff;
  color: #222;
}
.staff .wp-pagenavi a.last,
.staff .wp-pagenavi a.first,
.staff .wp-pagenavi a.previouspostslink,
.staff .wp-pagenavi a.nextpostslink {
  background: #eaeaea;
  border: solid 1px #eaeaea;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff .wp-pagenavi a.previouspostslink,
.staff .wp-pagenavi a.nextpostslink {
  font-size: 12px;
}
.staff .wp-pagenavi .current {
  border: solid 1px #01a0e9;
  background: #01a0e9;
  color: #fff;
}
.staff .wp-pagenavi .extend {
  color: #222;
}
.staff .wp-pagenavi > * {
  margin-right: 20px;
}
.staff .bl_pager_inner {
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .staff .bl_pager_inner {
    flex-direction: staff;
    gap: 40px;
  }
}
.staff .bl_pager_link {
  flex: 1;
}
.staff .bl_pager_link a {
  width: 100%;
  min-height: 120px;
  height: auto;
  border: solid 1px #222;
  background: none;
  color: #222;
  padding: 15px 25px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .staff .bl_pager_link a {
    min-height: auto;
    padding: 30px 40px;
    font-size: 32px;
  }
}
.staff .bl_pager_prev a {
  padding-left: 65px;
}
.staff .bl_pager_prev a::before {
  border-width: 9px 20px 9px 0;
  border-color: transparent #01a0e9 transparent transparent;
}
@media screen and (max-width: 750px) {
  .staff .bl_pager_prev a {
    padding-left: 88px;
  }
}
.staff .bl_pager_next a {
  padding-right: 65px;
}
.staff .bl_pager_next a::after {
  border-width: 9px 0 9px 20px;
  border-color: transparent transparent transparent #01a0e9;
  left: initial;
  right: 17px;
}
@media screen and (max-width: 750px) {
  .staff .bl_pager_next a {
    padding-right: 88px;
  }
}
