@charset "UTF-8";
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}
@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -moz-transform: translateX(10px);
  }
}
@-o-keyframes shake {
  0%, 100% {
    -o-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -o-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -o-transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }
  10%, 20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
  }
}
@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }
  10%, 20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -o-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -o-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }
  40% {
    -moz-transform: rotate(-10deg);
  }
  60% {
    -moz-transform: rotate(5deg);
  }
  80% {
    -moz-transform: rotate(-5deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }
  40% {
    -o-transform: rotate(-10deg);
  }
  60% {
    -o-transform: rotate(5deg);
  }
  80% {
    -o-transform: rotate(-5deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}
@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) rotateY(0);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) rotateY(0);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) scale(1);
    -o-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}
.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(0.9);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  80% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  80% {
    -o-transform: translateY(-10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  80% {
    -o-transform: translateX(-10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  80% {
    -o-transform: translateX(10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  25% {
    -moz-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}
@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  100% {
    -o-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@-moz-keyframes rollIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
}
@-o-keyframes rollIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}
@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes lightSpeedIn {
  0% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -moz-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -moz-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-o-keyframes lightSpeedIn {
  0% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -o-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -o-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-moz-keyframes lightSpeedOut {
  0% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-o-keyframes lightSpeedOut {
  0% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@-moz-keyframes wiggle {
  0% {
    -moz-transform: skewX(9deg);
  }
  10% {
    -moz-transform: skewX(-8deg);
  }
  20% {
    -moz-transform: skewX(7deg);
  }
  30% {
    -moz-transform: skewX(-6deg);
  }
  40% {
    -moz-transform: skewX(5deg);
  }
  50% {
    -moz-transform: skewX(-4deg);
  }
  60% {
    -moz-transform: skewX(3deg);
  }
  70% {
    -moz-transform: skewX(-2deg);
  }
  80% {
    -moz-transform: skewX(1deg);
  }
  90% {
    -moz-transform: skewX(0deg);
  }
  100% {
    -moz-transform: skewX(0deg);
  }
}
@-o-keyframes wiggle {
  0% {
    -o-transform: skewX(9deg);
  }
  10% {
    -o-transform: skewX(-8deg);
  }
  20% {
    -o-transform: skewX(7deg);
  }
  30% {
    -o-transform: skewX(-6deg);
  }
  40% {
    -o-transform: skewX(5deg);
  }
  50% {
    -o-transform: skewX(-4deg);
  }
  60% {
    -o-transform: skewX(3deg);
  }
  70% {
    -o-transform: skewX(-2deg);
  }
  80% {
    -o-transform: skewX(1deg);
  }
  90% {
    -o-transform: skewX(0deg);
  }
  100% {
    -o-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }
  10% {
    transform: skewX(-8deg);
  }
  20% {
    transform: skewX(7deg);
  }
  30% {
    transform: skewX(-6deg);
  }
  40% {
    transform: skewX(5deg);
  }
  50% {
    transform: skewX(-4deg);
  }
  60% {
    transform: skewX(3deg);
  }
  70% {
    transform: skewX(-2deg);
  }
  80% {
    transform: skewX(1deg);
  }
  90% {
    transform: skewX(0deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
.wiggle {
  -webkit-animation-name: wiggle;
  -moz-animation-name: wiggle;
  -o-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.wiggle {
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

/* Media queries */
/*----------------------------------------
font iconn
----------------------------------------*/
@font-face {
  font-family: 'fontello';
  src: url("../font/fontello.eot?1527512");
  src: url("../font/fontello.eot?1527512#iefix") format("embedded-opentype"), url("../font/fontello.woff2?1527512") format("woff2"), url("../font/fontello.woff?1527512") format("woff"), url("../font/fontello.ttf?1527512") format("truetype"), url("../font/fontello.svg?1527512#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?1527512#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-right-open:before {
  content: '\e800';
}

/* '' */
.icon-down-open:before {
  content: '\e801';
}

/* '' */
.icon-left-open:before {
  content: '\e802';
}

/* '' */
.icon-up-open:before {
  content: '\e803';
}

/* '' */
.icon-down-dir:before {
  content: '\e804';
}

/* '' */
.icon-up-dir:before {
  content: '\e805';
}

/* '' */
.icon-left-dir:before {
  content: '\e806';
}

/* '' */
.icon-right-dir:before {
  content: '\e807';
}

/* '' */
.icon-globe:before {
  content: '\e808';
}

/* '' */
.icon-angle-double-left:before {
  content: '\f100';
}

/* '' */
.icon-angle-double-right:before {
  content: '\f101';
}

/* '' */
.icon-angle-double-up:before {
  content: '\f102';
}

/* '' */
.icon-angle-double-down:before {
  content: '\f103';
}

/* '' */
.icon-angle-left:before {
  content: '\f104';
}

/* '' */
.icon-angle-right:before {
  content: '\f105';
}

/* '' */
.icon-angle-up:before {
  content: '\f106';
}

/* '' */
.icon-angle-down:before {
  content: '\f107';
}

/* '' */
/*----------------------------------------
Fade Effect
----------------------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0px, 0px);
  transition: all 2s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_top {
  opacity: 0;
  transform: translate(0px, 30px);
  transition: all 1s;
}

.fadein_top.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_right {
  opacity: 0;
  transform: translate(30px, 0px);
  transition: all 1s;
}

.fadein_right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_bottom {
  opacity: 0;
  transform: translate(0px, -30px);
  transition: all 1s;
}

.fadein_bottom.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_left {
  opacity: 0;
  transform: translate(-30px, 0px);
  transition: all 1s;
}

.fadein_left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@font-face {
  font-family: "template-iconfont";
  src: url("../font/template-iconfont.eot");
  src: url("../font/template-iconfont.eot?#iefix") format("eot"), url("../font/template-iconfont.woff") format("woff"), url("../font/template-iconfont.ttf") format("truetype"), url("../font/template-iconfont.svg#template-iconfont") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* 汎用的なアイコンフォントです。 */
.st-Icon {
  display: inline-block;
}

.st-Icon:before {
  font-family: "template-iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
}

.st-Icon-arrow_drop_down:before {
  content: "\EA01";
}

.st-Icon-chevron-down:before {
  content: "\EA02";
}

.st-Icon-chevron-left:before {
  content: "\EA03";
}

.st-Icon-chevron-right:before {
  content: "\EA04";
}

.st-Icon-chevron-up:before {
  content: "\EA05";
}

.st-Icon-close:before {
  content: "\EA06";
}

.st-Icon-company:before {
  content: "\EA07";
}

.st-Icon-external-link:before {
  content: "\EA08";
}

.st-Icon-file-pdf:before {
  content: "\EA09";
}

.st-Icon-filter_none:before {
  content: "\EA0A";
}

.st-Icon-menu:before {
  content: "\EA0B";
}

.st-Icon-pdf:before {
  content: "\EA0C";
}

.st-Icon-search:before {
  content: "\EA0D";
}

.st-Icon-sphere:before {
  content: "\EA0E";
}

.st-Icon-Internal:before,
.st-Icon-External:before,
.st-Icon-Pdf:before {
  font-family: "template-iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  speak: none;
  margin-top: -0.1em;
  font-size: 1.5em;
}

.st-Icon-Internal:before {
  content: "";
  color: inherit;
  color: #df0523;
}

.st-Icon-External:before {
  content: "";
  color: inherit;
  color: #df0523;
}

.st-Icon-Pdf:before {
  content: "";
  color: #df0523;
}

/*--------------------------
common
---------------------------*/
body {
  position: relative;
  z-index: 0;
}

#wrap {
  position: relative;
  z-index: 0;
  top: 0;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #wrap {
    top: 50px;
    padding-bottom: 50px;
  }
}

.container {
  width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: left;
  padding: 0 15px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

/*--------------------------
main
---------------------------*/
header {
  position: relative;
  z-index: 1;
  height: 80px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  background: url(../img/header_bg.jpg) repeat-x center top/150px 80px;
}
@media only screen and (max-width: 768px) {
  header {
    width: 100vw;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
  }
}
header > .container:after {
  content: "";
  display: block;
  clear: both;
}
header > .container > .box:after {
  content: "";
  display: block;
  clear: both;
}
header > .container > .box > .left {
  float: left;
  width: 30%;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .left {
    width: 50%;
  }
}
header > .container > .box > .left > a {
  display: inline-block;
  padding-top: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
header > .container > .box > .left > a:hover {
  cursor: pointer;
  opacity: 0.7;
}
header > .container > .box > .left > a > img {
  width: auto;
  height: 70px;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .left > a > img {
    height: 40px;
  }
}
header > .container > .box > .right {
  float: left;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right {
    width: 50%;
  }
}
header > .container > .box > .right #menu {
  display: none;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right #menu {
    display: block;
  }
}
header > .container > .box > .right #menu .menu-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
header > .container > .box > .right #menu .menu-btn.is-open {
  z-index: 150;
}
header > .container > .box > .right #menu .menu-btn.is-open span {
  background-color: rgba(255, 255, 255, 0);
}
header > .container > .box > .right #menu .menu-btn.is-open span:before {
  bottom: 0;
  transform: rotate(45deg);
}
header > .container > .box > .right #menu .menu-btn.is-open span:after {
  top: 0;
  transform: rotate(-45deg);
}
header > .container > .box > .right #menu .menu-btn span {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #FFF;
  position: absolute;
  transition: 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
header > .container > .box > .right #menu .menu-btn span:before {
  bottom: 8px;
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #FFF;
  position: absolute;
  transition: 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
header > .container > .box > .right #menu .menu-btn span:after {
  top: 8px;
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #FFF;
  position: absolute;
  transition: 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
header > .container > .box > .right .lang-btn-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right .lang-btn-sp {
    position: relative;
    display: block;
  }
}
header > .container > .box > .right .lang-btn-sp.is-open > ul {
  display: block;
}
header > .container > .box > .right .lang-btn-sp > div {
  position: absolute;
  top: 9px;
  right: 40px;
}
header > .container > .box > .right .lang-btn-sp > div > i {
  color: #FFF;
  font-size: 1.4rem;
}
header > .container > .box > .right .lang-btn-sp > ul {
  display: none;
  position: absolute;
  top: 45px;
  right: 40px;
  padding: 10px;
  border-radius: 5px;
  background: #6B571E;
  color: #FFF;
}
header > .container > .box > .right .lang-btn-sp > ul > li {
  display: block;
}
header > .container > .box > .right .lang-btn-sp > ul > li > span {
  display: block;
  text-align: center;
  padding: 5px 10px;
  color: #FFF;
}
header > .container > .box > .right .lang-btn-sp > ul > li > a {
  display: block;
  text-align: center;
  padding: 5px 10px;
  color: #F0EC81;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
header > .container > .box > .right .lang-btn-sp > ul > li > a:hover {
  cursor: pointer;
  opacity: 0.7;
  text-decoration: none;
}
header > .container > .box > .right > ul {
  float: right;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right > ul {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right > ul.is-open {
    background: #331402;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: block;
  }
}
header > .container > .box > .right > ul:after {
  content: "";
  display: block;
  clear: both;
}
header > .container > .box > .right > ul > li {
  position: relative;
  float: left;
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right > ul > li {
    float: none;
  }
}
header > .container > .box > .right > ul > li:after {
  position: absolute;
  content: "";
  right: 14px;
  top: 30px;
  width: 2px;
  height: 20px;
  background: #806E33;
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right > ul > li:after {
    content: none;
  }
}
header > .container > .box > .right > ul > li:last-child {
  padding-right: 0;
}
header > .container > .box > .right > ul > li:last-child:after {
  content: none;
}
header > .container > .box > .right > ul > li > a {
  display: table;
  color: #FFF;
  text-decoration: none;
  width: 100%;
  height: 80px;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right > ul > li > a {
    height: 40px;
  }
}
header > .container > .box > .right > ul > li > a:hover {
  cursor: pointer;
  opacity: 0.7;
}
header > .container > .box > .right > ul > li > a > p {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.2em;
}
header > .container > .box > .right > ul > li > .lang-btn {
  position: relative;
  display: table;
  color: #FFF;
  text-decoration: none;
  width: 100%;
  height: 80px;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
@media only screen and (max-width: 768px) {
  header > .container > .box > .right > ul > li > .lang-btn {
    height: 40px;
    display: none;
  }
}
header > .container > .box > .right > ul > li > .lang-btn > p {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.2em;
}
header > .container > .box > .right > ul > li > .lang-btn.active > ul {
  display: block;
}
header > .container > .box > .right > ul > li > .lang-btn > ul {
  display: none;
  position: absolute;
  top: 55px;
  right: 0;
  padding: 10px;
  border-radius: 5px;
  background: #6B571E;
  color: #FFF;
}
header > .container > .box > .right > ul > li > .lang-btn > ul > li {
  display: block;
}
header > .container > .box > .right > ul > li > .lang-btn > ul > li > span {
  display: block;
  text-align: center;
  padding: 5px 10px;
  color: #FFF;
}
header > .container > .box > .right > ul > li > .lang-btn > ul > li > a {
  display: block;
  text-align: center;
  padding: 5px 10px;
  color: #F0EC81;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
header > .container > .box > .right > ul > li > .lang-btn > ul > li > a:hover {
  cursor: pointer;
  opacity: 0.7;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  footer {
    width: 100%;
  }
}
footer > #top {
  background: #6C5E44;
  color: #FFF;
}
footer > #top > .container > .box:after {
  content: "";
  display: block;
  clear: both;
}
footer > #top > .container > .box > .left {
  float: left;
  width: 150px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  footer > #top > .container > .box > .left {
    width: 20%;
  }
}
footer > #top > .container > .box > .left > .img {
  line-height: 0;
}
footer > #top > .container > .box > .left > .img > img {
  width: 100%;
  height: auto;
  line-height: 0;
}
footer > #top > .container > .box > .center {
  float: left;
  width: 450px;
  padding-top: 80px;
  padding-left: 40px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  footer > #top > .container > .box > .center {
    width: 80%;
    padding: 10px 0 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  footer > #top > .container > .box > .center > p {
    font-size: calc(100vw * 0.04);
  }
}
footer > #top > .container > .box > .center > p.copy {
  margin-top: 1em;
  font-size: 0.8rem;
}
@media only screen and (max-width: 768px) {
  footer > #top > .container > .box > .center > p.copy {
    font-size: calc(100vw * 0.02);
  }
}
footer > #top > .container > .box > .right {
  float: left;
  width: 570px;
  padding-top: 30px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  footer > #top > .container > .box > .right {
    padding-top: 10px;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  footer > #top > .container > .box > .right > .gmap {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  footer > #top > .container > .box > .right > .gmap iframe {
    width: 100%;
  }
}
footer > #bottom {
  position: relative;
  z-index: 1;
  height: 80px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  background: url(../img/header_bg.jpg) repeat-x center top/150px 80px;
}
@media only screen and (max-width: 768px) {
  footer > #bottom {
    display: none;
  }
}
footer > #bottom > .container:after {
  content: "";
  display: block;
  clear: both;
}
footer > #bottom > .container > .box:after {
  content: "";
  display: block;
  clear: both;
}
footer > #bottom > .container > .box > .left {
  float: left;
  width: 30%;
}
@media only screen and (max-width: 768px) {
  footer > #bottom > .container > .box > .left {
    width: 50%;
  }
}
footer > #bottom > .container > .box > .left > a {
  display: inline-block;
  padding-top: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
