@charset "utf-8";
/* CSS Document */

.staff_profile_wrap {
  flex-direction: column;
  gap: 100px;
    max-width: 1280px;
}

.staff_profile_wrap .staff_profile_item {
  gap: 60px;
}

.staff_profile_wrap .staff_profile_item .txtbox {
  width: calc(60% - 30px);
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.staff_profile_wrap .staff_profile_item .imgbox {
  width: calc(40% - 30px);
  gap: 20px;
  align-items: flex-start;
}

.staff_profile_wrap .staff_profile_item .imgbox .leftbox {
  flex: 1;
  flex-direction: column;
  gap: 18px;
}

.staff_profile_wrap .staff_profile_item .imgbox .leftbox img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.staff_profile_wrap .staff_profile_item .imgbox .leftbox .namebox {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.staff_profile_wrap .staff_profile_item .imgbox .leftbox .label {
  color: #333;
}

.staff_profile_wrap .staff_profile_item .imgbox .leftbox .name {
  color: #333;
}

.staff_profile_wrap .staff_profile_item .imgbox .rightbox {
  width: auto;
}

.staff_profile_wrap .staff_profile_item .imgbox .rightbox p {
  letter-spacing: 0.12em;
  line-height: 1;
  font-weight: 500;
  font-size: 25px;
  color: #B288A0;
}

.staff_profile_wrap .staff_profile_item .txtbox .title {
  letter-spacing: 0.08em;
  line-height: 1;
}

.staff_profile_wrap .staff_profile_item .txtbox .bottombox {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 30px;
  width: 100%;
  gap: 30px;
  flex-direction: column;
}

.staff_profile_wrap .staff_profile_item .txtbox .bottombox .txtitem {
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.staff_profile_wrap .staff_profile_item .txtbox .bottombox .txtitem h3 {
  position: relative;
  padding-left: 25px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: #D5D5D5 1px solid;
  width: 100%;
}

.staff_profile_wrap .staff_profile_item .txtbox .bottombox .txtitem h3::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  width: 8px;
  height: 8px;
  background: #B288A0;
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .staff_profile_wrap .staff_profile_item {
    flex-direction: column-reverse;
  }

  .staff_profile_wrap .staff_profile_item .txtbox {
    width: 90%;
  }

  .staff_profile_wrap .staff_profile_item .imgbox {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .staff_profile_wrap .staff_profile_item {
    gap: 40px;
  }

  .staff_profile_wrap .staff_profile_item .txtbox {
    gap: 20px;
  }

  .staff_profile_wrap .staff_profile_item .txtbox .bottombox {
    gap: 10px;
  }

  .staff_profile_wrap .staff_profile_item .txtbox .bottombox .txtitem h3 {
    padding-left: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .staff_profile_wrap {
    gap: 80px;
  }
}

@media screen and (max-width: 576px) {
  .staff_profile_wrap .staff_profile_item .imgbox {
    width: 70%;
  }

  .staff_profile_wrap .staff_profile_item .txtbox .bottombox {
    padding: 30px 20px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

