@charset "UTF-8";
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

ul li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

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

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

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

@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transition-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 {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

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

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    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);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%,
  100% {
    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 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);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@keyframes tada {
  0% {
    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);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

@keyframes wobble {
  0% {
    transform: none;
  }
  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);
  }
  100% {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    transition-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);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.75s;
}

@keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-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);
  }
  100% {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-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);
  }
  100% {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-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);
  }
  100% {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    transition-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, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    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);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  animation-name: bounceOut;
  animation-duration: 0.75s;
}

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    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);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

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

.fadeIn {
  animation-name: fadeIn;
}

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

.fadeInDown {
  animation-name: fadeInDown;
}

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

.fadeInRight {
  animation-name: fadeInRight;
}

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

.fadeInUp {
  animation-name: fadeInUp;
}

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

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

.fadeOut {
  animation-name: fadeOut;
}

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) 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);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rotateIn {
  animation-name: rotateIn;
}

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

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

.rotateOut {
  animation-name: rotateOut;
}

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    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;
  }
  100% {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

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

.rollIn {
  animation-name: rollIn;
}

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

.rollOut {
  animation-name: rollOut;
}

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

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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 {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    transform: translateY(100%);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(-100%);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(100%);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    transform: translateY(-100%);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 62.5%;
  background: url(../images/shared/bg.gif) repeat center center; 
  color: #fff;
  vertical-align: top;
  font-family: mplus-1c-regular, "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

@font-face {
  font-family: mplus-2c-medium;
  src: url(../fonts/mplus-2c-medium-sub.eot);
  src: url(../fonts/mplus-2c-medium-sub.eot?#iefix) format("embedded-opentype"),
    url(../fonts/mplus-2c-medium-sub.woff) format("woff"),
    url(../fonts/mplus-2c-medium-sub.ttf) format("truetype");
}

@font-face {
  font-family: mplus-1c-regular;
  src: url(../fonts/mplus-1c-regular.eot);
  src: url(../fonts/mplus-1c-regular.eot?#iefix) format("embedded-opentype"),
    url(../fonts/mplus-1c-regular.woff) format("woff"),
    url(../fonts/mplus-1c-regular.ttf) format("truetype");
}

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.75;
}

.btn {
  padding-top: 20px;
}

.btn a {
  width: 320px;
  margin: 0 auto;
  display: block;
  border-radius: 25px;
  font-size: 20px;
  color: #603538;
  text-decoration: none;
  padding: 6px 0;
}

.pager {
  text-align: center;
  font-size: 32px;
}

.pager a {
  padding-right: 0;
  text-decoration: none;
}

.pager .page-numbers {
  margin: 4px;
  border-radius: 5px;
  padding: 3px 15px;
  line-height: 4;
  color: #984745;
}

.pager .page-numbers.prev:after {
  content: "\f107";
  font-family: Ionicons;
}

.pager .page-numbers.next:after {
  content: "\f10a";
  font-family: Ionicons;
}

#page {
  width: 100%;
  min-width: 750px;
  overflow: hidden;
  background: url(../images/shared/bg_page.png) no-repeat center 120px;
}

#page .inner {
  width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

.section {
  padding: 130px 0 10px;
  width: 100%;
  min-width: 640px;
  text-align: center;
}

.section h2 {
  margin-bottom: 5px;
  background: url(../images/shared/bg_h2.png) no-repeat center top;
  font-family: mplus-1c-regular;
  color: #6b3b3e;
  font-size: 36px;
  line-height: 1.9;
}

.section h2.staffblog {
  background: url(../images/shared/bg_h2-staffblog.png) no-repeat center top;
}

.section h2.specialitem {
  background: url(../images/shared/bg_h2-specialitem.png) no-repeat center top;
}

header {
  background: url(../images/shared/bg_header.png) repeat-x center top;
  padding: 20px 0;
  width: 100%;
  min-width: 640px;
  position: fixed;
  z-index: 10;
}

header h1 {
  float: left;
  padding: 12px 0 0 10px;
}

header ul {
  float: right;
  overflow: hidden;
}

header ul li {
  float: left;
  padding: 0 10px;
}

#animatedModal,
#animatedModal2 {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

#animatedModal .close-animatedModal,
#animatedModal .close-animatedModal2,
#animatedModal2 .close-animatedModal,
#animatedModal2 .close-animatedModal2 {
  border: 2px solid #ffdc33;
  background: linear-gradient(to bottom, #ffe94e 0, #ffdb30 100%);
  color: #6b3b3e;
  font-size: 40px;
  border-radius: 5px;
  width: 50px;
  text-align: center;
  line-height: 1.2;
  float: right;
  margin-right: 30px;
}

#animatedModal nav,
#animatedModal2 nav {
  padding-bottom: 30px;
}

#animatedModal nav dl,
#animatedModal2 nav dl {
  width: 640px;
  margin: 0 auto;
  color: #603538;
}