footer > #bottom > .container > .box > .left > a:hover {
  cursor: pointer;
  opacity: 0.7;
}
footer > #bottom > .container > .box > .left > a > img {
  width: auto;
  height: 70px;
}
@media only screen and (max-width: 768px) {
  footer > #bottom > .container > .box > .left > a > img {
    height: 40px;
  }
}
footer > #bottom > .container > .box > .right {
  float: left;
  width: 70%;
}
footer > #bottom > .container > .box > .right > ul {
  float: right;
}
footer > #bottom > .container > .box > .right > ul:after {
  content: "";
  display: block;
  clear: both;
}
footer > #bottom > .container > .box > .right > ul > li {
  position: relative;
  float: left;
  padding-right: 30px;
}
footer > #bottom > .container > .box > .right > ul > li:after {
  position: absolute;
  content: "";
  right: 14px;
  top: 30px;
  width: 2px;
  height: 20px;
  background: #806E33;
}
footer > #bottom > .container > .box > .right > ul > li:last-child {
  padding-right: 0;
}
footer > #bottom > .container > .box > .right > ul > li:last-child:after {
  content: none;
}
footer > #bottom > .container > .box > .right > ul > li > a {
  display: table;
  color: #FFF;
  text-decoration: none;
  width: 100%;
  height: 80px;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
