/*==================================================
section reason
===================================*/
.top_reason {
  position: relative;
  counter-reset: num;
}

.top_reason::after {
  content: "";
  display: block;
  width: 8.8rem;
  background-color: #f1faf1;
  aspect-ratio: 1 / cos(30deg);
  clip-path: polygon(50% 50%, 100% 0, 0 0);
  position: absolute;
  bottom: -11rem;
  left: calc(50% - 3.8rem);
  transform: translateY(-50%);
}

.top_reason__title {
  width: 100%;
  height: 7rem;
  background-color: #1a1a1a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.top_reason__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.top_reason__title_file {
  display: block;
  width: 100%;
  max-width: 65rem;
  position: relative;
  z-index: 3;
}

.top_reason__container {
  background-color: #e3f5e5;
  position: relative;
  padding-bottom: 6rem;
}

.top_reason__container::after {
  content: "";
  background: url(../img/reason_bg.png) no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 43rem;
  bottom: 0;
  left: 0;
}

.top_reason__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.top_reason__items {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.top_reason__item {
  background-color: #fff;
  border: solid 1px #6eb90b;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  width: 100%;
}

.top_reason__item_label {
  background-color: #6eb90b;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  width: 100%;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  padding: 1.8rem;
  line-height: 1rem;
}

.top_reason__item_image {
  padding-top: 3rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_reason__item_image:nth-of-type(1),
.top_reason__item_image:nth-of-type(4) {
  width: 4.7rem;
}

.top_reason__item_image:nth-of-type(2) {
  width: 5.5rem;
}

.top_reason__item_image:nth-of-type(3) {
  width: 6.5rem;
}

.top_reason__item_image:nth-of-type(5) {
  width: 5.8rem;
}

.top_reason__item_inner {
  padding: 2rem 1.5rem;
}

.top_reason__item_lead {
  text-align: center;
  font-weight: 600;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.top_reason__item_text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.8rem;
}

.top_reason__btn {
  position: relative;
  padding-top: 2rem;
  z-index: 2;
}

.top_reason__bottom_image {
  position: absolute;
  width: 8rem;
  height: 13rem;
  bottom: 0;
  left: 5%;
  z-index: 2;
}

.top_reason__bottom_image img {
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .top_reason__container {
    padding-bottom: 7rem;
  }

  .top_reason__title {
    height: 12rem;
    align-items: center;
  }

  .top_reason__title::before {
    height: 3.4rem;
  }

  .top_reason__btn {
    padding-top: 3rem;
  }

  .top_reason__items {
    flex-direction: row;
    padding: 0;
  }

  .top_reason__item {
    min-height: 38rem;
    margin-top: 3rem;
    width: 25%;
  }

  .top_reason__item_inner {
    min-height: 35rem;
  }

  .top_reason__bottom_image {
    width: 12.5rem;
    height: 20rem;
    left: 10%;
  }
}

@media screen and (min-width: 2300px) {
  .top_reason__item_inner {
    min-height: 40.7rem;
  }
}

/*==================================================
section reason END
===================================*/
