/*==================================================
section service
===================================*/
.top_scene {
  background-color: #fafafa;
  padding: 4rem 0 6rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_scene {
    padding: 4rem 0 6rem;
  }
}

.top_scene_decoration {
  position: absolute;
  top: -21vw;
  right: 5vw;
  z-index: 3;
  width: 25vw;
}

@media screen and (max-width: 767px) {
  .top_scene_decoration {
    width: 35vw;
    top: -30vw;
    right: -2vw;
  }
}

.top_scene .inner {
  position: relative;
  z-index: 2;
}

.top_scene__title {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .top_scene__title {
    margin-bottom: 1rem;
  }
}

.top_scene_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 4rem;
  margin: 0 auto 4rem;
}

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

.top_scene_list__item {
  position: relative;
}

.top_scene_list__item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #040e1a;
  opacity: 0.65;
  position: absolute;
  top: 0;
  left: 0;
}

.top_scene_list__item:nth-of-type(1) {
  background: url(../img/scene_bg01.png) no-repeat;
  background-size: cover;
}

.top_scene_list__item:nth-of-type(2) {
  background: url(../img/scene_bg02.png) no-repeat;
  background-size: cover;
}

.top_scene_list__item:nth-of-type(3) {
  background: url(../img/scene_bg03.png) no-repeat;
  background-size: cover;
}

.top_scene_list__content {
  position: relative;
  padding: 6rem 0;
  z-index: 2;
}

.top_scene_list__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.14rem;
  position: relative;
  margin-bottom: 1rem;
  text-align: center;
}

.top_scene_list__lead > label {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  display: block;
  font-size: 4rem;
  letter-spacing: 0.3rem;
}

.top_scene_list__lead::before {
  content: "";
  width: 2.5rem;
  height: 2rem;
  display: block;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .top_scene_list__lead::before {
    width: 1.8rem;
    height: 1.5rem;
    left: 0;
    top: 50%;
  }
}

.top_scene_list__text {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  line-height: 2.6rem;
  letter-spacing: 0.04rem;
  margin-bottom: 2rem;
}

.top_scene_list__btn {
  font-family: "Cormorant Garamond", serif;
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 1.5rem 0;
  border-top: solid 1px #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

.service_name__sideScroll {
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  overflow: hidden;
  margin-top: -15rem;
}

@media screen and (min-width: 768px) {
  .service_name__sideScroll {
    -webkit-column-gap: min(2.36vw, 3.4rem);
    -moz-column-gap: min(2.36vw, 3.4rem);
    column-gap: min(2.36vw, 3.4rem);
    margin-top: -15rem;
  }
}

.service_name__sideScrollImg {
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  width: 200rem;
  animation: loopSlide 80s infinite linear;
}

@media screen and (min-width: 768px) {
  .service_name__sideScrollImg {
    width: 250rem;
  }
}

.service_name__sideScrollImg::before {
  padding-top: 5.2933392148%;
}

@keyframes loopSlide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.top_scene .btn {
  width: fit-content;
  margin: 0 auto;
}

.common_footer .top_scene {
  padding: 4rem 0 0;
}

@media screen and (max-width: 767px) {
  .common_footer .top_scene {
    padding: 4rem 0 6rem;
  }
}

.common_footer .top_scene_decoration {
  display: none;
}

/*==================================================
section service END
===================================*/
