/* ==========================================================================//
//
// service
//
// ========================================================================== */
.service_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media all and (min-width: 751px) {
  .service_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5px;
    width: min(1286px, 100%);
    margin-inline: auto;
  }
}
.service_list.js_scroll .service_item {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
}
.service_list.js_scroll.scroll_active .service_item {
  -webkit-animation: slideLtoR 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.6s;
          animation: slideLtoR 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.6s;
  -webkit-animation-delay: calc((sibling-index() - 1) * 0.4s + 0.6s);
          animation-delay: calc((sibling-index() - 1) * 0.4s + 0.6s);
}

.service_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service_item a {
  position: relative;
  display: block;
}
@media (hover: hover) {
  .service_item a .image::before {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .service_item a:hover .image::before {
    opacity: 0.25;
  }
  .service_item a:hover .text_wrap .arrow::before {
    -webkit-transform: translateX(48px);
            transform: translateX(48px);
  }
  .service_item a:hover .text_wrap .arrow::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.service_item .image {
  position: relative;
}
.service_item .image::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #a05700;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.service_item .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 375px;
}
@media all and (min-width: 751px) {
  .service_item .image img {
    height: auto;
    min-height: 500px;
  }
}
.service_item .text_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 10px 20px;
  background: #D39624;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service_item .text_wrap.red {
  background: #904218;
}
@media all and (min-width: 751px) {
  .service_item .text_wrap {
    padding: 10px 20px 10px 30px;
  }
}
.service_item .text_wrap .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.service_item .text_wrap .ttl .en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  opacity: 0.7;
  font-size: 11px;
}
@media all and (min-width: 751px) {
  .service_item .text_wrap .ttl .en {
    font-size: 13px;
  }
}
.service_item .text_wrap .ttl .jp {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  .service_item .text_wrap .ttl .jp {
    font-size: 20px;
  }
}
.service_item .text_wrap .arrow {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}
.service_item .text_wrap .arrow::before, .service_item .text_wrap .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 6px;
  background: url(../images/service/arrow.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.service_item .text_wrap .arrow::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.service_item .text_wrap .arrow::after {
  -webkit-transform: translateX(-48px);
          transform: translateX(-48px);
}
/*# sourceMappingURL=service.css.map */