@charset "UTF-8";
html {
  font-size: 18px;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 13px;
  }
}

/** Colorの定義**/
/** 文字の定義**/
/* ==============================
  
	  共通
  
  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  outline: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
}

a:hover {
  color: #666;
}

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

img.img-set {
  width: 100%;
  height: auto;
}

img[data-echo] {
  background-image: url(../images/common/loader-white.gif);
  background-position: center center;
  background-size: 40px;
}

img[data-echo].loaded {
  background-image: none;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

ul li {
  list-style: none;
}

.alpha {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.alpha:hover {
  opacity: 0.7;
}

.wrap-alpha a {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.wrap-alpha a:hover {
  opacity: 0.7;
}

.transition-01 {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.transition-02 {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.transition-03 {
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.bd-01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(252, 238, 33, 0.6)));
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

.bd-02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(228, 0, 3, 0.4)));
  background: linear-gradient(transparent 60%, rgba(228, 0, 3, 0.4) 0%);
  font-weight: bold;
}

.bd-03 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(0, 65, 219, 0.5)));
  background: linear-gradient(transparent 60%, rgba(0, 65, 219, 0.5) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
}

th,
td {
  text-align: left;
}

input[type="text"]:focus {
  outline: 0;
}

button:focus {
  outline: 0;
  -webkit-appearance: none;
  border-radius: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.link a {
  color: #0052a5;
}

.link a:hover {
  color: #ffb700;
}

#window-size {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 200px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  z-index: 9999;
  text-align: center;
  padding: 10px;
  display: none;
}

/** Loader **/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 998;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 100px;
  margin-top: -50px;
  margin-left: -100px;
  text-align: center;
  z-index: 999;
}

#loader img {
  max-width: 40px;
  height: auto;
}

#loader p {
  font-size: 12px;
  margin-top: 30px;
  letter-spacing: 1.5px;
}

#loader .num1 {
  -webkit-animation: flash1 1s 0s infinite;
  animation: flash1 1s 0s infinite;
}

#loader .num2 {
  -webkit-animation: flash2 1s 0s infinite;
  animation: flash2 1s 0s infinite;
}

#loader .num3 {
  -webkit-animation: flash3 1s 0s infinite;
  animation: flash3 1s 0s infinite;
}

@-webkit-keyframes flash1 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash1 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flash2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flash3 {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash3 {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/** ***********************************************

COMMON

*********************************************** **/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cols-2 {
  font-size: 0;
}

.cols-2 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

@media screen and (max-width: 600px) {
  .cols-2 .col {
    display: block;
    width: 100%;
  }
}

.cols-3 {
  font-size: 0;
}

.cols-3 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 3);
}

@media screen and (max-width: 600px) {
  .cols-3 .col {
    display: block;
    width: 100%;
  }
}

.cols-4 {
  font-size: 0;
}

.cols-4 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 25%;
}

@media screen and (max-width: 600px) {
  .cols-4 .col {
    display: block;
    width: 100%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 100%;
  letter-spacing: 0.5px;
  color: #eee;
  background-color: #111;
}

.lato {
  font-family: 'Lato', sans-serif;
  letter-spacing: 2px;
}

#wrapper {
  max-width: 2000px;
  margin: 0 auto;
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

@media screen and (max-width: 900px) {
  .inner {
    padding: 0 30px;
  }
}

.sec-common {
  padding: 150px 0 0;
}

@media screen and (max-width: 600px) {
  .sec-common {
    padding: 50px 10px 0;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
}

#wrapper {
  overflow: hidden;
}

.bt {
  display: block;
  padding: 15px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.bt-1 {
  background-color: #036eb8;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 25px 5px;
}

@media screen and (max-width: 1024px) {
  .bt-1 {
    max-width: 200px;
    padding: 15px;
  }
}

@media screen and (max-width: 600px) {
  .bt-1 {
    max-width: 100%;
  }
}

.bt-1:hover {
  color: #fff;
  padding-left: 15px;
}

.bt-1::before {
  content: "\025b6";
  margin-right: 10px;
  font-size: 10px;
  vertical-align: middle;
}

.bt-2 {
  background-color: #ea5514;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 25px 5px;
}

@media screen and (max-width: 1024px) {
  .bt-2 {
    max-width: 200px;
    padding: 15px;
  }
}

@media screen and (max-width: 600px) {
  .bt-2 {
    max-width: 100%;
  }
}

.bt-2:hover {
  color: #fff;
  padding-left: 15px;
}

.bt-2::before {
  content: "\025b6";
  margin-right: 10px;
  font-size: 10px;
  vertical-align: middle;
}

.bt-2__og {
  background-color: #ea5514;
}

.bt-3 {
  background-color: #ea5514;
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .bt-3 {
    max-width: 45%;
  }
}

.bt-3:hover {
  color: #fff;
  padding-left: 25px;
}

.bt-3::before {
  content: "\025b6";
  margin-right: 10px;
  font-size: 10px;
  vertical-align: middle;
}

.hide {
  display: none;
}

/* ==============================
  
	  ファイル読み込み
  
  ==============================   */
.kt-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.kt-logo img {
  width: 100%;
  max-width: 80px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .kt-logo {
    max-width: 80px;
  }
}

@media screen and (max-width: 400px) {
  .kt-logo {
    max-width: 50px;
  }
}

/* ==============================

フッター

============================== */
#back-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  border: solid 1px #555;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  border-radius: 100px;
  color: #fff;
  z-index: 7777;
  background-color: #111;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#back-top:hover {
  bottom: 55px;
}

@media screen and (max-width: 900px) {
  #back-top {
    right: 20px;
  }
}

