@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/* line 9, ../scss/_html5reset-1.6.1.scss */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* line 31, ../scss/_html5reset-1.6.1.scss */
body {
  line-height: 1;
}

/* line 35, ../scss/_html5reset-1.6.1.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 40, ../scss/_html5reset-1.6.1.scss */
nav ul {
  list-style: none;
}

/* line 44, ../scss/_html5reset-1.6.1.scss */
blockquote, q {
  quotes: none;
}

/* line 48, ../scss/_html5reset-1.6.1.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 54, ../scss/_html5reset-1.6.1.scss */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
/* line 63, ../scss/_html5reset-1.6.1.scss */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
/* line 70, ../scss/_html5reset-1.6.1.scss */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* line 77, ../scss/_html5reset-1.6.1.scss */
del {
  text-decoration: line-through;
}

/* line 81, ../scss/_html5reset-1.6.1.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* line 86, ../scss/_html5reset-1.6.1.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
/* line 92, ../scss/_html5reset-1.6.1.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* line 101, ../scss/_html5reset-1.6.1.scss */
input, select {
  vertical-align: middle;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
/* line 11, ../scss/_animate.min.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 11, ../scss/_animate.min.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 11, ../scss/_animate.min.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 11, ../scss/_animate.min.scss */
.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%,20%,53%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%,43%,70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,20%,53%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  40%,43%,70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%,50%,to {
    opacity: 1;
  }
  25%,75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,50%,to {
    opacity: 1;
  }
  25%,75% {
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%,to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,30%,50%,70%,90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,40%,60%,80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,30%,50%,70%,90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,40%,60%,80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* line 11, ../scss/_animate.min.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,60%,80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,60%,80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%,11.1%,to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  0%,11.1%,to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
/* line 11, ../scss/_animate.min.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%,40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%,80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }
  0%,40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%,80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
/* line 11, ../scss/_animate.min.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 11, ../scss/_animate.min.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
/* line 11, ../scss/_animate.min.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%,80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  60%,80% {
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
  }
  0%,20%,60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40%,80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
  }
  0%,20%,60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40%,80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* line 11, ../scss/_animate.min.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
/* line 11, ../scss/_animate.min.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%,to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%,to {
    opacity: 0;
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
/* line 11, ../scss/_animate.min.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/* line 11, ../scss/_animate.min.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* Slider */
/* line 3, ../scss/_slick.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 17, ../scss/_slick.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 24, ../scss/_slick.scss */
.slick-list:focus {
  outline: none;
}
/* line 28, ../scss/_slick.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 33, ../scss/_slick.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 42, ../scss/_slick.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
/* line 48, ../scss/_slick.scss */
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
/* line 54, ../scss/_slick.scss */
.slick-track:after {
  clear: both;
}
/* line 58, ../scss/_slick.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 62, ../scss/_slick.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
/* line 66, ../scss/_slick.scss */
[dir="rtl"] .slick-slide {
  float: right;
}
/* line 69, ../scss/_slick.scss */
.slick-slide img {
  display: block;
}
/* line 72, ../scss/_slick.scss */
.slick-slide.slick-loading img {
  display: none;
}
/* line 78, ../scss/_slick.scss */
.slick-slide.dragging img {
  pointer-events: none;
}
/* line 82, ../scss/_slick.scss */
.slick-initialized .slick-slide {
  display: block;
}
/* line 86, ../scss/_slick.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}
/* line 90, ../scss/_slick.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 96, ../scss/_slick.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* line 45, ../scss/_slick-theme.scss */
.slick-loading .slick-list {
  background: #fff url('../../images/ajax-loader.gif?1500961818') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url('../fonts/slick.eot');
  src: url('../fonts/slick.eot?#iefix') format("embedded-opentype"), url('../fonts/slick.woff') format("woff"), url('../fonts/slick.ttf') format("truetype"), url('../fonts/slick.svg#slick') format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
/* line 63, ../scss/_slick-theme.scss */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
/* line 81, ../scss/_slick-theme.scss */
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
/* line 85, ../scss/_slick-theme.scss */
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
/* line 89, ../scss/_slick-theme.scss */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
/* line 92, ../scss/_slick-theme.scss */
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 103, ../scss/_slick-theme.scss */
.slick-prev {
  left: -25px;
}
/* line 105, ../scss/_slick-theme.scss */
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
/* line 109, ../scss/_slick-theme.scss */
.slick-prev:before {
  content: "←";
}
/* line 111, ../scss/_slick-theme.scss */
[dir="rtl"] .slick-prev:before {
  content: "→";
}

/* line 117, ../scss/_slick-theme.scss */
.slick-next {
  right: -25px;
}
/* line 119, ../scss/_slick-theme.scss */
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
/* line 123, ../scss/_slick-theme.scss */
.slick-next:before {
  content: "→";
}
/* line 125, ../scss/_slick-theme.scss */
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
/* line 133, ../scss/_slick-theme.scss */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* line 137, ../scss/_slick-theme.scss */
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
/* line 146, ../scss/_slick-theme.scss */
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
/* line 154, ../scss/_slick-theme.scss */
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
/* line 166, ../scss/_slick-theme.scss */
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
/* line 168, ../scss/_slick-theme.scss */
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
/* line 172, ../scss/_slick-theme.scss */
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 189, ../scss/_slick-theme.scss */
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@media all and (-ms-high-contrast: none) {
  /* line 15, ../scss/style.scss */
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  /* line 18, ../scss/style.scss */
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
/* line 20, ../scss/style.scss */
html {
  height: 100%;
  font-size: 62.5%;
  font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

/* line 27, ../scss/style.scss */
body {
  height: 100%;
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
}

/* line 34, ../scss/style.scss */
* {
  box-sizing: border-box;
}
/* line 36, ../scss/style.scss */
*::before, *::after {
  box-sizing: border-box;
}

/* line 40, ../scss/style.scss */
a {
  text-decoration: none;
  color: #a38f5b;
  transition: 0.3s;
}

/* line 45, ../scss/style.scss */
li {
  list-style: none;
}

/* line 46, ../scss/style.scss */
img {
  -ms-interpolation-mode: bicubic;
}

/* line 47, ../scss/style.scss */
.bold {
  font-weight: bold;
}

/* line 48, ../scss/style.scss */
.t__center {
  text-align: center;
}

/* line 49, ../scss/style.scss */
.t__left {
  text-align: left;
}

/* line 50, ../scss/style.scss */
.t__right {
  text-align: right;
}

/* line 51, ../scss/style.scss */
.pdg__r20 {
  padding-right: 20px;
}

/* line 52, ../scss/style.scss */
.pdg__r50 {
  padding-right: 50px;
}

/* line 53, ../scss/style.scss */
.pdg__l50 {
  padding-left: 50px;
}

/* line 54, ../scss/style.scss */
.pdg__b40 {
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  /* line 54, ../scss/style.scss */
  .pdg__b40 {
    padding: 0;
  }
}

/* line 60, ../scss/style.scss */
.blink {
  -webkit-animation: blink 0.8s ease-in-out infinite alternate;
  -moz-animation: blink 0.8s ease-in-out infinite alternate;
  animation: blink 0.8s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 81, ../scss/style.scss */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  text-align: center;
  z-index: 99999;
}
/* line 91, ../scss/style.scss */
#loader span.loader-bar {
  position: absolute;
  top: 48%;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 30px;
}

/* line 105, ../scss/style.scss */
header h1.logo {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 120px;
  z-index: 5;
  transition: 0.3s;
}
/* line 112, ../scss/style.scss */
header h1.logo img {
  width: 100%;
}
/* line 115, ../scss/style.scss */
header h1.logo a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  /* line 105, ../scss/style.scss */
  header h1.logo {
    top: 20px;
    left: 6%;
    width: 80px;
  }
}
/* line 124, ../scss/style.scss */
header .btn__down {
  position: absolute;
  width: 40px;
  left: 50%;
  bottom: 10px;
  margin-left: -20px;
  z-index: 5;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  /* line 124, ../scss/style.scss */
  header .btn__down {
    bottom: -30px;
  }
}
/* line 135, ../scss/style.scss */
header .btn__down img {
  width: 100%;
}
/* line 138, ../scss/style.scss */
header .btn__down a:hover {
  opacity: 0.5;
}

/* line 147, ../scss/style.scss */
.top__main {
  position: relative;
  height: 100%;
  text-align: center;
  overflow: hidden;
  background-image: url(../images/top_bg.jpg);
  background-size: 55%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: #000;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 147, ../scss/style.scss */
  .top__main {
    background-image: url(../images/top_bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #000;
    margin-bottom: 0;
  }
}
/* line 166, ../scss/style.scss */
.top__main #top__item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
  max-height: 65%;
}
.top__main #top__item__txt {
  position: absolute;
  top: 6%;
  right: 0;
  left: -30px;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 166, ../scss/style.scss */
  .top__main #top__item {
    display: block;
    top: 0;
    left: -10px;
    max-height: 46%;
  }
  .top__main #top__item__txt {
    position: absolute;
    width: 90%;
    top: 16%;
    right: 0;
    left: 0;
    margin: auto;
  }
}
/* line 181, ../scss/style.scss */
.top__main #ico_renewal {
  position: absolute;
  top: 0;
  right: 40px;
  margin: auto;
  width: 160px;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 181, ../scss/style.scss */
  .top__main #ico_renewal {
    display: block;
    top: 0;
    right: 20px;
    max-width: 20%;
  }
}
/* line 194, ../scss/style.scss */
.top__main video {
  position: fixed;
  top: 50%;
  left: 50.5%;
  transform: translate(-50%, -50%);
  z-index: -10;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 194, ../scss/style.scss */
  .top__main video {
    display: none;
  }
}
/* line 205, ../scss/style.scss */
.top__main .top__info {
  position: absolute;
  left: 60px;
  bottom: 60px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 205, ../scss/style.scss */
  .top__main .top__info {
    display: block;
    left: 0;
    bottom: 10%;
  }
}
/* line 216, ../scss/style.scss */
.top__main .top__info .top__txt {
  width: 310px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 216, ../scss/style.scss */
  .top__main .top__info .top__txt {
    width: 50%;
    margin-left: 8%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 216, ../scss/style.scss */
  .top__main .top__info .top__txt {
    width: 60%;
    margin-left: 8%;
  }
}
/* line 226, ../scss/style.scss */
.top__main .top__info .top__txt img {
  max-width: 100%;
  height: auto;
}
/* line 231, ../scss/style.scss */
.top__main .top__info ul.top__btn {
  display: table;
  padding-top: 30px;
  width: 500px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 231, ../scss/style.scss */
  .top__main .top__info ul.top__btn {
    padding: 30px 8% 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 231, ../scss/style.scss */
  .top__main .top__info ul.top__btn {
    padding: 20px 8% 0;
    width: 100%;
  }
}
/* line 243, ../scss/style.scss */
.top__main .top__info ul.top__btn li {
  display: table-cell;
  vertical-align: top;
}
/* line 246, ../scss/style.scss */
.top__main .top__info ul.top__btn li img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 251, ../scss/style.scss */
  .top__main .top__info ul.top__btn li:last-child {
    padding-right: 0;
  }
}

/* line 263, ../scss/style.scss */
.concept__grad {
  height: 300px;
  background: -moz-linear-gradient(top, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.6) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.6) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.6) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 263, ../scss/style.scss */
  .concept__grad {
    display: none;
  }
}

