@charset "UTF-8";
/***********************共通設定************************/
main {
  background: #fff;
}

/* ==========================================================================//
//
//　共通
//
// ========================================================================== */
section {
  padding: 60px 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  section {
    padding: 80px 0;
  }
}
section:not(:last-of-type) {
  position: relative;
}
section:not(:last-of-type)::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(to right, #4B8E78 4px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  height: 1px;
  width: min(1080px, 89.4%);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 751px) and (max-width: 1325px) {
  section:not(:last-of-type)::after {
    width: min(1080px, 94%);
  }
}
@media all and (min-width: 1326px) {
  section:not(:last-of-type)::after {
    width: min(1080px, 80%);
  }
}

.sec_title {
  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;
}
.sec_title h2 {
  padding: 0 0 0 35px;
  font-size: 18px;
  text-align: left;
  position: relative;
  line-height: 1.35;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_title h2 {
    padding: 0 0 0 70px;
    font-size: 30px;
    line-height: 1.16;
  }
}
.sec_title h2 span {
  color: #2BB06B;
}
.sec_title h2::before {
  margin-top: -15px;
  content: "";
  position: absolute;
  background-image: url(../images/symptoms/ico_check.svg);
  background-size: cover;
  width: 25px;
  height: 25px;
  left: 0;
  top: 52%;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_title h2::before {
    margin-top: -25px;
    width: 50px;
    height: 50px;
    top: 50%;
  }
}

.wrap {
  margin-top: 26px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .wrap {
    margin-top: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wrap .section_image {
  margin-inline: auto;
  width: min(237px, 100%);
}
.wrap p {
  padding: 20px 0 0;
  text-align: left;
  line-height: 2;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .wrap p {
    padding: 0;
    width: 76%;
    line-height: 2.125;
    letter-spacing: 0.03em;
  }
}
.wrap p span {
  font-weight: bold;
  color: #2BB06B;
}

h3 {
  margin: 30px 0 15px;
  padding: 15px;
  background: #F6FFEE;
  font-size: 16px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  h3 {
    margin: 40px 0 30px;
    padding: 20px;
    font-size: 24px;
  }
}

.possibility_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .possibility_list {
    gap: 20px 9px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    margin-inline: auto;
    width: min(1038px, 100%);
  }
}
.possibility_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 48%;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .possibility_list li {
    font-size: 20px;
    width: 24.3%;
  }
}
.possibility_list li a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px;
  position: relative;
  display: block;
  color: #2BB06B;
  border: 1px solid #62CC93;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .possibility_list li a {
    padding: 10px 5px;
  }
}
.possibility_list li a::after {
  position: absolute;
  content: "";
  background: url(../images/symptoms/ico_arrow.svg) no-repeat;
  background-size: cover;
  width: 6px;
  height: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .possibility_list li a:hover {
    background: #2BB06B;
    color: #fff;
  }
  .possibility_list li a:hover::after {
    right: 2px;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}