.section_service {
  background-color: #003056;
  position: relative;
}

.section_service::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
}

.section_service::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #003056;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.section_service__wrapper {
  position: relative;
  padding: 4rem 0 13rem;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

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

.page_about_service .section_service__wrapper {
  padding: 8rem 0;
  clip-path: unset;
}

.section_service__wrapper::before {
  content: "";
  background: url(../img/section_service_bg.png) no-repeat;
  background-size: contain;
  width: 37rem;
  height: 52.5rem;
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .section_service__wrapper::before {
    width: 28rem;
    height: 30rem;
    top: 2rem;
  }
}

.page_about_service .section_service__wrapper::before {
  z-index: 0;
  top: 3rem;
}

.section_service__wrapper::after {
  content: "";
  background: url(../img/section_service_bottom.png) no-repeat;
  background-size: contain;
  width: 26.5rem;
  height: 32.5rem;
  position: absolute;
  bottom: -5rem;
  left: 80%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .section_service__wrapper::after {
    width: 18rem;
    height: 30rem;
    left: auto;
    right: 1rem;
    bottom: -10rem;
  }
}

.page_about_service .section_service__wrapper::after {
  display: none;
}

.section_service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.5rem;
  padding: 5rem 0;
}

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

.section_service__list_item {
  height: 11.5rem;
}

@media screen and (max-width: 767px) {
  .section_service__list_item {
    height: auto;
  }
}

.section_service__list_item a {
  height: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .section_service__list_item a {
    flex-direction: column;
    height: auto;
  }
}

.section_service__list_image {
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .section_service__list_image {
    width: 100%;
    height: auto;
  }
}

.section_service__list_text {
  width: 50%;
  height: 100%;
  background-color: #003056;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.16rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .section_service__list_text {
    font-size: 1.3rem;
    width: 100%;
    height: 6.5rem;
    line-height: 1.8rem;
  }
}

.section_service__list_text::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/section_service_triangle.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.section_service__list_item:nth-of-type(12) p {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .section_service__list_item:nth-of-type(12) p {
    font-size: 1.3rem;
  }
}
