@charset "UTF-8";
/***********************共通設定************************/
.job_note {
  color: #FFA103;
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 0px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .job_note {
    margin: 40px 0 80px;
    font-size: 24px;
  }
}

section {
  text-align: left;
  margin: 50px 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  section {
    margin: 100px 0 0;
  }
}
section h2 {
  font-size: 18px;
  color: #007E3D;
  position: relative;
  padding: 10px 0 10px 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  section h2 {
    font-size: 24px;
  }
}
section h2::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 20px;
  background: #007E3D;
  border-radius: 10px;
  left: 0;
  top: 50%;
  margin: -10px 0 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  section h2::before {
    width: 10px;
    height: 40px;
    margin: -20px 0 0;
  }
}

.doctor_list, .stuff_list {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .doctor_list, .stuff_list {
    padding: 20px 70px 0;
  }
}
.doctor_list li, .stuff_list li {
  padding: 20px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .doctor_list li, .stuff_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.doctor_list li h3, .stuff_list li h3 {
  font-weight: normal;
  /* 751以上 */
  /* 750以下  */
}
@media all and (min-width: 751px) {
  .doctor_list li h3, .stuff_list li h3 {
    width: 14%;
  }
}
@media all and (max-width: 750px) {
  .doctor_list li h3, .stuff_list li h3 {
    margin: 0 0 10px;
  }
}
.doctor_list li:nth-child(even), .stuff_list li:nth-child(even) {
  background: #F6F6F6;
}

.visit_note {
  margin: 20px 0 20px;
  text-align: left;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .visit_note {
    margin: 40px 0 20px;
  }
}
.visit_note li {
  margin: 0 0 10px;
}
.visit_note li::before {
  content: "■";
}
.visit_note li a {
  color: #2BB06B;
  position: relative;
}
.visit_note li a::before, .visit_note li a::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #2BB06B;
  left: 0;
  bottom: 0;
}
.visit_note li a::before {
  width: 100%;
}
.visit_note li a::after {
  width: 0%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.visit_note li a:hover::before {
  width: 0%;
}
.visit_note li a:hover::after {
  width: 100%;
}
/*# sourceMappingURL=job.css.map */