@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

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

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, 100% {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

@keyframes jello {
  from, 11.1%, 100% {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

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

@keyframes fadeIn {
  from {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

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

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

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Removes default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em; }

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Removes inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/******************VARIABLES*********************/
@-webkit-keyframes loading-anime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes loading-anime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes scroll-btn {
  0% {
    top: 0; }
  100% {
    top: 110%; } }

@keyframes scroll-btn {
  0% {
    top: 0; }
  100% {
    top: 110%; } }

/********************BASE**********************/
body {
  background: #fff;
  color: #231815;
  font-family: YakuHanJP, YuGothic, "游ゴシック", "ヒラギノ角ゴ Pro" , "Hiragino Kaku Gothic Pro" , Meiryo, "メイリオ", "MS P Gothic", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
  word-break: break-word;
  letter-spacing: .06em; }

a {
  text-decoration: none;
  opacity: 1;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  color: #08261f; }
  @media (min-width: 569px) {
    a:hover {
      opacity: .5;
      -webkit-transition: all .2s linear;
      transition: all .2s linear; } }
  a.link--underlined {
    border-bottom: 1px solid; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0 0 20px;
  position: relative; }
  h1.u-font-serif, h2.u-font-serif, h3.u-font-serif, h4.u-font-serif, h5.u-font-serif, h6.u-font-serif {
    font-weight: 500; }

p {
  margin: 0 0 20px;
  line-height: 1.8; }

.wrapper {
  overflow: hidden; }

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: 70px;
  height: 70px;
  -webkit-transition: ease .5s;
  transition: ease .5s;
  cursor: pointer;
  background: rgba(35, 24, 21, 0.25);
  color: #fff;
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important; }
  .menu .txt {
    font-size: 10px;
    font-size: 0.625rem;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 5px);
    transform: translate(-50%, 5px); }
  .menu .bar {
    background: #fff;
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    border-radius: 1px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: ease .5s;
    transition: ease .5s; }
    .menu .bar:nth-child(1) {
      top: 33%; }
    .menu .bar:nth-child(2) {
      top: 45%; }
  .menu.active .bar {
    top: 39%; }
  .menu.active .bar:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg); }
  .menu.active .bar:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg); }

