@charset "UTF-8";
/* ------------------------------------------------------------
// index
------------------------------------------------------------ */
/* 全体の設定 */
.main-visual {
  position: relative;
  height: calc(100dvh - 80px);
  margin: 0 auto 100px;
  overflow: hidden;
}

.slider {
  height: 100%;
}

/* slick-list と slick-track の高さを親要素にフィットさせる */
.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 1.5s ease-in-out, transform 3s ease-in-out;
}

@media print, screen and (max-width: 1099px) {
  .main-visual {
    height: 60vh;
  }
}
@media print, screen and (max-width: 499px) {
  .main-visual {
    height: 40vh;
  }
}
/* テキストのオーバーレイ */
.overlay-text {
  position: absolute;
  bottom: 60px;
  right: 40px;
  max-width: 687px;
  width: 100%;
  z-index: 10;
}
@media print, screen and (max-width: 767px) {
  .overlay-text {
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    padding: 25px 20px 20px 60px;
  }
}

.tagcolle-box {
  margin: 100px 0 160px;
}
.tagcolle-box .plus-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}
@media print, screen and (max-width: 767px) {
  .tagcolle-box {
    margin: 40px 0 100px;
  }
  .tagcolle-box .plus-btn {
    margin-top: 40px;
  }
}

.parallax-wrapper {
  position: relative;
}

.parallax {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax .black-box {
  width: 752px;
  margin: 0 120px 0 20px;
  padding: 60px 130px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
}
.parallax .black-box .ttl .min-txt {
  font-size: 16px;
  color: #c3ff00;
}
.parallax .black-box .ttl .txt {
  font-size: 72px;
  color: #aee8c1;
  line-height: 1;
}
.parallax .black-box p {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 30px 0 60px;
}
.parallax .black-box .more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  color: #121212;
  width: 206px;
  height: 51px;
  background: #ffffff;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.parallax .black-box .more-btn a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 28px;
  background: #2f2f2f;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.parallax .black-box .more-btn a span img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: none;
  opacity: 1;
  width: 15px;
  height: 12px;
}
.parallax .black-box .more-btn a.animating-hover span img {
  animation: arrowOutInMore 0.8s forwards;
}
.parallax .black-box .more-btn a.animating-leave span img {
  animation: arrowInOutMore 0.8s forwards;
}
.parallax .black-box .more-btn a:hover {
  color: #121212;
}
@keyframes arrowOutInMore {
  0% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
  49% {
    left: 100%;
    opacity: 0;
    transform: translateX(-50%);
  }
  50% {
    left: -30%;
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
}
@keyframes arrowInOutMore {
  0% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
  49% {
    left: -30%;
    opacity: 0;
    transform: translateX(-50%);
  }
  50% {
    left: 100%;
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
}
@media print, screen and (max-width: 1199px) {
  .parallax .black-box {
    width: 100%;
    margin: 0 20px;
    padding: 30px 20px;
  }
  .parallax .black-box .ttl .min-txt {
    font-size: 15px;
  }
  .parallax .black-box .ttl .txt {
    font-size: 40px;
  }
  .parallax .black-box p {
    font-size: 16px;
    margin: 20px 0 40px;
  }
}

@media print, screen and (max-width: 991px) {
  .parallax {
    height: auto;
    padding: 120px 0;
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center;
  }
}
.sec1 {
  background-image: url(../images/index/business-bg.png);
}

.sec2 {
  justify-content: flex-start;
  background-image: url(../images/index/logging-bg.png);
}

.sec3 {
  background-image: url(../images/index/company-bg.png);
}

.plan-wrap {
  margin: 180px 0 95px;
  background: url(../images/index/plan-bg-txt.png) no-repeat top center;
}
.plan-wrap .plan-box {
  display: flex;
  gap: 130px;
  max-width: 1100px;
  margin: -20px auto 0;
}
.plan-wrap .plan-box .plan-txt-img {
  width: 165px;
  height: 324px;
}
.plan-wrap .plan-box p {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  padding-top: 154px;
}
@media print, screen and (max-width: 991px) {
  .plan-wrap .plan-box {
    display: flex;
    gap: 60px;
    margin-top: -20px;
  }
  .plan-wrap .plan-box .plan-txt-img {
    width: 165px;
    height: 324px;
  }
  .plan-wrap .plan-box p {
    font-size: 18px;
    font-weight: 500;
    padding-top: 154px;
  }
}
@media print, screen and (max-width: 767px) {
  .plan-wrap {
    margin: 90px 0;
  }
  .plan-wrap .plan-box {
    flex-direction: column;
    gap: 0;
  }
  .plan-wrap .plan-box p {
    font-size: 16px;
    padding: 20px 0 0 80px;
  }
}

.loop-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 80px;
}
.loop-wrap .plan-img-list {
  display: flex;
  gap: 20px;
  animation: loop-scroll 60s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .loop-wrap {
    margin-top: 40px;
  }
  .loop-wrap .plan-img-list {
    gap: 5px;
    animation-duration: 40s;
  }
  .loop-wrap .plan-img-list li {
    width: 200px;
  }
}

@keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}