@charset "utf-8";


/* 下層ページ共通タイトルstyle */

.page_ttl{
    max-width: 1920px;
    margin: auto;
    position: relative;
    padding-bottom: 10svw;
}
.page_ttl .inner{
    padding: 0 4svw;
    max-width: inherit;
}
.page_ttl h1{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page_ttl h1 span:nth-of-type(1){
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18rem;
    font-weight: 500;
    line-height: 1;
}
.page_ttl h1 span:nth-of-type(2){
    font-family: 'Shippori Antique', sans-serif;
    font-size: 3.2rem;
}
.page_ttl .page_ttl_img{
    max-width: 1920px;
    margin: auto;
    margin-right: 4svw;
    position: relative;
}
.page_ttl .page_ttl_img span{
    display: block;
    position: absolute;
    top: -16%; right: 1svw;
}
.page_ttl .page_ttl_txt{
    text-align: center;
    position: relative;
    font-weight: bold;
    padding-top: 2%;
}
.page_ttl .page_ttl_txt::before{
    position: absolute;
    right: 0;
    bottom: -5vw;
    display: block;
    width: 87.66vw;
    height: 21vw;
    content: "";
    background: #cbfc6a;
    z-index: -1;
}
.page_ttl .page_ttl_txt dt{
    font-size: 2.8rem;
}
.page_ttl .page_ttl_txt dd:nth-of-type(1){
    font-size: 1.8rem;
}
.page_ttl .page_ttl_txt dd:nth-of-type(2){
    position: absolute;
    right: 1.5svw; bottom: 0;
}


/* コンテンツstyle */

@media screen and (max-width: 768px) {
    /* 下層ページ共通タイトルstyle */

.page_ttl{
    max-width: 100%;
    padding-top: 12%;
}
.page_ttl h1{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.page_ttl h1 span:nth-of-type(1){
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    font-weight: 500;
}
.page_ttl h1 span:nth-of-type(2){
    font-family: 'Shippori Antique', sans-serif;
    font-size: 1.6rem;
}
.page_ttl .page_ttl_img{
    max-width: 100%;
}
.page_ttl .page_ttl_img span{
    top: 65%;
    right: -2svw;
    width: 41%;
}
.page_ttl .page_ttl_txt{
    padding-top: 10%;
}
.page_ttl .page_ttl_txt::before{
    position: absolute;
    right: 0;
    bottom: -11vw;
    height: 64vw;
}
.page_ttl .page_ttl_txt dt{
    font-size: 1.8rem;
    line-height: 1.4;
}
.page_ttl .page_ttl_txt dd:nth-of-type(1){
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 0 5%;
    margin-top: 3%;
}
.page_ttl .page_ttl_txt dd:nth-of-type(2){
    position: absolute;
    right: 1.5svw; bottom: 0;
}

}


  .gallery-nav .slick-track {
    transform: unset !important;
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
  }
  .gallery-nav .slick-track::before,
  .gallery-nav .slick-track::after{
      display: none;
  }
  .gallery-nav .slick-slide{
      display: block!important;
      float: none !important;
      flex: 0 0 16%;
          margin-bottom: 5px;
  }
  .gallery-nav li{
    position: relative;
    max-width: 378px;
    line-height: 0;
    cursor: pointer;   
  }
  .gallery-nav li::before{
    position:absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #cbfc6a;
    mix-blend-mode:multiply;
    transition: .3s;
  }
  .gallery-nav .slick-current li::before,
  .gallery-nav li:hover::before{
    background: #fff;  
    mix-blend-mode:normal;
    opacity: .8;
  }
  .gallery-nav h3{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: 1.2;
    color: #fff;
    font-size: 1.3rem;
      text-align: center;
    transition: .3s;  
  }
  .gallery-nav .slick-current h3,
  .gallery-nav li:hover h3{
    color: #000;
  }
  
  .slick-prev, .slick-next {
      position: absolute;
      top: 50%;
      z-index: 100;
      display: block;
      width: 50px;
      height: 50px;
      cursor: pointer;
      background: rgba(255,255,255,.7);
  }
  
  .slick-prev{
      left: 0;
  }
  .slick-next {
      right: 0;
  }
  .slick-prev:before,
  .slick-next:before{
      display: none;
  }
  .slick-prev:after,
  .slick-next:after{
      position: absolute;
      left: 50%;
      top: 50%;
      display: block;
      width: 16px;
      height: 16px;
      content: "";
      background: transparent;
      border: solid #01131D;
      border-width: 2px 2px 0 0;
  }
  .slick-prev:after{
      transform: rotate(-135deg) translate(50%,20%);
  }
  .slick-next:after{
      transform: rotate(45deg) translate(-75%,20%);
  }

/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    .gallery-nav li{
    width: calc((100% - 15px)/3);
    line-height: 0;
    cursor: pointer;   
  }
	.gallery-nav .slick-slide{
		flex: 0 0 32.2%;
		margin-bottom: 5px;
	}
  .gallery-nav h3{
    font-size: 1rem;
    letter-spacing: .1em;
    text-align: center;
  }
	
	.slick-prev, .slick-next {
		width: 40px;
		height: 40px;	
	}
	.slick-prev:after,
	.slick-next:after{
		width: 12px;
		height: 12px;
	}
}



