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

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

@media screen and (max-width: 480px) {
  .page_reason__title {
    height: 7rem;
  }
}

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

@media screen and (max-width: 480px) {
  .page_reason__title::before {
    height: 2rem;
  }
}

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

.page_reason__container {
  background-color: #ffec80;
  position: relative;
  padding-bottom: 6rem;
}

@media screen and (max-width: 480px) {
  .page_reason__container {
    padding-bottom: 4rem;
  }
}

.page_reason__container::before {
  content: "";
  display: block;
  width: 8.8rem;
  background-color: #fff2a8;
  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%);
}

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

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

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

@media screen and (max-width: 480px) {
  .page_reason__items {
    flex-direction: column;
    padding: 2rem;
  }
}

.page_reason__item {
  background-color: #fff;
  border: solid 1px #6eb90b;
  border-radius: 1rem;
  min-height: 41rem;
  margin-top: 3rem;
  width: 25%;
  position: relative;
}

@media screen and (max-width: 480px) {
  .page_reason__item {
    min-height: auto;
    margin-top: 0;
    padding-bottom: 2rem;
    width: 100%;
  }
}

.page_reason__item::after {
  content: "";
  width: 2rem;
  height: 0.9rem;
  background: url(../img/reason_arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
}

.page_reason__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page_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;
}

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

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

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

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

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

.page_reason__item_inner {
  padding: 2rem 1.5rem;
}

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

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

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

@media screen and (max-width: 480px) {
  .page_reason__btn {
    padding-top: 2rem;
  }
}

.page_reason_detail {
  padding: 10rem 0 7rem;
  counter-reset: number;
}

@media screen and (max-width: 480px) {
  .page_reason_detail {
    padding: 4rem 5%;
  }
}

.page_reason__content {
  position: relative;
  padding: 6rem 0;
}

@media screen and (max-width: 480px) {
  .page_reason__content {
    padding: 1rem 0;
  }
}

.page_reason__content::before {
  content: "";
  width: calc(50% - 20rem);
  height: 30vw;
  background-color: #fffbf0;
  border-radius: 0 2rem 2rem 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.page_reason__content:nth-of-type(2n)::before {
  left: unset;
  right: 0;
  border-radius: 2rem 0 0 2rem;
}

.page_reason__content:nth-of-type(5):before {
  height: 45vw;
}

.page_reason__content::after {
  counter-increment: number;
  content: "REASON 0" counter(number);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 6.6rem;
  letter-spacing: 0.08em;
  color: #f2f2f2;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 5rem);
  right: -8rem;
}

@media screen and (max-width: 480px) {
  .page_reason__content::after {
    display: none;
  }
}

.page_reason__content:nth-of-type(2n)::after {
  left: -20rem;
  right: unset;
  border-radius: 2rem 0 0 2rem;
}

.page_reason__content_inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 480px) {
  .page_reason__content_inner {
    flex-direction: column;
    gap: 2rem;
  }
}

.page_reason__content:nth-of-type(2n) .page_reason__content_inner {
  flex-direction: row-reverse;
}

@media screen and (max-width: 480px) {
  .page_reason__content:nth-of-type(2n) .page_reason__content_inner {
    flex-direction: column;
  }
}

.page_reason__content_img {
  width: calc(50% - 5rem);
}

@media screen and (max-width: 480px) {
  .page_reason__content_img {
    width: 100%;
    height: 24rem;
    border-radius: 2rem;
  }

  .page_reason__content_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
  }
}

.page_reason__content__box {
  width: 50%;
}

@media screen and (max-width: 480px) {
  .page_reason__content__box {
    width: 100%;
  }
}

.page_reason__content__label {
  width: fit-content;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  padding: 0.02rem 1.5rem;
  margin-bottom: 2rem;
}

.page_reason__content:nth-of-type(1) .page_reason__content__label,
.page_reason__content:nth-of-type(4) .page_reason__content__label {
  background-color: #298dde;
}

.page_reason__content:nth-of-type(2) .page_reason__content__label,
.page_reason__content:nth-of-type(5) .page_reason__content__label {
  background-color: #8cc63f;
}

.page_reason__content:nth-of-type(3) .page_reason__content__label {
  background-color: #f55e01;
}

@media screen and (max-width: 480px) {
  .page_reason__content__label {
    font-size: 2.4rem;
  }
}

.page_reason__content__lead {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 3.5rem;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: solid 0.5px #000;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 480px) {
  .page_reason__content__lead {
    font-size: 2rem;
  }
}

.page_reason__content__lead::before {
  content: "";
  width: 2px;
  height: 2.3rem;
  position: absolute;
  top: calc(50% - 0.8rem);
  left: 0;
  transform: translateY(-50%);
}

.page_reason__content:nth-of-type(1) .page_reason__content__lead::before,
.page_reason__content:nth-of-type(4) .page_reason__content__lead::before {
  background-color: #298dde;
}

.page_reason__content:nth-of-type(2) .page_reason__content__lead::before,
.page_reason__content:nth-of-type(5) .page_reason__content__lead::before {
  background-color: #8cc63f;
}

.page_reason__content:nth-of-type(3) .page_reason__content__lead::before {
  background-color: #f55e01;
}

@media screen and (max-width: 480px) {
  .page_reason__content__lead::before {
    height: 70%;
  }
}

.page_reason__content__text {
  font-size: 1.4rem;
  color: #3f3f3f;
  letter-spacing: 0.06em;
  line-height: 3rem;
}

.page_reason__content__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.page_reason__content__list_lead {
  font-weight: 600;
  color: #298dde;
}

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