<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";


/* ----------------------------
  gallery
---------------------------- */
#gallery{
  position: relative;
  padding-top: 140px;
  text-align: center;
}

#gallery .title{
  font-size: 38px;
  margin-bottom: 90px;
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1;
}
#gallery .slide_area{
  position: relative;
  width: 720px;
  margin: 0 auto;
  margin-bottom: 60px;
}
#gallery .slide{
  position: relative;
  width: 720px;
  margin: 0 auto;
}
#gallery .slide .image{
  width: 720px;
  height: 484px;
  position: relative;
}
#gallery .slide .image span{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#gallery .slide_area .slick-prev{
  position: absolute;
  bottom: 0;
}
#gallery .slide_area .slick-next{
  position: absolute;
  bottom: 0;
}
#gallery .slide_area .slide_bottom{
  overflow:hidden;
  margin-top: 1px;
}
#gallery .slide_area .caption{
  float: left;
  font-size: 15px;
  font-family: "Roboto", Helvetica, sans-serif;
    line-height: 50px;
}
#gallery .slide_area ul.navi{
  float: right;
  overflow: hidden;
}
#gallery .slide_area ul.navi li{
  float: left;
  margin-left: 1px;
}
#gallery .slide_area a.slide_prev{
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 0 0 auto;
  background: #000 url(../../assets/img/gallery/prev.png) no-repeat center center;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
#gallery .slide_area a.slide_prev:hover{
  background: #ccc url(../../assets/img/gallery/prev.png) no-repeat center center;
}
#gallery .slide_area a.slide_next{
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 0 0 auto;
  background: #000 url(../../assets/img/gallery/next.png) no-repeat center center;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
#gallery .slide_area a.slide_next:hover{
  background: #ccc url(../../assets/img/gallery/next.png) no-repeat center center;
}
#gallery .slide_area a.to_list{
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 0 0 auto;
  background: #000 url(../../assets/img/gallery/list.png) no-repeat center center;
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
#gallery .slide_area a.to_list:hover{
  background: #ccc url(../../assets/img/gallery/list.png) no-repeat center center;
}
#gallery .slide_area .page_num{
  width: 50px;
  height: 50px;
  margin: 0 0 0 auto;
  background: #000;
  display: block;
  font-size: 13px;
  color: #FFF;
  font-family: "Roboto", Helvetica, sans-serif;

}
#gallery .slide_area .page_num span{
  text-align: center;
  display: block;
  line-height: 50px;
}
#gallery ul.hash{
  text-align: center;
  margin-bottom: 100px;
}
#gallery ul.hash li{
  display: inline-block;
  margin: 0 4px;
  vertical-align: middle;
}
#gallery ul.hash li a{
  display: block;
  font-size: 13px;
  line-height: 30px;
  border:1px #cccccc solid;
  padding: 0 15px;
  border-radius: 30px;    /* CSS3草案 */
  -webkit-border-radius: 30px;  /* Safari,Google Chrome用 */
  -moz-border-radius: 30px; /* Firefox用 */
    -webkit-transition: all 0.5s 0s ease;
       -moz-transition: all 0.5s 0s ease;
        -ms-transition: all 0.5s 0s ease;
         -o-transition: all 0.5s 0s ease;
            transition: all 0.5s 0s ease;
}
#gallery ul.hash li a:hover{
  border:1px #000 solid;
  background: #000;
  color:#FFF;
}