footer > #bottom > .container > .box > .right > ul > li > a:hover {
  cursor: pointer;
  opacity: 0.7;
}
footer > #bottom > .container > .box > .right > ul > li > a > p {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.2em;
}

#sec01 > .item01 {
  padding: 50px 0 100px 0;
  text-align: center;
  background: url(../img/sec01_img01.jpg) no-repeat center center/cover;
}
@media only screen and (max-width: 768px) {
  #sec01 > .item01 {
    padding: 20px 0 60px 0;
  }
}
#sec01 > .item02 {
  background: #6C5E44;
  text-align: center;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  #sec01 > .item02 {
    padding: 10px 0;
  }
}
#sec01 > .item02 > .container {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #sec01 > .item02 > .container > .booking {
    width: 90%;
  }
}
#sec01 > .item02 > .container > h2 {
  text-align: center;
  font-size: 1rem;
  color: #FFF;
  margin-bottom: 5px;
}
#sec01 > .item02 > .container > ul {
  width: 800px;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #sec01 > .item02 > .container > ul {
    text-align: left;
    width: 100%;
  }
}
#sec01 > .item02 > .container > ul > li {
  color: #FFF;
  margin-bottom: 1px;
}
#sec01 > .item02 > .container > ul > li:last-child {
  margin-bottom: 0;
}
#sec01 > .item02 > .container > ul > li > a {
  margin-left: 1.5em;
  color: #F0EC81;
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
@media only screen and (max-width: 768px) {
  #sec01 > .item02 > .container > ul > li > a {
    left: 0;
  }
}
#sec01 > .item02 > .container > ul > li > a:hover {
  cursor: pointer;
  opacity: 0.7;
}