#animatedModal nav dl dt,
#animatedModal2 nav dl dt {
  display: block;
  font-size: 24px;
  border: 2px solid #ffdc33;
  background: linear-gradient(to bottom, #ffe94e 0, #ffdb30 100%);
  border-radius: 10px;
  padding-top: 0;
  margin-top: 20px;
  position: relative;
}

#animatedModal nav dl dt:after,
#animatedModal2 nav dl dt:after {
  content: "\f10a";
  font-family: Ionicons;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -18px;
  color: #603538;
}

#animatedModal nav dl dt.ico_blank:after,
#animatedModal2 nav dl dt.ico_blank:after {
  content: "";
  background: url(../images/shared/icon_blank.png) no-repeat 0 center;
  background-size: contain;
  width: 28px;
  height: 28px;
  margin-top: -14px;
}

#animatedModal nav dl dt.pulldown,
#animatedModal2 nav dl dt.pulldown {
  padding: 15px 20px;
  cursor: pointer;
}

#animatedModal nav dl dt.pulldown:after,
#animatedModal2 nav dl dt.pulldown:after {
  content: "\f217";
}

#animatedModal nav dl dt.pulldown.active:after,
#animatedModal2 nav dl dt.pulldown.active:after {
  content: "\f208";
}

#animatedModal nav dl dt.cs,
#animatedModal2 nav dl dt.cs {
  padding: 15px 20px;
  border: 2px solid #ddd;
  background: linear-gradient(to bottom, #ebebeb 0, #dfdfdf 100%);
}

#animatedModal nav dl dt.cs:after,
#animatedModal2 nav dl dt.cs:after {
  content: "coming soon";
  font-family: mplus-1c-regular;
  color: #c5bcbd;
}

#animatedModal nav dl dt a,
#animatedModal2 nav dl dt a {
  display: block;
  padding: 15px 20px;
  color: #603538;
  text-decoration: none;
}

#animatedModal nav dl dd,
#animatedModal2 nav dl dd {
  display: none;
}

#animatedModal nav dl dd ul,
#animatedModal2 nav dl dd ul {
  padding: 0 40px;
}

#animatedModal nav dl dd ul li,
#animatedModal2 nav dl dd ul li {
  margin-top: 15px;
  font-size: 20px;
  border: 2px solid #ffe86e;
  background: linear-gradient(to bottom, #fff1a5 0, #ffe96f 100%);
  border-radius: 10px;
}

#animatedModal nav dl dd ul li a,
#animatedModal2 nav dl dd ul li a {
  display: block;
  padding: 10px 20px;
  color: #603538;
  text-decoration: none;
  position: relative;
}

#animatedModal nav dl dd ul li a:after,
#animatedModal2 nav dl dd ul li a:after {
  content: "\f10a";
  font-family: Ionicons;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -18px;
  color: #603538;
}

#animatedModal nav ul > .btn > a,
#animatedModal2 nav ul > .btn > a {
  padding: 15px 20px;
  width: 100%;
  box-sizing: border-box;
}

#animatedModal2 .inner {
  width: 640px;
  margin: 0 auto;
}

form.gsc-search-box {
  padding: 100px 60px !important;
  box-sizing: border-box;
}

