.sidebar {
  display: none;
}

.staffProfileList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}
.staffProfileList .staffProfileItem {
  margin-bottom: 50px;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .staffProfileList .staffProfileItem {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px auto 0;
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .staffProfileList .staffProfileItem:first-child {
    margin-top: 20px;
  }
}
.staffProfileList .staffProfileItem .staffImageArea {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .staffProfileList .staffProfileItem .staffImageArea {
    width: 40%;
  }
}
.staffProfileList .staffProfileItem .staffImageArea .staffImage.ishitobiImage, .staffProfileList .staffProfileItem .staffImageArea .staffImage.toyamaImage {
  border: 1px solid lightgray;
}
.staffProfileList .staffProfileItem .staffInfoArea {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .staffProfileList .staffProfileItem .staffInfoArea {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    width: 55%;
  }
}
.staffProfileList .staffProfileItem .staffInfoArea .staffName {
  text-align: center;
  width: 100%;
}
.staffProfileList .staffProfileItem .staffInfoArea .staffProfileLink {
  background-color: #355bb7;
  border-radius: 3px;
  display: block;
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .staffProfileList .staffProfileItem .staffInfoArea .staffProfileLink {
    font-size: 16px;
    padding: 10px 5px;
    width: 100%;
  }
}
.staffProfileList .staffProfileItem .staffInfoArea .staffProfileLink:hover {
  opacity: 0.8;
  transition: 0.4;
}

.staffProfileArea {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .staffProfileArea {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.staffProfileArea .profileTextArea {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .staffProfileArea .profileTextArea {
    width: 100%;
  }
}
.staffProfileArea .profileImageArea {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .staffProfileArea .profileImageArea {
    margin: 10px auto 20px;
    width: 50%;
  }
}

.profileText {
  font-size: 18px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .profileText {
    font-size: 16px;
  }
}
.profileText .focusText {
  color: #e10000;
  font-weight: bold;
}

.careerDl {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
.careerDl .careerDt {
  line-height: 2;
  width: 8%;
}
@media screen and (max-width: 767px) {
  .careerDl .careerDt {
    width: 25%;
  }
}
.careerDl .careerDd {
  line-height: 2;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .careerDl .careerDd {
    width: 70%;
    margin-left: 0;
  }
}
