* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    }

html, body { height: 100%; }

body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'Yu Mincho Light', 'Hiragino Mincho Pro', serif;
    font-size: 95%;
    line-height: 2;
    letter-spacing: 0.03em;
    -webkit-text-size-adjust: 100%; /* ブラウザ側で自動調整しない */
    -webkit-font-smoothing: antialiased; /* アンチエイリアス */
    overflow-x: hidden;
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
    }
    
@keyframes fadeIn {
      0% { opacity: 0 }
  100% { opacity: 1 }
  }

@-webkit-keyframes fadeIn {
      0% { opacity: 0 }
  100% { opacity: 1 }
  }

@media screen and (max-width: 640px) { 

body {  font-size: 80%; }

}


/* -------------------------------------------------------- ★ a */


a { text-decoration: none; transition: 1s; }

a:link { color: #fff; }

a:visited { color: #ccc; }

a:hover,
.active { color: #99f; }

img { max-width: 100%; height: auto; border: none; vertical-align: bottom; }

a img { transition: 1s; }

a:img { max-width: 100%; }

a:hover img { opacity: 0.4; filter: alpha(opacity=40); }


#oo { color: #000; background: #fff; font-family: 'Yu Mincho medium', 'Hiragino Mincho Pro', serif; }

#oo a:link,
#oo a:visited { color: #000; }
#oo a:hover { color: #777; }


/* -------------------------------------------------------- ★ p */


p { margin: 0; }

.text p { margin-bottom: 40px; }

.number { letter-spacing:0.2em; }

@media screen and (min-width: 640px) { 

.sp { display: none; }

}

@media screen and (max-width: 640px) { 

.pc { display: none; }

}


/* -------------------------------------------------------- ★ li */


ol, ul { margin: 0; padding: 0; }

li { display: inline-block; max-width: 100%; vertical-align: top; }

.list { margin: 30px 0; }

.list li {
  display: list-item;
  list-style-position: inside;
  margin-bottom: 10px;
  padding-left: 1.5em;
  text-indent: -1.5em;
  text-align: left;
  }


/* -------------------------------------------------------- ★ h */


h1 { font-size: 140%; margin: 0; padding: 40px 0; letter-spacing: 0.15em; text-align: center; }

h2 { font-size: 105%; margin: 40px 0; padding: 0; }

h3 { font-size: 125%; margin: 40px 0; padding: 0; text-align: center; letter-spacing: 0.1em; }

h1, h2, h3 { font-weight: normal; }


/* -------------------------------------------------------- ★ hr */


hr { margin: 30px 0; border: 0; height: 1px; background-image: url('../img/line.gif'); clear: both; }


/* -------------------------------------------------------- ★ logo */


.logo { position: fixed; left: 40px; top: 30px; z-index: 10; }

.logo2 { padding-top: 30px; text-align: center; z-index: 10; }

.logo img,
.logo2 img { width: auto; height: 120px; }

@media screen and (max-width: 640px) { 

.logo { position: absolute; left: 0; top: 20px; width: 100%; text-align: center; }

.logo img,
.logo2 img { width: auto; height: 100px; }

}


/* -------------------------------------------------------- ★ LR */


.center,
.center2 { text-align: center; }

.L { float: left; }

.R { overflow: hidden; }

.L2 { float: left; min-width: 100px; margin-left: 10px; font-weight: bold; vertical-align: top; }

@media screen and (max-width: 640px) {

.center2 { text-align: left; }

.R { width: 100%; }

}


/* -------------------------------------------------------- ★ box */


.box { max-width: 900px; margin: auto; padding: 20px; }

.box2 { max-width: 900px; margin: auto; padding-bottom: 60px; }

.memo { max-width: 550px; margin: auto; }


/* -------------------------------------------------------- ★ access shop */

#access { padding-bottom: 40px; }

.shop img { padding: 10px; }

@media screen and (max-width: 640px) {

.shop { text-align: center; }

}


/* -------------------------------------------------------- ★ intro */


.intro {
  width: 100%;
  position: absolute;
  top: 40%;
  padding: 20px;
  color: #fff;
  font-family: "Optima lt";
  font-size: 150%;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 1px #000;
  text-align: center;
  z-index: 10;
  }

.intro2 { margin: 60px 0; text-align: center; } 

@media screen and (max-width: 640px) {

.intro2 { text-align: left; } 

}


/* -------------------------------------------------------- ★ button */


.btn li {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 0.15em; 
  text-align: center;
  background: linear-gradient(-45deg, #a6d900 0%, #99f 100%);
  animation: huerotator 6s infinite alternate;
  }

.btn a { display: block; padding: 30px; }

@keyframes huerotator {
      0% { -webkit-filter: hue-rotate(0deg); filter: hue-rotate(0deg); }
  100% { -webkit-filter: hue-rotate(360deg); filter: hue-rotate(360deg); }
  }

.btn a:link,
.btn a:visited { color: #fff; }

.btn a:hover { color: #000; }

.btn2 {
  display: inline-block;
  border: 1px solid;
  padding: 10px;
  margin-right: 10px;
  }

.btn2:hover {
  color: #fff;
  border: 1px solid #000;
  background: linear-gradient(-45deg, #a6d900 0%, #99f 100%);
  animation: huerotator2 3s infinite alternate;
  }

@keyframes huerotator2 {
      0% { -webkit-filter: hue-rotate(0deg); filter: hue-rotate(0deg); }
  100% { -webkit-filter: hue-rotate(360deg); filter: hue-rotate(360deg); }
  }

.btn3 { border: solid 1px #fff; padding: 10px; margin-right: 10px; }

.paybtn a {
  display: inline-block; 
  width: 100%;
  padding: 30px;
  font-weight: bold;
  background: #fff;
  border: solid 1px #ccc;
  text-align: center;
  }

/* -------------------------------------------------------- ★ footer sns */


footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 0;
    height: 45px;
    background: #fff;
    animation: footer-bar 1s forwards;
    z-index: 100;
    }

footer a:link,
footer a:visited { color: #000; }

@keyframes footer-bar { 100% { width: 100%; } }

.copy { 
    position: fixed;
    font-size: 11px;
    line-height: 1;
    }

.copy a:link,
.copy a:visited,
.copy a:hover { color: #333; }

.sns { position: fixed; right: 40px; bottom: 10px; }

.sns li { margin-left: 20px; }

@media screen and (min-width: 640px) {

.sns { right: 40px; bottom: 10px; }

.sns img { width: auto; height: 25px; }

.copy { left: 40px; bottom: 17px; }

}

@media screen and (max-width: 640px) {

.sns { right: 20px; bottom: 10px; }

.sns img { width: auto; height: 25px; }

.copy { left: 20px; bottom: 17px; }

}


/* -------------------------------------------------------- ★ フォーム*/


/* デフォルトスタイル解除 */

input, select {
  -webkit-appearance: none;
  appearance: none;
  }

.data { margin-top: 40px; }

.data a:link { color: #306; }

.data a:visited { color: #777; }

.data a:hover,
.data .active { color: #306; }

.data span { color: #f36; }

.data h2 { font-size: 100%; margin-bottom: -5px; }

input[type="text"],
textarea,
label span {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #aaa;
  border-radius: 3px;
  line-height: 150%;
  }

input[type="text"] { width: 100%; }

textarea { width: 100%; height: 12em; }

input[type="text"],
textarea { padding: 10px; }

input[type="button"],
input[type="submit"] { 
  margin: 20px 10px; 
  padding: 15px 25px; 
  border: 1px solid #aaa;
  border-radius: 3px;
  font-weight: bold;
  -webkit-appearance: none;
  transition: 1s;
  }

input[type="button"]:hover,
input[type="submit"]:hover { color: #fff; background: #000; border: 1px solid #000; cursor: pointer; cursor: hand; }

select {
  width: 100%;
  padding: 20px;
  border: 1px solid #aaa;
  font-size: 120%;
  background: url(../img/arrowdown.png) right 20px center / 19px 15px  no-repeat;
  }

.paypal { width: 400px; margin: auto; text-align: center; }
  
  
/* -------------------------------------------------------- ★ チェックボタン カスタマイズ */


label input { display: none; }

label input:checked + span { color: #fff; background: #000; }

label span { padding: 20px; text-align: center; }

label span:hover { cursor: pointer; cursor: hand; }



/* -------------------------------------------------------- ★ アコーディオンボタン */

.accordion label {
 display: block;
 margin-bottom: 20px;
 padding: 15px;
 border-radius: 3px;
 border: solid 1px #aaa;
 cursor: pointer;
 transition: 1s;
 text-align: center;
 }

.accordion label:hover  { color: #fff; background: #000; border: solid 1px #000; }

.accordion label:hover { color: #fff; background: #000; }

.accordion label:checked { background: #fff; }

.accordion input[type="checkbox"].on-off { display: none; }

.accordion input[type="checkbox"].on-off + div { height: 0; overflow: hidden; transition: .3s ease; }

.accordion input[type="checkbox"].on-off:checked + div { height: auto; padding: 30px 0; }


/* -------------------------------------------------------- ★ 支払い方法 */


.pay { margin: 40px 0; text-align: center; }

.pay li {
  display: list-item;
  list-style: none;
  margin-bottom: 20px;
  border-radius: 3px;
  }

.pay a { display: block; padding: 15px 0; color: #000; border: solid 1px #aaa; }

.pay a:visited { color: #333; }

#oo .pay a:hover  { color: #fff; background: #000; border: solid 1px #000; }

.paypayicon { height: 25px; margin: 0 10px 2px 0; }


/* -------------------------------------------------------- ★ instafeed */


#instafeed { margin-bottom: 40px; text-align: center; }

#instafeed li { margin-bottom: 5px; padding: 5px; overflow: hidden; }

#instafeed img { height: 150px;  }

@media screen and (max-width: 640px) { 

#instafeed li { margin-bottom: 0; padding: 10px; }

#instafeed img { width: 150px; }

}


/* -------------------------------------------------------- ★ Back */

.back { display: block; margin: 60px 0; }

.back div {
  width: 40px;
  height: 40px;
  margin: auto;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 1s;
  }

.back:hover > div {
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  }


/* -------------------------------------------------------- ★ Drawer  */


.gnav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    text-align: center;
    letter-spacing: 0.15em;
     transition: all 1s;
    -webkit-transition: all 1s;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    }
 
.gnav ul { margin-top: 50px; }

.gnav li { display: list-item; border-bottom: 1px solid #333; }

.gnav li a { display: block; padding: 15px 0; color: #fff; }

.gnav li a:hover,
.gnav li a.active { color: #fff; background: #ccc; }

.gnav.on { visibility: visible; opacity: 1; }

.icon-animation {
    position: fixed;
    display: block;
    right: 20px;
    top: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 110;
    }

.icon-animation span {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    }

.icon-animation .top {
    transform: translateY(-13px);
    -webkit-transform: translateY(-13px);
    }

.icon-animation .bottom {
    transform: translateY(13px);
    -webkit-transform: translateY(13px);
    }

.is-open .middle { background: rgba(51, 51, 51, 0)!important; }

.is-open .top { 
    transform: rotate(-45deg) translateY(0px);
    -webkit-transform: rotate(-45deg) translateY(0px);
    }
 
.is-open .bottom {
    transform: rotate(45deg) translateY(0px);
    -webkit-transform: rotate(45deg) translateY(0px);
    }


/* -------------------------------------------------------- ★ Slide Show */


.slideshow { position: relative; left: 0; top: 0; height: 100%; margin-bottom: 100px; overflow: hidden; z-index: 0; }

.slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    background: center center / cover no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 24s linear infinite 0s;
    -webkit-animation: imageAnimation 24s linear infinite 0s;
    }

.slideshow li:nth-child(1) span { 
    background-image: url('../img/01.jpg') 
    }

.slideshow li:nth-child(2) span { 
    background-image: url('../img/02.jpg');
    animation-delay: 6s;
    -webkit-animation-delay: 6s;
    }

.slideshow li:nth-child(3) span { 
    background-image: url('../img/03.jpg');
    animation-delay: 12s;
    -webkit-animation-delay: 12s;
    }

.slideshow li:nth-child(4) span { 
    background-image: url('../img/04.jpg');
    animation-delay: 18s;
    -webkit-animation-delay: 18s;
    }

@media screen and (max-width: 640px) {

.slideshow li:nth-child(1) span { background-image: url('../img/s01.jpg') }
.slideshow li:nth-child(2) span { background-image: url('../img/s02.jpg'); }
.slideshow li:nth-child(3) span { background-image: url('../img/s03.jpg'); }
.slideshow li:nth-child(4) span { background-image: url('../img/s04.jpg'); }

}

/* Animation for the slideshow images */

@keyframes imageAnimation { 
      0% { opacity: 0; animation-timing-function: ease-in; }
      8% { opacity: 1; animation-timing-function: ease-out; }
    17% { opacity: 1; }
    30% { opacity: 0; }
  100% { opacity: 0; }
}

@-webkit-keyframes imageAnimation { 
      0% { -webkit-animation-timing-function: ease-in; }
      8% { -webkit-animation-timing-function: ease-out; }
    17% { opacity: 1; }
    30% { opacity: 0; }
  100% { opacity: 0; }
}


/* -------------------------------------------------------- ★ WOW */


.animated,#access {
    animation-duration: 1s; 
    -webkit-animation-duration: 1s; 
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both; 
    }


/* -------------------------------------------------------- ★  wow FadeInUp */


.fadeInUp,
.intro,
h1,
h2,
.btn li,
.text p,
.text ul { animation-name: fadeInUp; -webkit-animation-name: fadeInUp; }

@keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); -webkit-transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); }
}


/* -------------------------------------------------------- ★ wow Horizon */


.horizon { position: relative; padding: 30px 0 60px 0; }

.horizon-l,
.horizon-r { position: absolute; height: 1px; background-color: #ccc; }

.horizon-l { animation: horizon-l 1.5s forwards; }
.horizon-r { animation: horizon-r 1.5s forwards; }

@keyframes horizon-l {
      0% { opacity: 0; width: 0; left: 50%; }
  100% { opacity: 1; width: 50%; left: 0; }
  }

@keyframes horizon-r {
      0% { opacity: 0; width: 0; right: 50%; }
  100% { opacity: 1; width: 50%; right: 0; }
  }


/* -------------------------------------------------------- ★ リンク　左からラインが伸びる */


.link {
  text-decoration: none;
  color: #ff;
  position: relative;
  display: inline-block;
 t ransition: 0.3s;
 }

.link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background: #99f;
  transition: 0.3s;
  }

.link:hover::after { width: 100%; }


/* -------------------------------------------------------- ★ photoswipe */


.gallery { margin-top: 40px; text-align: center; }

.gallery li { padding: 10px; }

@media screen and (max-width: 640px) { 

.gallery { margin-top: 0; }

.gallery img { width: 160px; }

.gallery li { padding: 2px; }

}

.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
  }
  
  .pswp * { box-sizing: border-box; -webkit-box-sizing: border-box; }
            
  .pswp img { max-width: none; }

/* style is added when JS option showHideOpacity is set to true */

.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open { display: block; }

.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */

.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
  will-change: transform; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/* stretched thumbnail or div placeholder element (see below) style is added to avoid flickering in webkit/blink when layers overlap */

.pswp__img--placeholder { -webkit-backface-visibility: hidden; }

/* div element that matches size of large image large image loads on top of it */

.pswp__img--placeholder--blank { background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/* Error message appears when image is not loaded */

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #ccc; }

.pswp__error-msg a {
    color: #ccc;
    text-decoration: underline; }

/* ボタン　サイズ・透明度 */

.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0px none;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none }
          
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
    
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
    
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0px none; }


/* 閉じるボタン */

.pswp__ui--over-close .pswp__button--close { opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url('../js/photoswipe/skin/default-skin.png') no-repeat 0 0;
  background-size: 264px 88px;
  width: 44px;
  height: 44px }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {

  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before { background-image: url('../js/photoswipe/skin/default-skin.svg'); }
    
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right { background: none; }
  
}

.pswp__button--close { background-position: 0 -44px; }

.pswp__button--share { background-position:  -44px; }

.pswp__button--fs { display: none; }

.pswp--supports-fs .pswp__button--fs { display: block; }

.pswp--fs .pswp__button--fs { background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom { display: block; }

.pswp--zoomed-in .pswp__button--zoom { background-position: -132px 0; }


/* 矢印ボタンに触れていない時　消える */

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right { visibility: hidden; }

/* 矢印ボタン */

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 20%;
  height: 50%;
  position: absolute; }

.pswp__button--arrow--left { left: 0; }

.pswp__button--arrow--right { right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0);
  height: 30px;
  width: 32px;
  position: absolute }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/* 3. Index indicator ("1 of X" counter) */
 
.pswp__counter {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  padding: 0 10px;
  }

/* 4. Caption */
 
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
  }
  
.pswp__caption small {
    font-size: 11px;
    color: #bbb;
    }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #ccc;
  }

.pswp__caption--empty { display: none; }

/* Fake caption element, used to calculate height of next/prev image */

.pswp__caption--fake { visibility: hidden; }

/* 5. Loading indicator (preloader)	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR */

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active { opacity: 1; }

  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url('../js/photoswipe/skin/preloader.gif') no-repeat 0 0; }

.pswp--css_animation .pswp__preloader--active { opacity: 1; }

  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
            
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
 }

@keyframes clockwise {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
  }

@-webkit-keyframes donut-rotate {
  0% { -webkit-transform: rotate(0); transform: rotate(0); }
  50% { -webkit-transform: rotate(-140deg); transform: rotate(-140deg); }
  100% { -webkit-transform: rotate(0); transform: rotate(0); }
  }

@keyframes donut-rotate {
  0% { -webkit-transform: rotate(0); transform: rotate(0); }
  50% { -webkit-transform: rotate(-140deg); transform: rotate(-140deg); }
  100% { -webkit-transform: rotate(0); transform: rotate(0); }
  }

/* 6. Additional styles */

/* root element of UI */

.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
          
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right { visibility: visible; }
.pswp__top-bar,
.pswp__caption { background-color: rgba(0, 0, 0, 0); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption { background-color: rgba(0, 0, 0, 0); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */

.pswp__ui--idle .pswp__top-bar { opacity: 0; }
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right { opacity: 0; }

/* pswp__ui--hidden class is added when controls are hidden e.g. when user taps to toggle visibility of controls */

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right { opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter { display: none; }

.pswp__element--disabled { display: none !important; }

.pswp--minimal--dark .pswp__top-bar { background: none; }
