#FV {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#FV .title {
  display: inline-block;
  font-size: 56px;
  color: var(--text-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-shadow: var(--accent-blue) 1px 0 10px;
  white-space: nowrap;
}
#FV .title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  font-style: normal;
}
#FV .title.is-show span {
  animation: text-italic-pop 0.9s ease-out forwards;
}
@keyframes text-italic-pop {
  0% {
    opacity: 0;
    transform: translateY(20px);
    font-style: normal;
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    font-style: normal;
  }
  61% {
    font-style: italic;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    font-style: italic;
  }
}
#FV .fv-slider {
  width: 100%;
}
#FV .fv-slider__item {
  padding: 0 10px;
}
#FV .fv-slider__item img {
  width: 100%;
  height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
#FV .slick-prev,
#FV .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
}
#FV .slick-prev::before,
#FV .slick-next::before {
  font-size: 40px;
  color: #fff;
}
#FV .slick-prev {
  left: 20px;
}
#FV .slick-next {
  right: 20px;
}
#FV .slick-dots {
  bottom: 20px;
}
#FV .slick-dots li {
  margin: 0 6px;
}
#FV .slick-dots li button::before {
  font-size: 10px;
  color: #fff;
  opacity: 0.6;
}
#FV .slick-dots li.slick-active button::before {
  opacity: 1;
}
@media (max-width: 768px) {
  #FV .title {
    font-size: 40px;
  }
  #FV .fv-slider__item img {
    height: 50vh;
  }
  #FV .slick-prev {
    left: 10px;
  }
  #FV .slick-next {
    right: 10px;
  }
}
@media (max-width: 500px) {
  #FV .title {
    font-size: 24px;
  }
}

#ABOUT .container {
  display: flex;
  justify-content: space-between;
}
#ABOUT .container .img {
  width: 40%;
}
#ABOUT .container .content {
  width: 50%;
}
#ABOUT .container .content .btn {
  margin: 32px 0;
}
@media (max-width: 600px) {
  #ABOUT .container {
    flex-direction: column;
  }
  #ABOUT .container .img {
    width: 100%;
  }
  #ABOUT .container .img img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #ABOUT .container .content {
    width: 100%;
  }
}

#PRODUCT .container {
  display: flex;
  justify-content: space-between;
}
#PRODUCT .container .img {
  width: 40%;
}
#PRODUCT .container .content {
  width: 50%;
}
#PRODUCT .container .content .btn {
  margin: 32px 0;
}
@media (max-width: 600px) {
  #PRODUCT .container {
    flex-direction: column-reverse;
  }
  #PRODUCT .container .img {
    width: 100%;
  }
  #PRODUCT .container .img img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #PRODUCT .container .content {
    width: 100%;
  }
}

#RECRUIT .container {
  display: flex;
  justify-content: space-between;
}
#RECRUIT .container .img {
  width: 40%;
}
#RECRUIT .container .content {
  width: 50%;
}
#RECRUIT .container .content .btn {
  margin: 32px 0;
}
@media (max-width: 600px) {
  #RECRUIT .container {
    flex-direction: column;
  }
  #RECRUIT .container .img {
    width: 100%;
  }
  #RECRUIT .container .img img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #RECRUIT .container .content {
    width: 100%;
  }
}

#CONTACT {
  background-color: var(--main-blue);
  text-align: center;
}
#CONTACT .ttl {
  text-align: center;
  color: var(--text-white);
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
#CONTACT .ttl-sub {
  color: var(--text-white);
}
#CONTACT .container {
  margin-top: 32px;
  background-color: var(--bg-lightgray);
  display: flex;
}
#CONTACT .container .left,
#CONTACT .container .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  position: relative;
}
#CONTACT .container .left .text,
#CONTACT .container .right .text {
  font-weight: bold;
  color: var(--accent-blue);
}
#CONTACT .container .left::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--main-blue);
  position: absolute;
  left: 100%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #CONTACT .container {
    flex-direction: column;
  }
  #CONTACT .container .left,
  #CONTACT .container .right {
    width: 100%;
    padding: 4%;
  }
  #CONTACT .container .left::before {
    content: "";
    width: 100%;
    height: 2px;
    left: auto;
    top: 100%;
    transform: translateY(-50%);
  }
  #CONTACT .container .left .btn a {
    width: 100%;
  }
}