/*
 * Boxer v3.3.0 - 2015-04-04
 * A jQuery plugin for displaying images, videos or content in a modal overlay. Part of the Formstone Library.
 * http://classic.formstone.it/boxer/
 *
 * Copyright 2015 Ben Plum; MIT Licensed
 */
.boxer-lock {
  overflow: hidden !important;
}

#boxer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .25s linear;
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.boxer-open #boxer-overlay {
  opacity: .75;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

#boxer {
  position: absolute;
  z-index: 101;
  right: 0;
  left: 0;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  opacity: 0;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 25px rgba(0, 0, 0, .1);

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer * {
  transition: none;
}

#boxer,#boxer * {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

#boxer,#boxer *,#boxer *:before,#boxer *:after {
  box-sizing: border-box;
}

#boxer.fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
}

#boxer.inline {
  padding: 30px;
}

#boxer.animating {
  transition: height .25s ease, width .25s ease, opacity .25s linear, top .25s ease;
}

.boxer-open #boxer {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer .boxer-close {
  position: absolute;
  z-index: 105;
  top: 0;
  right: -104px;
  display: block;
  overflow: hidden;
  width: 64px;
  height: 85px;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  text-indent: 200%;
}

#boxer .boxer-close:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  content: url(../img/prod/icon_close.png);
  transition: color .15s linear;
  text-align: center;
  text-indent: 0;
  color: #333;
}

#boxer .boxer-loading {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 50px;
  margin: auto;
  transition: opacity .25s linear;
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer .boxer-loading:before,#boxer .boxer-loading:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 110%;
}

#boxer .boxer-loading:before {
  border: 5px solid rgba(51, 51, 51, .25);
}

#boxer .boxer-loading:after {
  animation: boxer-loading-spin .75s linear infinite;
  border: 5px solid transparent;
  border-top-color: #333;
}

#boxer.loading .boxer-loading {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@keyframes boxer-loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#boxer .boxer-container {
  position: relative;
  z-index: 103;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#boxer .boxer-content {
  overflow: hidden;
  width: 100%;
  padding: 0;
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer.inline .boxer-content,#boxer.iframe .boxer-content {
  width: auto;
}

#boxer .boxer-image {
  line-height: 0;
  float: left;
}

#boxer .boxer-video {
  width: 100%;
  height: 100%;
}

#boxer .boxer-iframe {
  float: left;
  overflow: auto;
  width: 100%;
  height: 100%;
  border: none;
}

#boxer .boxer-meta {
  clear: both;
}

#boxer .boxer-control {
  position: absolute;
  top: 0;
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
  transition: opacity .15s linear;
  white-space: nowrap;
  text-indent: 200%;
  opacity: 1;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .25);

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer .boxer-control:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  content: "";
}

#boxer .boxer-control.previous {
  left: 20px;
}

#boxer .boxer-control.previous:before {
  margin-left: 14px;
  border-top: 8px solid transparent;
  border-right: 10.4px solid #333;
  border-bottom: 8px solid transparent;
}

#boxer .boxer-control.next {
  right: 20px;
}

#boxer .boxer-control.next:before {
  margin-right: 14px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10.4px solid #333;
}

#boxer .boxer-control.disabled {
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.no-opacity #boxer .boxer-control {
  text-indent: -999px;
}

.no-touch #boxer .boxer-control {
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.no-touch #boxer:hover .boxer-control {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.no-touch #boxer:hover .boxer-control.disabled {
  cursor: default !important;
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer .boxer-position {
  font-size: 12px;
  margin: 0;
  padding: 15px 15px 0 15px;
  color: #999;
}

#boxer .boxer-caption {
  display: none;
}

#boxer .boxer-caption.gallery p {
  padding-top: 0;
}

#boxer .boxer-error {
  width: 250px;
}

#boxer .boxer-error p {
  font-size: 14px;
  margin: 0;
  padding: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #900;
}

#boxer.mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 0 0;
  border-radius: 0;
}

#boxer.mobile .boxer-close,#boxer.mobile .boxer-close:hover {
  top: 25vw;
  right: 10px;
  border-radius: 0;
}

#boxer.mobile .boxer-close:before,#boxer.mobile .boxer-close:hover:before {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: #ccc;
}