/* line 272, ../scss/style.scss */
.concept {
  display: flex;
  flex-direction: column;
  background-color: rgba(34, 34, 34, 0.6);
  text-align: center;
  padding: 100px 0 160px;
}
/* line 279, ../scss/style.scss */
.concept .cap_component {
  width: 900px;
  display: flex;
  font-size: 1.2rem;
  color: #ccc;
  text-align: left;
  margin: 0 auto 5px;
}
/* line 286, ../scss/style.scss */
.concept .cap_component:first-of-type {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 279, ../scss/style.scss */
  .concept .cap_component {
    width: 100%;
  }
  /* line 291, ../scss/style.scss */
  .concept .cap_component:first-of-type {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 279, ../scss/style.scss */
  .concept .cap_component {
    width: 100%;
  }
  /* line 297, ../scss/style.scss */
  .concept .cap_component:first-of-type {
    padding-top: 40px;
  }
}
/* line 301, ../scss/style.scss */
.concept .cap_component p {
  word-break: break-all;
}
/* line 304, ../scss/style.scss */
.concept .cap_component .cap {
  max-width: 900px;
  margin: 0 auto;
  display: block;
  font-size: 1.2rem;
  color: #ccc;
  text-align: left;
  word-break: break-all;
}
/* line 312, ../scss/style.scss */
.concept .cap_component .cap:first-of-type {
  margin-right: 10px;
  min-width: 2em;
}
/* line 316, ../scss/style.scss */
.concept .cap_component .cap span {
  border: 1px solid #ccc;
  margin: 0 5px 5px 0;
  padding: 0 5px;
  display: inline-block;
  text-align: center;
  font-feature-settings: normal;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 316, ../scss/style.scss */
  .concept .cap_component .cap span {
    margin-top: 3px;
  }
  /* line 324, ../scss/style.scss */
  .concept .cap_component .cap span:first-of-type {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 316, ../scss/style.scss */
  .concept .cap_component .cap span {
    margin-top: 3px;
  }
  /* line 330, ../scss/style.scss */
  .concept .cap_component .cap span:first-of-type {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 272, ../scss/style.scss */
  .concept {
    padding: 100px 8% 70px;
  }
}
/* line 341, ../scss/style.scss */
.concept .concept__ttl__pc {
  margin: 0 auto;
  width: 700px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 341, ../scss/style.scss */
  .concept .concept__ttl__pc {
    width: 580px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 341, ../scss/style.scss */
  .concept .concept__ttl__pc {
    display: none;
  }
}
/* line 350, ../scss/style.scss */
.concept .concept__ttl__pc img {
  width: 100%;
}
/* line 354, ../scss/style.scss */
.concept .concept__ttl__sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 354, ../scss/style.scss */
  .concept .concept__ttl__sp {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
}
/* line 361, ../scss/style.scss */
.concept .concept__ttl__sp img {
  width: 100%;
}
/* line 365, ../scss/style.scss */
.concept .concept__copy {
  display: block;
  margin: 40px auto 100px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
  color: #ccc;
}
/* line 372, ../scss/style.scss */
.concept .concept__copy span {
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 372, ../scss/style.scss */
  .concept .concept__copy span {
    display: inline;
  }
}
/* line 378, ../scss/style.scss */
.concept .concept__copy sup {
  vertical-align: super;
  font-size: 1.2rem;
  color: #999;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 365, ../scss/style.scss */
  .concept .concept__copy {
    margin: 40px auto;
  }
}
@media only screen and (max-width: 767px) {
  /* line 365, ../scss/style.scss */
  .concept .concept__copy {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 40px auto;
  }
}
/* line 392, ../scss/style.scss */
.concept .concept__img {
  display: block;
  width: 436px;
  height: 473px;
  margin: 0 auto 50px;
}
/* line 397, ../scss/style.scss */
.concept .concept__img img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 392, ../scss/style.scss */
  .concept .concept__img {
    margin: 0 auto;
    width: auto;
    height: auto;
  }
  /* line 404, ../scss/style.scss */
  .concept .concept__img img {
    width: 80%;
  }
}
/* line 409, ../scss/style.scss */
.concept .concept__img__pc {
  display: block;
  width: 660px;
  height: 730px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 767px) {
  /* line 409, ../scss/style.scss */
  .concept .concept__img__pc {
    display: none;
  }
}
/* line 417, ../scss/style.scss */
.concept .concept__img__pc img {
  width: 100%;
}
/* line 421, ../scss/style.scss */
.concept .concept__img__sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 421, ../scss/style.scss */
  .concept .concept__img__sp {
    display: block;
    width: 100%;
    margin-bottom: 0px;
  }
}
/* line 428, ../scss/style.scss */
.concept .concept__img__sp img {
  width: 100%;
  height: auto;
}

/* line 434, ../scss/style.scss */
.concept__img__btn {
  cursor: pointer;
}
/* line 436, ../scss/style.scss */
.concept__img__btn img {
  opacity: 1;
  transition: 0.3s;
}
/* line 439, ../scss/style.scss */
.concept__img__btn img:hover {
  opacity: 0.6;
}

/* line 448, ../scss/style.scss */
.cat__img {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: #000;
  width: 100%;
  height: 100vh;
}
/* line 458, ../scss/style.scss */
.cat__img .cat__info {
  position: absolute;
  left: 6%;
  bottom: 11%;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.6));
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 458, ../scss/style.scss */
  .cat__img .cat__info {
    left: 6%;
    bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .cat__img {
    height: 90vh;
  }
  /* line 458, ../scss/style.scss */
  .cat__img .cat__info {
    left: 8%;
    bottom: 70px;
  }
}
/* line 471, ../scss/style.scss */
.cat__img .cat__info ul.cat__btn {
  display: table;
  padding-top: 20px;
  width: 390px;
}
@media only screen and (max-width: 767px) {
  /* line 471, ../scss/style.scss */
  .cat__img .cat__info ul.cat__btn {
    width: 100%;
    padding-top: 20px;
    padding-right: 8%;
  }
}
/* line 480, ../scss/style.scss */
.cat__img .cat__info ul.cat__btn li {
  display: table-cell;
  vertical-align: middle;
}
/* line 483, ../scss/style.scss */
.cat__img .cat__info ul.cat__btn li img {
  width: 100%;
  height: auto;
}

/* line 492, ../scss/style.scss */
.shampoo {
  background-image: url(../images/detail_bg.jpg);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 492, ../scss/style.scss */
  .shampoo {
    background-position: 80% center;
  }
}
@media only screen and (max-width: 767px) {
  /* line 492, ../scss/style.scss */
  .shampoo {
    background-image: url(../images/shampoo_bg_sp.jpg);
  }
}
/* line 500, ../scss/style.scss */
.shampoo .shampoo__txt1 {
  position: absolute;
  width: 372px;
  top: 12%;
  left: 16%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 500, ../scss/style.scss */
  .shampoo .shampoo__txt1 {
    top: 14%;
    left: 6%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 500, ../scss/style.scss */
  .shampoo .shampoo__txt1 {
    width: 75%;
    top: 10%;
    left: 20px;
  }
}
/* line 514, ../scss/style.scss */
.shampoo .shampoo__txt1 img {
  width: 100%;
}
.shampoo .shampoo__txt2 {
  position: absolute;
  top: 30%;
  left: 16%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .shampoo .shampoo__txt2 {
    top: 14%;
    left: 6%;
  }
}
@media only screen and (max-width: 767px) {
  .shampoo .shampoo__txt2 {
    top: 30%;
    left: 0;
    padding: 0 20px;
  }
}
.shampoo .shampoo__txt2 p {
  font-weight: 500;
  line-height: 2.11111em;
}
.shampoo .shampoo__txt2 p:nth-of-type(n+2) {
  margin-top: 4%;
}

/* line 529, ../scss/style.scss */
.pack {
}
@media only screen and (max-width: 767px) {
  /* line 529, ../scss/style.scss */
  .pack {
    justify-content: space-between;
  }
}
/* line 535, ../scss/style.scss */
.pack .pack__txt1 {
  position: absolute;
  width: 400px;
  left: 54%;
  bottom: 29%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 535, ../scss/style.scss */
  .pack .pack__txt1 {
    top: 10%;
    left: 6%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 535, ../scss/style.scss */
  .pack .pack__txt1 {
    width: 74%;
    top: 5%;
    left: 8%;
  }
}
/* line 549, ../scss/style.scss */
.pack .pack__txt1 img {
  width: 100%;
}
/* line 553, ../scss/style.scss */
.pack .pack__txt2 {
  width: 340px;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
}
@media only screen and (max-width: 767px) {
  /* line 553, ../scss/style.scss */
  .pack .pack__txt2 {
    width: 82%;
  }
}
/* line 559, ../scss/style.scss */
.pack .pack__txt2 img {
  width: 100%;
}

/* line 564, ../scss/style.scss */
.jet {
  background-image: url(../images/jet_bg.jpg);
  border-bottom: 1px solid #222;
}
@media only screen and (max-width: 767px) {
  /* line 564, ../scss/style.scss */
  .jet {
    background-image: url(../images/jet_bg_sp.jpg);
  }
}
/* line 570, ../scss/style.scss */
.jet .jet__txt1 {
  position: absolute;
  width: 320px;
  top: 10%;
  left: 33%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 570, ../scss/style.scss */
  .jet .jet__txt1 {
    left: 6%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 570, ../scss/style.scss */
  .jet .jet__txt1 {
    width: 52%;
    top: 5%;
    left: 8%;
  }
}
/* line 584, ../scss/style.scss */
.jet .jet__txt1 img {
  width: 100%;
}
/* line 588, ../scss/style.scss */
.jet .jet__txt2 {
  width: 320px;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.6));
}
@media only screen and (max-width: 767px) {
  /* line 588, ../scss/style.scss */
  .jet .jet__txt2 {
    width: 75%;
  }
}
/* line 597, ../scss/style.scss */
.jet .jet__txt2 img {
  width: 100%;
}

/* line 602, ../scss/style.scss */
.premium {
  background-image: url(../images/premium_bg.jpg);
  text-align: center;
  height: 115vh;
}
@media only screen and (max-width: 767px) {
  /* line 602, ../scss/style.scss */
  .premium {
    background-image: url(../images/premium_bg_sp.jpg);
    min-height: 800px;
    padding: 0 4%;
  }
}
/* line 610, ../scss/style.scss */
.premium .premium__txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
  margin: 0 auto;
  width: 580px;
}
@media only screen and (max-width: 767px) {
  /* line 610, ../scss/style.scss */
  .premium .premium__txt {
    width: 90%;
    top: 450px;
  }
}
/* line 621, ../scss/style.scss */
.premium .premium__txt img {
  width: 100%;
}
/* line 625, ../scss/style.scss */
.premium .premium__btn {
  position: absolute;
  bottom: 40px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 625, ../scss/style.scss */
  .premium .premium__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 6%;
  }
}
/* line 637, ../scss/style.scss */
.premium .premium__btn .btn__ttl__cat {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 637, ../scss/style.scss */
  .premium .premium__btn .btn__ttl__cat {
    display: block;
    padding: 10px 0 5px;
  }
  /* line 642, ../scss/style.scss */
  .premium .premium__btn .btn__ttl__cat img {
    height: 8px;
  }
}
/* line 647, ../scss/style.scss */
.premium .premium__btn ul {
  display: inline-block;
  padding-right: 2%;
}
/* line 650, ../scss/style.scss */
.premium .premium__btn ul:last-child {
  padding-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 647, ../scss/style.scss */
  .premium .premium__btn ul {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 647, ../scss/style.scss */
  .premium .premium__btn ul {
    padding-right: 0;
  }
}
/* line 659, ../scss/style.scss */
.premium .premium__btn ul li {
  float: left;
}
/* line 661, ../scss/style.scss */
.premium .premium__btn ul li img {
  height: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 661, ../scss/style.scss */
  .premium .premium__btn ul li img {
    height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 661, ../scss/style.scss */
  .premium .premium__btn ul li img {
/*    height: 28px;*/
  }
}
@media only screen and (max-width: 767px) {
  /* line 671, ../scss/style.scss */
  .premium .premium__btn ul li.pc {
    display: none;
  }
}
/* line 676, ../scss/style.scss */
.premium .premium__btn ul li.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 676, ../scss/style.scss */
  .premium .premium__btn ul li.sp {
    display: inline-block;
  }
}

/* line 689, ../scss/style.scss */
.cat__detail {
  background-color: #fff;
  color: #000;
  position: relative;
}
/* line 693, ../scss/style.scss */
.cat__detail .more__btn {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 90px;
  margin-left: -45px;
  font-size: 1.4rem;
  text-align: center;
  color: #e50012;
  cursor: pointer;
  outline: none;
  z-index: 10;
}
/* line 705, ../scss/style.scss */
.cat__detail .more__btn:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  /* line 693, ../scss/style.scss */
  .cat__detail .more__btn {
    top: -50px;
    font-size: 1.3rem;
  }
}
/* line 713, ../scss/style.scss */
.cat__detail .more__btn::before {
  content: "さらに詳しく";
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 713, ../scss/style.scss */
  .cat__detail .more__btn::before {
    margin-left: -120px;
  }
}
/* line 720, ../scss/style.scss */
.cat__detail .more__btn.open::before {
  content: "";
  display: block;
}
/* line 724, ../scss/style.scss */
.cat__detail .more__btn::after {
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.8));
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -32px;
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background: url("../images/icon_more.png");
  background-size: contain;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  /* line 724, ../scss/style.scss */
  .cat__detail .more__btn::after {
    top: -20px;
  }
}
/* line 741, ../scss/style.scss */
.cat__detail .more__btn.open::after {
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 120px;
  left: 50%;
  margin-left: -32px;
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background: url("../images/icon_more_close.png");
  background-size: contain;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  /* line 741, ../scss/style.scss */
  .cat__detail .more__btn.open::after {
    top: 70px;
  }
}

