@charset "utf-8";

.checkup_list {
  display: flex;
  flex-wrap: wrap;
}

.checkup_list li {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  line-height: 1.5;
  padding: 5px 5px 5px 70px;
  width: calc(50% - 7px);
  background: white;
  border-radius: 7px;
}

.checkup_list li::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  height: 60px;
  width: 60px;
  background-color: #a4deed;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 3px;
}

.checkup_list li.type_gastric::before {
  background-image: url(/assets/img/contents/thumb_gastric.png);
}

.checkup_list li.type_colorectal::before {
  background-image: url(/assets/img/contents/thumb_colorectal.png);
}

.checkup_list li.type_uterine::before {
  background-image: url(/assets/img/contents/thumb_uterine.png);
}

.checkup_list li.type_breast::before {
  background-image: url(/assets/img/contents/thumb_breast.png);
}

.checkup_list li.type_hepatitis::before {
  background-image: url(/assets/img/contents/thumb_hepatitis.png);
}

.checkup_list li.type_abdomen_echo::before {
  background-image: url(/assets/img/contents/thumb_abdomen_echo.png);
}

.checkup_list li.type_breast_echo::before {
  background-image: url(/assets/img/contents/thumb_breast_echo.png);
}

.checkup_list li.type_prostate::before {
  background-image: url(/assets/img/contents/thumb_prostate.png);
}

.checkup_list li.type_lung::before {
  background-image: url(/assets/img/contents/thumb_lung.png);
}

@media (max-width: 640px) {
  .checkup_list {
  }

  .checkup_list li {
    font-size: 0.857rem;
    height: 70px;
  }

  .checkup_list li:nth-child(odd) {
    margin-right: 14px;
  }

  .checkup_list li:nth-child(n+3) {
    margin-top: 15px;
  }

}

@media (min-width: 641px) {
  .checkup_list {
    margin: 0 auto;
    width: 950px;
    justify-content: center;
  }

  .checkup_list li {
    padding: 165px 10px 10px 10px;
    width: 170px;
    border-radius: 14px;
    margin: 10px;
  }

  .checkup_list li::before {
    top: 10px;
    left: 10px;
    height: 150px;
    width: 150px;
    border-radius: 6px;
  }
}


/* ------------------------------
	予約方法
------------------------------ */
#cancer_reserve .section_reserve_body .cancer_reserve_item:not(:last-child) {
  background: url("/assets/img/contents/line_dotx.png") repeat-x left bottom;
}

#cancer_reserve .section_reserve_body .cancer_reserve_item .telnumber {
  position: relative;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.3;
}

#cancer_reserve .section_reserve_body .cancer_reserve_item .telnumber::before {
  content: '';
  display: block;
  background-size: contain !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  background: url("../img/icon_tel.png") no-repeat center;
}

@media (max-width: 640px) {
  #cancer_reserve .section_reserve_body .cancer_reserve_item:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    background-size: 9px auto;
  }

  #cancer_reserve .section_reserve_body .cancer_reserve_item .telnumber {
    font-size: 2rem;
    padding-left: 45px;
  }
  
  #cancer_reserve .section_reserve_body .cancer_reserve_item .telnumber::before {
    width: 35px;
    height: 20px;
  }

}

@media (min-width: 641px) {
  #cancer_reserve .section_reserve_body .cancer_reserve_item {
    position: relative;
    padding-left: 10rem;
  }
  
  #cancer_reserve .section_reserve_body .cancer_reserve_item>h4 {
    box-sizing: border-box;
    position: absolute;
    display: flex;
    height: 100%;
    width: 8rem;
    align-items: center;
    left: 1rem;
    top: 0;
  }

  #cancer_reserve .section_reserve_body .cancer_reserve_item:not(:last-child)>h4 {
    padding-bottom: 15px;
  }
  
  #cancer_reserve .section_reserve_body .cancer_reserve_item:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  #cancer_reserve .section_reserve_body .cancer_reserve_item .telnumber {
    font-size: 3rem;
    padding-left: 80px;
  }
  
  #cancer_reserve .section_reserve_body .cancer_reserve_item .telnumber::before {
    width: 70px;
    height: 40px;
  }
}


/* ------------------------------
	総合健診
------------------------------ */
.comprehensive_lead {
  position: relative;
}

.comprehensive_lead::after {
  display: block;
  content: '';
  position: absolute;
  width: 66px;
  height: 80px;
  bottom: 10px;
  right: -10px;
  background: url(../img/comprehensive_chara.png) no-repeat center center;
  background-size: contain;
}

.comprehensive_lead_aside {
  box-sizing: border-box;
  background: white;
  padding: 10px;
  border-radius: 7px;
}

@media (max-width: 640px) {
  .comprehensive_lead_aside {
    margin-top: 1rem;
  }

  .comprehensive_lead_aside ul {
    padding-right: 50px;
  }
}

@media (min-width: 641px) {
  .comprehensive_lead::after {
    width: 83px;
    height: 100px;
    bottom: -50px;
    right: -50px;
  }

  .comprehensive_lead {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .comprehensive_lead_main {
    width: 600px;
  }

  .comprehensive_lead_aside {
    width: 460px;
    padding: 20px;
    border-radius: 14px;
  }
}