form.gsc-search-box input[type="text"] {
  width: 370px;
  height: 40px;
  font-size: 28px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: 0 0;
  border: 1px solid #cbcbcb;
}

form.gsc-search-box input[type="text"]:focus {
  outline: 0;
}

form.gsc-search-box input[type="button"] {
  font-size: 20px;
  background: linear-gradient(to bottom, #ededed 0, #e1e1e1 100%);
  border: 2px solid #cbcbcb;
  border-radius: 5px;
  width: 120px;
  height: 45px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #603538;
}

.s-etc {
  font-size: 0;
  background: url(../images/top/bg_etc.png) no-repeat center center;
  padding: 0;
}

.s-etc ul li {
  padding: 9.5px;
  display: inline-block;
}

.s-etc ul li img {
  border: 4px solid #92674b;
}

footer {
  text-align: center;
  font-size: 16px;
  background: url(../images/shared/bg_footer.png) no-repeat center -20px;
  padding-top: 215px;
  width: 100%;
  min-width: 640px;
}

footer .btn_pagetop {
  display: none;
}

@media only screen and (min-width: 768px) {
  footer .btn_pagetop {
    display: block;
    position: fixed;
    right: 30px;
    bottom: 30px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.8s;
  }
  footer .btn_pagetop.show {
    visibility: visible;
    opacity: 1;
    transition: all 0.8s;
  }
}

.f-cooperate {
  background: url(../images/shared/bg_f-cooperate.png) repeat-x center top;
  padding: 30px 0 20px;
}

.f-cooperate ul li {
  display: inline-block;
  border-left: 1px solid #6b3b3e;
  padding: 0 3px 0 8px;
  line-height: 1;
}

.f-cooperate ul li:first-child {
  border-left: none;
}

.f-cooperate ul li a {
  color: #6b3b3e;
  text-decoration: none;
}

.f-site {
  background: url(../images/shared/bg_f-site.jpg) repeat-x center top;
  padding: 35px 0 25px;
}

.f-site ul li {
  display: inline-block;
  padding: 0 5px;
}

.f-site .copyright {
  padding-top: 10px;
}

.news_item__container,
.staffblog_item__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news_item__container .news_item,
.news_item__container .staffblog_item,
.staffblog_item__container .news_item,
.staffblog_item__container .staffblog_item {
  margin: 10px;
  -ms-flex-preferred-size: 355px;
  flex-basis: 355px;
}

.news_item__container .news_item a,
.news_item__container .staffblog_item a,
.staffblog_item__container .news_item a,
.staffblog_item__container .staffblog_item a {
  display: block;
  padding: 10px;
  color: #984745;
  text-decoration: none;
  padding: 10px 10px 15px;
}

.news_item__container .news_item a picture img,
.news_item__container .staffblog_item a picture img,
.staffblog_item__container .news_item a picture img,
.staffblog_item__container .staffblog_item a picture img {
  border-radius: 3px;
}

.news_item__container .news_item a dl,
.news_item__container .staffblog_item a dl,
.staffblog_item__container .news_item a dl,
.staffblog_item__container .staffblog_item a dl {
  padding: 5px;
  text-align: left;
}

.news_item__container .news_item a dl dt,
.news_item__container .staffblog_item a dl dt,
.staffblog_item__container .news_item a dl dt,
.staffblog_item__container .staffblog_item a dl dt {
  font-size: 20px;
  padding-bottom: 5px;
}

.news_item__container .news_item a dl dt span,
.news_item__container .staffblog_item a dl dt span,
.staffblog_item__container .news_item a dl dt span,
.staffblog_item__container .staffblog_item a dl dt span {
  font-size: 15px;
  background: #ffa800;
  color: #fff;
  border-radius: 20px;
  padding: 5px 8px;
  margin-left: 10px;
  vertical-align: text-top;
}

.news_item__container .news_item a dl dd,
.news_item__container .staffblog_item a dl dd,
.staffblog_item__container .news_item a dl dd,
.staffblog_item__container .staffblog_item a dl dd {
  font-size: 24px;
  line-height: 1.2;
  word-break: break-all;
}

.news_item__container .news_item,
.staffblog_item__container .news_item {
  background: url(../images/shared/bg_newsItem.png) no-repeat center center;
}

.news_item__container .staffblog_item,
.staffblog_item__container .staffblog_item {
  background: url(../images/shared/bg_staffblogItem.png) no-repeat center center;
}

body.single .news_item__container .news_item,
body.single .news_item__container .staffblog_item,
body.single .staffblog_item__container .news_item,
body.single .staffblog_item__container .staffblog_item {
  -ms-flex-preferred-size: 230px;
  flex-basis: 230px;
}

body.single .news_item__container .news_item a picture img,
body.single .news_item__container .staffblog_item a picture img,
body.single .staffblog_item__container .news_item a picture img,
body.single .staffblog_item__container .staffblog_item a picture img {
  width: 100%;
}

body.single .news_item__container .news_item a dl dt,
body.single .news_item__container .staffblog_item a dl dt,
body.single .staffblog_item__container .news_item a dl dt,
body.single .staffblog_item__container .staffblog_item a dl dt {
  font-size: 14px;
  padding-bottom: 5px;
}

body.single .news_item__container .news_item a dl dt span,
body.single .news_item__container .staffblog_item a dl dt span,
body.single .staffblog_item__container .news_item a dl dt span,
body.single .staffblog_item__container .staffblog_item a dl dt span {
  font-size: 9px;
  padding: 5px 8px;
  margin-left: 10px;
}

body.single .news_item__container .news_item a dl dd,
body.single .news_item__container .staffblog_item a dl dd,
body.single .staffblog_item__container .news_item a dl dd,
body.single .staffblog_item__container .staffblog_item a dl dd {
  font-size: 18px;
  line-height: 1.2;
}

body.single .entry {
  text-align: left;
  padding: 10px;
  width: 720px;
  margin: 20px auto 0;
  position: relative;
  background-image: url(../images/news/bg_entryTop.png),
    url(../images/news/bg_entryBottom.png), url(../images/news/bg_entry.png);
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: center top, center bottom, center center;
}

body.single .entry .entry-header {
  background: #906251;
  padding: 15px;
}

body.single .entry .entry-header h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

body.single .entry .entry-header h3 time {
  font-size: 20px;
  margin-right: 10px;
}

body.single .entry .entry-header h3 span {
  font-size: 16px;
  background: #ffa800;
  color: #fff;
  border-radius: 15px;
  padding: 2px 8px;
  position: absolute;
  right: 30px;
}

body.single .entry .entry-body {
  background: #fff;
  padding: 30px 50px;
  font-size: 22px;
  line-height: 1.6;
  color: #6b3b3e;
  min-height: 430px;
}

body.single .entry .entry-body h4 {
  color: #ff6c00;
  font-size: 24px;
  border-bottom: 4px solid #fec624;
  font-weight: 400;
  margin-bottom: 10px;
}

body.single .entry .entry-body dl + h4,
body.single .entry .entry-body p + h4 {
  margin-top: 20px;
}

body.single .entry .entry-body ol {
  padding-left: 30px;
}

body.single .entry .entry-body a {
  color: #ffa800;
}

body.single .entry + nav ul {
  text-align: center;
}

body.single .entry + nav ul .btn {
  display: inline-block;
  padding: 30px 7px;
}

body.single .entry + nav ul .btn a {
  width: 300px;
}

body.single .entry + nav ul .btn.btn_prev a:before {
  content: "\f107";
  font-family: Ionicons;
  margin-right: 10px;
}

body.single .entry + nav ul .btn.btn_next a:after {
  content: "\f10a";
  font-family: Ionicons;
  margin-left: 10px;
}

/*-------------
fair end
---------------*/

.end {
  position: relative;
}

.end:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.65);
  display: block;
  width: 100%;
  max-width: 750px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}

.end:after {
  content: "";
  background: url(../images/shared/icon_fair_end.png) no-repeat 0 0 /contain;
  width: 460px;
  height: 80px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-6deg) translate(-50%, -50%);
  z-index: 2;
}
