@charset "UTF-8";
.c-btn-01 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: #ffffff;
  border: 1px solid #3FA7D1;
  color: #3FA7D1;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-01::after {
  background-image: url("../images/common/icon-arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

.c-btn-02 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-02::after {
  background-image: url("../images/common/icon-arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

/* =========================================================
staff
========================================================= */
.p-staff-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 10vh;
}
@media screen and (max-width: 767px) {
  .p-staff-mv {
    margin-bottom: 40px;
  }
}
.p-staff-mv_wrap {
  position: relative;
  width: 97%;
  height: 80vh;
  min-height: 500px;
  background-image: url("../images/common/mv-about.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-left: 3%;
  padding-left: 10%;
  border-bottom-left-radius: 120px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .p-staff-mv_wrap {
    height: 50vh;
    min-height: 360px;
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-staff-mv_wrap {
    width: 100%;
    margin-left: 0;
    height: 40vh;
    min-height: 280px;
    border-bottom-left-radius: 60px;
  }
}
.p-staff-mv_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 110, 140, 0.55);
  mix-blend-mode: multiply;
  z-index: 1;
}
.p-staff-mv_head {
  background-color: #ffffff;
  border-radius: 0 12px 12px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px 120px 20px 20px;
}
@media screen and (max-width: 991px) {
  .p-staff-mv_head {
    padding: 16px 60px 16px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-staff-mv_head {
    padding: 12px 30px 12px 16px;
  }
}
.p-staff-mv_ttl {
  color: #333333;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.p-staff-mv_ttl .en {
  color: #3FA7D1;
  display: block;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  margin-bottom: 4px;
}
.p-staff-cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; /* 上端を揃える */
  width: 94%;
  max-width: 1280px;
  margin: 0 auto 10vh;
}
@media screen and (max-width: 991px) {
  .p-staff-cont {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-staff-cont {
    margin-bottom: 60px;
  }
}
.p-staff-sidenav {
  width: 25%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
@media screen and (max-width: 991px) {
  .p-staff-sidenav {
    display: none;
  }
}
.p-staff-sidenav_ttl {
  border-bottom: 3px solid #333333;
  color: #333333;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px; /* 右側の _head エリアと高さを揃える */
  display: flex;
  align-items: flex-end; /* テキストを下寄りに配置してボーダー位置を統一 */
}
.p-staff-sidenav_item a {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-staff-sidenav_item a::before {
  background-image: url(../images/common/icon-arrow_right-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}
.p-staff-sidenav_item a:hover {
  color: #3FA7D1;
  background-color: #f8fcfe;
}
.p-staff-sidenav_item a:hover::before {
  transform: translateX(4px);
}
.p-staff-sidenav_item.is-current a {
  color: #3FA7D1;
  font-weight: 700;
  background-color: #f8fcfe;
}
.p-staff-sidenav_item.is-current a::before {
  background-image: url(../images/common/icon-arrow_right.svg);
  transform: translateX(4px);
}
.p-staff-box {
  width: 72%;
}
@media screen and (max-width: 991px) {
  .p-staff-box {
    width: 100%;
  }
}
.p-staff-box_head {
  border-bottom: 3px solid #333333;
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px; /* 左側の _ttl と高さを統一 */
  display: flex;
  align-items: flex-end; /* テキスト・アイコンを下寄りに配置してボーダー位置を統一 */
}
@media screen and (max-width: 767px) {
  .p-staff-box_head {
    margin-bottom: 24px;
    padding-bottom: 8px;
    min-height: auto;
  }
}
.p-staff-box_ttl {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1; /* 余計な上下の余白をリセット */
}
.p-staff-box_ttl::before {
  background-image: url(../images/common/icon-tooth.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
  margin-right: 14px;
  flex-shrink: 0;
}
.p-staff-list {
  /* ----------------------------------------------------
  スタッフカード装飾（完全版）
  ---------------------------------------------------- */
}
.p-staff-list_ttl {
  border-left: 6px solid #3FA7D1;
  color: #333333;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-staff-list_ttl {
    margin-bottom: 20px;
  }
}
.p-staff-list_ttl .en {
  color: #C4C4C4;
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  margin-top: 2px;
}
.p-staff-list_item {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(63, 167, 209, 0.15);
  padding: 36px;
  margin-bottom: 40px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-staff-list_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(63, 167, 209, 0.18);
}
@media screen and (max-width: 767px) {
  .p-staff-list_item {
    padding: 24px 18px;
    margin-bottom: 28px;
    border-radius: 12px;
  }
}
.p-staff-list_item:nth-child(even) .p-staff-list_item--top {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .p-staff-list_item:nth-child(even) .p-staff-list_item--top {
    flex-direction: column;
  }
}
.p-staff-list_item--top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .p-staff-list_item--top {
    flex-direction: column;
  }
}
.p-staff-list_item--thum {
  width: 44%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  /* ホバー時に写真が少しズームイン */
}
@media screen and (max-width: 991px) {
  .p-staff-list_item--thum {
    width: 100%;
  }
}
.p-staff-list_item--thum img {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.p-staff-list_item--thum:hover img {
  transform: scale(1.03);
}
.p-staff-list_item--intro01 {
  width: 52%;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .p-staff-list_item--intro01 {
    width: 100%;
  }
}
.p-staff-list_item--intro02 {
  width: 100%;
  margin-bottom: 20px;
}
.p-staff-list_item--name {
  border-bottom: 2px solid #eef3f6;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
  /* 名前の下にブランドカラーのアクセント線 */
}
.p-staff-list_item--name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #3FA7D1;
  border-radius: 2px;
}
.p-staff-list_item--name .en {
  color: #888888;
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.p-staff-list_item--detail_gp dt {
  color: #3FA7D1;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
}
.p-staff-list_item--detail_gp dd {
  color: #333333;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 4px;
}
.p-staff-list_item--detail_gp dd.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  color: #1e6e8c;
  padding: 12px 16px;
  border-left: 4px solid #E6C003;
}
.p-staff-locumlist_ttl {
  border-left: 6px solid #3FA7D1;
  color: #333333;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-staff-locumlist_ttl {
    margin-bottom: 20px;
  }
}
.p-staff-locumlist_ttl .en {
  color: #C4C4C4;
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  margin-top: 2px;
}
.p-staff-otherlist_ttl {
  border-left: 6px solid #3FA7D1;
  color: #333333;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-staff-otherlist_ttl {
    margin-bottom: 20px;
  }
}
.p-staff-otherlist_ttl .en {
  color: #C4C4C4;
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  margin-top: 2px;
}
/*# sourceMappingURL=style-staff.css.map */