@charset "UTF-8";
@media (max-width: 768px){
  /*
  //スライド
  */
  .slide_pickup_models_container {
    position: relative;
    overflow: hidden;
    width: 95%;
    height: 0;
    padding-bottom: 95%;
    margin: auto;
  }
  .slide_pickup_bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    left: 100%;
    animation: slide-anime 16s linear infinite;
  }
  .slide_pickup_bg img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .slide_pickup_bg:nth-of-type(1) { animation-delay: 0s; }
  .slide_pickup_bg:nth-of-type(2) { animation-delay: 2s; }
  .slide_pickup_bg:nth-of-type(3) { animation-delay: 4s; }
  .slide_pickup_bg:nth-of-type(4) { animation-delay: 6s; }
  .slide_pickup_bg:nth-of-type(5) { animation-delay: 8s; }
  .slide_pickup_bg:nth-of-type(6) { animation-delay: 10s; }
  .slide_pickup_bg:nth-of-type(7) { animation-delay: 12s; }
  .slide_pickup_bg:nth-of-type(8) { animation-delay: 14s; }

  @keyframes slide-anime {
    0% { left: 100%; }
    2% { left: 0; }
    12.5% { left: 0; }
    14.5% { left: -100%; }
    100% { left: -100%; }
  }

  .slide_pickup_models_container2 {
    position: relative;
    overflow: hidden;
    width: 98%;
    height: 139vw;
    margin: auto;
  }
  .slide_pickup_models_img {
    position: absolute;
    width: 100%;
    left: 100%;
    animation: slide-anime2 15s linear infinite;
  }
  .slide_pickup_models_img:nth-of-type(1) { animation-delay: 0s; }
  .slide_pickup_models_img:nth-of-type(2) { animation-delay: 3s; }
  .slide_pickup_models_img:nth-of-type(3) { animation-delay: 6s; }
  .slide_pickup_models_img:nth-of-type(4) { animation-delay: 9s; }
  .slide_pickup_models_img:nth-of-type(5) { animation-delay: 12s; }

  @keyframes slide-anime2 {
    0% { left: 100%; }
    2% { left: 0; }
    20% { left: 0; }
    22% { left: -100%; }
    100% { left: -100%; }
  }
  

  /*
  //15周年記念動画
  */
  .video_15th {
    position: relative;
    margin-top: 7%;
  }
  .video_15th-text {
    position: absolute;
    margin: 0 auto;
    top: -1%;
    right: 0;
    left: 0;
    z-index: 9;
  }
  .video_15th-castle {
    position: absolute;
    margin: 0 auto;
    bottom: 11%;
    right: 0;
    left: 0;
    z-index: 9;
  }


}