.header {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #3e3a39;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5vw;
  z-index: 100; }
  @media (max-width: 568px) {
    .header {
      padding: 100px 30px 30px;
      overflow: scroll;
      top: 0;
      left: 0; } }
  .header__container-wrap {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .header__container-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 80px;
        height: 100%; } }
  @media (min-width: 569px) {
    .header__container {
      display: flex;
      flex-direction: row-reverse; } }
  .header__arw-nav {
    display: flex; }
    @media (min-width: 569px) {
      .header__arw-nav {
        flex-direction: row-reverse;
        align-items: flex-start;
        font-size: 16px;
        padding: 0 15px; } }
    @media (max-width: 568px) {
      .header__arw-nav {
        font-size: 14px;
        padding: 15px 0;
        justify-content: space-between; } }
    @media (min-width: 569px) {
      .header__arw-nav .nav-item {
        margin: 0 15px;
        width: 16px;
        display: inline-block;
        line-height: 1.2; } }
    @media (max-width: 568px) {
      .header__arw-nav .nav-item {
        padding: 10px 0;
        display: flex;
        align-items: center; } }
    .header__arw-nav .nav-item:before {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      border-radius: 50%;
      background: url(/images/icons/arw-right-white.svg) center center/auto 6px #08261f no-repeat; }
      @media (min-width: 569px) {
        .header__arw-nav .nav-item:before {
          margin-top: .5em; } }
      @media (max-width: 568px) {
        .header__arw-nav .nav-item:before {
          margin-right: .5em; } }
    .header__arw-nav .nav-item.of-accent {
      background: #b28247;
      color: #fff; }
      @media (min-width: 569px) {
        .header__arw-nav .nav-item.of-accent {
          padding: 1.5em 1em; } }
      @media (max-width: 568px) {
        .header__arw-nav .nav-item.of-accent {
          padding: 10px; } }
      .header__arw-nav .nav-item.of-accent:after {
        border: 1px solid rgba(255, 255, 255, 0.5);
        background: url(/images/icons/arw-right-white.svg) center center/auto 6px no-repeat; }
    .header__arw-nav.of-large .nav-item {
      font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
      color: #b28247; }
      @media (min-width: 569px) {
        .header__arw-nav.of-large .nav-item {
          font-size: 20px;
          width: 20px; } }
      @media (max-width: 568px) {
        .header__arw-nav.of-large .nav-item {
          font-size: 17px;
          width: 100%;
          justify-content: space-between; } }
      .header__arw-nav.of-large .nav-item:after {
        width: 20px;
        height: 20px;
        border-color: #b28247;
        background: url(/images/icons/arw-right-white.svg) center center/auto 8px #b28247 no-repeat; }
        @media (max-width: 568px) {
          .header__arw-nav.of-large .nav-item:after {
            width: 16px;
            height: 16px;
            background-size: auto 6px; } }
  @media (min-width: 569px) {
    .header__icon-nav {
      display: flex;
      flex-direction: row-reverse;
      padding: 0 15px; } }
  .header__icon-nav .nav-item {
    display: inline-block; }
    @media (min-width: 569px) {
      .header__icon-nav .nav-item {
        margin: 0 15px;
        font-size: 14px;
        width: 14px; } }
    .header__icon-nav .nav-item:before {
      content: "";
      display: block;
      width: 30px;
      margin: 0 0 .5em -8px;
      height: 30px; }
    .header__icon-nav .nav-item.of-stay:before {
      background: url(/images/icons/stay-black.png) center center/auto 29px no-repeat; }
    .header__icon-nav .nav-item.of-airline:before {
      background: url(/images/icons/airline-black.png) center center/auto 19px no-repeat; }
    .header__icon-nav .nav-item.of-restaurant:before {
      background: url(/images/icons/restaurant-black.png) center center/auto 10px no-repeat; }
  @media (min-width: 569px) {
    .header__grand-nav {
      display: flex;
      flex-direction: row-reverse;
      padding: 0 15px; } }
  @media (max-width: 568px) {
    .header__grand-nav {
      border-top: 1px solid rgba(35, 24, 21, 0.25);
      margin-bottom: 15px; } }
  .header__grand-nav .nav-item {
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    font-weight: 500;
    position: relative; }
    @media (min-width: 569px) {
      .header__grand-nav .nav-item {
        display: inline-block;
        margin: -.2em 45px 0 15px;
        width: 26px;
        font-size: 26px; } }
    @media (max-width: 568px) {
      .header__grand-nav .nav-item {
        font-size: 22px;
        border-bottom: 1px solid rgba(35, 24, 21, 0.25);
        padding: 10px 0 10px 5px;
        display: block;
        position: relative; }
        .header__grand-nav .nav-item:after {
          content: "";
          display: block;
          width: 16px;
          height: 16px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          border: 1px solid rgba(62, 58, 57, 0.5);
          border-radius: 50%;
          background: url(/images/icons/arw-right-black.svg) center center/auto 6px no-repeat;
          position: absolute;
          top: 50%;
          right: 0;
          -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%); } }
    .header__grand-nav .nav-item__label {
      font-size: 12px;
      letter-spacing: .1em;
      white-space: nowrap;
      opacity: .5; }
      @media (min-width: 569px) {
        .header__grand-nav .nav-item__label {
          position: absolute;
          top: 0;
          left: 100%;
          -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
          -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
          margin-left: 15px; } }
      @media (max-width: 568px) {
        .header__grand-nav .nav-item__label {
          display: block; } }
  .header__bottom {
    width: 100%;
    max-width: 1120px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .header__bottom {
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        padding: 0 60px 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between; } }
    @media (max-width: 568px) {
      .header__bottom {
        margin-top: 30px; } }
    .header__bottom__nav-wrap {
      border-top: 1px solid rgba(62, 58, 57, 0.5);
      padding-top: 30px;
      position: relative; }
      @media (min-width: 569px) {
        .header__bottom__nav-wrap {
          display: flex; } }
      @media (max-width: 568px) {
        .header__bottom__nav-wrap {
          margin-top: 30px; } }
  .header__logo {
    width: 260px; }
    @media (max-width: 568px) {
      .header__logo {
        margin: 0 auto 30px;
        display: block; } }
  .header__tel-box {
    display: flex;
    align-items: center; }
    .header__tel-box__description {
      font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
      display: block;
      margin-left: 5px; }
  .header__tel {
    background: url(/images/icons/tel-black-filled.png) left center/auto 18px no-repeat;
    padding-left: 25px;
    font-size: 18px;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important; }
  .header__address {
    display: block;
    margin-top: 10px; }
    @media (max-width: 568px) {
      .header__address {
        font-size: 10px;
        margin-top: 5px; } }
  .header__language-nav {
    display: flex;
    margin-bottom: 30px; }
    @media (min-width: 569px) {
      .header__language-nav {
        position: absolute;
        bottom: 100%;
        right: 0; } }
    .header__language-nav .nav-item {
      font-size: 12px;
      font-weight: 500;
      color: #231815;
      letter-spacing: .15em; }
      @media (min-width: 569px) {
        .header__language-nav .nav-item {
          margin-left: 30px; } }
      @media (max-width: 568px) {
        .header__language-nav .nav-item {
          margin-right: 15px; }
          .header__language-nav .nav-item:last-child {
            margin: 0; } }
.desktop-grand-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(247, 247, 247, 0.9); }
  @media (max-width: 568px) {
    .desktop-grand-nav-wrap {
      display: none !important; } }
  .desktop-grand-nav-wrap__logo-box {
    margin: 0; }
  .desktop-grand-nav-wrap__logo {
    height: 50px;
    display: block; }

.desktop-grand-nav {
  display: flex;
  align-items: center; }
  .desktop-grand-nav .nav-item {
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #231815;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    letter-spacing: .15em;
    position: relative; }
    @media (min-width: 569px) {
      .desktop-grand-nav .nav-item:hover {
        opacity: 1;
        color: #b28247; } }
.desktop-language-nav-opener {
  height: 20px;
  padding-right: 20px;
  cursor: pointer;
  position: relative; }
  .desktop-language-nav-opener:after {
    content: "▼";
    display: block;
    -webkit-transform: translate(0, -50%) scale(0.66);
    transform: translate(0, -50%) scale(0.66);
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    position: absolute;
    top: 50%;
    right: 0; }
  .desktop-language-nav-opener.active:after {
    -webkit-transform: translate(0, -50%) scale(0.66) rotate(180deg);
    transform: translate(0, -50%) scale(0.66) rotate(180deg);
    -webkit-transition: all .15s ease;
    transition: all .15s ease; }

.desktop-language-nav {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: #fff;
  padding: 5px 0; }
  .desktop-language-nav .nav-item {
    display: block;
    padding: 10px 25px;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #231815;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    letter-spacing: .05em;
    white-space: nowrap; }
    @media (min-width: 569px) {
      .desktop-language-nav .nav-item:hover {
        opacity: 1;
        color: #b28247; } }
.desktop-follow-nav {
  position: fixed;
  bottom: 50px;
  right: 0;
  width: 70px;
  z-index: 50;
  -webkit-transition: all .2s ease;
  transition: all .2s ease; }
  @media (max-width: 568px) {
    .desktop-follow-nav {
      display: none !important; } }
  .desktop-follow-nav .nav-item {
    display: block;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid;
    width: 12px;
    padding-bottom: 15px;
    margin: 0 auto 15px; }
    .desktop-follow-nav .nav-item:last-child {
      padding: 0;
      border: none;
      margin-bottom: 0; }
    .desktop-follow-nav .nav-item:before {
      content: "";
      display: block;
      width: 30px;
      height: 30px;
      margin: 0 -9px 5px; }
    .desktop-follow-nav .nav-item.of-stay:before {
      background: url(/images/icons/stay.png) center center/auto 29px no-repeat; }
    .desktop-follow-nav .nav-item.of-airline:before {
      background: url(/images/icons/airline.png) center center/auto 19px no-repeat; }
    .desktop-follow-nav .nav-item.of-restaurant:before {
      background: url(/images/icons/restaurant.png) center center/auto 10px no-repeat; }
    .desktop-follow-nav .nav-item__txt {
      display: block; }
  .desktop-follow-nav.of-colored {
    bottom: 120px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease; }
    .desktop-follow-nav.of-colored .nav-item {
      color: #231815; }
      .desktop-follow-nav.of-colored .nav-item.of-stay:before {
        background: url(/images/icons/stay-black.png) center center/auto 29px no-repeat; }
      .desktop-follow-nav.of-colored .nav-item.of-airline:before {
        background: url(/images/icons/airline-black.png) center center/auto 19px no-repeat; }
      .desktop-follow-nav.of-colored .nav-item.of-restaurant:before {
        background: url(/images/icons/restaurant-black.png) center center/auto 10px no-repeat; }

.footer {
  background: #121212;
  color: #fff; }
  @media (min-width: 569px) {
    .footer {
      padding: 100px; } }
  @media (max-width: 568px) {
    .footer {
      padding: 30px 20px 100px;
      font-size: 10px; } }
  .footer a {
    color: #fff; }
  .footer__container {
    max-width: 800px;
    margin: 0 auto; }
  .footer__logo-box {
    display: block;
    margin: 0 0 50px;
    text-align: center; }
    @media (max-width: 568px) {
      .footer__logo-box {
        margin-bottom: 20px; } }
  .footer__logo {
    height: 100px; }
    @media (max-width: 568px) {
      .footer__logo {
        height: 85px; } }
  .footer__tel-box {
    text-align: center;
    margin-bottom: 50px; }
    @media (max-width: 568px) {
      .footer__tel-box {
        margin-bottom: 20px; } }
    .footer__tel-box__description {
      font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
      display: block;
      margin-top: 5px; }
  .footer__tel {
    background: url(/images/icons/tel-white-filled.png) left center/auto 24px no-repeat;
    padding-left: 30px;
    font-size: 28px;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    margin-left: -30px; }
    @media (max-width: 568px) {
      .footer__tel {
        font-size: 24px; } }
  .footer__address-box {
    text-align: center;
    margin-bottom: 50px; }
    @media (max-width: 568px) {
      .footer__address-box {
        margin-bottom: 20px; } }
  @media (min-width: 569px) {
    .footer__nav {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 50px; } }
  @media (max-width: 568px) {
    .footer__nav {
      margin: 0 -5px 20px;
      text-align: center; } }
  .footer__nav .nav-item {
    padding: 0 10px; }
    @media (max-width: 568px) {
      .footer__nav .nav-item {
        padding: 5px;
        display: inline-block; } }
  .footer__nav.of-center {
    display: flex;
    justify-content: center; }
    .footer__nav.of-center .nav-item.of-review {
      text-align: center; }
      .footer__nav.of-center .nav-item.of-review iframe {
        margin-right: -25px !important; }
      .footer__nav.of-center .nav-item.of-review .btn-box {
        display: flex;
        justify-content: center; }
      .footer__nav.of-center .nav-item.of-review .btn {
        min-width: 145px;
        height: 35px; }
  .footer__staynavi-bnr {
    display: block;
    margin: 0 auto 40px; }
    @media (max-width: 568px) {
      .footer__staynavi-bnr {
        margin-bottom: 20px; } }
  .footer__language-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    @media (min-width: 569px) {
      .footer__language-nav {
        margin-bottom: 50px; } }
    @media (max-width: 568px) {
      .footer__language-nav {
        margin-bottom: 20px; } }
    .footer__language-nav .nav-item {
      padding: 0 10px; }
      @media (max-width: 568px) {
        .footer__language-nav .nav-item {
          padding: 0 10px 0 0; } }
      @media (max-width: 568px) {
        .footer__language-nav .nav-item.of-title {
          width: 100%;
          padding-bottom: 5px; } }
  .footer__company-nav {
    margin-bottom: 50px;
    text-align: center; }
    @media (max-width: 568px) {
      .footer__company-nav {
        margin-bottom: 20px; } }
    .footer__company-nav .nav-item {
      display: inline-block;
      opacity: .5;
      padding: 0 20px 10px 0; }
      @media (max-width: 568px) {
        .footer__company-nav .nav-item {
          padding: 5px 10px 5px 0; } }
      @media (min-width: 569px) {
        .footer__company-nav .nav-item:hover {
          opacity: .3; } }
  .footer__copyright {
    opacity: .5;
    text-align: center;
    display: block; }
  .footer__sns-nav {
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 568px) {
      .footer__sns-nav {
        margin: 30px 0 50px; } }
    .footer__sns-nav .nav-item {
      display: flex;
      align-items: center;
      font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
      margin-left: 15px; }
      .footer__sns-nav .nav-item__icon {
        width: 16px; }
      .footer__sns-nav .nav-item .txt {
        margin-left: .5em; }

.totop {
  position: fixed;
  z-index: 20;
  bottom: 21px;
  right: 21px;
  background: #000;
  width: 28px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px; }
  @media (max-width: 568px) {
    .totop {
      bottom: 75px;
      right: 10px;
      width: 25px;
      height: 45px; } }
  .totop__icon {
    height: 7px;
    display: block;
    -webkit-transition: all .2s ease;
    transition: all .2s ease; }
    @media (max-width: 568px) {
      .totop__icon {
        height: 6px; } }
  @media (min-width: 569px) {
    .totop:hover {
      opacity: 1; }
      .totop:hover .totop__icon {
        -webkit-transform: translate(0, -10px);
        transform: translate(0, -10px);
        -webkit-transition: all .2s ease;
        transition: all .2s ease; } }
.btn-box {
  display: inline-block; }
  .btn-box.of-flex-center {
    display: flex;
    justify-content: center; }
  .btn-box.of-flex-end {
    display: flex;
    justify-content: flex-end; }
  @media (min-width: 569px) {
    .btn-box.of-flex-center-on-desktop {
      display: flex;
      justify-content: center; } }
.u-with-plus, .u-with-arw, .btn.of-darkgreen, .btn.of-navy, .btn.of-gold-ghost.with-arw, .btn.of-beige-ghost.with-arw {
  position: relative; }
  .u-with-plus:after, .u-with-arw:after, .btn.of-darkgreen:after, .btn.of-navy:after, .btn.of-gold-ghost.with-arw:after, .btn.of-beige-ghost.with-arw:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid;
    border-radius: 50%;
    margin-left: .5em; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: .5em 1em;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: bottom;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  border-radius: 0; }
  @media (min-width: 569px) {
    .btn {
      min-width: 180px; } }
  @media (max-width: 568px) {
    .btn {
      min-width: 120px; }
      .btn.u-show-on-mobile {
        display: flex; } }
  .btn.of-white-ghost {
    color: #fff;
    border: 1px solid; }
  .btn.of-beige-ghost {
    color: #b5b1a7;
    border: 1px solid; }
    .btn.of-beige-ghost.with-arw:after {
      background: url(/images/icons/arw-right-gold.svg) center center/auto 6px no-repeat; }
  .btn.of-gold-ghost {
    color: #b28247;
    border: 1px solid;
    background: #fff; }
    .btn.of-gold-ghost.with-arw:after {
      background: url(/images/icons/arw-right-gold.svg) center center/auto 6px no-repeat; }
  .btn.of-gold {
    color: #fff;
    background: #b28247; }
  .btn.of-navy {
    background: #0b0f38;
    color: #fff;
    border: none; }
    .btn.of-navy:after {
      background: url(/images/icons/arw-right-white.svg) center center/auto 6px no-repeat; }
  .btn.of-darkgreen {
    background: #08261f;
    color: #fff;
    border: none; }
    .btn.of-darkgreen:after {
      background: url(/images/icons/arw-right-white.svg) center center/auto 6px no-repeat; }
  .btn.of-beige {
    background: #b5b1a7;
    color: #fff; }
  .btn.of-small {
    height: 35px;
    padding-right: 1em;
    padding-left: 1em;
    min-width: 1px; }
  @media (min-width: 569px) {
    .btn:hover {
      opacity: 1;
      -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
              box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      -webkit-transition: all .2s ease;
      transition: all .2s ease; } }
.link-box.of-align-right {
  display: flex;
  justify-content: flex-end; }

.link {
  font-size: 14px; }
  .link--circled-arw-left {
    display: flex;
    align-items: center; }
    .link--circled-arw-left:before {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: url(/images/icons/arw-right-black.svg) center center/6px auto no-repeat;
      border: 1px solid;
      margin-right: .5em; }

.ui-datepicker {
  z-index: 10000 !important; }

.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center; }

.ui-widget-header {
  border: 1px solid #f6f2ee;
  background: #f6f2ee;
  color: #62574e; }

.ui-widget-header a {
  color: #62574e; }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #665434;
  background: #665434; }

html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid rgba(102, 84, 52, 0.5);
  background: #f6f2ee;
  color: #62574e; }

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #bcb6a8;
  background: #bcb6a8; }

.ui-state-checked {
  border: 1px solid #bcb6a8;
  background: #bcb6a8; }

.datepicker-box:hover {
  cursor: pointer; }

.datepicker-box input {
  max-width: 90px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  border-radius: 0; }
  @media (min-width: 569px) {
    .datepicker-box input {
      -webkit-appearance: none;
      border: none; } }
  @media (max-width: 568px) {
    .datepicker-box input {
      border: 1px solid #ccc; } }
.datepicker-box .ui-datepicker-trigger {
  height: 20px;
  display: inline-block;
  vertical-align: bottom;
  margin: 0 0 5px 0; }

.remodal {
  max-width: 1000px; }
  @media (max-width: 568px) {
    .remodal {
      padding: 20px 10px; } }
  .remodal .remodal-close {
    top: 0;
    left: auto;
    right: 0;
    background: rgba(35, 24, 21, 0.5);
    z-index: 10; }
    .remodal .remodal-close:before, .remodal .remodal-close:after {
      content: "";
      display: block;
      width: 1px;
      height: 50%;
      background: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform-origin: center center;
              transform-origin: center center; }
    .remodal .remodal-close:before {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg); }
    .remodal .remodal-close:after {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }

.slick-prev, .slick-next {
  width: 18px;
  height: 18px;
  z-index: 5; }
  .slick-prev:before, .slick-next:before {
    display: none; }

.slick-prev {
  background: url(/images/icons/arw-left-white.svg) center center/contain no-repeat;
  left: 5px; }

.slick-next {
  background: url(/images/icons/arw-right-white.svg) center center/contain no-repeat;
  right: 5px; }

.slick-dots li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #eee;
  padding: 0; }
  .slick-dots li button {
    display: none; }
  .slick-dots li.slick-active {
    background: #b5b5b6; }

.reserve {
  background: #f7f7f7; }

.reserve-icon-nav {
  background: #fff;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .reserve-icon-nav .nav-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 30px; }
    .reserve-icon-nav .nav-item:before {
      content: "";
      display: block;
      width: 30px;
      height: 30px;
      margin-right: 1em; }
    .reserve-icon-nav .nav-item.of-stay:before {
      background: url(/images/icons/stay-black-filled.png) center center/auto 28px no-repeat; }
    .reserve-icon-nav .nav-item.of-airline:before {
      background: url(/images/icons/airline-black-filled.png) center center/auto 18px no-repeat; }
    .reserve-icon-nav .nav-item.of-restaurant:before {
      background: url(/images/icons/restaurant-black-filled.png) center center/auto 10px no-repeat; }
    .reserve-icon-nav .nav-item:after {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      background: url(/images/icons/arw-right-black.svg) center center/auto 6px no-repeat;
      border: 1px solid;
      border-radius: 50%;
      margin-left: 1em; }

.tel-reserve-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end; }
  @media (max-width: 568px) {
    .tel-reserve-box {
      justify-content: center; } }
  .tel-reserve-box__title {
    font-size: 14px;
    margin-right: 20px; }
  .tel-reserve-box__tel {
    display: block;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    font-size: 28px;
    font-weight: 500;
    background: url(/images/icons/tel-black-filled.png) left center/19px 24px no-repeat;
    padding-left: 30px;
    margin-right: 20px; }
    @media (max-width: 568px) {
      .tel-reserve-box__tel {
        font-size: 24px; } }
  @media (min-width: 569px) {
    .tel-reserve-box__description {
      color: #727171; } }
  @media (max-width: 568px) {
    .tel-reserve-box__description {
      font-size: 10px;
      width: 100%;
      text-align: center; } }
  @media (min-width: 569px) {
    .tel-reserve-box .btn-box {
      display: flex;
      margin-right: 20px; } }
  @media (max-width: 568px) {
    .tel-reserve-box .btn-box {
      margin-bottom: 20px; } }
  .tel-reserve-box .btn-box.of-w100 {
    width: 100%;
    justify-content: center; }
  .tel-reserve-box .btn-box .btn {
    font-size: 12px; }
    @media (min-width: 569px) {
      .tel-reserve-box .btn-box .btn {
        margin-right: 5px; } }
    @media (max-width: 568px) {
      .tel-reserve-box .btn-box .btn {
        margin: 0 0 5px; } }
    .tel-reserve-box .btn-box .btn:last-child {
      margin: 0; }

.reserve-form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  color: #3e3a39;
  display: flex;
  align-items: center; }
  @media (min-width: 569px) {
    .reserve-form {
      background: #fff;
      padding: 30px 20px;
      justify-content: center;
      width: 100%; } }
  @media (max-width: 568px) {
    .reserve-form {
      flex-wrap: wrap;
      text-align: left; } }
  .reserve-form__field {
    position: relative; }
    @media (min-width: 569px) {
      .reserve-form__field {
        padding: 0 20px; } }
    @media (max-width: 568px) {
      .reserve-form__field {
        padding: 5px; } }
    @media (min-width: 569px) {
      .reserve-form__field:after {
        content: "";
        display: block;
        width: 1px;
        height: 15px;
        background: rgba(35, 24, 21, 0.5);
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); } }
    .reserve-form__field:last-child:after {
      display: none; }
  .reserve-form .btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
    @media (max-width: 568px) {
      .reserve-form .btn-box {
        width: 100%;
        margin-top: 20px; } }
    .reserve-form .btn-box .btn {
      margin: 5px; }
      @media (min-width: 569px) {
        .reserve-form .btn-box .btn {
          min-width: 150px; } }
      @media (max-width: 568px) {
        .reserve-form .btn-box .btn {
          font-size: 12px;
          min-width: 240px; } }
    .reserve-form .btn-box.reserve-form__misc {
      position: absolute;
      top: 100%;
      left: 0; }
  @media (min-width: 569px) {
    .reserve-form__notice {
      font-size: 10px;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      text-align: center;
      letter-spacing: 0;
      margin: 5px 0 0; } }
  @media (max-width: 568px) {
    .reserve-form__notice {
      display: block;
      margin-bottom: 10px;
      font-size: 10px; } }
  .reserve-form .datepicker-box {
    display: inline-block;
    padding: 0 10px; }
    @media (max-width: 568px) {
      .reserve-form .datepicker-box {
        padding: 0; } }
  .reserve-form select {
    cursor: pointer;
    padding: 0 20px; }
    @media (min-width: 569px) {
      .reserve-form select {
        -webkit-appearance: none;
        border: none; } }
  .reserve-form__label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 10px; }
    @media (max-width: 568px) {
      .reserve-form__label.u-show-on-mobile {
        display: inline-block; } }
  .reserve-form__arw-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
    margin: 0 -5px; }
    .reserve-form__arw-nav > .nav-item {
      display: flex;
      align-items: center;
      font-size: 12px;
      padding: 5px; }
      .reserve-form__arw-nav > .nav-item:after {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        border: 1px solid rgba(62, 58, 57, 0.5);
        border-radius: 50%;
        background: url(/images/icons/arw-right-black.svg) center center/auto 6px no-repeat; }
        @media (max-width: 568px) {
          .reserve-form__arw-nav > .nav-item:after {
            margin-left: .5em; } }
.modal-stay-reserve-form__headline {
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
  font-weight: 500;
  font-size: 20px;
  text-align: center; }

.form__btn-box {
  margin: 20px 0; }
  @media (min-width: 569px) {
    .form__btn-box {
      display: flex;
      align-items: center;
      justify-content: space-between; } }
  @media (max-width: 568px) {
    .form__btn-box {
      padding: 0 10px; } }
  @media (min-width: 569px) {
    .form__btn-box .btn {
      width: 33%;
      height: 45px; } }
  @media (max-width: 568px) {
    .form__btn-box .btn {
      margin: 0 0 10px; } }
  .form__btn-box .tab-opener {
    cursor: pointer; }
    .form__btn-box .tab-opener.current {
      background: #b5b1a7;
      color: #fff;
      border-color: #b5b1a7; }
      .form__btn-box .tab-opener.current:hover {
        -webkit-box-shadow: none;
                box-shadow: none; }

.m-follow-reserve-opener {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  background: #1a1a1a;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
  color: #fff;
  letter-spacing: .1em; }
  .m-follow-reserve-opener .with-arw-right {
    display: flex;
    align-items: center; }
    .m-follow-reserve-opener .with-arw-right:after {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      background: url(/images/icons/arw-right-white.svg) center center/auto 6px no-repeat;
      margin-left: .5em; }

.m-follow-reserve-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 30px 100px;
  background: #595757;
  color: #fff;
  z-index: 200;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: scroll; }
  .m-follow-reserve-box a {
    color: #fff; }
  .m-follow-reserve-box__title-box {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #1a1a1a;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    color: #fff;
    letter-spacing: .1em; }
  .m-follow-reserve-box-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px; }
    .m-follow-reserve-box-close .bar {
      background: #fff;
      width: 22px;
      height: 2px;
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 1px; }
      .m-follow-reserve-box-close .bar:nth-child(1) {
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg); }
      .m-follow-reserve-box-close .bar:nth-child(2) {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg); }
  .m-follow-reserve-box__icon-nav {
    padding: 0;
    margin: 0; }
    .m-follow-reserve-box__icon-nav li {
      list-style: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
    .m-follow-reserve-box__icon-nav li > .nav-item {
      display: flex;
      align-items: center;
      position: relative;
      padding: 15px 0 15px 5px; }
      .m-follow-reserve-box__icon-nav li > .nav-item:before {
        content: "";
        display: block;
        width: 30px;
        margin: 0 .5em 0 0;
        height: 30px; }
      .m-follow-reserve-box__icon-nav li > .nav-item.of-stay:before {
        background: url(/images/icons/stay.png) center center/auto 29px no-repeat; }
      .m-follow-reserve-box__icon-nav li > .nav-item.of-airline:before {
        background: url(/images/icons/airline.png) center center/auto 19px no-repeat; }
      .m-follow-reserve-box__icon-nav li > .nav-item.of-restaurant:before {
        background: url(/images/icons/restaurant.png) center center/auto 10px no-repeat; }
      .m-follow-reserve-box__icon-nav li > .nav-item:after {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        background: url(/images/icons/arw-right-white.svg) center center/auto 6px no-repeat;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%); }
      .m-follow-reserve-box__icon-nav li > .nav-item.ac-opener:after {
        -webkit-transform: translate(0, -50%) rotate(90deg);
        transform: translate(0, -50%) rotate(90deg); }
      .m-follow-reserve-box__icon-nav li > .nav-item.ac-opener.active:after {
        -webkit-transform: translate(0, -50%) rotate(-90deg);
        transform: translate(0, -50%) rotate(-90deg); }
  .m-follow-reserve-box__ac-target {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px 0;
    display: none; }
    .m-follow-reserve-box__ac-target .btn.of-small {
      height: 45px; }
  .m-follow-reserve-box .reserve-form, .m-follow-reserve-box .restaurant-reserve-form {
    background: transparent;
    color: #fff; }
    .m-follow-reserve-box .reserve-form .datepicker-box input, .m-follow-reserve-box .restaurant-reserve-form .datepicker-box input {
      background: transparent;
      border: 1px solid;
      color: #fff;
      font-size: 12px;
      max-width: 85px; }
    .m-follow-reserve-box .reserve-form select, .m-follow-reserve-box .restaurant-reserve-form select {
      border: 1px solid;
      color: #fff;
      background: transparent;
      height: 30px;
      font-size: 12px;
      border-radius: 0; }
    .m-follow-reserve-box .reserve-form .btn.of-navy, .m-follow-reserve-box .restaurant-reserve-form .btn.of-navy {
      background: #b28247; }
  .m-follow-reserve-box .reserve-form__arw-nav > .nav-item:after {
    border-color: rgba(255, 255, 255, 0.5);
    background-image: url(/images/icons/arw-right-white.svg); }
  .m-follow-reserve-box .tel-reserve-box__tel {
    background-image: url(/images/icons/tel-white-filled.png); }

.section {
  padding: 100px; }
  @media (max-width: 568px) {
    .section {
      padding: 30px 20px; } }
  .section__container {
    max-width: 1000px;
    padding-bottom: 50px;
    margin: 0 auto; }
    @media (max-width: 568px) {
      .section__container {
        padding-bottom: 20px; } }
    .section__container.of-half {
      max-width: 500px; }
    .section__container.of-small {
      max-width: 680px; }
    .section__container.of-large {
      max-width: 1200px; }
    .section__container:last-child {
      padding-bottom: 0; }
  .section__title {
    margin: 0 0 50px;
    letter-spacing: .2em; }
    @media (max-width: 568px) {
      .section__title {
        margin: 30px 0; } }
  .section__title__sub-txt {
    color: #c6c7c7; }

table.simple-table {
  margin: .5em 0; }
  table.simple-table th, table.simple-table td {
    vertical-align: top;
    text-align: left;
    padding: .5em .5em; }
  table.simple-table th {
    padding-right: .5em; }

.asterisk-list {
  padding: 0;
  margin: 0; }
  .asterisk-list li {
    position: relative;
    padding-left: 2em;
    list-style: none;
    margin-bottom: 1em; }
    .asterisk-list li:before {
      content: "※";
      position: absolute;
      top: 0;
      left: 0;
      display: block; }

.disc-list {
  padding: 0 0 0 2em;
  margin: 0; }
  .disc-list li {
    position: relative;
    list-style-type: disc;
    margin-bottom: 1em; }
    .disc-list li.u-mb0 {
      margin-bottom: 0; }

.remodal-list {
  margin: 0 -15px;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 568px) {
    .remodal-list {
      margin: 0; } }
  .remodal-list__item {
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .remodal-list__item {
        width: 33.33333%;
        padding: 0 15px 50px; } }
    @media (max-width: 568px) {
      .remodal-list__item {
        width: 100%;
        padding: 0 0 20px; } }
    @media (min-width: 569px) {
      .remodal-list__item:last-child, .remodal-list__item:nth-last-child(2), .remodal-list__item:nth-last-child(3) {
        padding-bottom: 0; } }
  .remodal-list__opener {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 167px; }
    .remodal-list__opener:after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(35, 24, 21, 0.5); }
    .remodal-list__opener:before {
      content: "";
      position: absolute;
      bottom: 10px;
      right: 10px;
      width: 14px;
      height: 14px;
      border: 1px solid #fff;
      border-radius: 50%;
      background: url(/images/icons/arw-right-white.svg) center center/auto 6px no-repeat;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      z-index: 10; }
    .remodal-list__opener__container {
      position: relative;
      z-index: 5;
      padding: 15px;
      text-align: center; }
    .remodal-list__opener__title {
      font-size: 14px;
      margin: 0; }
      .remodal-list__opener__title__label {
        font-size: 10px;
        font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
        display: block;
        opacity: .5;
        margin-top: .5em; }

ul.side-thumb-list {
  margin: 0;
  padding: 0; }

.side-thumb-list > li {
  display: flex;
  flex-wrap: wrap;
  list-style: none; }
  @media (min-width: 569px) {
    .side-thumb-list > li {
      margin: 0 -15px;
      padding-bottom: 50px; } }
  @media (max-width: 568px) {
    .side-thumb-list > li {
      padding-bottom: 30px; } }
  .side-thumb-list > li:last-child {
    padding-bottom: 0; }

.side-thumb-list__img-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (min-width: 569px) {
    .side-thumb-list__img-box {
      width: 33.33333%;
      padding: 0 15px; } }
  @media (max-width: 568px) {
    .side-thumb-list__img-box {
      padding: 0 0 20px; } }
  @media (min-width: 569px) {
    .side-thumb-list__img-box img {
      margin: 0; } }
.side-thumb-list__txt-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (min-width: 569px) {
    .side-thumb-list__txt-box {
      width: 66.66666%;
      padding: 0 15px; } }
.side-thumb-list__title {
  font-size: 18px;
  margin-bottom: 10px; }
  @media (max-width: 568px) {
    .side-thumb-list__title {
      font-size: 15px; } }
.side-thumb-list__txt {
  font-size: 14px;
  margin-bottom: 10px; }
  @media (max-width: 568px) {
    .side-thumb-list__txt {
      font-size: 12px; } }
ul.four-rows-list {
  margin: 0;
  padding: 0; }

@media (min-width: 569px) {
  .four-rows-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
    padding: 0; } }

.four-rows-list > li {
  list-style: none; }
  @media (min-width: 569px) {
    .four-rows-list > li {
      padding: 0 15px 50px;
      width: 25%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; } }
  @media (max-width: 568px) {
    .four-rows-list > li {
      padding-bottom: 30px; } }
  .four-rows-list > li:last-child {
    padding-bottom: 0; }

.four-rows-list__img-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 20px; }
  .four-rows-list__img-box img {
    margin: 0; }

.four-rows-list__txt-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.four-rows-list__title {
  font-size: 18px;
  margin-bottom: 10px; }
  @media (max-width: 568px) {
    .four-rows-list__title {
      font-size: 15px; } }
.four-rows-list__txt {
  font-size: 12px;
  margin-bottom: 10px; }

/***** firstview *****/
.top__bb {
  width: 100vw;
  height: 100vh;
  max-height: 800px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #231815;
  color: #fff;
  overflow: hidden; }
  @media (max-width: 568px) {
    .top__bb {
      align-content: flex-end;
      padding: 0 0 100px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; } }
  .top__bb__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .top__bb__slider.slick-slider, .top__bb__slider .slick-list, .top__bb__slider .slick-track {
      height: 100%; }
    .top__bb__slider .slide {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative; }
      .top__bb__slider .slide:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(35, 24, 21, 0.5); }
    .top__bb__slider .slick-dots, .top__bb__slider .slick-arrow {
      display: none !important; }
  .top__bb__container {
    position: relative;
    z-index: 5; }
    @media (max-width: 568px) {
      .top__bb__container {
        padding-bottom: 200px; } }
  .top__bb__logo {
    width: 85vw;
    display: block;
    margin: 0 auto 30px; }
  .top__bb__title {
    margin: 0;
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important; }
    @media (max-width: 568px) {
      .top__bb__title {
        font-size: 14px; } }
    .top__bb__title__catch {
      letter-spacing: .3em;
      margin-right: -1em;
      font-weight: 500;
      line-height: 1.8; }
  .top__bb__prize-list {
    margin: 0;
    padding: 0 10px;
    display: flex;
    z-index: 5;
    background: #fff; }
    @media (min-width: 569px) {
      .top__bb__prize-list {
        position: absolute;
        bottom: 50px;
        right: 70px; } }
    @media (max-width: 568px) {
      .top__bb__prize-list {
        margin-bottom: 20px; } }
    .top__bb__prize-list li {
      list-style: none;
      padding: 10px; }
      .top__bb__prize-list li img {
        width: 75px; }
        @media (max-width: 568px) {
          .top__bb__prize-list li img {
            width: 15vw; } }
  .top__bb__banner-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 5; }
    @media (max-width: 568px) {
      .top__bb__banner-list {
        padding: 0 0 30px; } }
    @media (min-width: 569px) {
      .top__bb__banner-list {
        position: absolute;
        bottom: 50px;
        left: 50px; } }
    .top__bb__banner-list li {
      list-style: none;
      padding-right: 10px; }
      @media (max-width: 568px) {
        .top__bb__banner-list li {
          padding: 0 5px; } }
      .top__bb__banner-list li a {
        display: block; }
      @media (min-width: 569px) {
        .top__bb__banner-list li img {
          max-height: 70px; } }
      @media (max-width: 568px) {
        .top__bb__banner-list li img {
          max-height: 50px; } }
  .top__bb__review-box {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10; }
    .top__bb__review-box iframe {
      width: 178px !important;
      display: block; }
    .top__bb__review-box .btn-box {
      margin-top: 5px; }
    .top__bb__review-box .btn {
      min-width: 145px;
      height: 35px; }

/***** plans *****/
.plan-list {
  margin: 0;
  padding: 0; }
  @media (min-width: 569px) {
    .plan-list {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px; } }
  .plan-list__item {
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .plan-list__item {
        width: 33.33333%;
        padding: 0 15px 30px; } }
    @media (max-width: 568px) {
      .plan-list__item {
        padding: 0 15px 15px; } }
  .plan-list a {
    color: #231815;
    display: block; }
  .plan-list__thumb {
    margin-bottom: 20px; }
  .plan-list__title {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    color: #b28247;
    position: relative; }
    .plan-list__title span {
      display: inline-block;
      position: relative;
      z-index: 5;
      background: #fff;
      padding: 0 .5em 0 0; }
    .plan-list__title:before {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: rgba(178, 130, 71, 0.5);
      position: absolute;
      top: 50%;
      left: 0; }
  .plan-list__txt {
    font-size: 14px; }
  @media (min-width: 569px) {
    .plan-list.slick-slider .slick-prev, .plan-list.slick-slider .slick-next {
      width: 30px;
      height: 30px;
      border: 1px solid #b28247;
      border-radius: 50%;
      top: 75%; } }
  .plan-list.slick-slider .slick-prev {
    background: url(/images/icons/arw-left-gold.svg) center center/9px auto no-repeat; }
    @media (min-width: 569px) {
      .plan-list.slick-slider .slick-prev {
        left: -30px; } }
    @media (max-width: 568px) {
      .plan-list.slick-slider .slick-prev {
        left: -10px;
        top: 33%; } }
  .plan-list.slick-slider .slick-next {
    background: url(/images/icons/arw-right-gold.svg) center center/9px auto no-repeat; }
    @media (min-width: 569px) {
      .plan-list.slick-slider .slick-next {
        right: -30px; } }
    @media (max-width: 568px) {
      .plan-list.slick-slider .slick-next {
        right: -10px;
        top: 33%; } }
.plan-nav {
  font-size: 16px;
  width: 100%;
  margin: 0 0 50px; }
  @media (min-width: 569px) {
    .plan-nav {
      display: table;
      table-layout: fixed; } }
  @media (max-width: 568px) {
    .plan-nav {
      font-size: 14px;
      margin: 60px 0 0; } }
  .plan-nav .nav-item-box {
    text-align: center;
    position: relative; }
    @media (min-width: 569px) {
      .plan-nav .nav-item-box {
        display: table-cell; } }
    @media (max-width: 568px) {
      .plan-nav .nav-item-box {
        display: inline-block;
        padding: .5em 1em;
        color: #727171;
        border: 1px solid;
        border-radius: 2px;
        margin: 0 5px 5px 0;
        background: #fff; } }
    @media (min-width: 569px) {
      .plan-nav .nav-item-box:after {
        content: "|";
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%); } }
    .plan-nav .nav-item-box:last-child:after {
      display: none; }
  @media (max-width: 568px) {
    .plan-nav .nav-item {
      color: #727171; } }
/***** welcome *****/
@media (max-width: 568px) {
  .welcome {
    padding-right: 0;
    padding-left: 0; } }

.welcome .section__container {
  display: flex;
  flex-wrap: wrap; }

.welcome__bb {
  width: 100%;
  height: 400px;
  background: url(/images/welcome/bb.jpg) center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (min-width: 569px) {
    .welcome__bb {
      max-width: 1000px;
      margin: 0 auto 100px; } }
  @media (max-width: 568px) {
    .welcome__bb {
      height: 53.33vw;
      margin: 0 0 30px; } }
  .welcome__bb:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(35, 24, 21, 0.5); }
  .welcome__bb__logo {
    position: relative;
    height: 110px; }
    @media (max-width: 568px) {
      .welcome__bb__logo {
        height: 20.53vw; } }
@media (min-width: 569px) {
  .welcome__title-box, .welcome__txt-box {
    width: 50%; } }

@media (max-width: 568px) {
  .welcome__title-box, .welcome__txt-box {
    padding-right: 20px;
    padding-left: 20px; } }

.welcome__title {
  font-size: 24px; }
  @media (max-width: 568px) {
    .welcome__title {
      font-size: 18px; } }
  .welcome__title__sub-txt {
    font-size: 14px;
    color: #c6c7c7;
    display: block;
    margin: 30px 0 0; }
    @media (max-width: 568px) {
      .welcome__title__sub-txt {
        font-size: 10px;
        margin: 10px 0 0; } }
@media (min-width: 569px) {
  .welcome__txt-box {
    font-size: 14px; } }

.hotel-group-nav-box {
  width: 100%;
  color: #b28247;
  border: 1px solid;
  text-align: center;
  padding: 40px 30px 30px;
  margin: 50px 0 0;
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important; }
  @media (max-width: 568px) {
    .hotel-group-nav-box {
      width: 70vw;
      margin: 30px auto 0;
      padding: 30px 20px; } }
  .hotel-group-nav-box a {
    color: #b28247; }
  .hotel-group-nav-box__title {
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 30px; }
    @media (max-width: 568px) {
      .hotel-group-nav-box__title {
        font-size: 14px;
        margin: 0 0 20px; } }
    .hotel-group-nav-box__title__sub-txt {
      display: block;
      font-size: 12px;
      opacity: .5;
      margin: .5em 0 0; }
      @media (max-width: 568px) {
        .hotel-group-nav-box__title__sub-txt {
          font-size: 10px; } }
@media (min-width: 569px) {
  .hotel-group-nav {
    display: flex;
    justify-content: center; } }

.hotel-group-nav__item {
  font-size: 15px; }
  @media (max-width: 568px) {
    .hotel-group-nav__item {
      font-size: 13px;
      padding: 5px 0; } }
  @media (min-width: 569px) {
    .hotel-group-nav__item:after {
      content: "/";
      margin: 0 1em;
      display: inline-block; } }
  .hotel-group-nav__item:last-child:after {
    display: none; }

/***** feature *****/
.feature {
  background: #f0f4f2; }
  .feature__title {
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid rgba(35, 24, 21, 0.2);
    padding: 0 0 1em;
    margin: 0 0 50px; }
    @media (max-width: 568px) {
      .feature__title {
        font-size: 15px;
        margin: 0 0 20px; } }
.feature-thumb-list {
  padding: 0;
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 568px) {
    .feature-thumb-list {
      margin: 0 -5px; } }
  .feature-thumb-list__item {
    width: 33.33333%;
    padding: 0 15px 50px;
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 568px) {
      .feature-thumb-list__item {
        width: 50%;
        padding: 0 5px 30px; } }
    .feature-thumb-list__item__title {
      display: flex;
      align-items: flex-start;
      font-size: 14px;
      font-weight: normal;
      margin: 10px 0; }
      @media (max-width: 568px) {
        .feature-thumb-list__item__title {
          font-size: 10px;
          margin: 10px 0 0; } }
    .feature-thumb-list__item__icon {
      max-height: 25px;
      max-width: 25px;
      margin: -0.25em 1em 0 0; }
      @media (max-width: 568px) {
        .feature-thumb-list__item__icon {
          max-height: 12px;
          margin: 0 .5em 0 0; } }
    .feature-thumb-list__item__description {
      margin: 0; }
      @media (max-width: 568px) {
        .feature-thumb-list__item__description {
          font-size: 10px;
          line-height: 1.4;
          margin: .5em 0 0; } }
    .feature-thumb-list__item__link {
      color: #b28247;
      font-size: 12px;
      margin: 0 0 0 1em; }
      @media (max-width: 568px) {
        .feature-thumb-list__item__link {
          font-size: 10px;
          margin: .5em 0 0; } }
.feature-icon-list {
  padding: 0;
  margin: 0;
  width: 100%; }
  @media (min-width: 569px) {
    .feature-icon-list {
      display: table;
      table-layout: fixed; } }
  @media (max-width: 568px) {
    .feature-icon-list {
      display: flex;
      flex-wrap: wrap; } }
  .feature-icon-list__item {
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .feature-icon-list__item {
        display: table-cell;
        vertical-align: top;
        padding: 0; } }
    @media (max-width: 568px) {
      .feature-icon-list__item {
        width: 33.33333%;
        padding: 0 0 30px; } }
    .feature-icon-list__item__icon-box {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 30px; }
    .feature-icon-list__item__icon {
      max-height: 60px;
      display: block; }
      .feature-icon-list__item__icon.of-convenience_store, .feature-icon-list__item__icon.of-baggage {
        height: 50px; }
    .feature-icon-list__item__title {
      font-size: 14px;
      font-weight: normal;
      margin: 0;
      text-align: center; }
      @media (max-width: 568px) {
        .feature-icon-list__item__title {
          font-size: 10px; } }
/***** tourism *****/
.tourism {
  background: #f4f4f4; }

.tourism-slider-wrap {
  position: relative;
  z-index: 5; }
  @media (max-width: 568px) {
    .tourism-slider-wrap {
      overflow: hidden; } }
.tourism-slider {
  max-width: 1200px;
  margin: 0 auto; }
  @media (max-width: 568px) {
    .tourism-slider {
      width: 130%;
      left: -15%; } }
  @media (min-width: 569px) {
    .tourism-slider .slick-list {
      padding: 0 300px !important; } }
  @media (min-width: 569px) {
    .tourism-slider .slick-prev, .tourism-slider .slick-next {
      width: 95px;
      height: 95px;
      border-radius: 50%;
      top: 33%; } }
  @media (max-width: 568px) {
    .tourism-slider .slick-prev, .tourism-slider .slick-next {
      top: 20%; } }
  .tourism-slider .slick-prev {
    background: url(/images/icons/arw-left-black.svg) center center/18px auto #fff no-repeat;
    left: 15%; }
    @media (max-width: 568px) {
      .tourism-slider .slick-prev {
        left: 12%;
        background: url(/images/icons/arw-left-black.svg) center center/18px auto no-repeat; } }
  .tourism-slider .slick-next {
    background: url(/images/icons/arw-right-black.svg) center center/18px auto #fff no-repeat;
    right: 15%; }
    @media (max-width: 568px) {
      .tourism-slider .slick-next {
        right: 12%;
        background: url(/images/icons/arw-right-black.svg) center center/18px auto no-repeat; } }
.tourism-slide {
  display: block;
  padding: 100px 70px;
  margin: 0 0 50px; }
  @media (max-width: 568px) {
    .tourism-slide {
      padding: 0 20px; } }
  @media (min-width: 569px) {
    .tourism-slide.slick-center {
      -webkit-transform: scale(1.5);
      transform: scale(1.5); } }
  .tourism-slide.slick-center .tourism-slide__txt-box {
    display: block; }
  .tourism-slide__img {
    width: 100%;
    display: block; }
  .tourism-slide__txt-box {
    display: none; }
  .tourism-slide__title {
    margin: 20px 0;
    font-size: 14px;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    font-weight: 500; }
    .tourism-slide__title__label {
      display: block;
      opacity: .5;
      margin: .5em 0 0;
      font-size: 10px; }
      @media (max-width: 568px) {
        .tourism-slide__title__label {
          font-size: 12px; } }
    .tourism-slide__title small {
      font-size: 10px;
      font-size: 12px; }
  .tourism-slide__description {
    font-size: 10px;
    margin: 0; }
    @media (min-width: 569px) {
      .tourism-slide__description {
        display: table;
        width: 100%; } }
    @media (max-width: 568px) {
      .tourism-slide__description {
        font-size: 12px; } }
    @media (min-width: 569px) {
      .tourism-slide__description .of-txt {
        display: table-cell;
        vertical-align: top; } }
  @media (min-width: 569px) {
    .tourism-slide__access-label-box-wrap {
      display: table-cell; } }
  .tourism-slide__access-label-box {
    display: flex;
    margin-top: -5px; }
    @media (max-width: 568px) {
      .tourism-slide__access-label-box {
        margin: 10px 0 0;
        justify-content: center; } }
  .tourism-slide__access-label {
    display: flex;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #b2b2b3;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 0 10px; }
    .tourism-slide__access-label__icon {
      display: block;
      max-width: 14px;
      max-height: 14px;
      margin: 0 auto 6px; }
    .tourism-slide__access-label__txt {
      font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
      width: 100%;
      font-size: 10px; }
      .tourism-slide__access-label__txt strong {
        font-size: 20px;
        line-height: 1; }
  @media (max-width: 568px) {
    .tourism-slide .btn-box {
      display: flex;
      justify-content: center; } }
  .tourism-slide .btn {
    font-size: 10px;
    margin-top: 15px; }

/***** news *****/
.news-list {
  padding: 0; }
  @media (min-width: 569px) {
    .news-list {
      margin: 0 -25px;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end; } }
  @media (max-width: 568px) {
    .news-list {
      margin: 0; } }
  .news-list li {
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .news-list li {
        width: 50%;
        padding: 0 25px 50px; } }
    @media (max-width: 568px) {
      .news-list li {
        padding: 0 0 20px; } }
  .news-list a {
    color: #231815;
    display: block;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(35, 24, 21, 0.1);
    position: relative; }
  .news-list__title {
    font-size: 14px; }
    @media (max-width: 568px) {
      .news-list__title {
        margin-bottom: 10px; } }
  .news-list__date {
    font-size: 14px;
    margin-right: .5em; }
    @media (max-width: 568px) {
      .news-list__date {
        font-size: 12px; } }
  .news-list__label {
    color: #b28247;
    border: 1px solid;
    display: inline-block;
    padding: .15em .3em;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important; }
    @media (min-width: 569px) {
      .news-list__label {
        position: absolute;
        bottom: 5px;
        right: 0; } }
/***** access *****/
@media (max-width: 568px) {
  .access__gmap {
    height: 220px; } }

.access__api-gmap {
  height: 400px; }
  @media (max-width: 568px) {
    .access__api-gmap {
      height: 220px; } }
.access__address-box {
  align-items: center; }
  @media (min-width: 569px) {
    .access__address-box {
      display: flex;
      margin: 50px 0; } }
  @media (max-width: 568px) {
    .access__address-box {
      margin: 30px 0; } }
  .access__address-box__logo-box {
    display: block; }
  @media (min-width: 569px) {
    .access__address-box__logo {
      width: 310px;
      height: 45px; } }
  @media (max-width: 568px) {
    .access__address-box__logo {
      height: 38px; } }
  .access__address-box__address {
    margin: 0 0 0 50px; }
    @media (max-width: 568px) {
      .access__address-box__address {
        margin: 20px 0 0;
        text-align: center; } }
.access-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 40px; }
  .access-nav__item {
    display: flex;
    align-items: center;
    padding: 10px 0; }
    .access-nav__item:before {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background: url(/images/icons/arw-right-white.svg) center center/auto 6px #08261f no-repeat;
      border-radius: 50%;
      margin: 0 .5em 0 0; }

@media (min-width: 569px) {
  .access__info-wrap {
    display: flex;
    flex-wrap: wrap; } }

.access__info-row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (min-width: 569px) {
    .access__info-row {
      width: 50%;
      padding: 0 35px; } }
  .access__info-row:first-child {
    padding-left: 0; }
  .access__info-row:last-child {
    padding-right: 0; }

.access__info__notis {
  opacity: .5;
  font-size: 12px; }

.access__title {
  border-bottom: 1px solid rgba(35, 24, 21, 0.2);
  padding: 0 0 1em;
  margin: 0 0 30px; }
  @media (max-width: 568px) {
    .access__title {
      margin: 0 0 20px; } }
.access__table {
  margin: 0 0 50px;
  width: 100%; }
  @media (max-width: 568px) {
    .access__table {
      margin: 0 0 30px; } }
  .access__table th, .access__table td {
    padding: 5px 0;
    font-size: 14px; }
    @media (max-width: 568px) {
      .access__table th, .access__table td {
        font-size: 12px; } }
  .access__table .of-time-wrap {
    text-align: right;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    white-space: nowrap; }
  .access__table .of-time {
    font-size: 20px;
    font-weight: 500; }
    @media (max-width: 568px) {
      .access__table .of-time {
        font-size: 18px; } }
  .access__table .access__info__notis {
    display: block;
    margin: -10px 0 10px; }

.access-walk-list {
  margin: 0 -15px;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 568px) {
    .access-walk-list {
      margin: 0 -5px; } }
  .access-walk-list li {
    list-style: none;
    width: 50%;
    padding: 0 15px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 568px) {
      .access-walk-list li {
        padding: 0 5px 20px; } }
    .access-walk-list li img {
      display: block;
      margin: 0 0 10px; }

/***** faq *****/
.faq-tab-nav-wrap {
  background: #f3f4f4;
  padding: 50px 100px; }
  @media (max-width: 568px) {
    .faq-tab-nav-wrap {
      padding: 30px 20px;
      margin: 0 0 30px; } }
@media (min-width: 569px) {
  .faq-tab-nav {
    display: flex;
    align-items: center;
    justify-content: center; } }

.faq-tab-nav__item {
  font-size: 14px;
  margin-right: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative; }
  @media (max-width: 568px) {
    .faq-tab-nav__item {
      font-size: 12px;
      margin: 0 0 20px; } }
  .faq-tab-nav__item:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid;
    border-radius: 50%;
    background: url(/images/icons/arw-right-white.svg) center center/auto 6px #231815 no-repeat;
    margin-right: .5em; }
  .faq-tab-nav__item:last-child {
    margin: 0; }

.faq-list {
  margin: 0;
  padding: 0; }
  .faq-list .faq-list__item {
    list-style: none;
    margin: 0;
    padding: 0; }
  .faq-list__title {
    padding: 20px 0;
    font-size: 14px;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    letter-spacing: .1em;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    border-bottom: 1px solid rgba(35, 24, 21, 0.1);
    position: relative;
    cursor: pointer; }
    @media (max-width: 568px) {
      .faq-list__title {
        padding-right: 30px;
        font-size: 12px; } }
    .faq-list__title:after {
      content: "";
      display: block;
      width: 30px;
      height: 30px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      border: 1px solid rgba(35, 24, 21, 0.1);
      background: url(/images/icons/arw-right-black.svg) center center/auto 8px no-repeat;
      position: absolute;
      top: 50%;
      right: 0;
      -webkit-transform: translate(0, -50%) rotate(90deg);
      transform: translate(0, -50%) rotate(90deg);
      border-radius: 50%;
      -webkit-transition: all .2s ease;
      transition: all .2s ease; }
      @media (max-width: 568px) {
        .faq-list__title:after {
          width: 24px;
          height: 24px;
          background: url(/images/icons/arw-right-black.svg) center center/auto 6px no-repeat; } }
    .faq-list__title.active:after {
      -webkit-transform: translate(0, -50%) rotate(-90deg);
      transform: translate(0, -50%) rotate(-90deg);
      -webkit-transition: all .2s ease;
      transition: all .2s ease; }
  .faq-list__txt-box {
    font-size: 13px;
    padding: 20px 0 30px; }
    @media (max-width: 568px) {
      .faq-list__txt-box {
        font-size: 12px; } }
    .faq-list__txt-box ul {
      margin: 0 0 20px; }
    .faq-list__txt-box a.lbh {
      border-bottom: 1px solid; }
    .faq-list__txt-box table {
      margin: 0 0 20px; }
      .faq-list__txt-box table th, .faq-list__txt-box table td {
        border: 1px solid #eaebeb;
        padding: 10px;
        font-weight: normal;
        border-collapse: collapse; }
        @media (max-width: 568px) {
          .faq-list__txt-box table th, .faq-list__txt-box table td {
            padding: 5px; } }
      .faq-list__txt-box table thead th {
        background: #eaebeb; }
      .faq-list__txt-box table thead td {
        background: #f3f4f4; }
      .faq-list__txt-box table tbody th {
        background: #f3f4f4; }
      .faq-list__txt-box table tbody td {
        background: #fff; }

.m-follow-logo-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  display: none; }

.m-follow-logo {
  height: 30px; }

@media (max-width: 568px) {
  body.subdir {
    padding-top: 70px; }
    body.subdir .m-follow-logo-box {
      display: block;
      padding-top: 20px; } }

.subdir__header {
  padding: 20px 20px 0; }

.rooms {
  position: relative;
  padding-right: 0;
  padding-left: 0; }
  @media (max-width: 568px) {
    .rooms {
      padding-bottom: 0; } }
  @media (min-width: 569px) {
    .rooms:after {
      content: "";
      display: block;
      width: 100%;
      height: 50%;
      position: absolute;
      bottom: 0;
      left: 0; } }
.room-list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 5; }
  @media (min-width: 569px) {
    .room-list {
      max-width: 700px;
      margin: 0 auto; } }
  .room-list > li {
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .room-list > li {
        width: 50%;
        padding: 0 5px 10px; } }
  .room-list__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media (min-width: 569px) {
      .room-list__container {
        border-bottom: 1px solid rgba(35, 24, 21, 0.3);
        padding-bottom: 15px; } }
    @media (max-width: 568px) {
      .room-list__container {
        padding-bottom: 50px; } }
  .room-list__img-box {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: 220px;
    position: relative; }
  .room-list__title {
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    font-weight: 500;
    font-size: 18px;
    width: 100%; }
    @media (max-width: 568px) {
      .room-list__title {
        padding-right: 20px;
        padding-left: 20px; } }
    .room-list__title__label {
      font-size: 10px;
      display: block;
      margin-top: .5em; }
  .room-list__description {
    font-size: 12px;
    width: 100%; }
    @media (max-width: 568px) {
      .room-list__description {
        font-size: 12px;
        padding-right: 20px;
        padding-left: 20px; } }
  .room-list__info-list {
    margin: 0; }
    @media (min-width: 569px) {
      .room-list__info-list {
        padding: 5px; } }
    @media (max-width: 568px) {
      .room-list__info-list {
        height: 32px;
        display: flex;
        align-items: center;
        padding: 0 0 0 20px; } }
    .room-list__info-list > li {
      color: #727171;
      display: inline-block;
      list-style: none;
      font-size: 13px; }
      @media (max-width: 568px) {
        .room-list__info-list > li {
          font-size: 12px; } }
      .room-list__info-list > li:after {
        content: "/";
        display: inline-block;
        margin: 0 .5em; }
      .room-list__info-list > li:last-child:after {
        display: none; }
      @media (min-width: 569px) {
        .room-list__info-list > li.of-bed {
          display: block; } }
  @media (max-width: 568px) {
    .room-list__btn-box {
      padding: 0 20px 0 0; } }
  .room-list__btn {
    width: 120px;
    padding: .5em 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 12px;
    border: 1px solid rgba(35, 24, 21, 0.2);
    display: inline-block;
    text-align: center; }
    @media (min-width: 569px) {
      .room-list__btn:hover {
        opacity: 1;
        -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        -webkit-transition: all .2s ease;
        transition: all .2s ease; } }
/***** stay show *****/
.stay-show__bb {
  width: 100vw;
  height: 56.66vw;
  max-height: 680px;
  padding: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  color: #fff;
  overflow: hidden; }
  @media (max-width: 568px) {
    .stay-show__bb {
      padding: 20px;
      height: 64vw;
      margin-top: 30px; } }
  .stay-show__bb__txt-box {
    position: absolute;
    bottom: 5vw;
    left: 5vw; }
    .stay-show__bb__txt-box .section__title__sub-txt {
      color: #fff; }

@media (min-width: 569px) {
  .stay-show__info__detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; } }

@media (max-width: 568px) {
  .stay-show__info__detail {
    margin-bottom: 30px; } }

.stay-show__info__detail__title {
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
  font-weight: 500;
  margin: 0 0 50px; }
  @media (min-width: 569px) {
    .stay-show__info__detail__title {
      font-size: 24px; } }
  @media (max-width: 568px) {
    .stay-show__info__detail__title {
      font-size: 21px;
      margin: 0 0 20px; } }
  .stay-show__info__detail__title__label {
    font-size: 12px;
    letter-spacing: .2em;
    display: block;
    opacity: .5;
    margin-top: .5em;
    letter-spacing: .3em; }

@media (min-width: 569px) {
  .stay-show__info__detail__description {
    padding-top: 20px;
    width: 50%;
    font-size: 14px; } }

@media (max-width: 568px) {
  .stay-show__info__detail__description {
    margin-bottom: 40px; } }

.stay-show__info__detail__common-info-box {
  background: #f4f4f4;
  padding: 30px;
  text-align: center;
  color: #727171; }
  @media (min-width: 569px) {
    .stay-show__info__detail__common-info-box {
      width: 40%; } }
  @media (max-width: 568px) {
    .stay-show__info__detail__common-info-box {
      padding: 30px 20px;
      margin: 0 -20px; } }
  .stay-show__info__detail__common-info-box p:last-child {
    margin: 0; }
  .stay-show__info__detail__common-info-box p.of-wifi {
    display: flex;
    align-items: center;
    justify-content: center; }
    .stay-show__info__detail__common-info-box p.of-wifi:before {
      content: "";
      width: 50px;
      height: 39px;
      margin: 0 1em 0 0;
      background: url(/images/icons/wifi.svg) center center/contain no-repeat; }

@media (min-width: 569px) {
  .stay-show__info__detail__info-box-wrap {
    display: flex;
    justify-content: center;
    margin: 100px -20px 0; } }

@media (min-width: 569px) {
  .stay-show__info__detail__info-box {
    width: 50%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; } }

@media (max-width: 568px) {
  .stay-show__info__detail__info-box {
    padding: 50px 0; } }

.stay-show__info__detail__info-box__room-title {
  font-weight: normal;
  font-size: 14px; }

.stay-show__info__detail__info-box__title {
  letter-spacing: .2em; }
  @media (max-width: 568px) {
    .stay-show__info__detail__info-box__title {
      margin-bottom: 30px; } }
.stay-show__info__detail__info-tbl-wrap {
  padding: 25px 0 20px;
  border-top: 1px solid rgba(114, 106, 97, 0.3);
  border-bottom: 1px solid rgba(114, 106, 97, 0.3);
  margin: 0 0 30px; }

.stay-show__info__detail__info-tbl {
  width: 100%; }
  .stay-show__info__detail__info-tbl th, .stay-show__info__detail__info-tbl td {
    text-align: left;
    vertical-align: top;
    padding: 5px 0;
    font-weight: normal;
    white-space: nowrap; }
  .stay-show__info__detail__info-tbl th {
    padding-right: 1em;
    white-space: nowrap; }
    @media (max-width: 568px) {
      .stay-show__info__detail__info-tbl th {
        padding-right: 5px; } }
  .stay-show__info__detail__info-tbl td {
    opacity: .5; }

.stay-show__feature {
  background: #f0f4f2; }

.stay-show__feature-list {
  margin: 50px -5px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .stay-show__feature-list__item {
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .stay-show__feature-list__item {
        width: 33.33333%;
        padding: 0 5px; } }
    @media (max-width: 568px) {
      .stay-show__feature-list__item {
        width: 100%;
        padding: 0 10px 30px; } }
    .stay-show__feature-list__item__img {
      height: 350px;
      margin-bottom: 20px;
      position: relative; }
      @media (max-width: 568px) {
        .stay-show__feature-list__item__img {
          height: 60vw; } }
    .stay-show__feature-list__item__title {
      position: absolute;
      top: 50px;
      left: 0;
      background: rgba(8, 38, 31, 0.8);
      color: #fff;
      font-size: 16px;
      line-height: 1.8;
      width: 80%;
      height: 115px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      align-content: center;
      padding: 20px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      white-space: nowrap; }
      @media (max-width: 568px) {
        .stay-show__feature-list__item__title {
          margin-bottom: 10px;
          top: 0;
          font-size: 12px;
          height: 90px;
          padding: 20px 10px;
          width: 70%; } }
      .stay-show__feature-list__item__title span {
        display: block;
        width: 100%; }
    @media (min-width: 569px) {
      .stay-show__feature-list__item__txt {
        font-size: 14px;
        padding: 0 30px 0 10px; } }
    @media (max-width: 568px) {
      .stay-show__feature-list__item__txt {
        margin: 0; } }
.stay-show__gallery-list {
  padding: 0;
  margin: 0 0 40px; }
  @media (max-width: 568px) {
    .stay-show__gallery-list.slick-dotted.slick-slider {
      margin-bottom: 50px; } }
  @media (min-width: 569px) {
    .stay-show__gallery-list .remodal-list__item {
      padding-bottom: 30px;
      width: 25%; } }
  @media (max-width: 568px) {
    .stay-show__gallery-list .remodal-list__item__item {
      width: 100%;
      padding-bottom: 15px; } }
  .stay-show__gallery-list .remodal-list__opener {
    height: 120px; }
    .stay-show__gallery-list .remodal-list__opener:before, .stay-show__gallery-list .remodal-list__opener:after {
      display: none; }
  .stay-show__gallery-list__remodal {
    padding: 0; }
    .stay-show__gallery-list__remodal__img {
      width: 100%; }
    .stay-show__gallery-list__remodal img {
      display: block; }
    .stay-show__gallery-list__remodal .remodal-close {
      width: 70px;
      height: 70px;
      position: fixed; }
    .stay-show__gallery-list__remodal .remodal-arw {
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
      width: 25px;
      height: 30px; }
      .stay-show__gallery-list__remodal .remodal-arw.of-prev {
        background: url(/images/icons/arw-left-white.svg) center center/contain no-repeat;
        left: -65px; }
      .stay-show__gallery-list__remodal .remodal-arw.of-next {
        background: url(/images/icons/arw-right-white.svg) center center/contain no-repeat;
        right: -65px; }

.stay-show__service__title {
  border-bottom: 1px solid rgba(118, 106, 97, 0.3);
  padding-bottom: 1em;
  margin-bottom: 30px;
  font-size: 16px;
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
  font-weight: 500; }
  @media (max-width: 568px) {
    .stay-show__service__title {
      font-size: 14px; } }
.stay-show__service__container {
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 569px) {
    .stay-show__service__container {
      font-size: 14px; } }
.stay-show__service__thumb {
  margin-bottom: 20px; }

.stay-show__service__amenity {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 50px; }
  @media (min-width: 569px) {
    .stay-show__service__amenity {
      width: 40%;
      padding-right: 20px; } }
  @media (max-width: 568px) {
    .stay-show__service__amenity {
      width: 100%; } }
.stay-show__service__rental-items {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 50px; }
  @media (min-width: 569px) {
    .stay-show__service__rental-items {
      width: 60%;
      padding-left: 20px; } }
  @media (max-width: 568px) {
    .stay-show__service__rental-items {
      width: 100%;
      padding: 0; } }
.stay-show__service__benefits {
  width: 100%; }
  @media (min-width: 569px) {
    .stay-show__service__benefits {
      padding-bottom: 50px; } }
.stay-show__service__item-list {
  margin: 0 0 10px; }
  .stay-show__service__item-list dt, .stay-show__service__item-list dd {
    display: inline-block;
    margin: 0; }
  .stay-show__service__item-list dd {
    opacity: .5; }
    .stay-show__service__item-list dd:after {
      content: "/";
      display: inline-block; }
    .stay-show__service__item-list dd:last-child:after {
      display: none; }

@media (min-width: 569px) {
  .other-rooms {
    padding-top: 0;
    background: #f7f7f7; } }

.other-rooms .section__container {
  position: relative; }

.other-room-list {
  padding: 0; }
  @media (min-width: 569px) {
    .other-room-list {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px; } }
  @media (max-width: 568px) {
    .other-room-list {
      margin: 0; } }
  .other-room-list__item {
    list-style: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .other-room-list__item {
        width: 33.33333%;
        padding: 0 15px 30px; } }
    @media (max-width: 568px) {
      .other-room-list__item {
        padding: 0 0 10px; } }
  .other-room-list a {
    color: #231815;
    display: block;
    position: relative; }
    @media (min-width: 569px) {
      .other-room-list a {
        padding-bottom: 15px; } }
    @media (max-width: 568px) {
      .other-room-list a {
        display: flex;
        align-items: center; } }
  .other-room-list__thumb {
    margin-bottom: 5px;
    width: 100%; }
    @media (min-width: 569px) {
      .other-room-list__thumb {
        height: 180px; } }
    @media (max-width: 568px) {
      .other-room-list__thumb {
        height: 120px;
        width: 45%; } }
  @media (max-width: 568px) {
    .other-room-list__txt-box {
      width: 55%;
      padding-left: 20px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; } }
  .other-room-list__title {
    font-size: 14px;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    font-weight: 500; }
    @media (max-width: 568px) {
      .other-room-list__title {
        margin: 0 0 10px; } }
    .other-room-list__title small {
      margin-left: .5em; }
  .other-room-list__label {
    opacity: .5;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    font-size: 10px;
    display: block;
    margin-bottom: .5em; }
  .other-room-list p {
    line-height: 1.4; }
  .other-room-list .slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #b28247; }
    .other-room-list .slick-arrow.slick-prev {
      background: url(/images/icons/arw-left-gold.svg) center center/8px auto no-repeat;
      left: -40px; }
    .other-room-list .slick-arrow.slick-next {
      background: url(/images/icons/arw-right-gold.svg) center center/8px auto no-repeat;
      right: -40px; }

@media (max-width: 568px) {
  .breakfast {
    padding-right: 0;
    padding-left: 0; } }

.breakfast__bb {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto 50px;
  position: relative; }
  @media (max-width: 568px) {
    .breakfast__bb {
      height: 66.66666vw;
      margin-bottom: 40px; } }
  .breakfast__bb__slider .slick-arrow, .breakfast__bb__slider .slick-dots {
    display: none !important; }
  .breakfast__bb__slide {
    height: 490px; }
    @media (max-width: 568px) {
      .breakfast__bb__slide {
        height: 66.66vw; } }
    .breakfast__bb__slide.of-general {
      background: url(/images/breakfast/general.jpg) center center/cover no-repeat; }
    .breakfast__bb__slide.of-sakana {
      background: url(/images/breakfast/sakana.jpg) center center/cover no-repeat; }
  .breakfast__bb__prize-box {
    position: absolute;
    z-index: 5;
    bottom: 10px;
    right: 10px; }
    @media (max-width: 568px) {
      .breakfast__bb__prize-box {
        bottom: 5px;
        right: 5px; } }
  .breakfast__bb__prize {
    height: 150px; }
    @media (max-width: 568px) {
      .breakfast__bb__prize {
        height: 103px; } }
@media (min-width: 569px) {
  .breakfast__info {
    position: relative; } }

@media (min-width: 569px) {
  .breakfast__info__txt-box {
    width: 60%;
    padding-right: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; } }

@media (max-width: 568px) {
  .breakfast__info__txt-box {
    padding: 0 20px 20px; } }

.breakfast__info__img-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative; }
  @media (min-width: 569px) {
    .breakfast__info__img-box {
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      padding-left: 50px; } }
  @media (max-width: 568px) {
    .breakfast__info__img-box {
      padding: 0 20px; } }
  .breakfast__info__img-box__caption {
    text-align: right;
    position: absolute;
    right: 0; }
    @media (min-width: 569px) {
      .breakfast__info__img-box__caption {
        top: 100%;
        padding-left: 50px;
        font-size: 12px; } }
    @media (max-width: 568px) {
      .breakfast__info__img-box__caption {
        bottom: 0;
        padding: 10px 25px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        width: 100%;
        font-size: 10px;
        color: #fff;
        text-shadow: 0 0 0.5em #231815; } }
.breakfast__info__title {
  color: #b28247;
  font-size: 20px;
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
  font-weight: 500; }
  @media (max-width: 568px) {
    .breakfast__info__title {
      font-size: 18px; } }
.breakfast__table-box {
  border-top: 1px solid rgba(35, 24, 21, 0.2);
  border-bottom: 1px solid rgba(35, 24, 21, 0.2);
  padding: 15px 0;
  margin: 50px 0 0; }
  @media (min-width: 569px) {
    .breakfast__table-box {
      width: 50%; } }
  @media (max-width: 568px) {
    .breakfast__table-box {
      margin: 30px 20px 0; }
      .breakfast__table-box table th {
        white-space: nowrap; } }
/********************STATE************************/
.u-align-center {
  text-align: center; }

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

.u-display-none {
  display: none; }

.u-no-margin {
  margin: 0; }

.u-show-on-mobile {
  display: none; }
  @media (max-width: 568px) {
    .u-show-on-mobile {
      display: block; } }
@media (max-width: 568px) {
  .u-hide-on-mobile {
    display: none !important; } }

.u-m5 {
  margin: 5px; }

.u-m10 {
  margin: 10px; }

.u-mb0 {
  margin-bottom: 0; }

.u-mb5 {
  margin-bottom: 5px; }

.u-mb10 {
  margin-bottom: 10px; }

.u-mb20 {
  margin-bottom: 20px; }

.u-mb30 {
  margin-bottom: 30px; }

.u-mb50 {
  margin-bottom: 50px; }

.u-mt20 {
  margin-top: 20px; }

.u-w100 {
  width: 100%; }

.u-font-red {
  color: #C10D23; }

.u-font-gold {
  color: #b28247; }

.u-font-serif {
  font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important; }

.u-font-10pt {
  font-size: 10px; }

.u-font-12pt {
  font-size: 12px; }

.u-font-13pt {
  font-size: 13px; }

.u-font-14pt {
  font-size: 14px; }

.u-font-16pt {
  font-size: 16px; }

.u-font-18pt {
  font-size: 18px; }

.u-font-21pt {
  font-size: 21px; }

.u-font-24pt {
  font-size: 24px; }

.u-font-28pt {
  font-size: 28px; }

.u-underlined {
  border-bottom: 1px solid; }

.u-with-arw {
  display: flex;
  align-items: center; }
  .u-with-arw.u-font-gold:after {
    background: url(/images/icons/arw-right-gold.svg) center center/auto 6px no-repeat; }

.u-with-plus {
  display: flex;
  align-items: center; }
  .u-with-plus.u-font-gold:after {
    background: url(/images/icons/plus-gold.svg) center center/auto 6px no-repeat; }

@media (max-width: 568px) {
  .u-align-left-on-mobile {
    text-align: left; }
  .u-font-10pt-on-mobile {
    font-size: 10px; }
  .u-font-12pt-on-mobile {
    font-size: 12px; }
  .u-font-14pt-on-mobile {
    font-size: 14px; }
  .u-font-15pt-on-mobile {
    font-size: 15px; }
  .u-font-16pt-on-mobile {
    font-size: 16px; }
  .u-font-18pt-on-mobile {
    font-size: 18px; }
  .u-font-24pt-on-mobile {
    font-size: 24px; }
  .u-mb30-on-mobile {
    margin-bottom: 30px; } }

html.translated-ltr {
  /***** adjustments *****/ }
  html.translated-ltr .desktop-follow-nav {
    display: none !important; }
  html.translated-ltr .top__reserve, html.translated-ltr .reserve-section {
    display: none !important; }
  html.translated-ltr .m-follow-reserve-opener {
    display: none !important; }
  html.translated-ltr .hide-on-google-translate {
    display: none !important; }
  html.translated-ltr .stay-show__info__detail__info-tbl th, html.translated-ltr .stay-show__info__detail__info-tbl td {
    white-space: normal; }

@-webkit-keyframes scrolldown {
  0% {
    height: 0;
    top: 0;
    opacity: 0; }
  30% {
    height: 30px;
    opacity: 1; }
  100% {
    height: 0;
    top: 50px;
    opacity: 0; } }

@keyframes scrolldown {
  0% {
    height: 0;
    top: 0;
    opacity: 0; }
  30% {
    height: 30px;
    opacity: 1; }
  100% {
    height: 0;
    top: 50px;
    opacity: 0; } }

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); } }

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); } }

/********** layout **********/
body.global {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif; }
  body.global .wrapper {
    overflow: hidden; }

.global-menu.menu {
  background: transparent; }
  .global-menu.menu .bar:nth-child(1) {
    top: 43%; }
  .global-menu.menu .bar:nth-child(2) {
    top: 57%; }
  .global-menu.menu.active .bar:nth-child(1), .global-menu.menu.active .bar:nth-child(2) {
    top: 50%; }

.global-language-menu {
  position: fixed;
  top: 0;
  right: 90px;
  z-index: 90;
  height: 70px;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer; }
  @media (max-width: 568px) {
    .global-language-menu {
      right: 70px; } }
  .global-language-menu .of-title {
    display: block;
    width: 100px;
    position: relative;
    font-size: 16px;
    padding: 0 10px; }
    @media (max-width: 568px) {
      .global-language-menu .of-title {
        width: 45px;
        font-size: 12px; } }
    .global-language-menu .of-title:after {
      content: "";
      display: block;
      width: 5px;
      height: 5px;
      border-right: 1px solid;
      border-bottom: 1px solid;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      -webkit-transform: translateY(-50%) rotate(45deg);
              transform: translateY(-50%) rotate(45deg);
      position: absolute;
      top: 50%;
      right: 10px; }
  .global-language-menu-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 0; }
    .global-language-menu-list-item {
      list-style: none; }
      .global-language-menu-list-item:not(:last-child) {
        border-bottom: 1px solid rgba(35, 24, 21, 0.1); }
      .global-language-menu-list-item a {
        display: block;
        padding: 10px;
        color: #231815;
        position: relative; }
        .global-language-menu-list-item a:after {
          content: "";
          display: block;
          width: 5px;
          height: 5px;
          border-right: 1px solid;
          border-bottom: 1px solid;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          -webkit-transform: translateY(-50%) rotate(-45deg);
                  transform: translateY(-50%) rotate(-45deg);
          position: absolute;
          top: 50%;
          right: 10px; }
  .global-language-menu.colored {
    color: #231815; }

.global-header.header {
  background: rgba(58, 57, 61, 0.98);
  color: #fff;
  padding: 50px;
  width: 100.5vw; }
  .global-header.header a {
    color: #fff; }

.global-header__container {
  max-width: 600px;
  margin: 0 auto; }
  @media (min-width: 569px) {
    .global-header__container {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%; } }
@media (min-width: 569px) {
  .global-header__container-inner {
    width: 100%; } }

.global-header-logo-box {
  display: block;
  text-align: center;
  border-bottom: 1px solid rgba(201, 160, 99, 0.5);
  padding: 0 0 40px;
  margin: 0 0 40px; }

.global-header-logo {
  width: 250px; }
  @media (max-width: 568px) {
    .global-header-logo {
      width: 195px; } }
.global-header-nav {
  margin: 0 0 50px; }

.global-header-nav-item {
  display: block;
  font-size: 16px;
  text-align: center;
  margin: 0 0 20px; }
  .global-header-nav-item:last-child {
    margin: 0; }

.global-header__language-nav {
  display: flex;
  margin-bottom: 30px;
  opacity: .6; }
  @media (min-width: 569px) {
    .global-header__language-nav {
      position: absolute;
      bottom: 100%;
      right: 0; } }
  @media (max-width: 568px) {
    .global-header__language-nav {
      justify-content: center;
      margin: 0 0 50px; } }
  .global-header__language-nav .nav-item {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .15em;
    padding: 0;
    margin: 0 5px; }
    @media (min-width: 569px) {
      .global-header__language-nav .nav-item {
        margin-left: 30px; } }
    .global-header__language-nav .nav-item.current, .global-header__language-nav .nav-item:hover {
      border-bottom: 1px solid;
      opacity: 1; }
    @media (max-width: 568px) {
      .global-header__language-nav .nav-item.of-title {
        width: auto; } }
.global-header__sns-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6; }
  @media (min-width: 569px) {
    .global-header__sns-nav {
      justify-content: center; } }
  @media (max-width: 568px) {
    .global-header__sns-nav {
      margin-top: 30px; } }
  .global-header__sns-nav .nav-item {
    display: flex;
    align-items: center;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
    margin-left: 15px; }
    @media (max-width: 568px) {
      .global-header__sns-nav .nav-item:first-child {
        margin: 0; } }
    .global-header__sns-nav .nav-item__icon {
      width: 16px; }
    .global-header__sns-nav .nav-item .txt {
      margin-left: .5em; }
      @media (max-width: 568px) {
        .global-header__sns-nav .nav-item .txt {
          font-size: 10px; } }
.global-footer {
  position: relative; }
  .global-footer.footer {
    background: #fff;
    color: #231815;
    padding-bottom: 200px; }
    @media (max-width: 568px) {
      .global-footer.footer {
        padding-top: 100px;
        padding-bottom: 165px; } }
    .global-footer.footer a {
      color: #231815; }
  @media (max-width: 568px) {
    .global-footer .footer__language-nav {
      justify-content: center;
      margin: 0 0 50px; } }
  .global-footer .footer__language-nav .nav-item {
    padding: 0;
    margin: 0 10px; }
    .global-footer .footer__language-nav .nav-item.current, .global-footer .footer__language-nav .nav-item:hover {
      border-bottom: 1px solid;
      opacity: 1; }
    @media (max-width: 568px) {
      .global-footer .footer__language-nav .nav-item.of-title {
        width: auto; } }
.global-follow-reserve-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 120;
  background: #000; }
  @media (min-width: 569px) {
    .global-follow-reserve-box {
      width: 480px;
      bottom: 14px;
      left: 14px; } }
  .global-follow-reserve-box__reserve-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 18px;
    padding: 0 0 0 65px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .global-follow-reserve-box__reserve-button {
        padding: 0 0 0 240px; } }
    @media (max-width: 568px) {
      .global-follow-reserve-box__reserve-button {
        font-size: 12px;
        width: 50%; } }
  .global-follow-reserve-box__reserve-button02 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 18px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #000;
    position: absolute;
    top: 0;
    left: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.2); }
    @media (min-width: 569px) {
      .global-follow-reserve-box__reserve-button02 {
        width: 240px; } }
    @media (max-width: 568px) {
      .global-follow-reserve-box__reserve-button02 {
        font-size: 12px;
        width: 50%;
        left: auto;
        right: 0; } }
  .global-follow-reserve-box__tel-button {
    position: absolute;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    width: 65px;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/images/icons/tel-white-filled.png) center center/18px 24px no-repeat; }
    @media (min-width: 569px) {
      .global-follow-reserve-box__tel-button {
        color: #fff;
        width: 240px;
        background-position: 20px center;
        font-size: 18px;
        line-height: 65px;
        padding: 0 0 0 50px;
        font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; } }
/********** top **********/
.global-top__bb .top__bb__slider .slide {
  -webkit-animation: zoom 24s linear forwards;
          animation: zoom 24s linear forwards; }
  .global-top__bb .top__bb__slider .slide.slide01 {
    background: url(/images/global/top/bb/bb01.jpg) 66% center/cover no-repeat; }
  .global-top__bb .top__bb__slider .slide.slide02 {
    background: url(/images/firstview/slide01-202207.jpg) center center/cover no-repeat; }
  .global-top__bb .top__bb__slider .slide.slide03 {
    background: url(/images/global/top/bb/bb03.jpg) center center/cover no-repeat; }
  .global-top__bb .top__bb__slider .slide.slide04 {
    background: url(/images/global/top/bb/bb-osaka-castle.jpg) center center/cover no-repeat; }
  .global-top__bb .top__bb__slider .slide.slide05 {
    background: url(/images/tourism/tsutenkaku.jpg) center center/cover no-repeat; }
  .global-top__bb .top__bb__slider .slide.slide06 {
    background: url(/images/global/top/bb/bb-dotonbori.jpg) center center/cover no-repeat; }

.global-top__bb .top__bb__logo {
  width: 300px; }

.global-top__bb .top__bb__title {
  margin: 0 0 150px;
  font-size: 17px; }
  @media (max-width: 568px) {
    .global-top__bb .top__bb__title {
      margin: 0 0 50px; } }
.global-top__bb .top__bb__title__catch {
  letter-spacing: .15em;
  margin-right: -.1em;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif; }
  @media (max-width: 568px) {
    .global-top__bb .top__bb__title__catch {
      font-size: 15px; } }
.global-top__bb .top__bb__prize-list {
  bottom: 200px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  position: absolute;
  background: transparent; }
  @media (max-width: 568px) {
    .global-top__bb .top__bb__prize-list {
      margin: 0; } }
  .global-top__bb .top__bb__prize-list li img {
    width: 98px; }
    @media (max-width: 568px) {
      .global-top__bb .top__bb__prize-list li img {
        width: 80px; } }
.global-top__bb__scrolldown {
  position: absolute;
  left: 50%;
  bottom: 125px;
  height: 50px;
  z-index: 10; }
  .global-top__bb__scrolldown:after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: #fff;
    -webkit-animation: scrolldown 1.4s ease-in-out infinite;
            animation: scrolldown 1.4s ease-in-out infinite;
    opacity: 0; }

.global-top-news-box {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 5; }

.global-top-news {
  background: #fff;
  width: 70%;
  max-width: 868px;
  display: flex;
  align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (min-width: 569px) {
    .global-top-news {
      height: 200px;
      margin-top: -100px;
      margin-bottom: -100px; } }
  @media (max-width: 568px) {
    .global-top-news {
      flex-wrap: wrap;
      align-content: center;
      height: 185px;
      width: 90%;
      margin-top: -50px;
      margin-bottom: -135px;
      margin-right: -1px;
      padding: 0 20px; } }
  .global-top-news__title {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 22px;
    color: #c9a063;
    white-space: nowrap; }
    @media (min-width: 569px) {
      .global-top-news__title {
        text-align: center;
        width: 30%;
        padding: 0 30px; } }
    @media (max-width: 568px) {
      .global-top-news__title {
        width: 100%;
        font-size: 19px;
        padding: 0 0 10px; } }
  .global-top-news__body {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .global-top-news__body {
        width: 70%;
        padding: 0 70px 0 0; } }
    @media (max-width: 568px) {
      .global-top-news__body {
        width: 100%; } }
.global-top-news-list.slick-dotted.slick-slider {
  padding: 0;
  margin: 0; }
  .global-top-news-list.slick-dotted.slick-slider .slick-arrow {
    display: none !important; }
  .global-top-news-list.slick-dotted.slick-slider .slick-dots {
    bottom: -25px;
    right: 0;
    width: auto;
    -webkit-transform: translateY(50%);
            transform: translateY(50%); }
    @media (max-width: 568px) {
      .global-top-news-list.slick-dotted.slick-slider .slick-dots {
        bottom: -15px; } }
    .global-top-news-list.slick-dotted.slick-slider .slick-dots li {
      width: 5px;
      height: 5px;
      margin: 0 7px;
      border: 1px solid rgba(181, 181, 182, 0.3);
      background: #fff;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .global-top-news-list.slick-dotted.slick-slider .slick-dots li.slick-active {
        background: #3e3a39;
        border-color: #3e3a39; }

.global-top-news-list-item {
  list-style: none;
  font-size: 18px; }
  @media (max-width: 568px) {
    .global-top-news-list-item {
      font-size: 16px; } }
.global-top-intro {
  position: relative;
  overflow: hidden;
  background: url(/images/global/top/intro/bg.jpg) center center/cover no-repeat;
  padding-top: 200px; }
  @media (max-width: 568px) {
    .global-top-intro {
      padding-top: 50px; } }
  .global-top-intro:before {
    content: "";
    display: block;
    width: 650px;
    height: 650px;
    background: url(/images/global/top/intro/map.png) center center/contain no-repeat; }
    @media (min-width: 569px) {
      .global-top-intro:before {
        position: absolute;
        top: 50%;
        left: 45%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); } }
    @media (max-width: 568px) {
      .global-top-intro:before {
        width: 524px;
        height: 524px;
        position: relative;
        left: 50%;
        margin-left: -215px;
        margin-bottom: 30px; } }
  .global-top-intro__txt-box {
    width: 40%; }
    @media (max-width: 568px) {
      .global-top-intro__txt-box {
        width: 100%;
        margin-top: -50px; } }
  .global-top-intro-title {
    font-size: 28px;
    margin: 0 0 30px;
    font-weight: normal; }
    @media (max-width: 568px) {
      .global-top-intro-title {
        font-size: 18px; } }
.global-top-categories {
  background: url(/images/global/top/intro/bg.jpg) center center/100% auto no-repeat; }
  @media (max-width: 568px) {
    .global-top-categories__bb-slider {
      width: 100vw;
      margin-left: -20px; } }
  .global-top-categories__bb-slider.slick-dotted.slick-slider {
    margin: 0; }
    @media (max-width: 568px) {
      .global-top-categories__bb-slider.slick-dotted.slick-slider {
        margin: 0 -20px; } }
  .global-top-categories__bb-slider .slick-arrow, .global-top-categories__bb-slider .slick-dots {
    display: none !important; }
  .global-top-categories__bb {
    height: 650px; }
    @media (max-width: 568px) {
      .global-top-categories__bb {
        height: 64vw; } }
    .global-top-categories__bb.of-stay01 {
      background: url(/images/global/top/stay/bb01-v202406.jpg) center center/cover no-repeat; }
    .global-top-categories__bb.of-stay02 {
      background: url(/images/stay/deluxt/1-v202107.jpg) center center/cover no-repeat; }
    .global-top-categories__bb.of-stay03 {
      background: url(/images/stay/stwin/4-v202107.jpg) center center/cover no-repeat; }
    .global-top-categories__bb.of-restaurant01 {
      background: url(/images/breakfast/202412-01.jpg) center center/cover no-repeat; }
    .global-top-categories__bb.of-restaurant02 {
      background: url(/images/breakfast/202412-02.jpg) center center/cover no-repeat; }
    .global-top-categories__bb.of-restaurant03 {
      background: url(/images/breakfast/202412-03.jpg) center center/cover no-repeat; }
    .global-top-categories__bb.of-restaurant04 {
      background: url(/images/breakfast/202412-04.jpg) center center/cover no-repeat; }
    .global-top-categories__bb.of-restaurant05 {
      background: url(/images/breakfast/202412-05.jpg) center center/cover no-repeat; }
  .global-top-categories__txt-box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (min-width: 569px) {
      .global-top-categories__txt-box {
        padding: 100px 30px;
        width: 60%; } }
    @media (max-width: 568px) {
      .global-top-categories__txt-box {
        padding: 50px 0; } }
  .global-top-categories__title {
    font-size: 38px;
    font-weight: normal;
    margin: 0 0 30px; }
    @media (max-width: 568px) {
      .global-top-categories__title {
        font-size: 28px; } }
  .global-top-categories__subtitle {
    color: #10483a;
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 60px; }
    @media (max-width: 568px) {
      .global-top-categories__subtitle {
        font-size: 14px;
        margin: 0 0 20px; } }
@media (max-width: 568px) {
  .global-top-categories__thumb-list-wrap {
    padding: 0 40px; } }

.global-top-categories__thumb-list {
  padding: 0; }
  @media (min-width: 569px) {
    .global-top-categories__thumb-list.slick-dotted.slick-slider {
      margin: 0 -100px 100px; }
      .global-top-categories__thumb-list.slick-dotted.slick-slider .slick-list {
        padding: 0 80px; } }
  @media (max-width: 568px) {
    .global-top-categories__thumb-list.slick-dotted.slick-slider {
      margin: 0 -40px 100px; }
      .global-top-categories__thumb-list.slick-dotted.slick-slider .slick-list {
        padding: 0 40px; } }
  .global-top-categories__thumb-list.slick-dotted.slick-slider .slick-dots {
    bottom: -25px;
    right: 100px;
    width: auto;
    -webkit-transform: translateY(50%);
            transform: translateY(50%); }
    @media (max-width: 568px) {
      .global-top-categories__thumb-list.slick-dotted.slick-slider .slick-dots {
        bottom: -40px;
        right: 0;
        width: 100%; } }
    .global-top-categories__thumb-list.slick-dotted.slick-slider .slick-dots li {
      width: 5px;
      height: 5px;
      margin: 0 7px;
      border: 1px solid rgba(181, 181, 182, 0.3);
      background: #fff;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .global-top-categories__thumb-list.slick-dotted.slick-slider .slick-dots li.slick-active {
        background: #3e3a39;
        border-color: #3e3a39; }

.global-top-categories__thumb-list-item {
  list-style: none;
  width: 33.33333%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (max-width: 568px) {
    .global-top-categories__thumb-list-item {
      padding: 0 5px; } }
  .global-top-categories__thumb-list-item__txt-box {
    padding: 20px 10px;
    color: #727171; }
    @media (max-width: 568px) {
      .global-top-categories__thumb-list-item__txt-box {
        padding: 20px 0; } }
  .global-top-categories__thumb-list-item-title {
    font-size: 20px;
    color: #231815;
    position: relative; }
    @media (max-width: 568px) {
      .global-top-categories__thumb-list-item-title {
        font-size: 14px; } }
    .global-top-categories__thumb-list-item-title .of-sub {
      color: #727171;
      position: absolute;
      bottom: 0;
      right: 0;
      font-size: 14px;
      font-weight: normal; }
      @media (max-width: 568px) {
        .global-top-categories__thumb-list-item-title .of-sub {
          font-size: 11px; } }
  .global-top-categories__thumb-list-item-bottom-info {
    margin: 30px 0 0;
    font-family: 'Noto Serif JP', "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif !important; }
    @media (max-width: 568px) {
      .global-top-categories__thumb-list-item-bottom-info {
        margin: 20px 0 0; } }
@media (max-width: 568px) {
  .global-feature-thumb-list-wrap {
    padding: 0 40px; } }

.feature-thumb-list.of-global {
  justify-content: center;
  margin: 0 0 120px; }
  @media (max-width: 568px) {
    .feature-thumb-list.of-global.slick-dotted.slick-slider {
      margin: 0 -40px 100px; }
      .feature-thumb-list.of-global.slick-dotted.slick-slider .slick-list {
        padding: 0 40px; } }
  .feature-thumb-list.of-global.slick-dotted.slick-slider .slick-dots {
    bottom: -25px;
    right: 100px;
    width: auto;
    -webkit-transform: translateY(50%);
            transform: translateY(50%); }
    @media (max-width: 568px) {
      .feature-thumb-list.of-global.slick-dotted.slick-slider .slick-dots {
        bottom: -40px;
        right: 0;
        width: 100%; } }
    .feature-thumb-list.of-global.slick-dotted.slick-slider .slick-dots li {
      width: 5px;
      height: 5px;
      margin: 0 7px;
      border: 1px solid rgba(181, 181, 182, 0.3);
      background: #fff;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .feature-thumb-list.of-global.slick-dotted.slick-slider .slick-dots li.slick-active {
        background: #3e3a39;
        border-color: #3e3a39; }
  @media (max-width: 568px) {
    .feature-thumb-list.of-global .feature-thumb-list__item {
      padding: 0 5px; } }
  .feature-thumb-list.of-global .feature-thumb-list__item__icon.of-microwave {
    margin-top: 0; }

.global-top-categories__amenities-list {
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 50px auto 0; }
  @media (max-width: 568px) {
    .global-top-categories__amenities-list {
      align-items: flex-start; } }
  .global-top-categories__amenities-list-item {
    list-style: none;
    width: 33.33333%;
    padding: 0 50px 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #10483a; }
    @media (max-width: 568px) {
      .global-top-categories__amenities-list-item {
        padding: 0 10px 30px;
        font-size: 12px; } }
    .global-top-categories__amenities-list-item__icon-box {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 39px;
      margin: 0 0 10px; }
    .global-top-categories__amenities-list-item__icon.of-train, .global-top-categories__amenities-list-item__icon.of-smoking, .global-top-categories__amenities-list-item__icon.of-security {
      height: 36px; }
    .global-top-categories__amenities-list-item__icon.of-convenience-store, .global-top-categories__amenities-list-item__icon.of-baggage {
      height: 30px; }

@media (min-width: 569px) {
  .breakfast__info.of-global {
    display: flex; }
    .breakfast__info.of-global .breakfast__info__img-box {
      position: static;
      width: 50%;
      padding: 0 50px 0 0;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .breakfast__info.of-global .breakfast__info__text-box {
      width: 50%;
      padding: 0 0 0 50px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .breakfast__info.of-global .breakfast__table-box {
      width: 100%; } }

@media (max-width: 568px) {
  .breakfast__info.of-global .breakfast__info__text-box {
    padding: 0 20px; } }

@media (max-width: 568px) {
  .breakfast__info.of-global .breakfast__table-box {
    margin-right: 0;
    margin-left: 0; } }

.global-top-explore {
  background: url(/images/global/top/explore/bg.jpg) center center/cover no-repeat;
  position: relative; }
  .global-top-explore-description {
    text-align: center;
    font-size: 18px;
    margin: 0 0 100px; }
    @media (max-width: 568px) {
      .global-top-explore-description {
        font-size: 14px;
        margin: 0 20px 50px; } }
.global-top-explore__spots-title {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  margin: 0 0 50px; }
  @media (max-width: 568px) {
    .global-top-explore__spots-title {
      font-size: 18px;
      margin: 20px 0; } }
.global-top-explore__spot-list {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 568px) {
    .global-top-explore__spot-list {
      margin: 0 -10px; } }
  .global-top-explore__spot-list-item {
    list-style: none;
    width: 33.33333%;
    padding: 0 25px 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media (max-width: 568px) {
      .global-top-explore__spot-list-item {
        width: 50%;
        padding: 0 10px 30px; } }
    .global-top-explore__spot-list-item__img-box {
      position: relative; }
      .global-top-explore__spot-list-item__img-box > img {
        display: block; }
    .global-top-explore__spot-list-item__txt-box {
      padding: 30px 10px 0; }
      @media (max-width: 568px) {
        .global-top-explore__spot-list-item__txt-box {
          padding: 10px 0 30px;
          position: relative; } }
    .global-top-explore__spot-list-item__title-box {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 10px; }
    .global-top-explore__spot-list-item__label {
      position: absolute;
      bottom: 0;
      right: 0;
      min-width: 90px;
      height: 30px;
      padding: 0 1em;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      font-size: 17px;
      color: #fff; }
      @media (max-width: 568px) {
        .global-top-explore__spot-list-item__label {
          min-width: 50px;
          height: 17px;
          font-size: 11px; } }
      .global-top-explore__spot-list-item__label:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #727171;
        mix-blend-mode: multiply; }
      .global-top-explore__spot-list-item__label > span {
        position: relative; }
    .global-top-explore__spot-list-item__name {
      font-size: 21px; }
      @media (min-width: 569px) {
        .global-top-explore__spot-list-item__name {
          margin: 0 5px 0 0; } }
      @media (max-width: 568px) {
        .global-top-explore__spot-list-item__name {
          font-size: 15px; } }
    .global-top-explore__spot-list-item__link {
      text-decoration: underline; }
      @media (max-width: 568px) {
        .global-top-explore__spot-list-item__link {
          position: absolute;
          bottom: 0;
          right: 0; } }
      .global-top-explore__spot-list-item__link .with-arw:after {
        content: ">";
        display: inline-block;
        margin: 0 0 0 .5em; }
    .global-top-explore__spot-list-item p {
      line-height: 1.4; }

.tourism-slide__access-label-box-wrap.of-global .tourism-slide__access-label {
  background: transparent;
  border: 1px solid rgba(16, 72, 58, 0.3);
  color: #10483a;
  width: 82px;
  height: 82px; }
  @media (max-width: 568px) {
    .tourism-slide__access-label-box-wrap.of-global .tourism-slide__access-label {
      width: 60px;
      height: 60px;
      margin: 0 0 0 5px; }
      .tourism-slide__access-label-box-wrap.of-global .tourism-slide__access-label:first-child {
        margin-left: 0; } }
.tourism-slide__access-label-box-wrap.of-global .tourism-slide__access-label__txt {
  white-space: nowrap;
  letter-spacing: 0;
  margin: 0 0 10px;
  display: block; }
  @media (max-width: 568px) {
    .tourism-slide__access-label-box-wrap.of-global .tourism-slide__access-label__txt {
      -webkit-transform: scale(0.7);
              transform: scale(0.7); } }
.access__address-box.of-global {
  display: block;
  text-align: center; }
  .access__address-box.of-global .access__address-box__address {
    margin: 30px 0 0; }

table.access__table.of-global td.of-time-wrap {
  padding-left: 5px; }
  table.access__table.of-global td.of-time-wrap.of-train:before {
    width: 12px;
    height: 16px;
    content: "";
    display: inline-block;
    background: url(/images/icons/walk_gray.svg) left center/contain no-repeat;
    margin: 0 .5em 0 0; }
  table.access__table.of-global td.of-time-wrap.of-airline:before {
    width: 11px;
    height: 15px;
    content: "";
    display: inline-block;
    background: url(/images/icons/train_gray.svg) left center/contain no-repeat;
    margin: 0 .5em 0 0; }
  table.access__table.of-global td.of-time-wrap.of-car:before {
    width: 16px;
    height: 12px;
    content: "";
    display: inline-block;
    background: url(/images/icons/car_gray.svg) left center/contain no-repeat;
    margin: 0 .5em 0 0; }