@media screen and (max-width: 600px) {
  #back-top {
    bottom: 20px;
  }
}

footer {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 900px) {
  footer {
    margin-top: 50px;
  }
}

footer .inner {
  padding-bottom: 100px;
}

@media screen and (max-width: 900px) {
  footer .inner {
    padding-bottom: 50px;
  }
}

footer .logo-kt {
  max-width: 300px;
}

@media screen and (max-width: 600px) {
  footer .logo-kt {
    max-width: 200px;
  }
}

footer .copyright {
  font-size: 10px;
  letter-spacing: 2px;
  color: #999;
  display: block;
  padding: 0 20px 50px 0;
}

.mv {
  width: 100%;
  height: 90vh;
  background-image: url("../images/mv.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.mv .inner {
  height: 100%;
}

.mv .mv__product {
  position: absolute;
  bottom: 0;
  left: 10%;
  max-width: 400px;
  z-index: 3;
}

@media screen and (max-width: 1200px) {
  .mv .mv__product {
    max-width: 300px;
    left: 5%;
  }
}

@media screen and (max-width: 600px) {
  .mv .mv__product {
    max-width: 200px;
  }
}

.mv .mv__txt {
  position: absolute;
  top: 10%;
  right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mv .mv__txt1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.2rem;
  letter-spacing: 10px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  line-height: 200%;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
}

.mv .mv__txt1.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .mv .mv__txt1 {
    font-size: 20px;
  }
}

.mv .mv__txt2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.2rem;
  letter-spacing: 10px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  line-height: 200%;
  -webkit-transition: all 1s .5s;
  transition: all 1s .5s;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.mv .mv__txt2.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .mv .mv__txt2 {
    font-size: 20px;
  }
}

.mv .mv__logo {
  position: absolute;
  width: 100%;
  max-width: 900px;
  text-align: right;
  height: auto;
  padding: 50px 20px;
  background-color: #fff;
  z-index: 1;
  bottom: 250px;
  left: 0;
}

@media screen and (max-width: 1200px) {
  .mv .mv__logo {
    max-width: 60%;
  }
}

@media screen and (max-width: 900px) {
  .mv .mv__logo {
    max-width: 75%;
  }
}

@media screen and (max-width: 600px) {
  .mv .mv__logo {
    padding: 30px 20px;
    bottom: inherit;
    top: 100px;
    max-width: 60%;
    text-align: center;
  }
}

.mv .mv__logo-skymemo {
  max-width: 300px;
}

@media screen and (max-width: 900px) {
  .mv .mv__logo-skymemo {
    max-width: 250px;
  }
}

@media screen and (max-width: 600px) {
  .mv .mv__logo-skymemo {
    max-width: 160px;
  }
}

.title-h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 100px;
}

.title-h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 20px;
  border-bottom: solid 3px #eee;
  margin: 20px auto 0;
}

@media screen and (max-width: 600px) {
  .title-h2 {
    font-size: 20px;
  }
}

.desc {
  max-width: 600px;
  margin: 0 auto 100px;
}

.desc p {
  line-height: 1.8;
  letter-spacing: 1.5px;
  margin-bottom: 1em;
  font-size: 1rem;
  font-size: 0.875rem;
}

.sec-01 .wrap-catch {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 30px;
  z-index: 10;
}