#title {
  background: #6C5E44;
  text-align: center;
}
#title > .container {
  padding: 40px 0 10px 0;
}
@media only screen and (max-width: 768px) {
  #title > .container {
    padding: 10px 0;
  }
}
#title > .container > h1 {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6em;
  color: #FFF;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  #title > .container > h1 {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
  }
}
#title > .container > h1 > span {
  display: block;
  font-family: 'Amiri', serif;
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  #title > .container > h1 > span {
    font-size: 3rem;
  }
}

#sec02, #sec04, #sec06 {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: url(../img/bg_img01.png) repeat-y right center/550px 550px, #FFF;
}
@media only screen and (max-width: 768px) {
  #sec02, #sec04, #sec06 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #FFF;
  }
}
#sec02 > .container, #sec04 > .container, #sec06 > .container {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container, #sec04 > .container, #sec06 > .container {
    padding: 0 0 80px 0;
  }
}
#sec02 > .container > .box:after, #sec04 > .container > .box:after, #sec06 > .container > .box:after {
  content: "";
  display: block;
  clear: both;
}
#sec02 > .container > .box > .left, #sec04 > .container > .box > .left, #sec06 > .container > .box > .left {
  float: left;
  width: 40%;
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .left, #sec04 > .container > .box > .left, #sec06 > .container > .box > .left {
    float: none;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 15px 0 15px;
    display: table-footer-group;
  }
}
#sec02 > .container > .box > .left > h2, #sec04 > .container > .box > .left > h2, #sec06 > .container > .box > .left > h2 {
  margin-bottom: 20px;
  line-height: 1.6em;
  color: #685728;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .left > h2, #sec04 > .container > .box > .left > h2, #sec06 > .container > .box > .left > h2 {
    margin-top: 20px;
    text-align: center;
  }
}
#sec02 > .container > .box > .left > h2 > span, #sec04 > .container > .box > .left > h2 > span, #sec06 > .container > .box > .left > h2 > span {
  display: block;
  font-family: 'Amiri', serif;
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .left > h2 > span, #sec04 > .container > .box > .left > h2 > span, #sec06 > .container > .box > .left > h2 > span {
    font-size: 3rem;
  }
}
#sec02 > .container > .box > .left > p, #sec04 > .container > .box > .left > p, #sec06 > .container > .box > .left > p {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .left > p, #sec04 > .container > .box > .left > p, #sec06 > .container > .box > .left > p {
    text-align: center;
    font-size: 1.2rem;
  }
}
#sec02 > .container > .box > .left > ul, #sec04 > .container > .box > .left > ul, #sec06 > .container > .box > .left > ul {
  padding-right: 100px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .left > ul, #sec04 > .container > .box > .left > ul, #sec06 > .container > .box > .left > ul {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
