/* service
---------------------------------------------------------- */
.service {
  margin-bottom: 15rem;
  padding: 0 5rem;
}
.service_inner {
  max-width: 120rem;
  margin: 0 auto;
}
.service_list {
  display: flex;
  flex-flow: column;
  gap: 4rem 0;
}
.service_list-item {
  display: flex;
  flex-flow: row wrap;
  border-radius: 0.4rem;
  overflow: hidden;
}
.service_list-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.service_list-item > * {
  width: 50%;
}
.service_list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_list-content {
  padding: 3.2rem;
  background: #F5F5F5;
  display: flex;
  flex-flow: column;
}
.service_list-content .lead {
  margin-bottom: 0.6rem;
  color: #21429D;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.service_list-content .title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.service_list-content a {
  margin: auto 0 0 auto;
  color: #21429D;
  font-weight: 700;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.5rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .service_list-content a:hover {
    opacity: 0.75;
  }
}
.service_list-content a::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url("/eve-full/img/top/service_button_icon.svg") no-repeat center;
  background-size: contain;
}

@media only screen and (max-width: 768px) {
  .service {
    margin-bottom: 5.2rem;
    padding: 0 2rem;
  }
  .service_list {
    gap: 1.6rem 0;
  }
  .service_list-item {
    flex-flow: column;
  }
  .service_list-item:nth-child(odd) {
    flex-direction: column;
  }
  .service_list-item > * {
    width: 100%;
  }
  .service_list-image {
    aspect-ratio: 335/220;
  }
  .service_list-content {
    padding: 1.6rem;
  }
  .service_list-content .lead {
    margin-bottom: 0.6rem;
    font-size: 1rem;
  }
  .service_list-content .title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  .service_list-content .text {
    margin-bottom: 1rem;
  }
  .service_list-content a {
    margin: 0;
    gap: 0 0.2rem;
    justify-content: flex-end;
  }
  .service_list-content a::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
/* flow
---------------------------------------------------------- */
.flow {
  margin-bottom: 15rem;
  padding: 0 5rem;
}
.flow_inner {
  max-width: 120rem;
  margin: 0 auto;
}
.flow_list {
  display: flex;
  flex-flow: row wrap;
  gap: 0 3.3rem;
}
.flow_list-item {
  padding: 1.6rem;
  width: calc(25% - 2.475rem);
  background: #F5F5F5;
  display: flex;
  flex-flow: column;
  position: relative;
}
.flow_list-item:not(:last-child)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 2.5rem solid transparent;
  border-bottom: 2.5rem solid transparent;
  border-left: 2.3rem solid #1F5495;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}
.flow_list-item_image {
  margin-bottom: 2rem;
}
.flow_list-item_image:nth-of-type(1) {
  max-width: 21.4rem;
}
.flow_list-item_image:nth-of-type(2) {
  max-width: 22.2rem;
}
.flow_list-item_image:nth-of-type(3) {
  max-width: 20.3rem;
}
.flow_list-item_image:nth-of-type(4) {
  max-width: 23rem;
}
.flow_list-item_text {
  margin: auto;
  color: #21429D;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 980px) {
  .flow_list {
    gap: 3.3rem;
  }
  .flow_list-item {
    width: calc(50% - 1.65rem);
  }
}
@media only screen and (max-width: 768px) {
  .flow {
    margin-bottom: 5.2rem;
    padding: 0 2rem;
  }
  .flow_list {
    flex-flow: column;
    gap: 2.8rem 0;
  }
  .flow_list-item {
    padding: 0;
    width: 100%;
    height: 14rem;
    flex-flow: row wrap;
  }
  .flow_list-item:not(:last-child)::before {
    border-style: solid;
    border-right: 1.4rem solid transparent;
    border-left: 1.4rem solid transparent;
    border-top: 1.4rem solid #1F5495;
    border-bottom: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  .flow_list-item_image {
    margin-bottom: 0;
    position: absolute;
    top: 0.6rem;
    left: 0.5rem;
  }
  .flow_list-item_image:nth-of-type(1) {
    max-width: 12.5rem;
  }
  .flow_list-item_image:nth-of-type(2) {
    max-width: 12.7rem;
  }
  .flow_list-item_image:nth-of-type(3) {
    max-width: 1.9rem;
  }
  .flow_list-item_image:nth-of-type(4) {
    max-width: 13.8rem;
  }
  .flow_list-item_text {
    margin: auto 0 auto 14rem;
    text-align: left;
  }
}
/* contact
---------------------------------------------------------- */
.contact {
  margin-bottom: 15rem;
}
.contact_inner {
  max-width: 120rem;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  section.contact {
    margin-bottom: 5.2rem;
    padding: 0 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
