/* ---------------------------------------
  #doctor
-----------------------------------------*/
#doctor .doctor_name_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  #doctor .doctor_name_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
  }
}
#doctor .doctor_name_box .img_box {
  width: 48rem;
}
@media screen and (max-width: 767px) {
  #doctor .doctor_name_box .img_box {
    width: 100%;
  }
}
#doctor .doctor_name_box .txt_box {
  position: relative;
  padding: 4.4rem 0 4.4rem 4rem;
  width: 48rem;
}
@media screen and (max-width: 767px) {
  #doctor .doctor_name_box .txt_box {
    width: 100%;
    padding: 2.2rem 2rem;
  }
}
#doctor .doctor_name_box .txt_box::before, #doctor .doctor_name_box .txt_box::after {
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(6, 165, 191)), to(rgb(8, 75, 193)));
  background: linear-gradient(90deg, rgb(6, 165, 191) 0%, rgb(8, 75, 193) 100%);
  position: absolute;
  left: 0;
}
#doctor .doctor_name_box .txt_box::before {
  top: 0;
}
#doctor .doctor_name_box .txt_box::after {
  bottom: 0;
}
#doctor .doctor_name_box .txt_box .position {
  font-size: 2.4rem;
  font-weight: 700;
  color: #676B80;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #doctor .doctor_name_box .txt_box .position {
    font-size: 1.4rem;
  }
}
#doctor .doctor_name_box .txt_box .name_ja {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #doctor .doctor_name_box .txt_box .name_ja {
    font-size: 2.4rem;
  }
}
#doctor .doctor_name_box .txt_box .name_en {
  margin-top: 1.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #06A5BF;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #doctor .doctor_name_box .txt_box .name_en {
    font-size: 1.4rem;
  }
}
#doctor .inner {
  margin-top: 4rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  #doctor .inner {
    margin-top: 2rem;
    padding: 0;
  }
}
#doctor .lead {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #doctor .lead {
    font-size: 1.6rem;
  }
}
#doctor .detail_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2rem;
  }
}
#doctor .detail_box .ttl_detail {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .ttl_detail {
    font-size: 2rem;
  }
}
#doctor .detail_box .ttl_detail::before {
  content: "";
  width: 4px;
  height: 3.2rem;
  background-color: #06A5BF;
  border-radius: 2px;
  display: block;
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .ttl_detail::before {
    height: 2.4rem;
  }
}
#doctor .detail_box .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .list li {
    font-size: 1.6rem;
  }
}
#doctor .detail_box .list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #676B80;
  margin-right: 1.2rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .list li::before {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    margin-right: 0.6rem;
  }
}
#doctor .detail_box .list li + li {
  margin-top: 2rem;
}
#doctor .detail_box .detail_clm {
  width: 46.4rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .detail_clm {
    width: 100%;
  }
}
#doctor .detail_box .history .history_list dt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .history .history_list dt {
    font-size: 1.6rem;
  }
}
#doctor .detail_box .history .history_list dd {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .history .history_list dd {
    font-size: 1.6rem;
  }
}
#doctor .detail_box .history .history_list dd + dt {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .history .history_list dd + dt {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .other_box {
    margin-top: 2rem;
  }
}
#doctor .detail_box .affiliation {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #doctor .detail_box .affiliation {
    margin-top: 2rem;
  }
}

/* ---------------------------------------
  #features
-----------------------------------------*/
#features .clm_features .ttl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  #features .clm_features .ttl_box {
    gap: 0 1rem;
  }
}
#features .clm_features .ttl_box .point {
  width: 12rem;
  height: 12rem;
  border-radius: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(rgb(6, 165, 191)), to(rgb(8, 75, 193)));
  background: linear-gradient(90deg, rgb(6, 165, 191) 0%, rgb(8, 75, 193) 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 767px) {
  #features .clm_features .ttl_box .point {
    width: 6rem;
    height: 6rem;
    border-radius: 3rem;
    font-size: 1.4rem;
  }
}
#features .clm_features .ttl_box .point .number {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #features .clm_features .ttl_box .point .number {
    font-size: 1.6rem;
  }
}
#features .clm_features .ttl_box .ttl {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #features .clm_features .ttl_box .ttl {
    font-size: 2rem;
    line-height: 1.5;
  }
}
#features .clm_features .content_box {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #features .clm_features .content_box {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
  }
}
#features .clm_features .content_box .txt {
  width: 50rem;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #features .clm_features .content_box .txt {
    width: 100%;
    font-size: 1.6rem;
  }
}
#features .clm_features .content_box .img {
  width: 42rem;
}
@media screen and (max-width: 767px) {
  #features .clm_features .content_box .img {
    width: 100%;
  }
}

/* ---------------------------------------
  #criterion
-----------------------------------------*/
#criterion .lead {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #criterion .lead {
    font-size: 1.6rem;
  }
}
#criterion .clm_content {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #criterion .clm_content {
    margin-top: 2rem;
  }
}
#criterion .clm_content .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #criterion .clm_content .ttl {
    font-size: 1.6rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#criterion .clm_content .ttl::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #676B80;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: block;
  margin-right: 1.2rem;
}
@media screen and (max-width: 767px) {
  #criterion .clm_content .ttl::before {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    margin-top: 1rem;
  }
}
#criterion .clm_content .txt {
  margin-top: 0.8rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #criterion .clm_content .txt {
    font-size: 1.6rem;
    margin-top: 0.4rem;
  }
}
#criterion .clm_content .att {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  color: #676B80;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #criterion .clm_content .att {
    font-size: 1.4rem;
  }
}
#criterion .clm_content + .clm_content {
  margin-top: 2rem;
}