#sec02 > .container > .box > .left > ul:last-child, #sec04 > .container > .box > .left > ul:last-child, #sec06 > .container > .box > .left > ul:last-child {
  margin-bottom: 0;
}
#sec02 > .container > .box > .left > ul > li, #sec04 > .container > .box > .left > ul > li, #sec06 > .container > .box > .left > ul > li {
  margin-right: 1em;
  display: inline-block;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2em;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .left > ul > li, #sec04 > .container > .box > .left > ul > li, #sec06 > .container > .box > .left > ul > li {
    font-size: 1.2rem;
    display: inline-table;
    margin: 0 0.5em;
  }
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .left > .btn, #sec04 > .container > .box > .left > .btn, #sec06 > .container > .box > .left > .btn {
    text-align: center;
  }
}
#sec02 > .container > .box > .left > .btn > a, #sec04 > .container > .box > .left > .btn > a, #sec06 > .container > .box > .left > .btn > a {
  display: inline-block;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  background: #6B571E;
  box-shadow: inset 0 0 4px rgba(190, 194, 118, 0.8);
  border: none;
  color: #FFF;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
#sec02 > .container > .box > .left > .btn > a:hover, #sec04 > .container > .box > .left > .btn > a:hover, #sec06 > .container > .box > .left > .btn > a:hover {
  cursor: pointer;
  opacity: 0.7;
}
#sec02 > .container > .box > .left > .btn > a > span:after, #sec04 > .container > .box > .left > .btn > a > span:after, #sec06 > .container > .box > .left > .btn > a > span:after {
  font-family: "fontello";
  font-size: 0.8em;
  font-style: normal;
  font-weight: normal;
  content: '\e800';
  color: #D5B548;
  margin-left: 0.5em;
}
#sec02 > .container > .box > .right, #sec04 > .container > .box > .right, #sec06 > .container > .box > .right {
  float: left;
  width: 60%;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .right, #sec04 > .container > .box > .right, #sec06 > .container > .box > .right {
    float: none;
    width: 100%;
    display: table-header-group;
  }
}
#sec02 > .container > .box > .right > ul:after, #sec04 > .container > .box > .right > ul:after, #sec06 > .container > .box > .right > ul:after {
  content: "";
  display: block;
  clear: both;
}
#sec02 > .container > .box > .right > ul > li, #sec04 > .container > .box > .right > ul > li, #sec06 > .container > .box > .right > ul > li {
  float: left;
  width: 350px;
  margin: 0 20px 20px 0;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .right > ul > li, #sec04 > .container > .box > .right > ul > li, #sec06 > .container > .box > .right > ul > li {
    width: 50%;
    margin: 0;
  }
}
#sec02 > .container > .box > .right > ul > li:nth-child(2n), #sec04 > .container > .box > .right > ul > li:nth-child(2n), #sec06 > .container > .box > .right > ul > li:nth-child(2n) {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  #sec02 > .container > .box > .right > ul > li:nth-child(2n), #sec04 > .container > .box > .right > ul > li:nth-child(2n), #sec06 > .container > .box > .right > ul > li:nth-child(2n) {
    margin: 0;
  }
}
#sec02 > .container > .box > .right > ul > li > .img, #sec04 > .container > .box > .right > ul > li > .img, #sec06 > .container > .box > .right > ul > li > .img {
  line-height: 0;
  width: 100%;
}
#sec02 > .container > .box > .right > ul > li > .img > img, #sec04 > .container > .box > .right > ul > li > .img > img, #sec06 > .container > .box > .right > ul > li > .img > img {
  width: 100%;
  height: auto;
}
#sec02 > .container > .box > .right > .img, #sec04 > .container > .box > .right > .img, #sec06 > .container > .box > .right > .img {
  line-height: 0;
  width: 100%;
}
#sec02 > .container > .box > .right > .img > img, #sec04 > .container > .box > .right > .img > img, #sec06 > .container > .box > .right > .img > img {
  width: 100%;
  height: auto;
}