.sec-01 .wrap-catch h2 {
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.sec-01 .wrap-catch p {
  line-height: 1.8;
  letter-spacing: 1.5px;
  margin-bottom: 1em;
  font-size: 1rem;
}

.sec-01 .sec-01__item {
  margin-bottom: 100px;
}

.sec-01 .sec-01__item .txt {
  max-width: 800px;
  margin: 0 auto 50px;
}

.sec-01 .title-h3 {
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.sec-01 .txt__desc {
  margin-bottom: 50px;
}

.sec-01 .txt__desc p {
  line-height: 1.8;
  letter-spacing: 1.5px;
  margin-bottom: 1em;
  font-size: 1rem;
  font-size: 0.875rem;
}

.sec-01 .wrap-img {
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
}

.sec-01 .wrap-img-flex {
  margin: 0 auto;
  text-align: center;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-01 .wrap-img-flex img {
  display: block;
  width: 48%;
  margin: 0 1%;
}

@media screen and (max-width: 600px) {
  .sec-01 .wrap-img-flex img {
    width: 100%;
    margin: 0 auto 30px;
  }
}

.sec-02 .wrap-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-02 .wrap-flex .col {
  width: 50%;
  padding: 20px;
}

@media screen and (max-width: 900px) {
  .sec-02 .wrap-flex .col {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .sec-02 .wrap-flex .col {
    padding: 20px 0;
  }
}

.sec-02 .wrap-flex .col p {
  line-height: 1.8;
  letter-spacing: 1.5px;
  margin-bottom: 1em;
  font-size: 1rem;
  font-size: 0.875rem;
}

.sec-02 .wrap-flex .col .note {
  display: block;
  font-size: 0.777rem;
  margin-top: 20px;
  color: #999;
}

.sec-02 .wrap-flex h4 {
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: 2px;
}

@media screen and (max-width: 600px) {
  .sec-02 .wrap-flex h4 {
    font-size: 16px;
  }
}

.sec-02 .wrap-flex .wrap-img {
  width: 100%;
  min-height: 300px;
  background-color: #333;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 600px) {
  .sec-02 .wrap-flex .wrap-img {
    min-height: 200px;
  }
}

.sec-03 .gal {
  padding-bottom: 50px;
}

.sec-03 .gal .slick-slide {
  width: 100%;
  height: 80vh;
  text-align: center;
  background-color: #111;
  position: relative;
}

.sec-03 .gal .slick-slide .cap {
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  display: block;
  width: 100%;
}

.sec-03 .gal .slick-slide .cap a {
  color: #eee;
}

.sec-03 .gal .slick-slide .cap__inner {
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 900px) {
  .sec-03 .gal .slick-slide {
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  .sec-03 .gal .slick-slide {
    height: 400px;
  }
}

.sec-03 .gal .slick-slide img {
  width: auto !important;
  height: 100%;
}

.sec-04 .wrap-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1000px;
  margin: 0 auto 2px;
}

@media screen and (max-width: 600px) {
  .sec-04 .wrap-flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
}

.sec-04 .wrap-flex .wrap-txt {
  padding-left: 30px;
  padding-top: 30px;
  background-color: #222;
  width: 70%;
}

@media screen and (max-width: 900px) {
  .sec-04 .wrap-flex .wrap-txt {
    background-color: #111;
  }
}

.sec-04 .wrap-flex .wrap-txt h5 {
  margin-bottom: 30px;
}

.wrap-cap {
  text-align: center;
  padding-bottom: 30px;
  color: #999;
}

.wrap-cap a {
  color: #999;
  font-size: 20px;
  margin-right: 5px;
}

/**  Slick Base  fadeする場合はslick.cssの読み込みが必要**/
.slick {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
}

.slick li.slick-slide {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}

.slick li.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  margin-top: -50px;
  z-index: 2;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}

.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #111;
  border: solid 1px #333;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #eee;
  border-color: #eee;
}

/*
      Colorbox Core Style:
  */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  font-size: 12px;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
  overflow: visible;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: none;
}

#cboxContent {
  margin: 0px;
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

#cboxCurrent {
  position: absolute;
  bottom: -30px;
  left: 0px;
  color: #ccc;
  font-size: 12px;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: none;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #eee;
}

#colorbox .slick-arrow {
  color: #eee;
  font-size: 40px;
}

#cboxPrevious .slick-arrow {
  margin-top: -25px;
  left: 20px;
}

#cboxNext .slick-arrow {
  margin-top: -35px;
  right: 20px;
}

#cboxClose {
  font-size: 40px;
  color: #eee;
  position: absolute;
  top: -60px;
  right: 0;
}

/** Twentytwenty **/
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
          box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  width: 2px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  width: 9999px;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before,
.twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow,
.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active
:hover.twentytwenty-overlay
.twentytwenty-before-label,
.twentytwenty-container.active
:hover.twentytwenty-overlay
.twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.twentytwenty-before-label {
  opacity: 0;
}

.twentytwenty-before-label:before {
  content: attr(data-content);
}

.twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-after-label:before {
  content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.twentytwenty-overlay {
  -webkit-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25;
}

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 2px solid white;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.twentytwenty-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}

.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}

/* Scroll Trigger */
.trigger {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.trigger-1 {
  -webkit-transition: all 1s ease 0.3s;
  transition: all 1s ease 0.3s;
}

.trigger-2 {
  -webkit-transition: all 1s ease 0.4s;
  transition: all 1s ease 0.4s;
}

.trigger-3 {
  -webkit-transition: all 1s ease 0.5s;
  transition: all 1s ease 0.5s;
}

.invisible {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.fromTopIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromTopOut {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  opacity: 0;
}

.fromBottomIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromBottomOut {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  opacity: 0;
}

.fromLeftIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromLeftOut {
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
  opacity: 0;
}

.fromRightIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fromRightOut {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
  opacity: 0;
}

.scaleUpIn {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}

.scaleUpOut {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}

.scaleDownOut {
  -webkit-transform: scale(0.7, 0.7);
          transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
  opacity: 1;
}

.rotateOut {
  -webkit-transform: rotate(30deg) scale(0.9);
          transform: rotate(30deg) scale(0.9);
  opacity: 0;
}
/*# sourceMappingURL=common.css.map */