@charset "UTF-8";
/* media quary */
/*
Bootstrap4の設定例）
xs (Extra Small): ~575px
sm (Small): 576px~767px
md (Medium): 768px〜991px
lg (Large): 992px~1199px
xl (Extra Large): 1200px〜
*/
/*
bg-base rgba(239,240,222)
rgba(065,009,008)
rgba(235,209,079)

rgba(228,227,223)

(209,183,153)

 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  font-size: 62.5%;
}

/* Windows 用 Medium 指定の游ゴシック */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}
/* font-weight: bold の時は通常どおり Bold 書体を使わせる */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
body {
  padding: 0;
  margin: 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-size: 16px;
  line-height: 2.1875;
  color: #000;
  font-weight: 400;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: 0.025em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
h2, h3 {
  letter-spacing: 0.3em;
}

main {
  display: block;
}

address {
  font-style: normal;
}

a {
  color: #004AA1;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
a:link {
  color: #004AA1;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 767.98px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

ul, ol {
  margin: 0;
  padding: 0;
}

ol {
  list-style-type: none;
}

hr {
  height: 0;
  border: 0;
  border-top: 1px solid #ccc;
  margin-top: 2em;
  margin-bottom: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

ul,
ol {
  list-style: none;
}

body button {
  border: none;
  padding: 0;
}
body button:focus {
  background: none;
}

.fixed-area {
  position: fixed;
  z-index: 10000;
  width: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fixed-area .fixed-area__link {
  width: 600px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 997.98px) {
  .fixed-area .fixed-area__link {
    width: 80%;
  }
}

.wp-block-embed iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  aspect-ratio: 16/9;
}

@media screen and (max-width: 767.98px) {
  .u-sp-hidden {
    display: none;
  }
}

.u-pc-hidden {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-pc-hidden {
    display: block;
  }
}

.u-hidden {
  display: none !important;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.1s linear 0.05s;
  transition: color 0.1s linear 0.05s;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn::after {
  -webkit-transition: border 0.1s linear 0.05s;
  transition: border 0.1s linear 0.05s;
}
.btn .btn-inner {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #373737;
  -webkit-transition: color 0.1s linear 0s;
  transition: color 0.1s linear 0s;
}
.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn:hover::after {
  border-color: #373737;
  -webkit-transition: border 0.1s linear 0s;
  transition: border 0.1s linear 0s;
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .slideshow {
    height: 100%;
  }
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
}
@media screen and (max-width: 767.98px) {
  .slideshow .slide .caption {
    padding: 0 15px;
  }
}
.slideshow .slide .caption .btn-inner {
  color: #fff;
}
.slideshow .slide .caption .btn-inner:hover {
  color: #333;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 300 50px/1.2 "Oswald", Noto Serif JP, sans-serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
@media screen and (max-width: 767.98px) {
  .slideshow .slide .title {
    font-size: 8.5333333333vw;
    line-height: 1.25;
  }
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .slideshow .slide .text {
    font-size: 4.8vw;
    line-height: 1.6666666667;
  }
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
@media screen and (max-width: 767.98px) {
  .slideshow .arrows .prev {
    left: 0;
  }
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
@media screen and (max-width: 767.98px) {
  .slideshow .arrows .next {
    right: 0;
  }
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  -webkit-transition: left 0.2s ease;
  transition: left 0.2s ease;
}

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

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

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

.u-text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.u-japanease {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  overflow: hidden;
}

.u-word-break {
  word-break: break-all;
}

.u-white-space {
  white-space: nowrap;
}

.js-animation.is-fadeInDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.js-order01, .js-order02, .js-order03, .js-order04 {
  opacity: 0;
  display: block;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-order01.is-view, .js-order02.is-view, .js-order03.is-view, .js-order04.is-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-animation-left.is-fadeInDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown-left;
  animation-name: fadeInDown-left;
  visibility: visible !important;
}
@-webkit-keyframes fadeInDown-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-170px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-170px);
    transform: translateX(-170px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.js-animation-right.is-fadeInDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown-right;
  animation-name: fadeInDown-right;
  visibility: visible !important;
}
@-webkit-keyframes fadeInDown-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(170px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateX(170px);
    transform: translateX(170px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

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

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

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

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

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* バウンドする */
.bounding img {
  -webkit-animation: bound 3.4s linear;
          animation: bound 3.4s linear;
}

@-webkit-keyframes bound {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  5% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  15% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  35% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  45% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
  55% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  65% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  85% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  95% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bound {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  5% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  15% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  35% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  45% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
  55% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  65% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  85% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  95% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左右に揺れる */
.floating-x {
  -webkit-animation: floatx 2s ease-in-out infinite;
          animation: floatx 2s ease-in-out infinite;
}

@-webkit-keyframes floatx {
  0% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
  50% {
    -webkit-transform: translatex(-10px);
            transform: translatex(-10px);
  }
  100% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
}

@keyframes floatx {
  0% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
  50% {
    -webkit-transform: translatex(-10px);
            transform: translatex(-10px);
  }
  100% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
}
/* 上下に揺れる */
.floating-y {
  -webkit-animation: floaty 1.4s ease-in-out infinite;
          animation: floaty 1.4s ease-in-out infinite;
}

@-webkit-keyframes floaty {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-15px);
            transform: translatey(-15px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes floaty {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-15px);
            transform: translatey(-15px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
/* かたむく */
.tilting {
  -webkit-animation: tilt 2.4s infinite;
          animation: tilt 2.4s infinite;
}

@-webkit-keyframes tilt {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes tilt {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
/* 回転 */
.spin {
  -webkit-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
/*-----------------------------------------------------
Effects
----------------------------------------------------- */
/* ふるえる (animated.cssカスタマイズ) */
.shake {
  -webkit-animation-name: shake;
  -webkit-animation: shake 4.8s linear infinite;
          animation: shake 4.8s linear infinite;
}

@keyframes shake {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  3% {
    -webkit-transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  6% {
    -webkit-transform: translate3d(8%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(8%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  9% {
    -webkit-transform: translate3d(-6%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-6%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  12% {
    -webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  15% {
    -webkit-transform: translate3d(-2%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-2%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  18% {
    -webkit-transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(0%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* バウンドする */
.bounding img {
  -webkit-animation: bound 3.4s linear;
          animation: bound 3.4s linear;
}

@keyframes bound {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  5% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  15% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  35% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  45% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
  55% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  65% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  85% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  95% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左右に揺れる */
.floating-x {
  -webkit-animation: floatx 2s ease-in-out infinite;
          animation: floatx 2s ease-in-out infinite;
}

@keyframes floatx {
  0% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
  50% {
    -webkit-transform: translatex(-10px);
            transform: translatex(-10px);
  }
  100% {
    -webkit-transform: translatex(0px);
            transform: translatex(0px);
  }
}
/* 上下に揺れる */
.floating-y {
  -webkit-animation: floaty 1.4s ease-in-out infinite;
          animation: floaty 1.4s ease-in-out infinite;
}

@keyframes floaty {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-15px);
            transform: translatey(-15px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
/* かたむく */
.tilting {
  -webkit-animation: tilt 2.4s infinite;
          animation: tilt 2.4s infinite;
}

@keyframes tilt {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
/* 回転 */
.spin {
  -webkit-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.js-main-fade {
  display: none;
  top: -300px !important;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.js-main-fade.is-open {
  top: -5px !important;
}
@media screen and (max-width: 767.98px) {
  .js-main-fade.is-open {
    top: calc((15 / 750) * 100vw) !important;
  }
}

.swiper-slide {
  cursor: pointer;
}

.p-event__slide {
  position: relative;
  width: 624px;
  margin-left: auto;
}
@media screen and (max-width: 997.98px) {
  .p-event__slide {
    margin-top: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 997.98px) and (max-width: 767.98px) {
  .p-event__slide {
    margin-top: 0;
  }
}

.p-event__slide .swiper-button-prev {
  background-image: url(../../_assets/img/common/icon_slide_arrow_left.svg);
  left: -40px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 767.98px) {
  .p-event__slide .swiper-button-prev {
    left: -15px;
  }
}

.p-event__slide .swiper-button-next {
  background-image: url(../../_assets/img/common/icon_slide_arrow_right.svg);
  right: -40px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 767.98px) {
  .p-event__slide .swiper-button-next {
    right: -15px;
  }
}

.slide-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.slide-card .slide-card__title {
  position: relative;
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .slide-card .slide-card__title {
    width: 80%;
    margin: 10px auto;
  }
}
.slide-card .slide-card__title:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 13px;
  height: 14px;
  background-image: url(../../_assets/img/common/icon_arrow_down.svg);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.slide-card .slide-card__sub img {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .slide-card .slide-card__sub {
    width: 80%;
    margin: 0 auto;
  }
}

.c-scroll-box {
  overflow-x: auto;
  /* 横スクロールの指定 */
  overflow-scrolling: touch;
  /* スクロールを滑らかにする */
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .c-scroll-box > img {
    width: auto;
    max-width: none;
    height: 463px;
    padding: 20px 0;
  }
}

/*スクロールバー全体の高さ*/
@media screen and (max-width: 767.98px) {
  .c-scroll-box::-webkit-scrollbar {
    height: 10px;
  }
}

/*スクロールバー全体の背景*/
@media screen and (max-width: 767.98px) {
  .c-scroll-box::-webkit-scrollbar-track {
    background: #eee;
  }
}

/*スクロールバーの動く部分*/
@media screen and (max-width: 767.98px) {
  .c-scroll-box::-webkit-scrollbar-thumb {
    background: #aaa;
    border: none;
  }
}

/*スクロールバーの動く部分のホバー（マウスオーバー）*/
@media screen and (max-width: 767.98px) {
  .c-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}

.l-header {
  width: 100%;
}

.l-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.l-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 997.98px) {
  .l-wrapper {
    max-width: none;
    padding: 0 4vw;
  }
}
.l-wrapper.-under-page {
  max-width: 800px;
}
.l-wrapper.-full-pc {
  max-width: 100%;
}
@media screen and (max-width: 997.98px) {
  .l-wrapper.-full-pc {
    padding: 0 4vw;
  }
}

.l-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1060px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.l-inner.-w980 {
  max-width: 980px;
}
.l-inner.-w700 {
  max-width: 700px;
}

.l-body {
  width: 100%;
  overflow: hidden;
}

.l-section {
  width: 100%;
  padding: 2.8rem 0;
}

.p-header {
  position: fixed;
  width: 100%;
  z-index: 4000;
  height: 100px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 997.98px) {
  .p-header {
    position: fixed;
    width: 100%;
    height: 70px;
  }
}
.p-header .p-header__title {
  width: 80px;
}
@media screen and (max-width: 997.98px) {
  .p-header .p-header__title {
    width: 60px;
  }
}
.p-header .p-header__title a {
  display: block;
  width: 100%;
}
.p-header .p-header__title a img {
  width: 100%;
  display: block;
}
body.scrolled .p-header {
  background-color: #fff;
}
.p-header .p-header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  height: 100%;
}

.p-footer {
  position: relative;
  padding: 40px 20px;
  background-color: #093753;
  z-index: 4;
}
.p-footer .p-footer__plate-wrap {
  margin-top: 80px;
}
.p-footer .p-footer-plate + .p-footer-plate {
  margin-top: 60px;
}
.p-footer .p-footer-plate {
  display: -ms-grid;
  display: grid;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .p-footer .p-footer-plate {
    gap: 30px 0;
  }
}
.p-footer .p-footer-plate.-num01 {
  -ms-grid-columns: auto 380px;
  grid-template-columns: auto 380px;
}
@media screen and (max-width: 767.98px) {
  .p-footer .p-footer-plate.-num01 {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.p-footer .p-footer-plate.-num02 {
  -ms-grid-columns: auto 320px;
  grid-template-columns: auto 320px;
}
@media screen and (max-width: 767.98px) {
  .p-footer .p-footer-plate.-num02 {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.p-footer .p-footer-plate .p-footer-plate__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 40px auto;
  grid-template-columns: 80px auto;
  gap: 0 40px;
}
@media screen and (max-width: 767.98px) {
  .p-footer .p-footer-plate .p-footer-plate__main {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px 0;
  }
}
@media screen and (max-width: 767.98px) {
  .p-footer .p-footer-plate .p-footer-plate__main .p-footer-plate__logo {
    width: 80px;
    margin: auto;
  }
}
.p-footer .p-footer-plate .p-footer-plate__text p {
  font-size: 15px;
  line-height: 1.6;
}
.p-footer .p-footer__title {
  text-align: center;
  font-size: 16px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .p-footer {
    height: auto;
  }
}
.p-footer .p-footer__sub {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}
.p-footer .p-footer__info {
  margin-top: 12px;
}
.p-footer .p-footer__data {
  margin: 60px 0;
  color: #fff;
  text-align: center;
}
.p-footer .p-footer__data .p-footer__item + .p-footer__item {
  margin-top: 40px;
}
.p-footer .p-footer__copy {
  position: fixed;
  left: 38px;
  top: 90%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
.p-footer .p-footer__copy:before {
  position: absolute;
  top: -130px;
  left: -6px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../_assets/img/common/icon_kintsugi.png);
  width: 30px;
  height: 100px;
}
@media screen and (max-width: 767.98px) {
  .p-footer .p-footer__copy:before {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .p-footer .p-footer__copy {
    position: static;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    color: #fff;
  }
}
.p-footer .p-footer__copy small {
  font-size: 10px;
}

.p-sns .p-sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-sns .p-sns__list-item + .p-sns__list-item {
  margin-left: 14px;
}
.p-sns .p-sns__list-item {
  width: 30px;
}
.p-sns .p-sns__list-item a {
  display: block;
}
.p-sns .p-sns__list-item img {
  display: block;
  width: 100%;
}

.p-main-visual {
  height: 100vh;
  min-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ccc;
  overflow: hidden;
}
@media screen and (max-width: 997.98px) {
  .p-main-visual {
    min-height: 500px;
    height: 500px;
  }
}
.p-main-visual .p-main-visual__title {
  font-size: 30px;
  font-weight: bold;
}

.p-sub-visual {
  position: relative;
  height: 400px;
  background: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  padding: 0 20px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  z-index: 3;
}
.p-sub-visual:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  content: "";
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual {
    height: auto;
    aspect-ratio: 1/1;
    -webkit-box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
            box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
  }
}
.p-sub-visual .p-sub-visual__bg {
  position: absolute;
  z-index: -3;
  width: 100%;
  height: 100%;
}
.p-sub-visual .p-sub-visual__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-sub-visual.-guidance-newcomers {
  background-image: url(../../_assets/img/sub-visual/bg_guidance-newcomers.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-guidance-newcomers {
    background-image: url(../../_assets/img/sub-visual/bg_guidance-newcomers_sp.webp);
  }
}
.p-sub-visual.-application-guidelines {
  background-image: url(../../_assets/img/sub-visual/bg_application-guidelines.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-application-guidelines {
    background-image: url(../../_assets/img/sub-visual/bg_application-guidelines_sp.webp);
  }
}
.p-sub-visual.-summary, .p-sub-visual.-course {
  background-image: url(../../_assets/img/sub-visual/bg_summary.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-summary, .p-sub-visual.-course {
    background-image: url(../../_assets/img/sub-visual/bg_summary_sp.webp);
  }
}
.p-sub-visual.-specialist {
  background-image: url(../../_assets/img/sub-visual/bg_specialist.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-specialist {
    background-image: url(../../_assets/img/sub-visual/bg_specialist_sp.webp);
  }
}
.p-sub-visual.-professional {
  background-image: url(../../_assets/img/sub-visual/bg_professional.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-professional {
    background-image: url(../../_assets/img/sub-visual/bg_professional_sp.webp);
  }
}
.p-sub-visual.-master {
  background-image: url(../../_assets/img/sub-visual/bg_master.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-master {
    background-image: url(../../_assets/img/sub-visual/bg_master_sp.webp);
  }
}
.p-sub-visual.-purpose {
  background-image: url(../../_assets/img/sub-visual/bg_purpose.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-purpose {
    background-image: url(../../_assets/img/sub-visual/bg_purpose_sp.webp);
  }
}
.p-sub-visual.-certified {
  background-image: url(../../_assets/img/sub-visual/bg_certified.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-certified {
    background-image: url(../../_assets/img/sub-visual/bg_certified_sp.webp);
  }
}
.p-sub-visual.-instructors {
  background-image: url(../../_assets/img/sub-visual/bg_instructors.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-instructors {
    background-image: url(../../_assets/img/sub-visual/bg_instructors_sp.webp);
  }
}
.p-sub-visual.-trademark-license {
  background-image: url(../../_assets/img/sub-visual/bg_trademark-license.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-trademark-license {
    background-image: url(../../_assets/img/sub-visual/bg_trademark-license_sp.webp);
  }
}
.p-sub-visual.-course-basic01 {
  background-image: url(../../_assets/img/main-visual/bg_course-basic01.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-course-basic01 {
    background-image: url(../../_assets/img/main-visual/bg_course-basic01_sp.webp);
  }
}
.p-sub-visual.-graduate {
  background-image: url(../../_assets/img/sub-visual/bg_graduate.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-graduate {
    background-image: url(../../_assets/img/sub-visual/bg_graduate_sp.webp);
  }
}
.p-sub-visual.-information {
  background-image: url(../../_assets/img/sub-visual/bg_information.webp);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-information {
    background-image: url(../../_assets/img/sub-visual/bg_information_sp.webp);
  }
}
.p-sub-visual.-board {
  background-image: url(../../_assets/img/main-visual/bg_board.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-board {
    background-image: url(../../_assets/img/main-visual/bg_board_sp.webp);
  }
}
.p-sub-visual.-about {
  background-image: url(../../_assets/img/main-visual/bg_about.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-about {
    background-image: url(../../_assets/img/main-visual/bg_about_sp.webp);
  }
}
.p-sub-visual.-instructor {
  background-image: url(../../_assets/img/main-visual/bg_instructor.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-instructor {
    background-image: url(../../_assets/img/main-visual/bg_instructor_sp.webp);
  }
}
.p-sub-visual.-course, .p-sub-visual.-blog {
  background-image: url(../../_assets/img/main-visual/bg_basic.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-course, .p-sub-visual.-blog {
    background-image: url(../../_assets/img/main-visual/bg_basic_sp.webp);
  }
}
.p-sub-visual.-course-certification01, .p-sub-visual.-course-certification02, .p-sub-visual.-course-certification03 {
  background-image: url(../../_assets/img/main-visual/bg_certification.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-sub-visual.-course-certification01, .p-sub-visual.-course-certification02, .p-sub-visual.-course-certification03 {
    background-image: url(../../_assets/img/main-visual/bg_certification_sp.webp);
  }
}

.content {
  background-color: #f2f2f2;
}

.p-sec .wp-block-image {
  margin-top: 20px;
}
.p-sec img {
  width: 100%;
  height: auto;
}
.p-sec h3 {
  margin-top: 80px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 24px;
  font-weight: bold;
}
.p-sec .p-sec__meta .secPost__date {
  font-size: 12px;
  line-height: 1;
}
.p-sec .secPost__text-block .wp-block-image {
  margin-top: 20px;
}
.p-sec .p-sec__btn {
  display: block;
  padding: 10px 0;
  width: 100%;
}
.p-sec .js-toggle.open .p-sec__btn span:before {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}
.p-sec h4, .p-sec .p-sec__btn {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.6;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .p-sec h4, .p-sec .p-sec__btn {
    font-size: 18px;
    line-height: 1.6666666667;
  }
}
.p-sec h4 span, .p-sec .p-sec__btn span {
  position: relative;
  padding-right: 30px;
  width: 170px;
  display: block;
  margin: 0 auto;
}
.p-sec h4 span:before, .p-sec .p-sec__btn span:before {
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 14px;
  content: "";
  background-color: #000;
}
.p-sec h4 span:after, .p-sec .p-sec__btn span:after {
  position: absolute;
  right: -6px;
  top: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background-color: #000;
}
.p-sec p + p {
  margin-top: 16px;
}
.p-sec p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.23em;
}
.p-sec h3 + p {
  margin-top: 8px;
}
.p-sec p + .wp-block-image {
  margin-top: 20px;
}
.p-sec .wp-block-image + p {
  margin-top: 34px;
}
.p-sec .wp-block-button__link {
  background-color: #093753;
}
.p-sec .wp-block-buttons {
  margin-top: 14px;
  text-align: center;
}
.p-sec .wp-block-button__link {
  border-radius: 0;
  min-width: 230px;
  color: #fff;
  text-decoration: none !important;
}
.p-sec .wp-block-buttons + p {
  margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .p-sec .wp-block-column + .wp-block-column {
    margin-top: 20px;
  }
}
.p-sec .wp-block-columns {
  margin-top: 1.75em;
}
.p-sec .wp-block-image {
  margin-top: 20px;
}
.p-sec h3 + .wp-block-image {
  margin-top: 20px;
}
.p-sec .l-wrapper.-under-page a {
  text-decoration: underline;
}
.p-sec .wp-block-column .wp-block-image {
  margin-top: 0;
}
.p-sec .wp-block-columns + .wp-block-image {
  margin-top: 0;
}

.sec-nav + .sec-nav {
  margin-top: 200px;
}
@media screen and (max-width: 767.98px) {
  .sec-nav + .sec-nav {
    margin-top: 120px;
  }
}

.sec-nav {
  margin-top: 100px;
  border-top: 2px solid #093753;
  padding: 100px 0;
}
@media screen and (max-width: 767.98px) {
  .sec-nav {
    padding: 60px 0;
  }
}
.sec-nav.-non {
  margin-top: 0;
  border: none;
  padding: 0;
}
.sec-nav h3 + .sec-nav__list {
  margin-top: 20px;
}
.sec-nav .sec-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.sec-nav .sec-nav__list .sec-nav__list-item {
  width: 50%;
  padding: 0 20px;
}
@media screen and (max-width: 767.98px) {
  .sec-nav .sec-nav__list .sec-nav__list-item {
    width: 100%;
  }
}
.sec-nav .sec-nav__list .sec-nav__list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  width: 100%;
  height: 120px;
  border: 1px solid #333;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: inset 0 0 0 1000px rgba(30, 51, 64, 0.86);
          box-shadow: inset 0 0 0 1000px rgba(30, 51, 64, 0.86);
  letter-spacing: 0.4em;
  font-weight: bold;
  font-size: 18px;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-decoration: none;
}
.sec-nav .sec-nav__list .sec-nav__list-item:nth-child(n+3) {
  margin-top: 26px;
}
.sec-nav .sec-nav__list .sec-nav__list-item.-basic a {
  background-image: url(../../_assets/img/page/bnr_basic01.jpg);
}
@media screen and (max-width: 767.98px) {
  .sec-nav .sec-nav__list .sec-nav__list-item.-basic a {
    background-image: url(../../_assets/img/page/bnr_basic01.webp);
  }
}
.sec-nav .sec-nav__list .sec-nav__list-item.-certification a {
  background-image: url(../../_assets/img/page/bnr_certification.jpg);
}
@media screen and (max-width: 767.98px) {
  .sec-nav .sec-nav__list .sec-nav__list-item.-certification a {
    background-image: url(../../_assets/img/page/bnr_certification.webp);
  }
}
.sec-nav .sec-nav__list .sec-nav__list-item.-about a {
  background-image: url(../../_assets/img/page/bnr_about.jpg);
}
@media screen and (max-width: 767.98px) {
  .sec-nav .sec-nav__list .sec-nav__list-item.-about a {
    background-image: url(../../_assets/img/page/bnr_about.webp);
  }
}
.sec-nav .sec-nav__list .sec-nav__list-item.-instructor a {
  background-image: url(../../_assets/img/page/bnr_instructor.jpg);
}
@media screen and (max-width: 767.98px) {
  .sec-nav .sec-nav__list .sec-nav__list-item.-instructor a {
    background-image: url(../../_assets/img/page/bnr_instructor.webp);
  }
}
.sec-nav .sec-nav__list .sec-nav__list-item.-board a {
  background-image: url(../../_assets/img/page/bnr_board.jpg);
}
@media screen and (max-width: 767.98px) {
  .sec-nav .sec-nav__list .sec-nav__list-item.-board a {
    background-image: url(../../_assets/img/page/bnr_board.webp);
  }
}
.sec-nav .sec-nav__list .sec-nav__list-item.-preparation a {
  -webkit-box-shadow: inset 0 0 0 1000px rgba(142, 143, 144, 0.9);
          box-shadow: inset 0 0 0 1000px rgba(142, 143, 144, 0.9);
}
@media screen and (max-width: 767.98px) {
  .sec-nav .sec-nav__list .sec-nav__list-item + .sec-nav__list-item {
    margin-top: 20px;
  }
}

.sec01 {
  padding-top: 60px;
}

.price-table {
  padding: 40px 0;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 997.98px) {
  .price-table {
    overflow-x: auto;
    /* 横スクロールの指定 */
    white-space: nowrap;
    /* 横スクロールの指定 */
    overflow-scrolling: touch;
    /* スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch;
    /* スクロールを滑らかにする */
    padding: 20px 0;
    width: 100%;
  }
}
.price-table table {
  border-collapse: collapse;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 997.98px) {
  .price-table table {
    width: 710px;
  }
}
.price-table tr th + th {
  border-left: 1px solid #fff;
}
.price-table tr th {
  border-top: 1px solid #333;
  background-color: #093753;
  color: #fff;
}
.price-table tr th.num {
  width: 50px;
}
.price-table tr th.item {
  width: 200px;
}
.price-table tr th.price {
  width: 150px;
}
.price-table tr th.contents {
  width: 450px;
  border-right: 1px solid #333;
}
.price-table tr td {
  padding: 5px 0;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  text-align: center;
}
.price-table tr td:last-child {
  border-right: 1px solid #333;
}
.price-table tr td:first-child {
  background-color: #9e9e9e;
  color: #fff;
}

.price-table-course {
  margin-top: 14px;
}
@media screen and (max-width: 997.98px) {
  .price-table-course {
    margin-top: 0;
    overflow-x: auto;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
  }
}
.price-table-course table {
  width: 100%;
}
.price-table-course table tr th {
  padding: 5px;
  color: #fff;
  background-color: #3a85b3;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5714285714;
  white-space: nowrap;
}
.price-table-course table tr th.price01 {
  width: 90px;
}
.price-table-course table tr th.contents {
  width: 180px;
}
.price-table-course table tr td {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.6923076923;
  background-color: #fff;
  text-align: center;
}

.fwb {
  font-weight: bold;
}

.price-dl {
  margin-top: 40px;
}
@media screen and (max-width: 997.98px) {
  .price-dl {
    margin-top: 20px;
  }
}
.price-dl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 4px solid #f2f2f2;
}
.price-dl dl dt {
  padding: 20px 12px;
  width: 260px;
  color: #fff;
  background-color: #3a85b3;
  font-weight: bold;
}
@media screen and (max-width: 997.98px) {
  .price-dl dl dt {
    width: 40%;
    font-size: 14px;
    line-height: 2;
  }
}
.price-dl dl dd {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 20px;
  background-color: #fff;
}
@media screen and (max-width: 997.98px) {
  .price-dl dl dd {
    width: 60%;
    font-size: 14px;
    line-height: 2;
  }
}

.p-block + h3 {
  margin-top: 200px;
}
@media screen and (max-width: 997.98px) {
  .p-block + h3 {
    margin-top: 100px;
  }
}

.p-block + .p-block {
  margin-top: 140px;
}
@media screen and (max-width: 997.98px) {
  .p-block + .p-block {
    margin-top: 40px;
  }
}

.p-fixed-link {
  position: fixed;
  top: 12px;
  right: 80px;
  z-index: 5000;
}
@media screen and (max-width: 997.98px) {
  .p-fixed-link {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    width: 100%;
  }
}

.c-tab, a.c-tab {
  display: block;
  padding: 10px;
  background: #729659;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 997.98px) {
  .c-tab, a.c-tab {
    width: 100%;
    height: 100%;
    background: #729659;
    display: -ms-grid;
    display: grid;
    place-items: center;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    border-radius: 0;
    text-align: center;
    font-weight: bold;
    padding: 14px;
  }
}
.c-tab.-top, a.c-tab.-top {
  border-radius: 10px 0 0 0;
  background: #457294;
}

.p-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.98px) {
  .p-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 calc((30/750)*100vw);
  }
}
.p-unit .p-unit__main {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: calc((40/1550)*100vw);
  padding-left: 30px;
}
@media screen and (max-width: 767.98px) {
  .p-unit .p-unit__main {
    padding-left: 0;
    margin-top: 9.6vw;
  }
}
.p-unit .p-unit__main .p-unit__main-text {
  margin-top: 1.8064516129vw;
  margin-top: 28px;
  color: #231815;
  font-size: 18px;
  line-height: 1.5555555556;
  letter-spacing: 0.001em;
}
@media screen and (max-width: 767.98px) {
  .p-unit .p-unit__main .p-unit__main-text {
    margin-top: 6.9333333333vw;
    font-size: 8vw;
    line-height: 1.4;
    color: #040000;
  }
}
.p-unit .p-unit__image {
  width: 20vw;
  width: 310px;
}
@media screen and (max-width: 767.98px) {
  .p-unit .p-unit__image {
    width: 85.3333333333vw;
  }
}

.js-toggle .js-toggle-btn {
  background-color: #fff;
}
.js-toggle .js-toggle-contents {
  display: none;
  background-color: #fff;
  padding: 20px 20px 60px;
}
.js-toggle .js-toggle-contents p + p, .js-toggle .js-toggle-contents p + h4 {
  margin-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .js-toggle .js-toggle-contents p + p, .js-toggle .js-toggle-contents p + h4 {
    margin-top: 34px;
  }
}
.js-toggle .js-toggle-contents h4 + p {
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .js-toggle .js-toggle-contents h4 + p {
    margin-top: 16px;
  }
}
.js-toggle.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.js-toggle.open .js-toggle-contents {
  margin-top: 20px;
}

.gNav {
  height: 100%;
}
.gNav__list {
  margin: 0;
  padding: 0;
  height: 100%;
  line-height: 1;
  list-style: none;
}
.gNav__item {
  padding: 0;
  line-height: 1;
  height: 100%;
}
.gNav__item:last-child {
  padding-right: 0;
}
.gNav__item a:not(.btn) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 1em 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
  color: #333;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.fixed .gNav__item a:not(.btn) {
  height: 26px;
}

.gNavSub__list {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1;
  list-style: none;
}
.gNavSub__item {
  margin-top: -5px;
  padding: 5px 20px 5px 0;
}
.gNavSub__item:last-child {
  padding-right: 0;
}
.gNavSub__item.-en {
  padding-left: 20px;
  border-left: solid 1px #ddd;
}
.gNavSub a {
  position: relative;
  padding-bottom: 0.5em;
  color: #555;
}
.gNavSub a:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 1px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.gNavSub a:hover {
  text-decoration: none;
}
.gNavSub a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-gNavSP {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 48px;
  height: 63px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.p-gNavSP .p-gNavSP__box {
  height: 100%;
}
.p-gNavSP .p-gNavSP__box > div {
  height: 100%;
}
.p-gNavSP .p-gNavSP__box > div > ul {
  height: 100%;
}
.p-gNavSP .p-gNavSP__box.-info {
  margin-left: 20px;
}
@media screen and (max-width: 997.98px) {
  .p-gNavSP .p-gNavSP__box.-info {
    display: none;
  }
}
.p-gNavSP .p-gNavSP__box.-info a.p-gNavSP__navInfo {
  width: 250px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  color: #333;
  border-radius: 10px;
}
@media screen and (max-width: 1350px) {
  .p-gNavSP .p-gNavSP__box.-info a.p-gNavSP__navInfo {
    width: 200px;
  }
}
body.scrolled .p-gNavSP .p-gNavSP__box.-info a.p-gNavSP__navInfo {
  height: 60px;
}
.p-gNavSP .burger {
  z-index: 1020;
  position: fixed;
}
.p-gNavSP .burger__text {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-gNavSP .p-gNavSP__list, .p-gNavSP .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  background-color: #142d43;
  display: block;
  position: fixed;
  z-index: 1010;
  top: 0;
  right: -250px;
  margin: 0;
  padding: 60px 0 100px;
  width: 250px;
  min-height: calc(100vh);
  list-style: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-gNavSP .p-gNavSP__list .sub-menu, .p-gNavSP .menu .sub-menu {
  display: block;
}
.p-gNavSP .p-gNavSP__item + .p-gNavSP__item, .p-gNavSP li + li {
  margin-left: 0;
}
@media screen and (max-width: 997.98px) {
  .p-gNavSP .p-gNavSP__item, .p-gNavSP li {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: auto;
  }
}
.p-gNavSP .p-gNavSP__item a, .p-gNavSP li a {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
  height: auto;
  padding: 18.5px 0 18.5px 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: none;
}
.p-gNavSP .p-gNavSP__item a span, .p-gNavSP li a span {
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-gNavSP .p-gNavSP__item a:hover, .p-gNavSP li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 997.98px) {
  .p-gNavSP .p-gNavSP__item a:hover, .p-gNavSP li a:hover {
    background: none;
    color: #fff;
  }
  .p-gNavSP .p-gNavSP__item a:hover:before, .p-gNavSP li a:hover:before {
    right: 5px;
  }
}
.p-gNavSP .p-gNavSP__item a:hover span:before, .p-gNavSP li a:hover span:before {
  background-image: url(../../_assets/img/common/icon_arrow_up_b.svg);
}
body.scrolled .p-gNavSP .p-gNavSP__item a, body.scrolled .p-gNavSP li a {
  color: #fff;
}
@media screen and (max-width: 997.98px) {
  .p-gNavSP.open {
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.p-gNavSP.open .p-gNavSP__langList {
  display: none;
}
.p-gNavSP.open .p-gNavSP__list, .p-gNavSP.open .menu {
  display: block;
  visibility: visible;
  right: 0;
}
@media screen and (max-width: 997.98px) {
  .p-gNavSP.open .burger__text {
    position: absolute;
    right: -170px;
  }
}

@media screen and (max-width: 997.98px) {
  .p-gNavSP {
    display: block;
  }
}
.p-base01-nav {
  padding-bottom: 60px;
}
.p-base01-nav .p-base01-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-base01-nav .p-base01-nav__list .p-base01-nav__list-item {
  width: 50%;
}
.p-base01-nav .p-base01-nav__list .p-base01-nav__list-item a, .p-base01-nav .p-base01-nav__list .p-base01-nav__list-item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  background: #ab9898;
  color: #fff;
}
.p-base01-nav .p-base01-nav__list .p-base01-nav__list-item a.current, .p-base01-nav .p-base01-nav__list .p-base01-nav__list-item span.current {
  background: #333;
}

.p-gNavSP .sub-menu li:first-child {
  margin-bottom: 0;
}

.burger {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: #fff;
  border: none;
  z-index: 1000;
}
.burger:focus {
  outline: none;
  background: #fff;
}
.burger .burger__text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 61%;
  font-family: Helvetica;
  font-size: 1rem;
  color: #142d43;
}
.burger.open {
  background: none;
  top: 0;
  right: 0;
}
@media screen and (max-width: 997.98px) {
  .burger.open {
    top: 15px;
    right: 15px;
  }
}
.burger.open .burger__text {
  color: #fff;
}
.burger .x,
.burger .y,
.burger .z {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  height: 1px;
  width: 32px;
  background: #142d43;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
.burger .x {
  top: 20px;
}
@media screen and (max-width: 997.98px) {
  .burger .x {
    top: 20px;
  }
}
.burger .y {
  top: 26px;
}
@media screen and (max-width: 997.98px) {
  .burger .y {
    top: 26px;
  }
}
.burger .z {
  top: 32px;
}
@media screen and (max-width: 997.98px) {
  .burger .z {
    top: 32px;
  }
}
.burger .collapse {
  top: 20px;
  left: 26%;
  -webkit-transition: all 70ms ease-out;
  transition: all 70ms ease-out;
  background: #fff;
}
@media screen and (max-width: 997.98px) {
  .burger .collapse {
    top: 20px;
    left: 26%;
  }
}
.burger .rotate30 {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: all 50ms ease-out;
  transition: all 50ms ease-out;
}
.burger .rotate150 {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  -webkit-transition: all 50ms ease-out;
  transition: all 50ms ease-out;
}
.burger .rotate45 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}
.burger .rotate135 {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}
.burger .navbar {
  height: 73px;
  background: #385e97;
}

.p-image-box .p-image-box__head {
  width: 100%;
}
.p-image-box .p-image-box__head img {
  width: 100%;
}
.p-image-box .p-image-box__half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 16px -8px 0;
}
@media screen and (max-width: 767.98px) {
  .p-image-box .p-image-box__half {
    padding: calc((16/375)*100vw) calc((-8/375)*100vw) 0;
  }
}
.p-image-box .p-image-box__half .p-image-box__half-item {
  width: 50%;
  padding: 0 8px;
}
@media screen and (max-width: 767.98px) {
  .p-image-box .p-image-box__half .p-image-box__half-item {
    padding: 0 calc((8/375)*100vw);
  }
}
.p-image-box .p-image-box__half .p-image-box__half-item img {
  width: 100%;
}

.p-grid {
  margin-top: 47px;
}
@media screen and (max-width: 767.98px) {
  .p-grid {
    margin-top: 5.3333333333vw;
  }
}
.p-grid .p-grid__list-sub {
  display: block;
  text-align: center;
}
.p-grid.-half .p-grid__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
}
@media screen and (max-width: 767.98px) {
  .p-grid.-half .p-grid__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-grid.-half .p-grid__list .p-grid__list-item {
  width: 50%;
  padding: 0 20px;
}
@media screen and (max-width: 767.98px) {
  .p-grid.-half .p-grid__list .p-grid__list-item {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .p-grid.-half .p-grid__list .p-grid__list-item:last-child {
    margin-top: 16vw;
  }
}
.p-grid.-reverse .p-grid__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.98px) {
  .p-grid.-reverse .p-grid__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .p-grid.-reverse .p-grid__list .p-grid__list-item:first-child {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (max-width: 767.98px) {
  .p-grid.-triple {
    margin-top: 5.3333333333vw;
  }
}
.p-grid.-triple .p-grid__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -14px;
}
@media screen and (max-width: 767.98px) {
  .p-grid.-triple .p-grid__list .p-grid__list-item + .p-grid__list-item {
    margin-top: 5.3333333333vw;
  }
}
.p-grid.-triple .p-grid__list .p-grid__list-item {
  width: 33.333%;
  padding: 0 14px;
}
@media screen and (max-width: 767.98px) {
  .p-grid.-triple .p-grid__list .p-grid__list-item {
    width: 100%;
    text-align: center;
  }
}
.p-grid.-triple .p-grid__list .p-grid__list-item:nth-child(n+4) {
  margin-top: 20px;
}
.p-grid .p-grid__text {
  color: #142d43;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__text {
    font-size: 3.7333333333vw;
    line-height: 1.8571428571;
  }
}
.p-grid .p-grid__dl {
  color: #142d43;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__dl {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.8571428571;
  }
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__dl dl + dl {
    margin-top: 2.6666666667vw;
  }
}
.p-grid .p-grid__dl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-grid .p-grid__dl dl dt {
  width: 90px;
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__dl dl dt {
    width: 24vw;
  }
}
.p-grid .p-grid__dl dl dd {
  margin: 0;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-grid .p-grid__image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__image-wrap {
    margin-top: 5.3333333333vw;
  }
}
.p-grid .p-grid__image-wrap .p-grid__image-item {
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__image-wrap .p-grid__image-item {
    text-align: center;
  }
}
.p-grid .p-grid__image-wrap .p-grid__image-item:first-child {
  padding-right: 9px;
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__image-wrap .p-grid__image-item:first-child {
    padding-right: 0;
  }
}
.p-grid .p-grid__image-wrap .p-grid__image-item:last-child {
  padding-left: 9px;
}
@media screen and (max-width: 767.98px) {
  .p-grid .p-grid__image-wrap .p-grid__image-item:last-child {
    padding-left: 0;
  }
}

.p-link-banner {
  margin-top: 28px;
  padding: 20px 120px 20px 138px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e3eafe;
}
@media screen and (max-width: 767.98px) {
  .p-link-banner {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-link-banner .p-link-banner__main {
  width: 386px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .p-link-banner .p-link-banner__main {
    width: 100%;
  }
}
.p-link-banner .p-link-banner__main .p-link-banner__text {
  color: #142d43;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767.98px) {
  .p-link-banner .p-link-banner__main .p-link-banner__text {
    font-size: 2.6666666667vw;
    line-height: 1;
  }
}
.p-link-banner .p-link-banner__main .p-link-banner__big-text {
  color: #142d43;
  font-size: 18px;
  line-height: 1.4444444444;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .p-link-banner .p-link-banner__main .p-link-banner__big-text {
    font-size: 3.2vw;
    line-height: 2.1666666667;
  }
}
.p-link-banner .p-link-banner__btn {
  margin-left: 40px;
  width: 220px;
}
@media screen and (max-width: 767.98px) {
  .p-link-banner .p-link-banner__btn {
    margin-left: 0;
    margin-top: 3.7333333333vw;
  }
}

.top-topics {
  background: #ab9898;
}

.p-news-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 40px 0;
}
.p-news-box .p-news-box__title {
  font-size: 20px;
  width: 120px;
}
.p-news-box .p-news-box__main {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-news-box .p-news-box__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: bold;
}
.p-news-box .p-news-box__meta .p-news-box__text {
  padding-left: 14px;
  font-size: 16px;
}
.p-news-box .p-news-box__meta .p-news-box__date {
  width: 80px;
  font-size: 14px;
}

.p-card01 {
  display: block;
}
.p-card01 .p-card01__head {
  position: relative;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: inset 0 0 0 1000px rgba(30, 51, 64, 0.3);
          box-shadow: inset 0 0 0 1000px rgba(30, 51, 64, 0.3);
}
.p-card01 .p-card01__head.-basic {
  background-image: url(../../_assets/img/index/bg_course-basic01.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-card01 .p-card01__head.-basic {
    background-image: url(../../_assets/img/index/bg_course-basic01.webp);
  }
}
.p-card01 .p-card01__head.-type01 {
  background-image: url(../../_assets/img/index/type01.webp);
}
.p-card01 .p-card01__head.-certification {
  background-image: url(../../_assets/img/index/bg_certification.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-card01 .p-card01__head.-certification {
    background-image: url(../../_assets/img/index/bg_certification.webp);
  }
}
.p-card01 .p-card01__head .p-card01__title {
  position: absolute;
  top: -40px;
  left: 0;
  width: auto;
  height: auto;
  padding: 0 10px;
  color: #fff;
  background: #093753;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.p-card01 .p-card01__copy {
  margin-top: 10px;
  color: #333;
  font-size: 18px;
  line-height: 1.4444444444;
  font-weight: bold;
}
.p-card01 .p-card01__text {
  margin-top: 6px;
  color: #333;
  font-size: 14px;
  line-height: 1.7142857143;
}

.p-card-block {
  width: 100%;
  height: 16.7741935484vw;
  background: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: inset 0 0 0 1000px rgba(30, 51, 64, 0.4);
          box-shadow: inset 0 0 0 1000px rgba(30, 51, 64, 0.4);
}
@media screen and (max-width: 767.98px) {
  .p-card-block {
    height: 96vw;
  }
}
.p-card-block.-type01 {
  background-image: url(../../_assets/img/index/block_type01.webp);
}
.p-card-block.-type02 {
  background-image: url(../../_assets/img/index/block_type02.webp);
}
.p-card-block.-type03 {
  background-image: url(../../_assets/img/index/block_type03.webp);
}
.p-card-block.-about {
  background-image: url(../../_assets/img/index/bg_about.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-card-block.-about {
    background-image: url(../../_assets/img/index/bg_about.webp);
  }
}
.p-card-block.-instructor {
  background-image: url(../../_assets/img/index/bg_instructor.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-card-block.-instructor {
    background-image: url(../../_assets/img/index/bg_instructor.webp);
  }
}
.p-card-block.-work {
  background-image: url(../../_assets/img/index/bg_work.jpg);
}
@media screen and (max-width: 767.98px) {
  .p-card-block.-work {
    background-image: url(../../_assets/img/index/bg_work.webp);
  }
}
.p-card-block .p-card-block__main {
  background: rgba(9, 55, 81, 0.85);
  padding: 14px 20px;
}
.p-card-block .p-card-block__title {
  font-weight: bold;
  color: #fff;
  font-size: 1.5483870968vw;
  line-height: 1;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .p-card-block .p-card-block__title {
    font-size: 5.3333333333vw;
    line-height: 1.7;
  }
}
.p-card-block .p-card-block__text {
  margin-top: 14px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 0.9032258065vw;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-card-block .p-card-block__text {
    font-size: 2.1333333333vw;
    line-height: 1;
  }
}

.top-triple {
  margin-top: 160px;
}

.p-flow {
  padding: 60px 0;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.p-flow .p-flow__item {
  position: relative;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
  background-color: #093753;
}
.p-flow .p-flow__item:before {
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 40px 0 40px;
  border-color: #093753 transparent transparent transparent;
}
.p-flow .p-flow__item:last-child:before {
  display: none;
}
.p-flow .p-flow__item .p-flow__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}
.p-flow .p-flow__item .p-flow__option {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.7142857143;
  color: #fff;
}
.p-flow .p-flow__item + .p-flow__item {
  margin-top: 40px;
}

.p-event {
  position: relative;
  padding: 125px 0;
  background-color: #4d6099;
}
@media screen and (max-width: 767.98px) {
  .p-event {
    padding-top: 16vw;
    padding-bottom: 0;
  }
}
.p-event:before {
  position: absolute;
  top: -116px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../../_assets/img/index/event_bg_head.png);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1920px;
  height: 116px;
}
.p-event:after {
  position: absolute;
  bottom: -114px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../../_assets/img/index/event_bg_bottom.png);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1920px;
  height: 115px;
}
.p-event .p-event__contents {
  min-height: 213px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 997.98px) {
  .p-event .p-event__contents {
    min-height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-event .p-event__contents .p-event__head {
  width: 254px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 254px;
          flex: 0 0 254px;
  color: #fff;
}
@media screen and (max-width: 997.98px) {
  .p-event .p-event__contents .p-event__head {
    width: 100%;
  }
}
.p-event .p-event__contents .p-event__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 997.98px) {
  .p-event .p-event__contents .p-event__title {
    font-size: 6.4vw;
    line-height: 1;
  }
}
.p-event .p-event__contents .p-event__text-area {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media screen and (max-width: 997.98px) {
  .p-event .p-event__contents .p-event__text-area {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}
.p-event .p-event__contents .p-event__sub {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 38px;
}
@media screen and (max-width: 997.98px) {
  .p-event .p-event__contents .p-event__sub {
    padding-right: 0;
  }
}

.p-about {
  padding-top: 242px;
  padding-bottom: 100px;
  background-image: url(../../_assets/img/index/about_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 997.98px) {
  .p-about {
    padding-top: 37.8666666667vw;
    padding-bottom: 26.6666666667vw;
  }
}
.p-about .p-about__contents {
  margin-top: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 997.98px) {
  .p-about .p-about__contents {
    margin-top: 8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about .p-about__contents .p-about__main {
  width: 50%;
  padding-top: 105px;
  padding-right: 38px;
}
@media screen and (max-width: 997.98px) {
  .p-about .p-about__contents .p-about__main {
    width: 100%;
    padding: 0;
  }
}
.p-about .p-about__contents .p-about__main .p-about__sub-title {
  position: relative;
  color: #4d6099;
  font-size: 36px;
  line-height: 1.4444444444;
  text-align: center;
  letter-spacing: 0.01em;
  z-index: 3;
}
@media screen and (max-width: 997.98px) {
  .p-about .p-about__contents .p-about__main .p-about__sub-title {
    font-size: 5.8666666667vw;
    line-height: 1.7272727273;
  }
}
.p-about .p-about__contents .p-about__main .p-about__sub-title:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../_assets/img/index/about_sub-title_bg.svg);
  width: 491px;
  height: 137px;
  z-index: -1;
}
@media screen and (max-width: 997.98px) {
  .p-about .p-about__contents .p-about__main .p-about__sub-title:before {
    left: calc((0/375)*100vw);
    width: 91.6533333333vw;
    height: 25.5733333333vw;
  }
}
.p-about .p-about__contents .p-about__main .p-about__text {
  margin-top: 28px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 997.98px) {
  .p-about .p-about__contents .p-about__main .p-about__text {
    margin-top: 11.2vw;
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
  }
}
.p-about .p-about__contents .p-about__sub {
  width: 50%;
  padding-left: 38px;
}
@media screen and (max-width: 997.98px) {
  .p-about .p-about__contents .p-about__sub {
    width: 100%;
    padding-left: 0;
    margin-top: 5.3333333333vw;
  }
}

.secPost {
  padding: 100px 0;
}
.secPost .secPost__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.secPost .secPost__list.-half .secPost__listItem + .secPost__listItem {
  margin-top: 0;
}
.secPost .secPost__list.-half .secPost__listItem {
  width: 50%;
  padding: 0 20px;
}
.secPost .secPost__list.-half .secPost__listItem:nth-child(n+3) {
  margin-top: 40px;
}
@media screen and (max-width: 767.98px) {
  .secPost .secPost__list.-half .secPost__listItem {
    width: 100%;
  }
  .secPost .secPost__list.-half .secPost__listItem:nth-child(n+2) {
    margin-top: 40px;
  }
}
.secPost .secPost__list.-half .secPost__listItem .secPost__box {
  padding-bottom: 20px;
}
.secPost .secPost__listItem + .secPost__listItem {
  margin-top: 40px;
}
.secPost .secPost__listItem {
  width: 100%;
  padding: 0 20px 14px;
  border-bottom: 1px solid #eee;
}
.secPost .secPost__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secPost .secPost__boxTitle {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 22px;
  color: #093753;
}
.secPost .secPost__boxMeta {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.secPost .secPost__boxDate {
  margin-top: 20px;
  font-size: 12px;
  color: #000;
}
.secPost .secPost__text {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-size: 16px;
  line-height: 1.75;
  color: #000;
}
.secPost .secPost__text h3 {
  margin-top: 20px;
}
.secPost .secPost__text p {
  margin-top: 10px;
}
.secPost .secPost__text .wp-block-buttons {
  padding: 20px 0;
}
.secPost .secPost__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-bottom: 10px;
}
.secPost .secPost__image img {
  height: auto;
}
.secPost .secPost__one {
  padding: 20px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .secPost .secPost__one {
    padding: 0 0 10px;
  }
}
.secPost .secPost__one .secPost__one-main {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
  color: #333;
}
.secPost .secPost__one .secPost__one-main .secPost__one-title {
  font-size: 18px;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767.98px) {
  .secPost .secPost__one .secPost__one-main .secPost__one-title {
    font-size: 16px;
    line-height: 1.5;
  }
}
.secPost .secPost__one .secPost__one-main .secPost__one-data {
  font-size: 12px;
  line-height: 1;
}
.secPost .secPost__one .secPost__one-sub {
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 767.98px) {
  .secPost .secPost__one .secPost__one-sub {
    width: 100px;
    height: 100px;
  }
}
.secPost .secPost__one .secPost__one-sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.secPost.-index {
  padding: 100px 0;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.secPost.-index .secPost__title {
  font-size: 24px;
  line-height: 1.3333333333;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  font-weight: bold;
  padding-bottom: 40px;
}

.p-info {
  position: relative;
  padding: 90px 0 95px;
  z-index: 4;
  background-color: #5165a2;
}
@media screen and (max-width: 767.98px) {
  .p-info {
    padding: calc((60/375)*100vw) 0;
  }
}
.p-info:before {
  position: absolute;
  top: -130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../../_assets/img/index/p-info_wave.png);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1920px;
  height: 130px;
}
.p-info.bg-none:before {
  display: none;
}
.p-info:after {
  position: absolute;
  bottom: 263px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../../_assets/img/index/p-info_bg.png);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1720px;
  height: 655px;
  z-index: -1;
}
.p-info .p-info__contact {
  margin-top: 64px;
}
@media screen and (max-width: 767.98px) {
  .p-info .p-info__contact {
    margin-top: 10.6666666667vw;
  }
}
.p-info .p-info__meta {
  margin-top: 42px;
  text-align: center;
  color: #142d43;
}
@media screen and (max-width: 767.98px) {
  .p-info .p-info__meta {
    margin-top: 8vw;
  }
}
.p-info .p-info__meta .p-info__meta-title {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .p-info .p-info__meta .p-info__meta-title {
    font-size: 4.2666666667vw;
    line-height: 1;
  }
}
.p-info .p-info__meta .p-info__meta-place {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-info .p-info__meta .p-info__meta-place {
    margin-top: 3.7333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1;
  }
}
.p-info .p-info__meta .p-info__meta-tel {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-info .p-info__meta .p-info__meta-tel {
    margin-top: 4.8vw;
    font-size: 5.3333333333vw;
    line-height: 1;
  }
}
.p-info .p-info__btn {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .p-info .p-info__btn {
    margin-top: 7.4666666667vw;
  }
}
.p-info .p-info__block + .p-info__block {
  margin-top: 90px;
}
.p-info .p-info__map {
  width: 100%;
  height: 320px;
}
.p-info .p-info__map-nav {
  margin-top: 40px;
}
.p-info .p-info__map-text {
  padding-left: 52px;
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
  color: #142d43;
}
@media screen and (max-width: 767.98px) {
  .p-info .p-info__map-text {
    padding-left: 0;
  }
}

.top-blog {
  padding: 100px 0;
}
.top-blog .top-blog__contents {
  margin-top: 40px;
}
.top-blog .top-blog__link {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-certification-nav {
  background-color: #fff;
}
.p-certification-nav .p-certification-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
}
@media screen and (max-width: 767.98px) {
  .p-certification-nav .p-certification-nav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767.98px) {
  .p-certification-nav .p-certification-nav__list .p-certification-nav__list-item + .p-certification-nav__list-item {
    margin-top: 14px;
  }
}
.p-certification-nav .p-certification-nav__list .p-certification-nav__list-item {
  width: 33.3333%;
  padding: 0 5px;
}
@media screen and (max-width: 767.98px) {
  .p-certification-nav .p-certification-nav__list .p-certification-nav__list-item {
    width: 100%;
  }
}
.p-certification-nav .p-certification-nav__list .p-certification-nav__list-item a {
  display: block;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  background-color: rgba(9, 55, 81, 0.6);
}
body.page-course-certification03 .p-certification-nav .p-certification-nav__list .p-certification-nav__list-item.-num03 a {
  background-color: #093751;
}
body.page-course-certification02 .p-certification-nav .p-certification-nav__list .p-certification-nav__list-item.-num02 a {
  background-color: #093751;
}
body.page-course-certification01 .p-certification-nav .p-certification-nav__list .p-certification-nav__list-item.-num01 a {
  background-color: #093751;
}

#goTop {
  position: fixed;
  right: 15px;
  bottom: 31px;
  z-index: 100000;
  width: 50px;
  height: 50px;
}
#goTop a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background: #fff;
}
#goTop svg {
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
}
.paging-box {
  margin-top: 60px;
}
.paging-box .wp-pagenavi {
  text-align: center;
}
.paging-box .wp-pagenavi a, .paging-box .wp-pagenavi span {
  border: none;
  padding: 20px;
}
.paging-box .wp-pagenavi span {
  background-color: #093753;
  color: #fff;
}
.paging-box .wp-pagenavi a {
  border: 1px solid #093753;
  color: #093753;
}
.paging-box .previouspostslink {
  border: none !important;
}
.paging-box .nextpostslink {
  border: none !important;
}

.p-sns {
  padding-bottom: 60px;
}
.p-sns .p-sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-sns .p-sns__list li + li {
  margin-left: 14px;
}
.p-sns .p-sns__list li {
  width: 36px;
}
.p-sns .p-sns__list li a {
  display: block;
}
.p-sns .p-sns__list li img {
  display: block;
  width: 100%;
}

.top-instagram {
  padding: 200px 0 140px;
}
@media screen and (max-width: 767.98px) {
  .top-instagram {
    padding: 60px 0;
  }
}
.top-instagram .top-instagram__title {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .top-instagram .top-instagram__title {
    font-size: 18px;
    line-height: 1;
  }
}
.top-instagram .top-instagram__contents {
  margin-top: 60px;
}

#sb_instagram .sb_instagram_header {
  display: none;
}

.c-heading-icon01 {
  text-align: center;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 300;
}
@media screen and (max-width: 767.98px) {
  .c-heading-icon01 {
    font-size: 5.8666666667vw;
    line-height: 1;
  }
}
.c-heading-icon01.-white {
  color: #fff;
}
.c-heading-icon01 span {
  position: relative;
}
.c-heading-icon01 span:before {
  position: absolute;
  top: 0;
  left: -60px;
  background-image: url(../../_assets/img/common/icon_drop.svg);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 38px;
  height: 48px;
}
@media screen and (max-width: 767.98px) {
  .c-heading-icon01 span:before {
    left: calc((-30/375)*100vw);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 6.08vw;
    height: 7.68vw;
  }
}
.c-heading-icon01 span:after {
  position: absolute;
  top: 0;
  right: -60px;
  background-image: url(../../_assets/img/common/icon_drop.svg);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 38px;
  height: 48px;
}
@media screen and (max-width: 767.98px) {
  .c-heading-icon01 span:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: calc((-30/375)*100vw);
    width: 6.08vw;
    height: 7.68vw;
  }
}

.c-heading-wave {
  position: relative;
  padding: 56px 0;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: #142d43;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .c-heading-wave {
    font-size: 5.3333333333vw;
    line-height: 1.3;
    padding: calc((36/375)*100vw) 0;
  }
}
.c-heading-wave:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  background-image: url(../../_assets/img/common/heading_wabe.svg);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 916px;
  height: 142px;
}
@media screen and (max-width: 767.98px) {
  .c-heading-wave:before {
    width: 74.6666666667vw;
    height: 21.8666666667vw;
  }
}

.c-simple-title {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  color: #142d43;
}
@media screen and (max-width: 767.98px) {
  .c-simple-title {
    font-size: 4.8vw;
    line-height: 1;
  }
}

.c-heading01 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}

a.contact-btn {
  margin: 100px auto 200px;
  width: 350px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #333;
  color: #333;
}

.c-bnr-black {
  width: 100%;
  height: 80px;
  border: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
}

a.c-btn01 {
  width: 300px;
  height: 80px;
  border: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
}

a.link-yel {
  color: #FFF100;
  text-decoration: underline;
}

.c-white-border {
  border: 4px solid #fff;
}

.c-white-box {
  padding: 45px 42px;
  border-radius: 14px;
  background-color: #fff;
  min-height: 483px;
}
@media screen and (max-width: 767.98px) {
  .c-white-box {
    min-height: auto;
    padding: calc((30/375)*100vw) calc((20/375)*100vw);
    border-radius: calc((14/375)*100vw);
  }
}
.c-white-box.-long-block {
  padding: 98px 42px;
}
@media screen and (max-width: 767.98px) {
  .c-white-box.-long-block {
    padding: calc((50/375)*100vw) calc((20/375)*100vw);
  }
}
.c-white-box.-comming {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #142d43;
  font-weight: bold;
  font-size: 50px;
}
@media screen and (max-width: 767.98px) {
  .c-white-box.-comming {
    font-size: 8vw;
    line-height: 1;
  }
}

.c-white-box + .c-white-box {
  margin-top: 64px;
}
@media screen and (max-width: 767.98px) {
  .c-white-box + .c-white-box {
    margin-top: 17.0666666667vw;
  }
}

.bg-gray {
  background-color: #142d43;
}

.bg-photos01 {
  position: relative;
  padding-top: 130px;
  padding-bottom: 220px;
}
@media screen and (max-width: 767.98px) {
  .bg-photos01 {
    min-height: auto;
    padding-top: 16vw;
    padding-bottom: 32vw;
  }
}
.bg-photos01:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url(../../_assets/img/index/bg-photos02.png);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-flex-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.c-card .c-card__main .c-card__title {
  font-size: 18px;
}
.c-card .c-card__main .c-card__category {
  font-size: 14px;
  margin: 0;
  line-height: 1;
}