@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

.animated.delay-03s {
  animation-delay: 0.3s;
}

.animated.delay-06s {
  animation-delay: 0.6s;
}

.animated.delay-09s {
  animation-delay: 0.9s;
}

.animated.delay-12s {
  animation-delay: 1.2s;
}

.animated.delay-05s {
  animation-delay: 0.51s;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-15s {
  animation-delay: 1.5s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/*
 * jQuery FlexSlider v2.7.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: "flexslider-icon";
  src: url("../fonts/flexslider-icon.eot");
  src: url("../fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("../fonts/flexslider-icon.woff") format("woff"), url("../fonts/flexslider-icon.ttf") format("truetype"), url("../fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 30px;
  position: relative;
  zoom: 1;
  border-radius: 4px;
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 20px;
  height: 20px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: #999;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 900;
  text-indent: -9999px;
  transform: rotate(180deg);
}

.flex-direction-nav a.flex-next:before {
  transform: rotate(0deg);
}

.flex-direction-nav .flex-prev {
  left: -5px;
}

.flex-direction-nav .flex-next {
  right: -5px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 1;
  left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 0.7;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
  right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 0.7;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-paging li a.flex-active {
  border: 1px solid #000;
  position: relative;
  display: block;
}
.flex-control-paging li a.flex-active::before {
  text-indent: 0;
  content: "";
  font-weight: 900;
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  -webkit-transform: translateX(-50%) rotate(90deg);
  background: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  -moz-user-select: none;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/*fonts
---------------------------------------------*/
/*
Zen Kaku Gothic New regular
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 400;
font-style: normal;

Zen Kaku Gothic New medium
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 500;
font-style: normal;

Zen Kaku Gothic New bold
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 700;
font-style: normal;

Zen Kaku Gothic Antique
font-family: zen-kaku-gothic-antique, sans-serif;
font-weight: 700;
font-style: normal;

*/
/* common
---------------------------------------------*/
html,
body {
  width: 100%;
  line-height: 2;
  font-feature-settings: "palt";
  color: #000000;
  font-size: 12px;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

div.fixed {
  background: #F0C5ED;
  border-bottom: 1px solid #000;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  div.fixed {
    width: 100%;
    height: 8vw;
    position: fixed;
    top: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  div.fixed {
    display: none;
  }
}
div.fixed ul li {
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  div.fixed ul li {
    line-height: 8vw;
    font-size: 3.2vw;
    box-sizing: border-box;
  }
}

div.fixed_pc {
  position: fixed;
  left: calc(100% - 40px);
  top: 0;
  height: 100vh;
  width: 40px;
  z-index: 99;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #F0C5ED;
  line-height: 1;
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  div.fixed_pc {
    display: none;
  }
}
div.fixed_pc div:first-child {
  animation: loop 100s -50s linear infinite;
}
div.fixed_pc div:last-child {
  animation: loop2 100s linear infinite;
}
div.fixed_pc div.loop_text {
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

@keyframes loop {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
div.menu {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  div.menu {
    top: 8vw;
  }
}
div.menu.UpMove {
  animation: UpAnime 0.5s forwards;
}
div.menu.DownMove {
  animation: DownAnime 0.5s forwards;
}
@media screen and (max-width: 768px) {
  div.menu::before {
    content: "";
    display: block;
    height: 13.6vw;
    width: 100%;
    display: block;
    position: absolute;
    top: 0%;
    left: 0;
    background: #5D74D3;
    z-index: -1;
  }
}
@media screen and (min-width: 769px) {
  div.menu::before {
    content: "";
    display: block;
    height: 82px;
    width: 100%;
    display: block;
    position: absolute;
    top: 0%;
    left: 0;
    background: #5D74D3;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  div.menu ul {
    white-space: nowrap;
    font-size: 0;
    overflow-x: auto;
    box-sizing: border-box;
    padding: 0 4vw;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  div.menu ul {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
div.menu ul li {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  div.menu ul li {
    width: 18.9333333333vw;
    margin-right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.menu ul li {
    width: 100px;
  }
}
div.menu ul li a {
  color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
}
div.menu ul li img {
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #5D74D3;
}
div.menu ul li p {
  color: #fff;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  div.menu ul li p {
    font-size: 3.2vw;
  }
}

@media screen and (min-width: 769px) {
  #index {
    min-width: 1280px;
    width: calc(100% - 40px);
  }
}
#index div.indexheader {
  border-bottom: 1px dotted #000;
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  #index div.indexheader {
    height: 13.3333333333vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.indexheader {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #index div.indexheader img {
    width: 37.0666666667%;
  }
}
@media screen and (min-width: 769px) {
  #index div.indexheader img {
    width: 234px;
  }
}
#index div#main {
  position: relative;
  background: #F5F5F5;
}
#index div#main::before {
  content: "";
  display: block;
}
@media screen and (max-width: 768px) {
  #index div#main::before {
    padding-top: 170.6666666667%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main::before {
    padding-top: 41.1458333333%;
  }
}
#index div#main h1 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main h1 {
    top: 4.53125%;
    left: 50%;
    transform: translateX(-50%);
    width: 68.5333333333%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main h1 {
    width: 26.5625%;
    top: 31.3924050633%;
    right: 22.2395833333%;
  }
}
#index div#main div.map {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.map {
    width: 92.8%;
    right: 0.5333333333%;
    top: 28.125%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.map {
    width: 33.0208333333%;
    left: 17.5%;
    top: 10.5063291139%;
  }
}
#index div#main div.main01 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main01 {
    width: 21.6%;
    top: 41.25%;
    left: 4.2666666667%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main01 {
    width: 6.9791666667%;
    top: 29.3670886076%;
    left: 16.6666666667%;
  }
}
#index div#main div.main02 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main02 {
    width: 19.4666666667%;
    top: 37.5%;
    left: 27.4666666667%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main02 {
    width: 6.9270833333%;
    top: 23.417721519%;
    left: 24.7916666667%;
  }
}
#index div#main div.main03 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main03 {
    width: 15.4666666667%;
    top: 41.09375%;
    right: 2.6666666667%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main03 {
    width: 5.5208333333%;
    top: 32.2784810127%;
    left: 44.1666666667%;
  }
}
#index div#main div.main04 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main04 {
    width: 10.6666666667%;
    top: 69.0625%;
    left: 53.8666666667%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main04 {
    width: 3.8541666667%;
    top: 70.3797468354%;
    left: 35.2604166667%;
  }
}
#index div#main div.main05 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main05 {
    width: 10.1333333333%;
    top: 76.40625%;
    left: 1.6%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main05 {
    width: 3.59375%;
    top: 81.2658227848%;
    left: 15.78125%;
  }
}
#index div#main div.main06 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main06 {
    width: 14.1333333333%;
    top: 27.96875%;
    right: 25.6%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main06 {
    width: 5%;
    top: 7.5%;
    left: 36.875%;
  }
}
#index div#main div.main07 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main07 {
    width: 17.0666666667%;
    top: 52.03125%;
    right: 12.2666666667%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main07 {
    width: 6.0416666667%;
    top: 45.9493670886%;
    left: 40.3125%;
  }
}
#index div#main div.main08 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main08 {
    width: 14.1333333333%;
    top: 48.125%;
    left: 43.7333333333%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main08 {
    width: 5%;
    top: 39.4936708861%;
    left: 30.78125%;
  }
}
#index div#main div.main09 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main div.main09 {
    width: 10.9333333333%;
    top: 62.8125%;
    left: 27.2%;
  }
}
@media screen and (min-width: 769px) {
  #index div#main div.main09 {
    width: 3.8541666667%;
    top: 60.6329113924%;
    left: 24.7916666667%;
  }
}
#index div#main h2 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div#main h2 {
    width: 82.1333333333%;
    bottom: -9.53125%;
    right: 2.9333333333%;
    z-index: 2;
  }
}
@media screen and (min-width: 769px) {
  #index div#main h2 {
    display: none;
  }
}
#index div.desc {
  background: #5D74D3;
  color: #fff;
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  #index div.desc {
    padding: 22.6666666667vw 0 13.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.desc div.inner_desc {
    width: 1000px;
    min-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 133px 0;
  }
}
@media screen and (min-width: 769px) {
  #index div.desc div.inner_desc h2 {
    width: 441px;
  }
}
@media screen and (max-width: 768px) {
  #index div.desc div.inner_desc h2 {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #index div.desc div.inner_desc div.right {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  #index div.desc p {
    width: 84%;
    margin: 0 auto 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.desc p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #index div.desc div.coupon {
    width: 84%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  #index div.desc div.coupon {
    width: 500px;
    margin: 0 auto;
  }
}
#index div.content {
  position: relative;
}
#index div.content::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#707070 1px, transparent 0), linear-gradient(90deg, #707070 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  #index div.content div.select {
    padding: 21.3333333333vw 0 12vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select {
    padding: 150px 0;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul {
    width: 1000px;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li {
    width: 84%;
    margin: 0 auto 8vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li {
    width: 450px;
    margin-bottom: 60px;
  }
}
#index div.content div.select ul li a {
  position: relative;
  display: block;
}
#index div.content div.select ul li a::before {
  content: "";
  display: block;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a::before {
    padding-top: 101.5873015873%;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a::before {
    padding-top: 98.9664082687%;
  }
}
#index div.content div.select ul li a div.staff {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a div.staff {
    top: 14.9206349206%;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a div.staff {
    top: 15.6657963446%;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a div.staff .slick-list {
    border-radius: 5.3333333333vw;
  }
}
#index div.content div.select ul li a h3 {
  font-weight: 700;
  position: absolute;
  letter-spacing: 0.05em;
  color: #5D74D3;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  z-index: 2;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a h3 {
    font-size: 11.2vw;
    top: 77.7777777778%;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a h3 {
    font-size: 49px;
    top: 75.9791122715%;
    left: 0;
  }
}
#index div.content div.select ul li a h4 {
  position: absolute;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a h4 {
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a h4 {
    bottom: 0;
    left: 0;
    font-size: 14px;
  }
}
#index div.content div.select ul li a h5 {
  position: absolute;
  line-height: 1;
  z-index: 2;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a h5 {
    top: 0;
    left: 0;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a h5 {
    top: 0;
    left: 0;
    font-size: 16px;
  }
}
#index div.content div.select ul li a h5 span {
  display: inline-block;
  background: #97CB8D;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a h5 span {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a h5 span {
    font-size: 16px;
    padding: 15px;
  }
}
#index div.content div.select ul li a div.arrow {
  position: absolute;
  background: #F0C5ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a div.arrow {
    right: 0;
    top: 79.3650793651%;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a div.arrow {
    right: -5.1679586563%;
    top: 79.634464752%;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a div.arrow span {
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a div.arrow span {
    font-size: 42px;
  }
}
#index div.content div.select ul li a div.staff {
  border-radius: 20px;
}
@media screen and (min-width: 769px) {
  #index div.content div.select ul li a div.staff div.loopimg ul {
    width: 100%;
  }
}
#index div.content div.select ul li a div.staff div.loopimg_pc {
  display: flex;
}
#index div.content div.select ul li a div.staff div.loopimg_pc div:first-child {
  animation: loop3 40s -20s linear infinite;
  animation-play-state: paused;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a div.staff div.loopimg_pc div:first-child {
    animation-play-state: running;
  }
}
#index div.content div.select ul li a div.staff div.loopimg_pc div:last-child {
  animation: loop4 40s linear infinite;
  animation-play-state: paused;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a div.staff div.loopimg_pc div:last-child {
    animation-play-state: running;
  }
}
#index div.content div.select ul li a div.staff div.loopimg_pc div.loop {
  display: flex;
}
#index div.content div.select ul li a div.staff div.loopimg_pc div.loop img {
  width: 210px;
  font-size: 0;
}
@media screen and (max-width: 768px) {
  #index div.content div.select ul li a div.staff div.loopimg_pc div.loop img {
    width: 42.6666666667vw;
  }
}
#index div.content div.select ul li a div.staff:hover div.loopimg_pc div:first-child {
  animation-play-state: running;
}
#index div.content div.select ul li a div.staff:hover div.loopimg_pc div:last-child {
  animation-play-state: running;
}
@keyframes loop3 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
#index div.present {
  box-sizing: border-box;
  border: 1px solid #000;
  border-left: none;
  border-right: none;
  background: #97CB8D;
}
@media screen and (max-width: 768px) {
  #index div.present {
    padding: 17.3333333333vw 0 34.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  #index div.present ul.loopslider2 {
    margin-bottom: 14.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present ul.loopslider2 {
    margin-bottom: 100px;
    border-bottom: 1px solid #000;
  }
}
#index div.present ul.loopslider2 li {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #index div.present ul.loopslider2 li {
    font-size: 9.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present ul.loopslider2 li {
    font-size: 1.7708333333vw;
  }
}
#index div.present ul.loopslider2 li span {
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #index div.present h3 {
    width: 58.1333333333%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  #index div.present h3 {
    width: 294px;
    margin: 0 auto;
  }
}
#index div.present h4 {
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #index div.present h4 {
    font-size: 5.3333333333vw;
    margin-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present h4 {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
#index div.present p {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #index div.present p {
    font-size: 3.2vw;
    width: 84%;
    margin: 0 auto 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present p {
    width: 700px;
    margin: 0 auto 85px;
    font-size: 16px;
  }
}
#index div.present div.imgArea {
  position: relative;
}
@media screen and (max-width: 768px) {
  #index div.present div.imgArea {
    width: 84%;
    margin: 0 auto 8vw;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.imgArea div.img01 {
    margin-bottom: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.imgArea div.img01 {
    width: 700px;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.imgArea div.img02 {
    width: 700px;
    margin: 0 auto 40px;
  }
}
#index div.present div.info {
  position: relative;
  background: #5D74D3;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #index div.present div.info {
    width: 84%;
    margin: 0 auto;
    padding: 14.6666666667vw 0 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info {
    width: 700px;
    margin: 0 auto;
    padding: 80px 0;
    border: 1px solid #000;
  }
}
#index div.present div.info h5 {
  text-align: center;
  color: #F0C5ED;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #index div.present div.info h5 {
    font-size: 12.8vw;
    margin-bottom: 8.8vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h5 {
    font-size: 48px;
    margin-bottom: 30px;
  }
}
#index div.present div.info h6 {
  text-align: center;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 {
    margin-bottom: 12vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 {
    margin-bottom: 45px;
    color: #fff;
  }
}
#index div.present div.info h6 span {
  display: block;
}
#index div.present div.info h6 span span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 span.first {
    font-size: 4.8vw;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 span.first {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 span.first span {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 span.first span {
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 span.second {
    font-size: 10.6666666667vw;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 span.second {
    font-size: 55px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 span.second span:nth-child(1) {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 span.second span:nth-child(1) {
    font-size: 27px;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 span.second span:nth-child(2) {
    font-size: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 span.second span:nth-child(2) {
    font-size: 33px;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 span.third {
    font-size: 6.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 span.third {
    font-size: 31px;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.info h6 span.third span {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info h6 span.third span {
    font-size: 24px;
  }
}
#index div.present div.info p {
  color: #fff;
}
@media screen and (min-width: 769px) {
  #index div.present div.info p {
    width: 490px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    color: #fff;
  }
}
@i span {
  @media screen and (min-width: 769px) {
    #index div.present div.info p {
      font-size: 14px;
    }
  }
}
#index div.present div.info a {
  text-decoration: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: block;
  border: 1px solid #000;
  background: #F0C5ED;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  #index div.present div.info a {
    font-size: 4.2666666667vw;
    width: 87.3015873016%;
    height: 26.6666666667vw;
    font-weight: 500;
  }
}
@media screen and (min-width: 769px) {
  #index div.present div.info a {
    font-size: 18px;
    width: 620px;
    height: 100px;
    font-weight: 500;
  }
}
#index div.present div.info a span {
  position: absolute;
  right: 7.2727272727%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #index div.present div.info a span {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 768px) {
  #index div.present div.info a span {
    font-size: 23px;
  }
}

div.coupon_footer {
  background: #F5F5F5;
  border: 1px solid #000;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  div.coupon_footer img {
    width: 84%;
    margin: 0 auto;
    padding: 6.6666666667vw 0;
  }
}
@media screen and (min-width: 769px) {
  div.coupon_footer img {
    width: 400px;
    padding: 50px 0;
    margin: 0 auto;
  }
}

div.main_footer {
  background: #F5F5F5;
  border: 1px dotted #000;
  border-left: none;
  border-top: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  div.main_footer {
    padding: 6.6666666667vw 0;
  }
}
@media screen and (min-width: 769px) {
  div.main_footer {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
div.main_footer img {
  width: 37.0666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.main_footer img {
    width: 234px;
    margin: 0 auto;
  }
}

div.main_footer2 {
  background: #F5F5F5;
  border: 1px dotted #000;
  border-left: none;
  border-top: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  div.main_footer2 {
    padding: 11.4666666667vw 0;
  }
}
@media screen and (min-width: 769px) {
  div.main_footer2 {
    padding: 40px 0;
  }
}
div.main_footer2 img {
  width: 48%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.main_footer2 img {
    width: 234px;
    margin: 0 auto;
  }
}

div.area {
  background: #F5F5F5;
}
@media screen and (min-width: 769px) {
  div.area {
    width: calc(100% - 40px);
    min-width: 1280px;
  }
}
div.area div.menu {
  top: 8vw;
}
@media screen and (min-width: 769px) {
  div.area div.menu {
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header {
    padding: 50px 0 128px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header {
    padding: 16vw 0 0vw;
    box-sizing: border-box;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.area_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1280px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.area_title {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.area_title::before {
    content: "";
    display: block;
    padding-top: 50.6666666667%;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.area_title div.left {
    width: 400px;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.area_title div.left h1 {
    width: 195px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.area_title div.left h1 {
    width: 37.3333333333%;
    position: absolute;
    top: 0;
    left: 3.2%;
  }
}
div.area div.area_content_header div.area_title div.left h2 {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5D74D3;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.area_title div.left h2 {
    font-size: 58px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.area_title div.left h2 {
    font-size: 11.2vw;
    line-height: 1;
    position: absolute;
    top: 51.5789473684%;
    left: 3.2%;
    z-index: 2;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.area_title div.left h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.area_title div.left h3 {
    font-size: 3.7333333333vw;
    line-height: 1;
    position: absolute;
    top: 77.8947368421%;
    left: 3.2%;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.area_title div.right {
    width: 254px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.area_title div.right {
    position: absolute;
    top: 0;
    right: 1.3333333333%;
    width: 48.5333333333%;
  }
}
div.area div.area_content_header div.main_img {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.main_img {
    width: 1280px;
    margin: 0 auto 130px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.main_img {
    margin-bottom: 13.8666666667vw;
  }
}
div.area div.area_content_header div.main_img::before {
  content: "";
  display: block;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.main_img::before {
    padding-top: 39.375%;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.main_img::before {
    padding-top: 110.6666666667%;
  }
}
div.area div.area_content_header div.main_img div.area_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
div.area div.area_content_header div.main_img div.img {
  position: absolute;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.main_img div.img {
    right: 0;
    bottom: 32.3412698413%;
    width: 29.84375%;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.main_img div.img {
    right: -2.6666666667%;
    bottom: 56.8674698795%;
    width: 52.5333333333%;
    z-index: 2;
  }
}
div.area div.area_content_header div.temperature {
  background: #97CB8D;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.temperature {
    width: 210px;
    height: 83px;
    border-radius: 10px;
    top: 5.9642147117%;
    left: 2.34375%;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.temperature {
    width: 40%;
    top: 2.6666666667%;
    left: 2.4096385542%;
    height: 16vw;
    border-radius: 2.6666666667vw;
  }
}
div.area div.area_content_header div.temperature p {
  text-align: center;
}
div.area div.area_content_header div.temperature p:first-child {
  width: 100%;
  border-bottom: 1px solid #81B577;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.temperature p:first-child {
    height: 40px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.temperature p:first-child {
    font-size: 2.9333333333vw;
    height: 7.7333333333vw;
  }
}
div.area div.area_content_header div.temperature p.min, div.area div.area_content_header div.temperature p.max {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.temperature p.min, div.area div.area_content_header div.temperature p.max {
    font-size: 13px;
    height: 43px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.temperature p.min, div.area div.area_content_header div.temperature p.max {
    font-size: 2.6666666667vw;
    height: 8.2666666667vw;
  }
}
div.area div.area_content_header div.temperature p.min > span, div.area div.area_content_header div.temperature p.max > span {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.temperature p.min > span, div.area div.area_content_header div.temperature p.max > span {
    font-size: 30px;
    display: inline-block;
    margin-left: 8px;
    position: relative;
    top: -3px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.temperature p.min > span, div.area div.area_content_header div.temperature p.max > span {
    font-size: 5.8666666667vw;
    display: inline-block;
    margin-left: 1.3333333333vw;
    position: relative;
    top: -0.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.temperature p.min > span span, div.area div.area_content_header div.temperature p.max > span span {
    font-size: 22px;
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.temperature p.min > span span, div.area div.area_content_header div.temperature p.max > span span {
    font-size: 4.2666666667vw;
    display: inline-block;
  }
}
div.area div.area_content_header div.temperature p.min {
  border-right: 1px solid #81B577;
}
div.area div.area_content_header div.profile {
  position: absolute;
  background: #fff;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile {
    width: 1080px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 50px 40px;
    align-items: center;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile {
    box-sizing: border-box;
    width: 89.3333333333%;
    top: 37.1084337349%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6.6666666667vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile div.left {
    margin-bottom: 5.8666666667vw;
  }
}
div.area div.area_content_header div.profile div.left p {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.left p {
    width: 482px;
    margin-left: auto;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile div.left p {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.right {
    width: 50%;
  }
}
div.area div.area_content_header div.profile div.right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.right ul {
    width: 409px;
    margin-left: auto;
    padding-right: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.right ul li:first-child {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile div.right ul li:first-child {
    width: 20.8955223881%;
  }
}
div.area div.area_content_header div.profile div.right ul li:first-child img {
  border-radius: 50%;
}
div.area div.area_content_header div.profile div.right ul li:last-child {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.right ul li:last-child {
    width: 290px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile div.right ul li:last-child {
    width: 73.1343283582%;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.right ul li:last-child div.linkArea {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile div.right ul li:last-child div.linkArea {
    display: flex;
    justify-content: space-between;
    margin-top: 2.6666666667vw;
  }
}
div.area div.area_content_header div.profile div.right ul li:last-child div.linkArea a {
  color: #000;
  background: #EAC0E7;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.right ul li:last-child div.linkArea a {
    font-size: 14px;
    width: 140px;
    height: 30px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile div.right ul li:last-child div.linkArea a {
    justify-content: center;
    font-size: 2.9333333333vw;
    width: 26.9333333333vw;
    height: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.profile div.right ul li:last-child div.linkArea a span {
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.profile div.right ul li:last-child div.linkArea a span {
    font-size: 2.9333333333vw;
    margin-left: 1.3333333333vw;
  }
}
div.area div.area_content_header div.greenarea {
  background: #97CB8D;
}
div.area div.area_content_header div.greenarea ul.en {
  color: #fff;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.greenarea ul.en {
    font-size: 1.7708333333vw;
    padding: 0.4166666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.greenarea ul.en {
    font-size: 9.0666666667vw;
    padding: 2.1333333333vw 0;
    white-space: nowrap;
  }
}
div.area div.area_content_header div.greenarea ul.jp {
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 769px) {
  div.area div.area_content_header div.greenarea ul.jp {
    font-size: 0.8333333333vw;
    padding: 0.5208333333vw 0;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  div.area div.area_content_header div.greenarea ul.jp {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw 0;
    line-height: 1.5;
  }
}
div.area div.pickup_item {
  background: #5D74D3;
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  div.area div.pickup_item {
    padding: 8vw 0;
  }
}
div.area div.pickup_item a.inner {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item a.inner {
    width: 477px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  div.area div.pickup_item a.inner {
    width: 58.6666666667%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
}
div.area div.pickup_item a.inner div.img {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item a.inner div.img {
    width: 400px;
  }
}
div.area div.pickup_item a.inner div.img > img {
  border-radius: 50%;
}
div.area div.pickup_item a.inner div.img span {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item a.inner div.img span {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.pickup_item a.inner div.img span {
    width: 36.3636363636%;
  }
}
div.area div.pickup_item a.inner ul {
  color: #fff;
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item a.inner ul {
    width: 134px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.pickup_item a.inner ul {
    text-align: center;
    color: #fff;
  }
}
div.area div.pickup_item a.inner ul li {
  line-height: 1;
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item a.inner ul li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.pickup_item a.inner ul li {
    font-size: 2.9333333333vw;
    text-align: center;
    line-height: 2;
  }
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item a.inner ul li:nth-child(2) {
    white-space: nowrap;
  }
}
div.area div.pickup_item a.inner ul li:last-child {
  margin-bottom: 0;
  color: #000;
  background: #97CB8D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area div.pickup_item a.inner ul li:last-child {
    width: 100px;
    height: 40px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.pickup_item a.inner ul li:last-child {
    width: 59.7333333333%;
    height: 10.6666666667vw;
    font-size: 3.2vw;
    margin: 2.6666666667vw auto 0;
  }
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea {
    width: 1000px;
    margin: 75px auto 0;
  }
}
div.area div.stylingArea h4 {
  position: relative;
  text-align: center;
  border: 1px solid #000;
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #97CB8D;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea h4 {
    height: 100px;
    font-size: 43px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea h4 {
    height: 26.6666666667vw;
    font-size: 11.4666666667vw;
  }
}
div.area div.stylingArea h4 span {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea h4 span {
    font-size: 57px;
    margin-left: 10px;
    top: -3px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea h4 span {
    font-size: 15.2vw;
    top: -0.8vw;
    margin-left: 4vw;
  }
}
div.area div.stylingArea h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#707070 1px, transparent 0), linear-gradient(90deg, #707070 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.2;
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.img {
    width: 500px;
  }
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.detail {
    width: 450px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea div.style div.detail {
    transform: translateY(-10.6666666667vw);
    width: 84%;
    margin: 0 auto;
  }
}
div.area div.stylingArea div.style div.detail p {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.detail p {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea div.style div.detail p {
    background: #fff;
    border: 1px solid #000;
    padding: 8.5333333333vw;
    box-sizing: border-box;
    font-size: 3.2vw;
    margin-bottom: 11.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.detail ul.credit li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea div.style div.detail ul.credit li {
    margin-bottom: 4vw;
  }
}
div.area div.stylingArea div.style div.detail ul.credit li a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
div.area div.stylingArea div.style div.detail ul.credit li a div.buy {
  background: #5D74D3;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.buy {
    font-size: 12px;
    width: 58px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.buy {
    width: 18.4126984127%;
    height: 7.4666666667vw;
  }
}
div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item {
    width: 380px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item div.img {
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item div.img {
    width: 23.3463035019%;
  }
}
div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item p {
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item p {
    width: 310px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  div.area div.stylingArea div.style div.detail ul.credit li a div.credit_item p {
    background: none !important;
    padding: 0 !important;
    border: none;
    width: 70.0389105058%;
  }
}
div.area .jtbArea {
  border-top: 1px solid #000;
  background: #97CB8D;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea {
    padding: 120px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea {
    padding: 26.6666666667vw 0;
  }
}
div.area .jtbArea div.recommend {
  background: #fff;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend {
    width: 1280px;
    margin: 0 auto;
    padding: 60px 90px 75px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend {
    padding: 16vw 5.3333333333vw 16vw;
    width: 84%;
    margin: 0 auto;
  }
}
div.area .jtbArea div.recommend h4 {
  letter-spacing: 0.05em;
  color: #F0C5ED;
  font-weight: 700;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  position: absolute;
  top: -0.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend h4 {
    font-size: 52px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend h4 {
    font-size: 13.8666666667vw;
  }
}
div.area .jtbArea div.recommend h5 {
  text-align: center;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend h5 {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend h5 {
    font-size: 5.3333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
div.area .jtbArea div.recommend h5 span {
  display: block;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend h5 span {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend h5 span {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
div.area .jtbArea div.recommend p.attention {
  position: absolute;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend p.attention {
    bottom: 15px;
    right: 30px;
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend p.attention {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    width: 85%;
  }
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend div.jtbStaff {
    width: 297px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend div.jtbStaff {
    width: 94.1818181818%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend div.jtbStaff div.img {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend div.jtbStaff div.img {
    width: 29.0909090909%;
  }
}
div.area .jtbArea div.recommend div.jtbStaff div.img img {
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail {
    width: 198px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail {
    width: 61.0909090909%;
  }
}
div.area .jtbArea div.recommend div.jtbStaff div.detail p:first-child {
  background: #97CB8D;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail p:first-child {
    width: 198px;
    height: 30px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail p:first-child {
    width: 100%;
    border-radius: 1.3333333333vw;
    height: 8vw;
  }
}
div.area .jtbArea div.recommend div.jtbStaff div.detail p:first-child::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail p:first-child::before {
    border-right: 10px solid transparent;
    border-bottom: 20px solid #97CB8D;
    border-left: 10px solid transparent;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    left: -7px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail p:first-child::before {
    border-right: 10px solid transparent;
    border-bottom: 20px solid #97CB8D;
    border-left: 10px solid transparent;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    left: -7px;
  }
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail p:last-child {
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend div.jtbStaff div.detail p:last-child {
    font-size: 3.7333333333vw;
    text-align: center;
  }
}
div.area .jtbArea div.recommend div.jtbStaff div.detail p:last-child span {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots {
    width: 1104px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li {
    width: 340px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li {
    margin-bottom: 11.2vw;
  }
}
div.area .jtbArea div.recommend ul.spots li div.img {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li div.img {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li div.img {
    margin-bottom: 5.3333333333vw;
  }
}
div.area .jtbArea div.recommend ul.spots li div.img::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: #5D74D3;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li div.img::before {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li div.img::before {
    width: 30px;
    height: 30px;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li div.img img {
    border-radius: 0 15px 15px 15px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li div.img img {
    border-radius: 0 4vw 4vw 4vw;
  }
}
div.area .jtbArea div.recommend ul.spots li h6 {
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li h6 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li h6 {
    font-size: 3.7333333333vw;
    margin-bottom: 3.2vw;
  }
}
div.area .jtbArea div.recommend ul.spots li p.explain {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li p.explain {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li p.explain {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
}
div.area .jtbArea div.recommend ul.spots li div.info {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li div.info img {
    width: 16px;
    margin-right: 5px;
    position: relative;
    top: 3px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li div.info img {
    width: 4.2666666667vw;
    margin-right: 1.3333333333vw;
    position: relative;
    top: 0.8vw;
  }
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li div.info p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li div.info p {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  div.area .jtbArea div.recommend ul.spots li div.info p span {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  div.area .jtbArea div.recommend ul.spots li div.info p span {
    font-size: 2.9333333333vw;
  }
}
div.area .jtbArea div.recommend ul.spots li:nth-child(1) div.img::before {
  content: "1";
}
div.area .jtbArea div.recommend ul.spots li:nth-child(2) div.img::before {
  content: "2";
}
div.area .jtbArea div.recommend ul.spots li:nth-child(3) div.img::before {
  content: "3";
}/*# sourceMappingURL=style.css.map */