#sec03, #sec05, #sec07 {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: url(../img/bg_img01.png) repeat-y left center/550px 550px, #EFEEE8;
}
@media only screen and (max-width: 768px) {
  #sec03, #sec05, #sec07 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #EFEEE8;
  }
}
#sec03 > .container, #sec05 > .container, #sec07 > .container {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container, #sec05 > .container, #sec07 > .container {
    padding: 0 0 80px 0;
  }
}
#sec03 > .container > .box:after, #sec05 > .container > .box:after, #sec07 > .container > .box:after {
  content: "";
  display: block;
  clear: both;
}
#sec03 > .container > .box > .left, #sec05 > .container > .box > .left, #sec07 > .container > .box > .left {
  float: left;
  width: 60%;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .left, #sec05 > .container > .box > .left, #sec07 > .container > .box > .left {
    float: none;
    width: 100%;
  }
}
#sec03 > .container > .box > .left > ul:after, #sec05 > .container > .box > .left > ul:after, #sec07 > .container > .box > .left > ul:after {
  content: "";
  display: block;
  clear: both;
}
#sec03 > .container > .box > .left > ul > li, #sec05 > .container > .box > .left > ul > li, #sec07 > .container > .box > .left > ul > li {
  float: left;
  width: 350px;
  margin: 0 20px 20px 0;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .left > ul > li, #sec05 > .container > .box > .left > ul > li, #sec07 > .container > .box > .left > ul > li {
    width: 50%;
    margin: 0;
  }
}
#sec03 > .container > .box > .left > ul > li:nth-child(2n), #sec05 > .container > .box > .left > ul > li:nth-child(2n), #sec07 > .container > .box > .left > ul > li:nth-child(2n) {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .left > ul > li:nth-child(2n), #sec05 > .container > .box > .left > ul > li:nth-child(2n), #sec07 > .container > .box > .left > ul > li:nth-child(2n) {
    margin: 0;
  }
}
#sec03 > .container > .box > .left > ul > li > .img, #sec05 > .container > .box > .left > ul > li > .img, #sec07 > .container > .box > .left > ul > li > .img {
  line-height: 0;
  width: 100%;
}
#sec03 > .container > .box > .left > ul > li > .img > img, #sec05 > .container > .box > .left > ul > li > .img, #sec07 > .container > .box > .left > ul > li > .img {
  width: 100%;
  height: auto;
}
#sec03 > .container > .box > .left > .img, #sec05 > .container > .box > .left > .img, #sec07 > .container > .box > .left > .img {
  line-height: 0;
  width: 100%;
}
#sec03 > .container > .box > .left > .img > img, #sec05 > .container > .box > .left > .img > img, #sec07 > .container > .box > .left > .img > img {
  width: 100%;
  height: auto;
}
#sec03 > .container > .box > .right, #sec05 > .container > .box > .right, #sec07 > .container > .box > .right {
  float: left;
  width: 40%;
  text-align: right;
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .right, #sec05 > .container > .box > .right, #sec07 > .container > .box > .right {
    float: none;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 15px 0 15px;
  }
}
#sec03 > .container > .box > .right > h2, #sec05 > .container > .box > .right > h2, #sec07 > .container > .box > .right > h2 {
  margin-bottom: 20px;
  line-height: 1.6em;
  color: #685728;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .right > h2, #sec05 > .container > .box > .right > h2, #sec07 > .container > .box > .right > h2 {
    margin-top: 20px;
    text-align: center;
  }
}
#sec03 > .container > .box > .right > h2 > span, #sec05 > .container > .box > .right > h2 > span, #sec07 > .container > .box > .right > h2 > span {
  display: block;
  font-family: 'Amiri', serif;
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .right > h2 > span, #sec05 > .container > .box > .right > h2 > span, #sec07 > .container > .box > .right > h2 > span {
    font-size: 3rem;
  }
}
#sec03 > .container > .box > .right > p, #sec05 > .container > .box > .right > p, #sec07 > .container > .box > .right > p {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .right > p, #sec05 > .container > .box > .right > p, #sec07 > .container > .box > .right > p {
    text-align: center;
    font-size: 1.2rem;
  }
}
#sec03 > .container > .box > .right > ul, #sec05 > .container > .box > .right > ul, #sec07 > .container > .box > .right > ul {
  padding-left: 100px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .right > ul, #sec05 > .container > .box > .right > ul, #sec07 > .container > .box > .right > ul {
    text-align: center;
    padding-left: 0;
    margin-bottom: 40px;
  }
}
#sec03 > .container > .box > .right > ul:last-child, #sec05 > .container > .box > .right > ul:last-child, #sec07 > .container > .box > .right > ul:last-child {
  margin-bottom: 0;
}
#sec03 > .container > .box > .right > ul > li, #sec05 > .container > .box > .right > ul > li, #sec07 > .container > .box > .right > ul > li {
  margin-left: 1em;
  display: inline-block;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2em;
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .right > ul > li, #sec05 > .container > .box > .right > ul > li, #sec07 > .container > .box > .right > ul > li {
    font-size: 1.2rem;
    display: inline-table;
    margin: 0 0.5em;
  }
}
@media only screen and (max-width: 768px) {
  #sec03 > .container > .box > .right > .btn, #sec05 > .container > .box > .right > .btn, #sec07 > .container > .box > .right > .btn {
    text-align: center;
  }
}
#sec03 > .container > .box > .right > .btn > a, #sec05 > .container > .box > .right > .btn > a, #sec07 > .container > .box > .right > .btn > a {
  display: inline-block;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  background: #6B571E;
  box-shadow: inset 0 0 4px rgba(190, 194, 118, 0.8);
  border: none;
  color: #FFF;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
#sec03 > .container > .box > .right > .btn > a:hover, #sec05 > .container > .box > .right > .btn > a:hover, #sec07 > .container > .box > .right > .btn > a:hover {
  cursor: pointer;
  opacity: 0.7;
}
#sec03 > .container > .box > .right > .btn > a > span:after, #sec05 > .container > .box > .right > .btn > a > span:after, #sec07 > .container > .box > .right > .btn > a > span:after {
  font-family: "fontello";
  font-size: 0.8em;
  font-style: normal;
  font-weight: normal;
  content: '\e800';
  color: #D5B548;
  margin-left: 0.5em;
}

