/*==================================================
section reason
===================================*/
.top_reason {
  background-color: #fff;
}

.top_reason__wrapper {
  position: relative;
  padding: 6rem 0;
  background-color: #f7f7f7;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

@media screen and (max-width: 767px) {
  .top_reason__wrapper {
    padding: 4rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  }
}

.top_reason__wrapper::after {
  content: "Reason";
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 18rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.8rem;
  line-height: 17.5rem;
  position: absolute;
  top: 30%;
  right: -17rem;
  display: block;
  width: 54rem;
  transform: rotate(90deg);
}

.top_reason__list {
  padding: 2rem 0 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top_reason__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.top_reason__list_item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.top_reason__list_item:nth-of-type(2) {
  transform: translateY(4rem);
}

.top_reason__list_item:nth-of-type(3) {
  transform: translateY(8rem);
}

@media screen and (max-width: 767px) {
  .top_reason__list_item:nth-of-type(2),
  .top_reason__list_item:nth-of-type(3) {
    transform: inherit;
  }
}

.top_reason__list_image {
  width: 100%;
}

.top_reason__list_content {
  padding: 2rem;
}

.top_reason__list_title {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px #ccd5dd;
}

.top_reason__list_title label {
  display: block;
  color: #ff7600;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  line-height: 3rem;
  padding-left: 1rem;
  position: relative;
}

.top_reason__list_title label::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #ff7600;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.top_reason__list_title span {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  color: #005293;
}

.top_reason__list_text {
  font-size: 1.4rem;
  letter-spacing: 0.08rem;
  line-height: 2.8rem;
}

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