.listButton {
  position: absolute;
  z-index:999;
  width: 30px;
  height: 30px;
  left: 40px;
  bottom: 30px;
  cursor: pointer;
}

.listButton svg.list_icon {
  width: 30px;
  height: 30px;
}

.smp .listButton {
  bottom: inherit;
  left: 20px;
  top: 30px;
}

#listCollection {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: rgba(0,0,0,.95);
}

#Attention{
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    opacity: .2;
}

#listCollection.open{
  display: block;
}

#listCollection .close {
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-image:url(../img/close_icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: rgba(255,255,255,.2);
    border-radius: 100%;
    z-index: 9999;
}

#listCollection .loading_thum{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: opacity .3s linear;
    display: none;
    z-index: 9999;
}

#listCollection.open .loading_thum img{
    transform-origin: center center;
    animation: rotate 1s linear infinite;
}

@keyframes rotate{
    0%{ transform: rotate(0deg) }
    100%{ transform: rotate(360deg) }
}

#listCollection ul {
  padding: 10%;
  display: flex;
  flex-wrap: wrap;
}

#listCollection ul li{
  width: 18%;
    margin: 1%;
  position: relative;
    perspective: 500px;
    
}

#listCollection ul li img{
    transform-origin: center center;
    transform: rotateX(0deg) rotateY(0deg);
     transition: transform .35s cubic-bezier(.84,.01,.18,.99);
}

#listCollection ul li:hover{
    z-index: 999;
}

#listCollection ul li:nth-child(even):hover img{
    transform: rotateX(-15deg) rotateY(25deg);
}

#listCollection ul li:nth-child(odd):hover img {
   transform: rotateX(15deg) rotateY(25deg);
}

#listCollection ul li div{
  position: absolute;
  left: 0;
  top: 0;
}

.smp #listCollection ul li{
  width: 48%;
}

#listCollection ul li img {
  display: block;
  width: 100%;
  height: auto;
}



.gallery-collection .slider{
}

.gallery-collection .slider .slick-arrow{
    position: absolute;
    z-index: 998;
    background:none;
    border: none;
    height: 100%;
    width: 0;
    padding-left: 80px;
    overflow: hidden;
    outline: none;
    text-indent: -99999px;
    opacity: 0;
    transition: opacity .3s linear;
}

.smp .gallery-collection .slider .slick-arrow {
    padding-left: 12.5vw;
}

.gallery-collection .slider .slick-arrow:hover{
    opacity: 0.1;
}

.smp .gallery-collection .slider .slick-arrow:hover{
    opacity: 0;
}

.smp .gallery-collection .slider .slick-arrow{
    width: 10vw;
    padding-top:10vw;
}

.gallery-collection .slider .slick-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.gallery-collection .slider .slick-arrow::before{
    content:"";
    display: block;
    position: absolute;
    
    top: 50%;
    border-left:3px solid #fff;
    border-top:3px solid #fff;
    width: 35px;
    height: 35px;
}

.gallery-collection .slider .slick-arrow.slick-next::before {
    transform: translate(-50%,-50%) rotate(135deg);
    left: 30%;
}

.gallery-collection .slider .slick-arrow.slick-prev::before {
    transform: translate(-50%,-50%) rotate(-45deg);
    left: 70%;
}


.smp .gallery-collection .slider .slick-arrow::before{
    width: 10vw;
    height: 10vw;
}

.gallery-collection .slider .slick-arrow.slick-prev{
    left: 0;
    top:0;
}


.gallery-collection .slider .slick-arrow.slick-next{
    right:0;
    top:0;
}

.gallery-collection .slider .slick-slide {
  outline:none;
  overflow: hidden;
}

.gallery-collection .slider .slick-slide img {
  height: 100%;
  width: auto;
  margin-left: 50%;
  transform:translate3d(-50% , 0 ,0);
}

.gallery-collection .slider .slick-dots {
  z-index: 999;
  position: absolute;
  left: 50%;
  bottom: 0;
}

.gallery-collection .slider .video {
  position: relative;
}

.gallery-collection .slider .video .vBox {
    position: absolute;
    width: 768px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}

.smp .gallery-collection .slider .video .vBox{
    width: 100%;
}

.gallery-collection .slider .video .vBox::before{
    content:"";
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(../img/play_icon.png);
    background-size: 45px 45px;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    z-index: 1;
    border: 5px solid #fff;
    border-radius: 100%;
    padding: 15px;
    transition: transform .35s cubic-bezier(.55,.01,.46,1);
}

.smp .gallery-collection .slider .video .vBox::before{
    width: 12.5vw;
    height: 12.5vw;
    background-size: 6.25vw 6.25vw;
    border: 1vw solid #fff;
    padding: 2.34375vw;
}

.gallery-collection .slider .video .vBox:hover::before{
    transform: translate(-50%,-50%) scale(1.15);
}

.gallery-collection .slider .video .vBox img{
    width: 100%;
    height: auto;
    opacity: .5;
    transition: opacity .35s linear;
}

.gallery-collection .slider .video .vBox:hover img{
    opacity: 1;
}

.gallery-collection .slider .video p.bg{
  z-index: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.smp .gallery-collection .slider .video p.bg{
    display: none;
}

.gallery-collection .slider .video p.bg:before {
  content:"";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.9);
  z-index: 1;
}

.gallery-collection .slider .video p.bg video {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height:auto;
  -webkit-transform: translate(-50%,-50%);
     -moz-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
       -o-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

#Titles {
  pointer-events:none;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50% , -50%);
  z-index: 999;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

#Titles .num{
  display: none;
	font-size:300px;
	text-align:center;
  margin: 0;
  line-height: 100%;
}

.smp #Titles .num {
    font-size: 30vw;
}

#Titles .string{
  display: none;
	font-size:30px;
	text-align:center;
	color:#A8A8A8;
  margin: 0;
  line-height: 100%;
}

.smp #Titles .string {
    font-size: 3vw;
}