#sec11 {
  background: #EFEEE8;
}
#sec11 > .container {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  #sec11 > .container {
    padding: 0 0 80px 0;
  }
}
#sec11 > .container > ul:after {
  content: "";
  display: block;
  clear: both;
}
#sec11 > .container > ul > li {
  float: left;
  width: 570px;
  margin: 0 20px 20px 0;
  background: #FFF;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  #sec11 > .container > ul > li {
    float: none;
    width: 100%;
  }
}
#sec11 > .container > ul > li:nth-child(2n) {
  margin: 0 0 20px 0;
}
#sec11 > .container > ul > li > .img {
  line-height: 0;
  width: 100%;
  margin-bottom: 10px;
}
#sec11 > .container > ul > li > .img > img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
#sec11 > .container > ul > li > p {
  color: #685728;
  display: block;
  width: 100%;
  font-size: 2rem;
  line-height: 1em;
  font-family: 'Amiri', serif;
}
#sec11 > .container > ul > li > h3 {
  color: #685728;
  line-height: 1em;
  font-size: 2rem;
}
#sec11 > .container > ul > li > h3 > span {
  font-size: 1.6rem;
  font-family: 'Amiri', serif;
  margin-left: 0.5em;
  vertical-align: middle;
  display: inline-block;
}
#sec11 > .container > ul > li > h3 > span:before {
  content: "-";
  margin-right: 0.2em;
}
#sec11 > .container > ul > li > h3 > span:after {
  content: "-";
  margin-left: 0.2em;
}

#sec21, #sec22 {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: url(../img/bg_img01.png) repeat-y right center/550px 550px, #FFF;
}
@media only screen and (max-width: 768px) {
  #sec21, #sec22 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #FFF;
  }
}
#sec21 > .container, #sec22 > .container {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container, #sec22 > .container {
    padding: 0 0 80px 0;
  }
}
#sec21 > .container > .box:after, #sec22 > .container > .box:after {
  content: "";
  display: block;
  clear: both;
}
#sec21 > .container > .box > .left, #sec22 > .container > .box > .left {
  float: left;
  width: 50%;
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container > .box > .left, #sec22 > .container > .box > .left {
    float: none;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 15px 0 15px;
    display: table-footer-group;
  }
}
#sec21 > .container > .box > .left > h2, #sec22 > .container > .box > .left > h2 {
  margin-bottom: 20px;
  line-height: 1.6em;
  color: #685728;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container > .box > .left > h2, #sec22 > .container > .box > .left > h2 {
    margin-top: 20px;
    text-align: center;
  }
}
#sec21 > .container > .box > .left > h2 > span, #sec22 > .container > .box > .left > h2 > span {
  display: block;
  font-family: 'Amiri', serif;
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container > .box > .left > h2 > span, #sec22 > .container > .box > .left > h2 > span {
    font-size: 3rem;
  }
}
#sec21 > .container > .box > .left > p, #sec22 > .container > .box > .left > p {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container > .box > .left > p, #sec22 > .container > .box > .left > p {
    text-align: center;
    font-size: 1.2rem;
  }
}
#sec21 > .container > .box > .left > ul:after, #sec22 > .container > .box > .left > ul:after {
  content: "";
  display: block;
  clear: both;
}
#sec21 > .container > .box > .left > ul > li, #sec22 > .container > .box > .left > ul > li {
  float: left;
  width: 172px;
  margin: 0 20px 20px 0;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container > .box > .left > ul > li, #sec22 > .container > .box > .left > ul > li {
    width: 50%;
    margin: 0;
  }
}
#sec21 > .container > .box > .left > ul > li:nth-child(3n), #sec22 > .container > .box > .left > ul > li:nth-child(3n) {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container > .box > .left > ul > li:nth-child(3n), #sec22 > .container > .box > .left > ul > li:nth-child(3n) {
    margin: 0;
  }
}
#sec21 > .container > .box > .left > ul > li > .img, #sec22 > .container > .box > .left > ul > li > .img {
  line-height: 0;
  width: 100%;
}
#sec21 > .container > .box > .left > ul > li > .img > img, #sec22 > .container > .box > .left > ul > li > .img > img {
  width: 100%;
  height: auto;
}
#sec21 > .container > .box > .right, #sec22 > .container > .box > .right {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #sec21 > .container > .box > .right, #sec22 > .container > .box > .right {
    float: none;
    width: 100%;
    display: table-header-group;
  }
}
#sec21 > .container > .box > .right > .img, #sec22 > .container > .box > .right > .img {
  line-height: 0;
  width: 100%;
}
#sec21 > .container > .box > .right > .img > img, #sec22 > .container > .box > .right > .img > img {
  width: 100%;
  height: auto;
}

#sec22 {
  background: url(../img/bg_img01.png) repeat-y right center/550px 550px, #EFEEE8;
}
@media only screen and (max-width: 768px) {
  #sec22 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #EFEEE8;
  }
}

#sec31 {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: url(../img/bg_img01.png) repeat-y right center/550px 550px, #FFF;
}
@media only screen and (max-width: 768px) {
  #sec31 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #FFF;
  }
}
#sec31 > .container {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  #sec31 > .container {
    padding: 0 0 80px 0;
  }
}
#sec31 > .container > .item01 {
  background: #F7F7F7;
  margin-bottom: 80px;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  #sec31 > .container > .item01 > .gmap {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #sec31 > .container > .item01 > .gmap iframe {
    width: 100%;
  }
}
#sec31 > .container > .item01 > p {
  padding: 20px;
  font-size: 1.2rem;
}
#sec31 > .container > .item01 > p > span {
  font-weight: bold;
  font-size: 1.4rem;
}
#sec31 > .container > .item02 > ul > li {
  background: #F7F7F7;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
