@charset "utf-8";

.support-desc{
  position: relative;
  width: 80%;
  padding: 3rem 0;
  min-width: 960px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.support-desc-back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.support-desc-item{
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.support-desc-item-ar{
  width: 20px;
  height: auto;
}

.support-desc-type{
  width: 20%;
  height: auto;
}

.support-desc-type-wrap{
  position: relative;
  width: 80%;
  padding: 3rem 0;
  min-width: 960px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* スライダー */
.slider-scroll-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-track {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 540px;
  top: 15%;
  left: 2%;
  opacity: 0;
}

.slide-back {
  position: absolute;
  width: 50%;
  height: auto;
  top: 12%;
  left: 0;
  z-index: -1
}

.slide-deco {
  position: absolute;
  width: 80px;
  height: auto;
  bottom: 180px;
  right: 0;
  z-index: -1;
  animation-delay: 1.5s
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slider-scroll-section-md {
    display: none;
  }

@media screen and (max-width: 1024px), screen and (max-height: 900px) {
  .slider-scroll-section {
    display: none;
  }
  .slider-scroll-section-md {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .support-title{
    max-width: 90%!important;
  }
  .support-desc{
    position: relative;
    width: 90%;
    min-width: auto;
    margin: 2rem auto;
    flex-direction: column;
    align-items: center;
  }
  .support-desc-item-ar{
    transform: rotate(90deg);
  }

  .support-desc-type{
    width: 40%;
    height: auto;
  }
  .support-desc-type-wrap{
    position: relative;
    width: 90%;
    padding: 3rem 0;
    min-width: auto;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .support-slider-wrap{
    width: 100%;
  }

}