/* line 760, ../scss/style.scss */
.more__content {
  padding: 100px 0 60px;
}
@media only screen and (max-width: 767px) {
  /* line 760, ../scss/style.scss */
  .more__content {
    padding: 80px 0 60px;
  }
}
/* line 765, ../scss/style.scss */
.more__content .slider__shampoo, .more__content .slider__pack, .more__content .slider__jet {
  margin: 10px auto 60px;
  width: 980px;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 765, ../scss/style.scss */
  .more__content .slider__shampoo, .more__content .slider__pack, .more__content .slider__jet {
    width: 100%;
    padding: 0 8%;
    margin: 20px auto 0;
  }
}
/* line 773, ../scss/style.scss */
.more__content .slider__shampoo section.container, .more__content .slider__pack section.container, .more__content .slider__jet section.container {
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  /* line 773, ../scss/style.scss */
  .more__content .slider__shampoo section.container, .more__content .slider__pack section.container, .more__content .slider__jet section.container {
    padding: 0 0 100px;
  }
}
/* line 778, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__name__txt, .more__content .slider__pack section.container .cat__name__txt, .more__content .slider__jet section.container .cat__name__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
/* line 784, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__name__txt h3, .more__content .slider__pack section.container .cat__name__txt h3, .more__content .slider__jet section.container .cat__name__txt h3 {
  width: 100%;
  margin: 40px auto;
}
@media only screen and (max-width: 767px) {
  /* line 784, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__name__txt h3, .more__content .slider__pack section.container .cat__name__txt h3, .more__content .slider__jet section.container .cat__name__txt h3 {
    margin: 30px auto 10px;
    width: auto;
  }
}
/* line 791, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__name__txt h3 img, .more__content .slider__pack section.container .cat__name__txt h3 img, .more__content .slider__jet section.container .cat__name__txt h3 img {
  width: 100%;
  height: 90px;
}
@media only screen and (max-width: 767px) {
  /* line 791, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__name__txt h3 img, .more__content .slider__pack section.container .cat__name__txt h3 img, .more__content .slider__jet section.container .cat__name__txt h3 img {
    height: 56px;
  }
}
/* line 799, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__name__txt h3.pc, .more__content .slider__pack section.container .cat__name__txt h3.pc, .more__content .slider__jet section.container .cat__name__txt h3.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 799, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__name__txt h3.pc, .more__content .slider__pack section.container .cat__name__txt h3.pc, .more__content .slider__jet section.container .cat__name__txt h3.pc {
    display: none;
  }
}
/* line 805, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__name__txt h3.sp, .more__content .slider__pack section.container .cat__name__txt h3.sp, .more__content .slider__jet section.container .cat__name__txt h3.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 805, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__name__txt h3.sp, .more__content .slider__pack section.container .cat__name__txt h3.sp, .more__content .slider__jet section.container .cat__name__txt h3.sp {
    display: block;
  }
}
/* line 810, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__name__txt h3.sp img, .more__content .slider__pack section.container .cat__name__txt h3.sp img, .more__content .slider__jet section.container .cat__name__txt h3.sp img {
  width: 100%;
  height: 90px;
}
@media only screen and (max-width: 767px) {
  /* line 810, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__name__txt h3.sp img, .more__content .slider__pack section.container .cat__name__txt h3.sp img, .more__content .slider__jet section.container .cat__name__txt h3.sp img {
    height: 90px;
  }
}
/* line 819, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content, .more__content .slider__pack section.container .cat__detail__content, .more__content .slider__jet section.container .cat__detail__content {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 819, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content, .more__content .slider__pack section.container .cat__detail__content, .more__content .slider__jet section.container .cat__detail__content {
    flex-direction: column;
    font-size: 1.7rem;
    line-height: 1.6;
    padding: 0;
  }
}
/* line 829, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .photo, .more__content .slider__pack section.container .cat__detail__content .photo, .more__content .slider__jet section.container .cat__detail__content .photo {
  width: 340px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  /* line 829, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .photo, .more__content .slider__pack section.container .cat__detail__content .photo, .more__content .slider__jet section.container .cat__detail__content .photo {
    width: 100%;
    padding-top: 20px;
  }
}
/* line 836, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .photo img, .more__content .slider__pack section.container .cat__detail__content .photo img, .more__content .slider__jet section.container .cat__detail__content .photo img {
  width: 100%;
}
/* line 840, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .descr, .more__content .slider__pack section.container .cat__detail__content .descr, .more__content .slider__jet section.container .cat__detail__content .descr {
  flex: 1;
  width: auto;
  padding-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 840, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .descr, .more__content .slider__pack section.container .cat__detail__content .descr, .more__content .slider__jet section.container .cat__detail__content .descr {
    padding: 20px 0 0;
  }
}
/* line 848, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .descr p strong, .more__content .slider__pack section.container .cat__detail__content .descr p strong, .more__content .slider__jet section.container .cat__detail__content .descr p strong {
  display: block;
  font-weight: bold;
  padding-bottom: 5px;
}
/* line 853, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .descr p sup, .more__content .slider__pack section.container .cat__detail__content .descr p sup, .more__content .slider__jet section.container .cat__detail__content .descr p sup {
  vertical-align: super;
  font-size: 1.2rem;
  color: #666;
}
/* line 860, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .copy2, .more__content .slider__pack section.container .cat__detail__content .copy2, .more__content .slider__jet section.container .cat__detail__content .copy2 {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 860, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .copy2, .more__content .slider__pack section.container .cat__detail__content .copy2, .more__content .slider__jet section.container .cat__detail__content .copy2 {
    flex-direction: column;
  }
}
/* line 865, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .copy2 .img__right, .more__content .slider__pack section.container .cat__detail__content .copy2 .img__right, .more__content .slider__jet section.container .cat__detail__content .copy2 .img__right {
  margin-left: 20px;
  width: 260px;
}
/* line 868, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .copy2 .img__right img, .more__content .slider__pack section.container .cat__detail__content .copy2 .img__right img, .more__content .slider__jet section.container .cat__detail__content .copy2 .img__right img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 865, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .copy2 .img__right, .more__content .slider__pack section.container .cat__detail__content .copy2 .img__right, .more__content .slider__jet section.container .cat__detail__content .copy2 .img__right {
    width: 100%;
    margin: 20px 0;
  }
}
/* line 877, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .cap, .more__content .slider__pack section.container .cat__detail__content .cap, .more__content .slider__jet section.container .cat__detail__content .cap {
  display: block;
  font-size: 1.2rem;
  color: #666;
  padding-top: 20px;
}
/* line 883, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .flex, .more__content .slider__pack section.container .cat__detail__content .flex, .more__content .slider__jet section.container .cat__detail__content .flex {
  display: flex;
}
/* line 885, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .flex p, .more__content .slider__pack section.container .cat__detail__content .flex p, .more__content .slider__jet section.container .cat__detail__content .flex p {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  /* line 890, ../scss/style.scss */
  .more__content .slider__shampoo section.container .column__reverse, .more__content .slider__pack section.container .column__reverse, .more__content .slider__jet section.container .column__reverse {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  /* line 896, ../scss/style.scss */
  .more__content .slider__shampoo section.container__end, .more__content .slider__pack section.container__end, .more__content .slider__jet section.container__end {
    padding-bottom: 60px;
  }
}
/* line 902, ../scss/style.scss */
.more__content .concept__detail {
  margin: 0 auto;
  width: 980px;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) and (max-width: 979px), only screen and (max-width: 767px) {
  /* line 902, ../scss/style.scss */
  .more__content .concept__detail {
    width: 100%;
    padding: 0 8%;
  }
}
/* line 910, ../scss/style.scss */
.more__content .concept__detail img {
  width: 100%;
}
/* line 913, ../scss/style.scss */
.more__content .concept__detail h3 {
  margin: 0 auto;
  padding: 120px 0 20px;
}
@media only screen and (max-width: 767px) {
  /* line 913, ../scss/style.scss */
  .more__content .concept__detail h3 {
    padding: 60px 0 0;
  }
}
/* line 920, ../scss/style.scss */
.more__content .concept__detail h3:first-child {
  padding: 40px 0　20px;
}
/* line 923, ../scss/style.scss */
.more__content .concept__detail h3.txt1__pc {
  padding-top: 60px;
  width: 780px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 923, ../scss/style.scss */
  .more__content .concept__detail h3.txt1__pc {
    width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 923, ../scss/style.scss */
  .more__content .concept__detail h3.txt1__pc {
    display: none;
  }
}
/* line 933, ../scss/style.scss */
.more__content .concept__detail h3.txt1__sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 933, ../scss/style.scss */
  .more__content .concept__detail h3.txt1__sp {
    padding: 20px 0 0;
    display: block;
    width: 270px;
  }
}
/* line 941, ../scss/style.scss */
.more__content .concept__detail h3.txt2 {
  width: 720px;
  padding: 50px 0 30px;
}
@media only screen and (max-width: 767px) {
  /* line 941, ../scss/style.scss */
  .more__content .concept__detail h3.txt2 {
    width: 236px;
  }
}
/* line 948, ../scss/style.scss */
.more__content .concept__detail h3.txt3 {
  width: 250px;
  padding-top: 60px;
}
/* line 952, ../scss/style.scss */
.more__content .concept__detail p {
  font-size: 2.0rem;
  line-height: 1.6;
  color: #333;
}
@media only screen and (max-width: 767px) {
  /* line 952, ../scss/style.scss */
  .more__content .concept__detail p {
    font-size: 1.7rem;
    line-height: 1.6;
  }
}
/* line 961, ../scss/style.scss */
.more__content .concept__detail p.sdp {
  font-weight: bold;
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  /* line 961, ../scss/style.scss */
  .more__content .concept__detail p.sdp {
    padding: 20px 0 40px;
  }
}
/* line 968, ../scss/style.scss */
.more__content .concept__detail .cap {
  display: block;
  font-size: 1.2rem;
  color: #666;
  padding-top: 20px;
}
/* line 974, ../scss/style.scss */
.more__content .concept__detail .concept__img__cap1 {
  text-align: center;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 974, ../scss/style.scss */
  .more__content .concept__detail .concept__img__cap1 {
    max-width: 460px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 974, ../scss/style.scss */
  .more__content .concept__detail .concept__img__cap1 {
    max-width: 460px;
  }
}
/* line 983, ../scss/style.scss */
.more__content .concept__detail .concept__img__cap1 img {
  max-width: 612px;
  height: 100%;
}
/* line 988, ../scss/style.scss */
.more__content .concept__detail .concept__img__cap2 {
  text-align: center;
  padding: 60px 0;
}
/* line 991, ../scss/style.scss */
.more__content .concept__detail .concept__img__cap2 img {
  max-width: 541px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 988, ../scss/style.scss */
  .more__content .concept__detail .concept__img__cap2 {
    padding: 30px 0;
  }
}
/* line 999, ../scss/style.scss */
.more__content .concept__detail .concept__img__cap1__sdp {
  position: absolute;
  top: 0;
  left: 240px;
  color: #a38f5b;
  padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 999, ../scss/style.scss */
  .more__content .concept__detail .concept__img__cap1__sdp {
    position: static;
  }
}
/* line 1009, ../scss/style.scss */
.more__content .concept__detail .img4__cap {
  padding-left: 50px;
}
@media only screen and (max-width: 767px) {
  /* line 1009, ../scss/style.scss */
  .more__content .concept__detail .img4__cap {
    padding-left: 13%;
  }
}
/* line 1015, ../scss/style.scss */
.more__content .concept__detail .clm2 {
  padding: 20px 0;
  display: flex;
}
@media only screen and (max-width: 767px) {
  /* line 1015, ../scss/style.scss */
  .more__content .concept__detail .clm2 {
    flex-direction: column;
    padding: 20px 0 30px;
  }
}
/* line 1022, ../scss/style.scss */
.more__content .concept__detail .clm2 ul {
  display: table;
  width: 400px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1022, ../scss/style.scss */
  .more__content .concept__detail .clm2 ul {
    width: 280px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1022, ../scss/style.scss */
  .more__content .concept__detail .clm2 ul {
    width: 100%;
    padding: 20px 0 0;
  }
}
/* line 1032, ../scss/style.scss */
.more__content .concept__detail .clm2 ul li {
  display: table-cell;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  /* line 1038, ../scss/style.scss */
  .more__content .concept__detail .column__reverse {
    flex-direction: column-reverse;
  }
}
/* line 1043, ../scss/style.scss */
.more__content .concept__detail .clm4 {
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  /* line 1043, ../scss/style.scss */
  .more__content .concept__detail .clm4 {
    padding: 20px 0 30px;
  }
}
/* line 1048, ../scss/style.scss */
.more__content .concept__detail .clm4 ul {
  position: relative;
  display: table;
  margin: 0 auto;
  width: 100%;
}
/* line 1053, ../scss/style.scss */
.more__content .concept__detail .clm4 ul li {
  display: table-cell;
  vertical-align: bottom;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  /* line 1053, ../scss/style.scss */
  .more__content .concept__detail .clm4 ul li {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
}
/* line 1063, ../scss/style.scss */
.more__content .concept__detail .clm4 ul li.plus {
  width: 60px;
  vertical-align: middle;
  text-align: center;
  font-size: 4.0rem;
  color: #a38f5b;
}
@media only screen and (max-width: 767px) {
  /* line 1063, ../scss/style.scss */
  .more__content .concept__detail .clm4 ul li.plus {
    width: 100%;
    vertical-align: top;
    font-size: 8.0rem;
    line-height: 0.5;
    padding-bottom: 30px;
  }
}
/* line 1079, ../scss/style.scss */
.more__content .concept__detail .clm1 {
  padding: 20px 0;
}
/* line 1081, ../scss/style.scss */
.more__content .concept__detail .clm1.scalpd {
  padding: 20px;
  background: #f5f4f1;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  /* line 1081, ../scss/style.scss */
  .more__content .concept__detail .clm1.scalpd {
    padding: 10px;
  }
}
/* line 1088, ../scss/style.scss */
.more__content .concept__detail .clm1.scalpd h3.txt3 {
  padding: 20px 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1088, ../scss/style.scss */
  .more__content .concept__detail .clm1.scalpd h3.txt3 {
    padding: 20px 0;
    width: 190px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1088, ../scss/style.scss */
  .more__content .concept__detail .clm1.scalpd h3.txt3 {
    padding: 10px 0 5px;
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1079, ../scss/style.scss */
  .more__content .concept__detail .clm1 {
    padding: 20px 0 0;
  }
}
/* line 1103, ../scss/style.scss */
.more__content .concept__detail .clm1 h3.txt3 {
  padding: 60px 0;
}
/* line 1106, ../scss/style.scss */
.more__content .concept__detail .clm1 sup {
  vertical-align: super;
  font-size: 1rem;
  color: #999;
}
/* line 1111, ../scss/style.scss */
.more__content .concept__detail .clm1 .cap_component {
  width: 900px;
  display: flex;
  justify-content: flex-start;
  font-size: 1.2rem;
  color: #ccc;
  text-align: left;
  margin: 0 auto 5px;
}
/* line 1119, ../scss/style.scss */
.more__content .concept__detail .clm1 .cap_component:first-of-type {
  padding-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1111, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component {
    width: 100%;
  }
  /* line 1124, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component:first-of-type {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1111, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component {
    width: 100%;
  }
  /* line 1130, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component:first-of-type {
    padding-top: 30px;
  }
}
/* line 1134, ../scss/style.scss */
.more__content .concept__detail .clm1 .cap_component .cap {
  max-width: 900px;
  margin: 0 auto;
  display: block;
  font-size: 1.2rem;
  color: #666;
  text-align: left;
  padding-top: 0;
}
/* line 1142, ../scss/style.scss */
.more__content .concept__detail .clm1 .cap_component .cap:first-of-type {
  min-width: 2em;
  margin-right: 10px;
}
/* line 1146, ../scss/style.scss */
.more__content .concept__detail .clm1 .cap_component .cap span {
  border: 1px solid #ccc;
  margin: 0 5px 5px 0;
  padding: 0 5px;
  display: inline-block;
  text-align: center;
  font-feature-settings: normal;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1146, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component .cap span {
    margin-top: 3px;
  }
  /* line 1154, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component .cap span:first-of-type {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1146, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component .cap span {
    margin-top: 3px;
  }
  /* line 1160, ../scss/style.scss */
  .more__content .concept__detail .clm1 .cap_component .cap span:first-of-type {
    margin-top: 0;
  }
}
/* line 1168, ../scss/style.scss */
.more__content .concept__detail .clm1 .concept__img__cap3a,
.more__content .concept__detail .clm1 .concept__img__cap3b {
  margin-bottom: 30px;
}
/* line 1171, ../scss/style.scss */
.more__content .concept__detail .clm1 .concept__img__cap3a h4,
.more__content .concept__detail .clm1 .concept__img__cap3b h4 {
  font-size: 2rem;
  color: #a38f5b;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  /* line 1171, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3a h4,
  .more__content .concept__detail .clm1 .concept__img__cap3b h4 {
    font-size: 1.5rem;
  }
}
/* line 1178, ../scss/style.scss */
.more__content .concept__detail .clm1 .concept__img__cap3a h4 img,
.more__content .concept__detail .clm1 .concept__img__cap3b h4 img {
  max-width: 66px;
  margin-right: 10px;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1178, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3a h4 img,
  .more__content .concept__detail .clm1 .concept__img__cap3b h4 img {
    max-width: 40px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1178, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3a h4 img,
  .more__content .concept__detail .clm1 .concept__img__cap3b h4 img {
    max-width: 40px;
  }
}
/* line 1190, ../scss/style.scss */
.more__content .concept__detail .clm1 .concept__img__cap3a ul,
.more__content .concept__detail .clm1 .concept__img__cap3b ul {
  max-width: 900px;
  margin: 15px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  /* line 1190, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3a ul,
  .more__content .concept__detail .clm1 .concept__img__cap3b ul {
    flex-wrap: nowrap;
  }
}
/* line 1199, ../scss/style.scss */
.more__content .concept__detail .clm1 .concept__img__cap3a ul li,
.more__content .concept__detail .clm1 .concept__img__cap3b ul li {
  max-width: 175px;
  margin-right: 30px;
  text-align: center;
  font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
  /* line 1199, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3a ul li,
  .more__content .concept__detail .clm1 .concept__img__cap3b ul li {
    max-width: 33%;
    margin-right: 0;
    font-size: 1.1rem;
  }
}
/* line 1209, ../scss/style.scss */
.more__content .concept__detail .clm1 .concept__img__cap3a ul li img,
.more__content .concept__detail .clm1 .concept__img__cap3b ul li img {
  margin: 0 auto 10px;
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 1209, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3a ul li img,
  .more__content .concept__detail .clm1 .concept__img__cap3b ul li img {
    max-width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1218, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3a span,
  .more__content .concept__detail .clm1 .concept__img__cap3b span {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1226, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3b ul li {
    max-width: 50%;
    margin-right: 0;
    font-size: 1.1rem;
  }
  /* line 1231, ../scss/style.scss */
  .more__content .concept__detail .clm1 .concept__img__cap3b ul li img {
    margin: 0 auto 10px;
    max-width: 59%;
  }
}
/* line 1239, ../scss/style.scss */
.more__content .concept__detail .clm1 .clm1Inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 820px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  /* line 1239, ../scss/style.scss */
  .more__content .concept__detail .clm1 .clm1Inner {
    display: block;
  }
}
/* line 1253, ../scss/style.scss */
.more__content .slider__shampoo {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 1255, ../scss/style.scss */
  .more__content .slider__shampoo section.container {
    padding-bottom: 0;
  }
}
/* line 1261, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__name__txt h3 img {
  height: 100px;
}
/* line 1266, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content {
  display: block;
}
/* line 1268, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .photo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: auto;
}
@media only screen and (max-width: 767px) {
  /* line 1268, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .photo {
    padding-top: 0;
    display: block;
  }
}
/* line 1278, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .photo img {
  height: 100%;
}
/* line 1280, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .photo img:first-of-type {
  max-width: 280px;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1280, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .photo img:first-of-type {
    max-width: 40%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1280, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .photo img:first-of-type {
    margin-top: 0;
    max-width: 60%;
  }
}
/* line 1292, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content .photo img:last-of-type {
  margin-left: 40px;
  max-width: 400px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1292, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .photo img:last-of-type {
    max-width: 50%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1292, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content .photo img:last-of-type {
    margin-top: 10px;
    margin-left: 0;
    max-width: 80%;
  }
}
/* line 1307, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content p.sdp {
  font-weight: bold;
  padding: 60px 0 20px;
}
@media only screen and (max-width: 767px) {
  /* line 1307, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content p.sdp {
    padding: 20px 0 40px;
  }
}
/* line 1313, ../scss/style.scss */
.more__content .slider__shampoo section.container .cat__detail__content p.sdp span {
  font-weight: bold;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1313, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content p.sdp span {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1313, ../scss/style.scss */
  .more__content .slider__shampoo section.container .cat__detail__content p.sdp span {
    display: inline;
  }
}
/* line 1328, ../scss/style.scss */
.more__content .slider__pack {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 1330, ../scss/style.scss */
  .more__content .slider__pack section.container {
    padding-bottom: 0;
  }
}
/* line 1336, ../scss/style.scss */
.more__content .slider__pack section.container .cat__name__txt h3 img {
  height: 42px;
}
/* line 1341, ../scss/style.scss */
.more__content .slider__pack section.container .cat__detail__content {
  display: block;
}
/* line 1343, ../scss/style.scss */
.more__content .slider__pack section.container .cat__detail__content .photo {
  margin: 0 auto;
  width: 885px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1343, ../scss/style.scss */
  .more__content .slider__pack section.container .cat__detail__content .photo {
    max-width: 885px;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1343, ../scss/style.scss */
  .more__content .slider__pack section.container .cat__detail__content .photo {
    max-width: auto;
    width: auto;
  }
}
/* line 1354, ../scss/style.scss */
.more__content .slider__pack section.container .cat__detail__content .photo img {
  width: 100%;
}
/* line 1358, ../scss/style.scss */
.more__content .slider__pack section.container .cat__detail__content p.sdp {
  font-weight: bold;
  padding: 60px 0 0;
}
@media only screen and (max-width: 767px) {
  /* line 1358, ../scss/style.scss */
  .more__content .slider__pack section.container .cat__detail__content p.sdp {
    padding: 20px 0 40px;
  }
}
/* line 1364, ../scss/style.scss */
.more__content .slider__pack section.container .cat__detail__content p.sdp span {
  font-weight: bold;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1364, ../scss/style.scss */
  .more__content .slider__pack section.container .cat__detail__content p.sdp span {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1364, ../scss/style.scss */
  .more__content .slider__pack section.container .cat__detail__content p.sdp span {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1377, ../scss/style.scss */
  .more__content .slider__pack .cat_pack_img_pc {
    display: none;
  }
}
/* line 1382, ../scss/style.scss */
.more__content .slider__pack .cat_pack_img_sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 1382, ../scss/style.scss */
  .more__content .slider__pack .cat_pack_img_sp {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
}
/* line 1389, ../scss/style.scss */
.more__content .slider__pack .cat_pack_img_sp img {
  width: 100%;
}
/* line 1395, ../scss/style.scss */
.more__content .slider__jet {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 1397, ../scss/style.scss */
  .more__content .slider__jet section.container {
    padding-bottom: 0;
  }
}
/* line 1401, ../scss/style.scss */
.more__content .slider__jet section.container .cat__name__txt {
  align-items: normal;
}
/* line 1404, ../scss/style.scss */
.more__content .slider__jet section.container .cat__name__txt h3 img {
  height: 100px;
}
/* line 1408, ../scss/style.scss */
.more__content .slider__jet section.container .cat__name__txt .cap {
  display: block;
  font-size: 1.2rem;
  color: #666;
  padding-right: 60px;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1408, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__name__txt .cap {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1408, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__name__txt .cap {
    padding-right: 0;
  }
}
/* line 1422, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content {
  display: block;
}
/* line 1424, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content .photo {
  width: auto;
}
/* line 1426, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content .photo ul {
  max-width: 900px;
  margin: 15px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  /* line 1426, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__detail__content .photo ul {
    flex-wrap: nowrap;
  }
}
/* line 1435, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content .photo ul li {
  max-width: 220px;
  text-align: center;
  margin-right: 60px;
  font-size: 1.2rem;
}
/* line 1440, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content .photo ul li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1435, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__detail__content .photo ul li {
    max-width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1435, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__detail__content .photo ul li {
    max-width: 33%;
    margin-right: 0;
    font-size: 1.1rem;
  }
}
/* line 1451, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content .photo ul li img {
  margin: 0 auto 10px;
  max-width: 90%;
  display: block;
}
/* line 1456, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content .photo ul li sup {
  vertical-align: super;
  font-size: 1rem;
  color: #999;
}
@media only screen and (max-width: 767px) {
  /* line 1463, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__detail__content .photo span {
    display: block;
  }
}
/* line 1469, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content p.sdp {
  font-weight: bold;
  padding: 60px 0 0;
}
@media only screen and (max-width: 767px) {
  /* line 1469, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__detail__content p.sdp {
    padding: 20px 0 40px;
  }
}
/* line 1475, ../scss/style.scss */
.more__content .slider__jet section.container .cat__detail__content p.sdp span {
  font-weight: bold;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1475, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__detail__content p.sdp span {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1475, ../scss/style.scss */
  .more__content .slider__jet section.container .cat__detail__content p.sdp span {
    display: inline;
  }
}

/* line 1491, ../scss/style.scss */
.slick-prev, .slick-next {
  width: 60px;
  height: 60px;
}
/* line 1494, ../scss/style.scss */
.slick-prev img, .slick-next img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 1491, ../scss/style.scss */
  .slick-prev, .slick-next {
    display: none;
  }
}

/* line 1501, ../scss/style.scss */
.slick-prev:before, .slick-next:before {
  content: "";
}

/* line 1504, ../scss/style.scss */
button.slick-prev, button.slick-next {
  z-index: 10;
}

/* line 1507, ../scss/style.scss */
.slick-prev {
  left: 0;
  top: 60%;
}

/* line 1508, ../scss/style.scss */
.slick-next {
  right: 0;
  top: 60%;
}

/* line 1509, ../scss/style.scss */
.slick-arrow {
  z-index: 10;
}

/* line 1510, ../scss/style.scss */
.slick-dots {
  bottom: -80px;
}

/* line 1517, ../scss/style.scss */
footer {
  background-color: #111;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  padding: 20px 0 40px;
}
/* line 1523, ../scss/style.scss */
footer .topofpage {
  width: 40px;
  margin: 0 auto;
}
/* line 1526, ../scss/style.scss */
footer .topofpage img {
  width: 100%;
}
/* line 1530, ../scss/style.scss */
footer h2 {
  width: 160px;
  height: auto;
  margin: 40px auto;
}
/* line 1534, ../scss/style.scss */
footer h2 img {
  width: 100%;
}
/* line 1538, ../scss/style.scss */
footer a:hover {
  opacity: 0.5;
}

/* line 1546, ../scss/style.scss */
.rightbar__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 120px;
  background: url("../images/rightbar_btn.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  /* line 1546, ../scss/style.scss */
  .rightbar__btn {
    width: 60px;
    height: 90px;
    background: url("../images/rightbar_btn_sp.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
}
/* line 1563, ../scss/style.scss */
.rightbar__btn img {
  width: 100%;
}

/* line 1567, ../scss/style.scss */
.bar__pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 1567, ../scss/style.scss */
  .bar__pc {
    display: none;
  }
}

/* line 1573, ../scss/style.scss */
.bar__sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 1573, ../scss/style.scss */
  .bar__sp {
    display: block;
  }
}

/* line 1579, ../scss/style.scss */
.rightbar {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: -88px;
  width: auto;
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 20;
}
/* line 1589, ../scss/style.scss */
.rightbar img {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 1579, ../scss/style.scss */
  .rightbar {
    right: -60px;
    height: 100%;
  }
  /* line 1595, ../scss/style.scss */
  .rightbar img {
    height: 100%;
  }
}

/* line 1600, ../scss/style.scss */
.rightbar.is__visible {
  visibility: visible;
  right: 0;
}

/* 20210127 */
img {
  max-width: 100%;
  height: auto;
}

#mainContents {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

#mainContents .features {
  margin-top: 8%;
}
#mainContents .features .features__ttl {
  text-align: center;
  margin-bottom: 3%;
  display: flex;
  align-items: center;
}
#mainContents .features .features__ttl:before,
#mainContents .features .features__ttl:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}
#mainContents .features .features__ttl:before {
  margin-right: 30px;
}
#mainContents .features .features__ttl:after {
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  #mainContents .features .features__ttl {
    padding: 0 20px;
    display: block;
  }
  #mainContents .features .features__ttl:before,
  #mainContents .features .features__ttl:after {
    display: none;
  } 
}
#mainContents .features .features__container {
  text-align: center;
  background-color: #fff;
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  #mainContents .features .features__container {
    padding: 30px 20px;
  }
}
#mainContents .features .features__container .ttl {
  margin-bottom: 4%;
}
#mainContents .features .features__container .ingredient {
  margin-top: 4%;
  padding: 60px 30px 0;
  text-align: center;
  background-color: #f5f4f1;
}
@media only screen and (max-width: 767px) {
  #mainContents .features .features__container .ingredient {
    padding: 30px 15px 0;
  }
}
#mainContents .features .features__container .ingredient .ttl {
  margin-bottom: 4%;
}
#mainContents .features .features__container .ingredient .twoCol {
  margin-top: 4%;
  display: flex;
  justify-content: space-between;
}
#mainContents .features .features__container .ingredient .annotation {
  color: #000;
  font-weight: 300;
  font-size: 0.88888em;
  text-align: left;
  padding: 40px 10px;
}
@media only screen and (max-width: 767px) {
  #mainContents .features .features__container .ingredient .twoCol {
    display: block;
  }
  #mainContents .features .features__container .ingredient .twoCol img:nth-of-type(n+2) {
    margin-top: 4%;
  }
  #mainContents .features .features__container .ingredient .annotation {
    padding: 20px 10px;
  }
}