#sec31 > .container > .item02 > ul > li > h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #685728;
}
#sec31 > .container > .item02 > ul > li > p > span.text01 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1em;
}
#sec31 > .container > .item02 > ul > li > p > span.text02 {
  font-weight: bold;
  font-size: 1rem;
  color: #999;
  margin-right: 0.5em;
}
#sec31 > .container > .item02 > ul > li > p > span.text02:before {
  content: "[";
}
#sec31 > .container > .item02 > ul > li > p > span.text02:after {
  content: "]";
}

#sec41 {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: url(../img/bg_img01.png) repeat-y right center/550px 550px, #FFF;
}
@media only screen and (max-width: 768px) {
  #sec41 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #FFF;
  }
}
#sec41 > .slide > ul li {
  float: left;
}
#sec41 > .slide > ul li > .img {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
}
#sec41 > .slide > ul li > .img > img {
  width: 100%;
  height: auto;
}

#sec42 {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: url(../img/bg_img01.png) repeat-y right center/550px 550px, #FFF;
}
@media only screen and (max-width: 768px) {
  #sec42 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #FFF;
  }
}
#sec42 > .container {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  #sec42 > .container {
    padding: 40px 0 80px 0;
  }
}
#sec42 > .container > h2 {
  text-align: center;
  color: #685728;
  line-height: 1.4em;
  font-size: 2.4rem;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  #sec42 > .container > h2 {
    font-size: calc(100vw * 0.08);
    margin-bottom: 40px;
  }
}
#sec42 > .container > h2 > br.spbr {
  display: none;
}
@media only screen and (max-width: 768px) {
  #sec42 > .container > h2 > br.spbr {
    display: block;
  }
}
#sec42 > .container > p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #sec42 > .container > p {
    padding: 0 10px;
    font-size: calc(100vw * 0.04);
  }
}
#sec42 > .container > p > span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #sec42 > .container > p > span {
    font-size: calc(100vw * 0.06);
  }
}
#sec42 > .container > p > br.spbr {
  display: none;
}
@media only screen and (max-width: 768px) {
  #sec42 > .container > p > br.spbr {
    display: block;
  }
}
#sec42 > .container > p > br.pcbr {
  display: block;
}
@media only screen and (max-width: 768px) {
  #sec42 > .container > p > br.pcbr {
    display: none;
  }
}

#sec51 {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  background: url(../img/bg_img01.png) repeat-y right center/550px 550px, #FFF;
}
@media only screen and (max-width: 768px) {
  #sec51 {
    background: url(../img/bg_img01.png) repeat-y right center/100% auto, #FFF;
  }
}
#sec51 > .container {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container {
    padding: 40px 0 80px 0;
  }
}
#sec51 > .container > h2 {
  text-align: center;
  color: #685728;
  line-height: 1.4em;
  font-size: 2.4rem;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > h2 {
    font-size: calc(100vw * 0.08);
    margin-bottom: 40px;
  }
}
#sec51 > .container > h2 > br.spbr {
  display: none;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > h2 > br.spbr {
    display: block;
  }
}
#sec51 > .container > hr {
  border: none;
  border-top: 2px solid #CCC;
  margin-top: 80px;
  margin-bottom: 40px;
}
#sec51 > .container > h3 {
  width: 100%;
  text-align: center;
  display: inline-block;
  color: #685728;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
#sec51 > .container > ol {
  width: 900px;
  margin: 0 auto;
  padding: 0;
  counter-reset: listCounter;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
#sec51 > .container > ol > li {
  margin: 0 0 40px 0;
  padding: 0 0 0 1em;
  box-sizing: border-box;
  list-style-type: none;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li {
    padding-left: 2em;
  }
}
#sec51 > .container > ol > li:before {
  content: counter(listCounter) ".";
  counter-increment: listCounter;
  margin-right: 0.1rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: -1em;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li:before {
    left: 0;
    font-size: calc(100vw * 0.07);
  }
}
#sec51 > .container > ol > li > h4 {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li > h4 {
    font-size: calc(100vw * 0.07);
  }
}
#sec51 > .container > ol > li > .img {
  box-sizing: border-box;
  padding: 0;
}
#sec51 > .container > ol > li > .img > img {
  height: auto;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li > .img > img {
    width: 100%;
  }
}
#sec51 > .container > ol > li > p {
  overflow-wrap: break-word;
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li > p {
    padding: 0 10px;
    font-size: calc(100vw * 0.04);
  }
}
#sec51 > .container > ol > li > p > span {
  font-weight: bold;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li > p > span {
    font-size: calc(100vw * 0.06);
  }
}
#sec51 > .container > ol > li > p > br.spbr {
  display: none;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li > p > br.spbr {
    display: block;
  }
}
#sec51 > .container > ol > li > p > br.pcbr {
  display: block;
}
@media only screen and (max-width: 768px) {
  #sec51 > .container > ol > li > p > br.pcbr {
    display: none;
  }
}

.bookingbtn{
    margin: 20px 0;
    text-align: center;
}
.bookingbtn button{
    width: auto;
    padding: 10px 20px;
    border-radius: 5px;
    background: #6B571E;
    box-shadow: inset 0 0 10px rgba(190, 194, 118, 0.8);
    border: none;
    color: #FFF;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
.bookingbtn button span:after {
    font-family: "fontello";
    font-size: 0.8em;
    font-style: normal;
    font-weight: normal;
    content: '\e800';
    color: #D5B548;
    margin-left: 0.5em;
}
/*# sourceMappingURL=common.css.map */