#boxer.mobile .boxer-close:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  content: "";
  transition: color .15s linear;
  text-align: center;
  text-indent: 0;
  color: #333;
  background: url(../img/prod/icon_close.png) center center no-repeat;
  background-size: 30px;
}

#boxer.mobile .boxer-loading:before {
  border-color: rgba(153, 153, 153, .25);
}

#boxer.mobile .boxer-loading:after {
  border-top-color: #999;
}

#boxer.mobile .boxer-control {
  width: 50px;
  height: 100%;
  opacity: 1;
  border-radius: 0;
  box-shadow: none;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer.mobile .boxer-control.previous {
  left: 0;
}

#boxer.mobile .boxer-control.previous:before {
  margin-left: 19px;
  border-right-color: #eee;
}

#boxer.mobile .boxer-control.next {
  right: 0;
}

#boxer.mobile .boxer-control.next:before {
  margin-right: 19px;
  border-left-color: #eee;
}

.no-touch #boxer.mobile .boxer-control,.no-touch #boxer.mobile:hover .boxer-control {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.no-touch #boxer.mobile .boxer-control.disabled,.no-touch #boxer.mobile:hover .boxer-control.disabled {
  cursor: default !important;
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer.mobile .boxer-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 65px;
}

#boxer.mobile .boxer-position {
  font-size: 12px;
  margin: 0;
  padding: 0 15px 0 0;
  color: #999;
}

#boxer.mobile .boxer-caption p {
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #eee;
}

#boxer.mobile .boxer-image {
  transition: none !important;
  transform: translate(0, 0);
}

#boxer.mobile.animated .boxer-image {
  transition: transform .25s ease-out !important;
}

#boxer.mobile.inline .boxer-content,#boxer.mobile.iframe .boxer-content {
  overflow-x: hidden;
  overflow-y: scroll;

  -webkit-overflow-scrolling: touch;
}

/* modal
========================================== */
#boxer.loading .boxer-container {
  background: #fff;
}

#boxer.mobile.loading .boxer-container {
  background: #000;
}

#boxer-overlay {
  background: #fff;
}

/*---------------------------------------------------------------------------------------------------------
 TITLE:
 PAGE: gallery.html
---------------------------------------------------------------------------------------------------------*/
/* MAIN CONTENT -----------------------------------------------------------------------------------------*/
.gallery {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 150px;
}

/* GALLERY -----------------------------------------------------------------------------------------*/
/* title
========================================== */
.pageHeader {
  width: 100%;
  height: 250px;
  margin: 40px 0 0;
  text-align: center;
  background: url(../img/bg_page_header.png) center center no-repeat;
}

.header_ttl {
  padding-top: 20px;
}

/* gallery01
========================================== */
.galleryWrapp01 {
  position: relative;
  width: 100%;
  margin: -80px 0 120px;
  padding: 160px 0 120px;
  background: url(../img/bg_patern01.png) center top;
  z-index: -1;
}

.gallery01-01 {
  position: relative;
  z-index: 2;
}

.galleryWrapp01 h2 {
  text-align: center;
}

.gallery01Wrap {
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;

  -ms-flex-pack: center;
  justify-content: center;
}

.gallery01Box {
  margin: 0 35px;
}

.gallery01_movie {
  position: relative;
  width: 520px;
  height: 292px;
  margin: 40px auto 30px;
}

.gallery01_movie img {
  width: 100%;
}

.gallery01_prayBtn {
  position: absolute;
  top: 50%;
  left: 75%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
}

.gallery01_caption {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #b90b50;
  text-shadow: white 1px 1px 1px,  white 1px -1px 1px, white -1px 1px 1px, white -1px -1px 1px;
}

.gallery01_movie:after {
  position: absolute;
  top: -12px;
  left: -12px;
  display: block;
  width: 546px;
  height: 318px;
  content: "";
  background: url(../img/gallery/movie_frame.png) no-repeat 0 0;

  pointer-gallerys: none;
}

/* gallery02
========================================== */
.galleryWrapp02 {
  width: 100%;
  margin: 0 auto 120px;
  text-align: center;
}