#mainContents .totalcare {
  margin-top: 8%;
}#mainContents .totalcare:nth-of-type(1) {
  margin-top: 3%;
}
#mainContents .totalcare .totalcare__ttl {
  text-align: center;
  margin-bottom: 3%;
  display: flex;
  align-items: center;
}
#mainContents .totalcare .totalcare__ttl:before,
#mainContents .totalcare .totalcare__ttl:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}
#mainContents .totalcare .totalcare__ttl:before {
  margin-right: 30px;
}
#mainContents .totalcare .totalcare__ttl:after {
  margin-left: 30px;
}

@media only screen and (max-width: 767px) {
  #mainContents .totalcare .totalcare__ttl {
    padding: 0 20px;
    display: block;
  }
  #mainContents .totalcare .totalcare__ttl:before,
  #mainContents .totalcare .totalcare__ttl:after {
    display: none;
  }
}
#mainContents .totalcare .totalcare__container {
  text-align: center;
  border: solid 1px #fff;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #mainContents .totalcare .totalcare__container {
    margin: 0 20px;
    display: block;
  }
}
#mainContents .totalcare .totalcare__container:nth-of-type(n+2) {
  margin-top: 3%;
}
#mainContents .totalcare .totalcare__container.process {
  margin-top: 6%;
  border: none;
  display: block;
}
#mainContents .totalcare .totalcare__container.process p {
  font-weight: 500;
  font-size: 1.4444em;
  letter-spacing: 2px;
  margin-top: 1%;
}
@media only screen and (max-width: 767px) {
  #mainContents .totalcare .totalcare__container.process p {
    font-size: 1em;
  }
}
#mainContents .totalcare .leftCol {
  width: calc(100% - 55.1020%);
  padding: 40px 20px;
}
@media only screen and (max-width: 767px) {
  #mainContents .totalcare .leftCol {
    width: 100%;
    padding: 20px;
  }
  #mainContents .totalcare .leftCol .shampoo_conv {
    width: 50%;
  }
  #mainContents .totalcare .leftCol .pack {
    width: 60%;
  }
  #mainContents .totalcare .leftCol .tonic {
    width: 75%;
  }
}
#mainContents .totalcare .leftCol .cat__info {
  width: 100%;
}
#mainContents .totalcare .leftCol .cat__info ul.cat__btn {
  display: table;
  padding-top: 20px;
  width: 390px;
}
@media only screen and (max-width: 767px) {
  #mainContents .totalcare .leftCol .cat__info ul.cat__btn {
    width: 100%;
    padding-top: 20px;
  }
}
#mainContents .totalcare .leftCol .cat__info ul.cat__btn li {
  display: table-cell;
  vertical-align: middle;
}
#mainContents .totalcare .leftCol .cat__info ul.cat__btn li img {
  width: 100%;
  height: auto;
}
#mainContents .totalcare .leftCol .cat__info .pack__txt2 {
  max-width: 399px;
  width: 100%;
  margin-top: 5%;
}
@media only screen and (max-width: 767px) {
  #mainContents .totalcare .leftCol .cat__info .pack__txt2 {
  }
}
#mainContents .totalcare .leftCol .cat__info .pack__txt2 img {
  width: 100%;
}
#mainContents .totalcare .leftCol .cat__info .tonic__txt2 {
  max-width: 369px;
  width: 100%;
  margin-top: 5%;
}
@media only screen and (max-width: 767px) {
  #mainContents .totalcare .leftCol .cat__info .tonic__txt2 {
  }
}
#mainContents .totalcare .leftCol .cat__info .tonic__txt2 img {
  width: 100%;
}

#mainContents .totalcare .rightCol {
  width: 55.1020%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .totalcare .rightCol {
    width: 100%;
    padding: 20px;
  }
}


@media only screen and (max-width: 767px) {
  .sp_bg {
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
  }
}