@charset "utf-8";body {
  background-color: #f4f4f4;
}
a:link{
  color: skyblue;
}
a:visited{
  color: navy;
}
a:hover{
  color: orange;
}
a:active{
  color: purple;
}
.kv{
  margin-bottom: 0px;
}
.kv img{
  width: 100%;
  height: auto;
}
.kvImg{
  width: 100%;
  max-height: 1152px;
  height: 54.648vw;
  background: #999999;
}
.copy{
  width: 90%;
  margin: 70px auto 0;
  font-size: 1.0em;
}

.productList ul{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
}
.productList li{
  max-width: 600px;
  width: 46.153vw;
  margin: 0 25px 50px;
  list-style: none;
}
.productList li img{
  width: 100%;
  height: auto;
}
.productImg{
  width: 100%;
  max-height: 600px;
  height:46.153vw;
  background: #999999;
}
.productDetail{
  padding-top: 20px;
  text-align: left;
}
#demo_256-04{
  text-align: right;
  margin: 150px;
}
#demo_256-05{
  text-align: left;
  margin: 150px;
}
#demo_256-06{
  text-align: center;
  margin: 150px;
}


@media screen and (max-width:1300px) {
  .productList li{
    margin: 0 1.923vw 50px;
    list-style: none;
  }
  #demo_256-04{
    text-align: right;
    margin: 10px;
  }
  #demo_256-05{
    text-align: left;
    margin: 10px;
  }
  #demo_256-06{
    text-align: left;
    margin: 10px;
  }
}

@media screen and (max-width:768px) {
  .kv{
    margin-bottom: 13.333vvw;
  }
  .copy{
    width: 90%;
    margin: 6.666vw auto 0;
    font-size: 1em;
  }
  .productList li{
    margin-bottom: 6.666vw;
  }
  .productDetail{
    padding-top: 2.666vw;
  }
  #demo_256-04{
    text-align: right;
    margin: 10px;
  }
  #demo_256-05{
    text-align: left;
    margin: 10px;
  }
  #demo_256-06{
    text-align: left;
    margin: 10px;
  }
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #000000;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #000000;
}

.animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  width: 128px;
}
​
.keyframe2{
  animation-name: anim_h;
}
​
@keyframes anim_h {
  0% {
    transform: translate(0px, 0);
  }
  100% {
    transform: translate(30px, 0);
  }
}

.aos-all {
  width: 1000px;
  max-width: 98%;
  margin: 10vh auto 0 auto;
}

.aos-item {
  display: inline-block;
  float: left;
  width: 33.3333%;
  height: 300px;
  padding: 20px;
}

.aos-item__inner {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  background: #1da4e2;
  line-height: 260px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 800px) {
  .aos-item {
    width: 50%;
  }
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
.slick-initialized .slick-slide {
  margin: 0 .5em;
}

.modal-toggle{
  display: inline;
  text-decoration: underline;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.modal-container .img {
  background: #f1f1f1;
  margin-bottom: 15px;
}
.modal-content {
  max-width: 800px;
  width: auto;
  max-height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
  overflow: visible;
}
.modal-top {
  display: inline-block;
  position: absolute;
  right: -3rem;
  top: -3rem;
  pointer-events: none;
}
.modal-close {
  color: #fff;
  text-decoration: none;
  font-size: 3rem;
  line-height: 1;
  padding: 0 8px;
  pointer-events: none;
}
.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}
@keyframes show{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .modal-content {
    max-width: 80vw;
    width: 100%;
  }
  .modal-top {
    right: -1rem;
    top: -3rem;
  }
}