@media screen and (max-width: 800px) {
  #gallery{
    padding-top: 85px;
  }

  #gallery .title{
    font-size: 26px;
    margin-bottom: 60px;
  }
  #gallery .slide_area{
    width: auto;
    margin: 0 20px;
    margin-bottom: 30px;
  }
  #gallery .slide{
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  #gallery .slide .image{
    width: 100%;
    height: 60vw;
  }
  #gallery .slide_area .caption{
    float: left;
    font-size: 12px;
      line-height: 30px;
  }
  #gallery .slide_area a.slide_prev{
    display: block;
    width: 30px;
    height: 30px;
    background: #000 url(../../assets/img/gallery/prev.png) no-repeat center center;
    background-size: 30px;
  }
  #gallery .slide_area a.slide_prev:hover{
    background: #000 url(../../assets/img/gallery/prev.png) no-repeat center center;
    background-size: 30px;
  }
  #gallery .slide_area a.slide_next{
    display: block;
    width: 30px;
    height: 30px;
    background: #000 url(../../assets/img/gallery/next.png) no-repeat center center;
    background-size: 30px;
  }
  #gallery .slide_area a.slide_next:hover{
    background: #000 url(../../assets/img/gallery/next.png) no-repeat center center;
    background-size: 30px;
  }
  #gallery .slide_area a.to_list{
    display: block;
    width: 30px;
    height: 30px;
    background: #000 url(../../assets/img/gallery/list.png) no-repeat center center;
    background-size: 30px;
  }
  #gallery .slide_area a.to_list:hover{
    background: #000 url(../../assets/img/gallery/list.png) no-repeat center center;
    background-size: 30px;
  }
  #gallery .slide_area .page_num{
    width: 30px;
    height: 30px;
    font-size: 6px;
  }
  #gallery .slide_area .page_num span{
    line-height: 30px;
    font-size: 6px;
  }
  #gallery ul.hash{
    text-align: center;
    margin: 0 20px;
    margin-bottom: 40px;
    letter-spacing: -0.4em;
  }
  #gallery ul.hash li{
    display: inline-block;
    letter-spacing: normal;
    margin: 0px;
    width: 50%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 15px;
  }
  #gallery ul.hash li a{
    display: block;
    font-size: 13px;
    line-height: 30px;
    border:1px #cccccc solid;
    width: 42.6vw;
    margin: 0 auto;
    text-align: center;
    padding: 0px;
    border-radius: 30px;    /* CSS3草案 */
    -webkit-border-radius: 30px;  /* Safari,Google Chrome用 */
    -moz-border-radius: 30px; /* Firefox用 */
      -webkit-transition: all 0.5s 0s ease;
         -moz-transition: all 0.5s 0s ease;
          -ms-transition: all 0.5s 0s ease;
           -o-transition: all 0.5s 0s ease;
              transition: all 0.5s 0s ease;
  }
  #gallery ul.hash li a:hover{
    border:1px #000 solid;
    background: #000;
    color:#FFF;
  }
}


/* ----------------------------
  modal_gallery
---------------------------- */
#modal_gallery{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
      -webkit-transition: all 0.5s 0s ease;
         -moz-transition: all 0.5s 0s ease;
          -ms-transition: all 0.5s 0s ease;
           -o-transition: all 0.5s 0s ease;
              transition: all 0.5s 0s ease;
}
#modal_gallery.view{
  opacity: 1;
  visibility: visible;
}
#modal_gallery .close{
  position: fixed;
  top: 26px;
  right: 26px;
  z-index: 2;
  width: 34px;
  height: 34px;
  background: url(../../assets/img/gallery/close.png) no-repeat center center;
  display: block;
}
#modal_gallery .bg{
  position: fixed;
  z-index: 0;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}
#modal_gallery .modal-inner{
  position: relative;
  z-index: 1;
  width: 880px;
  margin: 0 auto;
  padding: 170px 0;
  overflow: hidden;
}
#modal_gallery .modal-inner .image{
  width: 280px;
  height: 189px;
  display: block;
  position: relative;
  float: left;
  margin: 0 20px 20px 0;
  cursor: pointer;
}
#modal_gallery .modal-inner .image:nth-child(3n){
  margin-right: 0px;
}
#modal_gallery .modal-inner .image span{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
      -webkit-transition: all 0.5s 0s ease;
         -moz-transition: all 0.5s 0s ease;
          -ms-transition: all 0.5s 0s ease;
           -o-transition: all 0.5s 0s ease;
              transition: all 0.5s 0s ease;
}
#modal_gallery .modal-inner .image:hover span{
  opacity: 0.5;
}
@media screen and (max-width: 800px) {
    #modal_gallery{
  }
  #modal_gallery .close{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 18px;
    height: 18px;
    background: url(../../assets/img/gallery/close_sp.png) no-repeat center center;
    display: block;
    background-size: 18px;
  }
  #modal_gallery .bg{
  }
  #modal_gallery .modal-inner{
    position: relative;
    z-index: 1;
    width: auto;
    margin: 0 20px;
    padding: 75px 0;
    overflow: hidden;
  }
  #modal_gallery .modal-inner .image{
    width: 43.33333vw;
    height: 29.0vw;
    margin: 0 2.6vw 2.6vw 0;
  }
  #modal_gallery .modal-inner .image:nth-child(3n){
    margin-right: 2.6vw;
  }
  #modal_gallery .modal-inner .image:nth-child(2n){
    margin-right: 0;
  }
}</pre></body></html>