/* -------------------------- */
/* content */
/* -------------------------- */
/* content_header */
.content_header {
  background-image: url(/images/gallery/bg_header.jpg);
}

.content_header .container::after {
  z-index: 2;
}

/* gallery_index */
.gallery_index {
  padding: 30px 0;
  background: #212121;
}

/* gallery_box */
.gallery_box {
  position: relative;
  z-index: 2;
}

/* gallery_list */
.gallery_list {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #a3a3a3;
}

.gallery_list a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.gallery_list .gallery_inner {
  width: calc(100% - 100px);
  padding-left: 15px;
  order: 2;
}

.gallery_list .gallery_inner .gallery_inner_title {
  margin-bottom: 10px;
  color: #fff;
  font-family: "Roboto Slab";
  font-size: 1.6rem;
  line-height: 1.2;
  word-wrap: break-word;
}

.gallery_list .gallery_inner .gallery_inner_txt {
  margin-bottom: 10px;
  color: #a3a3a3;
  font-size: 1.2rem;
}

.gallery_list .gallery_inner .btn_default01 {
  text-align: right;
}

.gallery_list .thum_img {
  width: 100px;
  height: 100px;
  min-height: 10px;
  position: relative;
  overflow: hidden;
  order: 1;
}

.gallery_list .thum_img:after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.gallery_list .thum_img img {
  width: auto;
  height: 100.5%;
  min-height: 100%;
  min-width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* pager */
.pager {
  margin-top: 30px;
}

/* -------------------------- */
/* detail */
/* -------------------------- */
/* gallery_intro */
.gallery_intro {
  padding-bottom: 30px;
  position: relative;
  z-index: 3;
}

.gallery_intro .gallery_detail_title {
  margin-bottom: 10px;
  font-family: "Roboto Slab";
  font-size: 2.4rem;
  line-height: 1.2;
  word-wrap: break-word;
}

/* gallery_contents */
.gallery_contents {
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}

.gallery_contents .container {
  position: relative;
  z-index: 3;
}

.gallery_contents:after {
  width: 100%;
  height: 100%;
  background: #212121;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.gallery_contents .slide {
  margin-bottom: 6px;
}

.gallery_contents .slide_item {
  width: 100%;
  height: 47vw;
}

.gallery_contents .thumbnail {
  margin: 0 -3px 25px;
  display: flex;
  flex-wrap: wrap;
}

.gallery_contents .thumbnail .thumbnail_item {
  width: calc(25% - 6px);
  height: 11vw;
  margin: 0 3px 6px;
  position: relative;
  line-height: 0;
}

.gallery_contents .thumbnail .thumbnail_item:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: .3s opacity linear;
}

.gallery_contents .thumbnail .thumbnail_item.thumbnail-current::after {
  opacity: 0;
}

/* slide */
.slick-list {
  line-height: 0;
}

.slick-prev {
  left: 10px;
  z-index: 1;
}

.slick-next {
  right: 10px;
}

/* gallery_item */
.gallery_item {
  margin-bottom: 30px;
  align-items: flex-start;
}

.gallery_item dt {
  width: 80px;
  margin-top: 3px;
  padding: 2px 0;
  background: #fff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.gallery_item dt:not(:last-of-type) {
  margin-bottom: 10px;
}

.gallery_item dd {
  width: calc(100% - 80px);
  padding-left: 15px;
  color: #fff;
}

.gallery_item dd:not(:last-of-type) {
  margin-bottom: 10px;
}

/* gallery_explanation */
.gallery_explanation {
  color: #fff;
}

/* movie */
.movie {
  margin-top: 30px;
}

/* btn_gallery */
.btn_gallery {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .gallery_index {
    padding: 60px 0;
  }
  .gallery_box {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery_list {
    width: 50%;
    margin-bottom: 30px;
    padding-bottom: 0;
    border: none;
  }
  .gallery_list a {
    flex-direction: column;
  }
  .gallery_list a:hover {
    opacity: 1;
  }
  .gallery_list a:hover .thum_img:after {
    display: none;
  }
  .gallery_list .gallery_inner {
    width: 100%;
  }
  .gallery_list .gallery_inner .gallery_inner_title {
    width: 90%;
    position: absolute;
    left: 15px;
    top: 15px;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    font-size: 1.8rem;
  }
  .gallery_list .gallery_inner .gallery_inner_txt {
    padding-top: 15px;
    font-size: 1.4rem;
    text-align: center;
  }
  .gallery_list .gallery_inner .btn_default01 {
    position: absolute;
    right: 15px;
    top: 21.5vw;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  }
  .gallery_list .thum_img {
    width: 100%;
    height: 25.7vw;
  }
  .gallery_list .thum_img img {
    width: 100.5%;
    height: auto;
    min-height: auto;
  }
  .gallery_intro .gallery_detail_title {
    font-size: 3rem;
  }
  .gallery_contents {
    padding-top: 60px;
  }
  .gallery_contents .slide {
    margin-bottom: 14px;
  }
  .gallery_contents .slide_item {
    width: 100%;
  }
  .gallery_contents .thumbnail {
    margin: 0 -7px 25px;
  }
  .gallery_contents .thumbnail .thumbnail_item {
    width: calc(16.6666% - 14px);
    height: 7.6vw;
    margin: 0 7px 14px;
  }
  .gallery_item {
    flex-wrap: nowrap;
  }
  .gallery_item dt:not(:last-of-type) {
    margin-bottom: 0;
  }
  .gallery_item dd {
    width: auto;
  }
  .gallery_item dd:not(:last-of-type) {
    margin: 0 30px 0 0;
  }
  .gallery_explanation {
    line-height: 2;
  }
  .movie {
    margin-top: 40px;
  }
  .btn_gallery {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1280px) {
  .gallery_index {
    padding: 0 0 80px;
  }
  .gallery_list .gallery_inner .gallery_inner_title {
    font-size: 3.5rem;
    left: 35px;
    top: 30px;
  }
  .gallery_list .gallery_inner .gallery_inner_txt {
    font-size: 1.6rem;
  }
  .gallery_list .gallery_inner .btn_default01 {
    top: 290px;
    right: 40px;
  }
  .gallery_list .thum_img {
    width: 100.1%;
    height: 345px;
  }
  .gallery_intro .gallery_detail_title {
    font-size: 5rem;
  }
  .gallery_intro .gallery_detail_txt {
    font-size: 1.6rem;
  }
  .gallery_contents {
    padding-top: 0;
  }
  .gallery_contents:after {
    top: 80px;
  }
  .gallery_contents .slide {
    margin-bottom: 20px;
  }
  .gallery_contents .slide_item {
    height: 690px;
  }
  .gallery_contents .thumbnail {
    margin: 0 -10px 25px;
  }
  .gallery_contents .thumbnail .thumbnail_item {
    width: calc(12.5% - 20px);
    height: 75px;
    margin: 0 10px 20px;
  }
  .slick-prev {
    left: 30px;
  }
  .slick-next {
    right: 30px;
  }
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
  .slick-prev::before,
  .slick-next::before {
    font-size: 40px;
  }
  .gallery_item {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
  .gallery_item dd:not(:last-of-type) {
    margin-right: 40px;
  }
  .gallery_explanation {
    font-size: 1.6rem;
  }
  .movie {
    margin-top: 60px;
  }
  .btn_gallery {
    padding: 80px 0;
  }
}

/*# sourceMappingURL=map/gallery.css.map */
