@charset "UTF-8";
/* fv_slider */
#fv {
  position: relative;
  padding-bottom: 64px;
  z-index: 0;
}

.fv_slider .splide__track {
  background-color: var(--base-white);
  border-radius: 40px;
}

.fv_slider .splide__slide {
  border-radius: 40px;
  overflow: hidden;
}

.fv_slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fv .steam_left_wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

#fv .steam_right_wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

#fv .steam {
  position: absolute;
  width: min(30%, 254px);
  opacity: 0;
}

/* 1つ目のsteamアニメーション */
#fv .steam_left_wrap .steam {
  animation: steam 8s linear infinite;
  animation-delay: 0s; /* 最初のアニメーションはすぐに開始 */
}

#fv .steam:last-child {
  animation: steam 9.5s linear infinite;
  animation-delay: 0.5s; /* 最初のアニメーションはすぐに開始 */
}

#fv .steam_right_wrap .steam {
  animation: steam 8s linear infinite;
  animation-delay: 0.5s; /* 最初のアニメーションはすぐに開始 */
  opacity: 0;
}

/* 2つ目のsteamアニメーション */
#fv .steam_left_wrap.second .steam {
  animation: steam 8s linear infinite;
  animation-delay: 4s; /* 5秒の半分でずらす */
  opacity: 0;
}

#fv .steam_right_wrap.second .steam {
  animation: steam 8s linear infinite;
  animation-delay: 4.5s; /* 5秒の半分でずらす */
  opacity: 0;
}

#fv .steam_left_wrap .steam_left01 {
  left: 16px;
  bottom: -24px;
}

#fv .steam_left_wrap .steam_left02 {
  left: -24px;
  bottom: 0;
}

#fv .steam_right_wrap .steam_right01 {
  right: 16px;
  bottom: -24px;
}

#fv .steam_right_wrap .steam_right02 {
  right: -24px;
  bottom: 0;
}

@keyframes steam {
  0% {
    filter: blur(0);
    opacity: 0;
    transform: translateY(-5%);
  }
  35% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(-10%);
  }
  50% {
    filter: blur(3px);
    opacity: 0.8;
    transform: translateY(-15%);
  }
  80% {
    filter: blur(6px);
    opacity: 0.3;
    transform: translateY(-20%);
  }
  100% {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(-34%);
  }
}


/* service */
#service {
  padding-bottom: 80px;
}

#service .content_wrap {
  display: flex;
  gap: 16px;
}
#service .content_wrap .box{
  width: 50%;
}

#service .content_wrap .btn {
  display: block;
  width: 100%;
  text-align: center;
  aspect-ratio: 379 / 252;
  padding: 24px;
  border-radius: 24px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#service .content_wrap .btn::after {
  content: '';
  width: calc(38 / 379 * 100%);
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon/icon-bg_white_arrow.svg);
  background-size: cover;
  position: absolute;
  right: calc(24 / 379 * 100%);
  bottom: calc(24 / 379 * 100%);
}

#service .content_wrap .btn02::after {
  display: none;
  background-image: url(../img/icon/icon-bg_white_circle_arrow.svg);
}

#service .content_wrap .btn .label {
  width: 100%;
  max-width: 158px;
  margin: 0 auto calc(4 / 379 * 100%);
}

#service .content_wrap .btn .text {
  width: 100%;
  margin: 0 auto;
}

#service .content_wrap .btn .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1);
  transform-origin: center center;
  z-index: -1;
  transition: all 0.4s;
}

#service .content_wrap .btn:hover .bg {
  transform: scale(1.1);
}

#service .content_wrap .btn .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 1023px) {
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }

  header .pc_list {
    display: none;
  }

  .pc_fixed_content {
    align-items: flex-start;
    width: 100%;
    height: 500px;
    padding-top: 134px;
    position: absolute;
    z-index: 0;
  }

  .site_content_wrap {
    width: 100%;
    padding-top: 0;
    margin-top: 360px;
  }
}

@media (max-width: 767px) {
  #service .content_wrap {
    flex-direction: column;
  }

  #service .content_wrap .box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}