.galleryWrapp02 h2 {
  margin: 0 0 30px;
}

.gallery02Wrap {
  display: -ms-flexbox;
  display: flex;
  width: 1160px;
  margin: 0 auto 100px;
  text-align: center;

  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gallery02Box {
  position: relative;
  padding: 0 20px 20px;
}

.zoomIcon {
  position: absolute;
  top: 0;
  right: 20px;
}

/* slick
========================================== */
button:focus {
  outline: none;
}

.slick-prev {
  position: absolute;
  top: 50%;
  left: -80px;
  width: 66px;
  height: 48px;
  cursor: pointer;
  transition: all .25s linear;
  text-indent: -9999px;
  border: none;
  background: url(../img/index/intro/intro_slick_prev.png) no-repeat 0 0;
}

.slick-prev:hover {
  transform: translate(-10%, 0);
}

.slick-next {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 66px;
  height: 48px;
  cursor: pointer;
  transition: all .25s linear;
  text-indent: -9999px;
  border: none;
  background: url(../img/index/intro/intro_slick_next.png) no-repeat 0 0;
}

.slick-next:hover {
  transform: translate(10%, 0);
}

.slick-dots {
  position: absolute;
  z-index: 1;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 16px;
  text-align: center;
  letter-spacing: -.4em;
}

.gallery02_img .slick-dots {
  bottom: -54px;
}

.slick-dots li {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 4px;
  cursor: pointer;
  text-indent: -9999px;
  letter-spacing: normal;
  border: none;
}

.slick-dots li {
  background: url(../img/index/intro/dots_off.png) no-repeat 0 0;
  background-size: 100% 100%;
}

.slick-dots li.slick-active {
  background: url(../img/index/intro/dots_on.png) no-repeat 0 0;
  background-size: 100% 100%;
}

/* gallery TXT */
.galleryTxt01 {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #000;
  text-shadow: white 1px 1px 1px,  white 1px -1px 1px,  white -1px 1px 1px, white -1px -1px 1px;
}

/*-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 374px) {
  .sps-none {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .sp-none {
    display: none;
  }
  .gallery {
    padding: 0 0 80px;
  }
  .pageHeader {
    width: 100%;
    height: 38.28125vw;
    margin: 0 0 6.25vw;
    padding: 0;
    text-align: center;
    background: url(../img/sp/bg_page_header.png) center top repeat;
    background-size: cover;
  }
  .header_ttl {
    width: 31.46875vw;
    margin: 0 auto;
    padding-top: 5.625vw;
  }
  .galleryWrapp01 {
    width: 100%;
    height: auto;
    padding: 20vw 0 40px;
    margin: -20vw 0 40px;
  }
  .galleryWrapp01 h2 {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .galleryWrapp01 h2 img {
    position: relative;
    left: 50%;
    width: 130%;
    transform: translate(-50%, 0);
  }
  .gallery01Wrap {
    display: block;
    margin: 0 auto;
  }
  .gallery01Box {
    margin: 0;
  }
  .gallery01_movie {
    position: relative;
    width: 95%;
    height: auto;
    margin: 8.5vw auto 3vw;
    padding: 0;
  }
  .gallery01_movie:after {
    top: -2.5vw;
    left: -2.5vw;
    width: 105%;
    height: 109%;
    margin: 0;
    background-size: 100% auto;
  }
  .gallery01_prayBtn {
    position: absolute;
    top: 50%;
    left: 75%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
  }
  .gallery01_caption {
    font-size: 14px;
  }
  .gallery02Wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .galleryWrapp02.page{
    margin: 0 0 8vw;
  }
  .slick-prev {
    z-index: 2;
    top: 134%;
    left: 3vw;
    width: 10.3vw;
    height: 7.5vw;
    background-size: 100% 100%;
  }
  .slick-next {
    z-index: 2;
    top: 134%;
    right: 3vw;
    width: 10.3vw;
    height: 7.5vw;
    background-size: 100% 100%;
  }
  .gallery01_img .slick-dots {
    bottom: -10vw;
  }
  .gallery01_img .slick-prev,.gallery01_img .slick-next {
    top: 106%;
  }
  .galleryTxt01 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 640px) {
  .pc-none {
    display: none;
  }
}