@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*ulのマーカー（行頭記号）を表示しないようにしています*/
ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  text-decoration: underline;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  position: relative;
  display: block;
  height: 0px;
  border: 0;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

input[type="text"],
input[type="password"],
textarea,
select {
  outline: none;
}

input[type="radio"] {
  vertical-align: -0.1em;
}
/*2023/10/02追記*/
.cp_link {
	padding: 0.1em 0.3em;
	background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(255,152,0,1) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	transition: .3s;
	color: #ff9800;
	font-weight: bold;
	text-decoration-line: underline;
	font-size: larger;
}
.cp_link:hover {
	background-position: -100% 0;
	color: #fff;
}

/*2023/11/01追記*/
.pyt {
	text-align: center !important;
	font-weight: bold;
}
.centertext{margin-left: auto;margin-right: auto;}
.wrap {
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .wrap {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

html {
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
}

html.wf-active {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 1;
}

a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #000;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #1a1a1a;
}

a[href^="tel:"] {
  cursor: default !important;
  pointer-events: none;
}

body {
  font-size: 20px;
  color: #000;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  min-width: 1100px;
  font-weight: 300;
}

.wrap {
  margin: 0px;
  padding: 0px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

ol {
  margin: 10px 0px 10px 20px;
}

img {
  vertical-align: top;
  max-width: 100%;
}

@media screen and (max-width: 480px) {
  body {
    min-width: 100%;
    font-size: 14px;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
}

.header-block {
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);
  height: calc(120px - 40px);
  padding: 20px 15px;
  z-index: 1;
}

.header-text {
  background: #C9DD72;
  padding: 5px 20px;
  color: #000000;
  font-size: 14px;
}

.header-text > .header-text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  min-width: 1100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-inner > .logo {
  min-width: 300px;
  width: 35%;
}

.header-inner > .logo > a {
  background: url(../img/common/item/logo.svg) no-repeat top 5px left;
  padding-left: 90px;
  color: #C9DD72;
  display: block;
  font-size: 40px;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.5;
  width: 300px;
}

.header-inner > .logo span {
  font-size: 14px;
  display: block;
}

.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65%;
}

.header-info > .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 50px;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.header-info > .menu li {
  margin-right: 30px;
  position: relative;
}

.header-info > .menu li:last-child {
  margin-right: 10px;
}

.header-info > .menu li:after {
  position: absolute;
  top: -2px;
  right: -18px;
  bottom: auto;
  left: auto;
  content: "|";
  color: #C9DD72;
}

.header-info > .menu li:last-child:after {
  content: "";
}

.header-info > .tel {
  color: #C9DD72;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1;
}

.header-info > .tel span {
  font-size: 18px;
  margin-right: 10px;
}

.resize-box {
  padding-right: 70px;
  position: relative;
}

.resize-box .btn > a {
  background: #bbb;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 10px 0px;
  width: 150px;
}

.resize-box .btn ul {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  position: absolute;
  top: 55px;
  right: auto;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  padding: 10px;
  background: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(150px - 20px);
  border-radius: 5px;
  -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);
}

.resize-box .btn ul:before {
  position: absolute;
  top: -6px;
  right: 50%;
  bottom: auto;
  left: 50%;
  content: "";
  -webkit-box-shadow: 2px -2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 2px -2px 3px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  width: 15px;
  height: 15px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  z-index: -20;
}

.resize-box .btn li {
  width: calc(100% / 3);
}

.resize-box .btn ul li a:hover {
  background: #C9DD72;
  color: #fff;
}

.resize-box .btn:hover ul {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 1;
  visibility: visible;
}

.drop-box {
  background: rgba(201, 221, 114, 0.95);
}

.drop-box a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  padding: 8px 0px;
  border-radius: 5px;
}

.drop-box a:hover {
  color: #C9DD72;
}

/* 以下ハンバーガーメニュー */
#sp_header {
  z-index: auto;
}

#sp_header .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: none;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

nav {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  z-index: 1001;
}

/* ナビゲーション：アクティブ時 */
header.navOpen nav {
  opacity: 1;
  right: 0;
  overflow: scroll;
  height: 100%;
}

header nav ul {
  width: 100%;
  border-top: 2px solid #C9DD72;
}

/* ナビゲーションアイコン */
header .navBtn {
  display: none;
  width: 34px;
  height: 20px;
  padding: 10px 5px 20px;
  position: fixed;
  top: 45px;
  right: 20px;
  cursor: pointer;
  font-size: 12px;
  color: #C9DD72;
  background: #fff;
}

header .navBtn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #C9DD72;
  border-radius: 2px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

header .navBtn span:nth-of-type(2),
header .navBtn span:nth-of-type(3) {
  margin-top: 4px;
}

/* ナビゲーションアイコン：アクティブ */
header.navOpen .navBtn span:nth-of-type(1) {
  -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
  transform: translateY(9px) translateX(0) rotate(45deg);
}

header.navOpen .navBtn span:nth-of-type(2) {
  margin-top: 8px;
  opacity: 0;
  -webkit-transform: translateY(9px);
  transform: translateY(9px);
}

header.navOpen .navBtn span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
  transform: translateY(-9px) translateX(0) rotate(-45deg);
}

header h1 {
  width: auto;
  margin-top: 0;
}

header .navBtn {
  display: block;
  z-index: 10000 !important;
}

header nav {
  overflow: auto;
  position: fixed;
  top: 0;
  opacity: 0;
  right: -70%;
  float: none;
  width: 65%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  opacity: 0;
  z-index: 9999;
  height: auto;
  padding-bottom: 0px;
}

header nav ul li {
  float: none;
  width: auto;
  text-align: center;
  border-bottom: 1px solid #C9DD72;
}

header nav ul li a.nest {
  padding: 8px 12px 8px 30px;
  font-size: 13px;
}

header nav ul li a {
  padding: 20px 12px 20px 20px;
  display: block;
  text-align: left;
  color: #333 !important;
  font-weight: 500;
  font-size: 15px;
}

header nav ul li a:hover {
  background: #C9DD72;
  color: #fff !important;
  text-decoration: none;
}

.nav_re_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/common/item/logo.svg) no-repeat 0;
  height: 50px;
  margin: 10px auto 10px 15px;
  padding-left: 55px;
  line-height: 1;
  background-size: 50px auto;
  width: 70%;
  font-size: 24px;
  color: #C9DD72;
  font-family: "Kosugi Maru", sans-serif;
}

.nav_re_tel a {
  display: block;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #C9DD72;
}

.nav_re_menu a {
  cursor: pointer;
}

.btBtn {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  width: 80%;
  text-align: center;
  color: #C9DD72;
  padding: 10px 0;
  border: 2px solid #C9DD72;
  margin: 40px auto 20px;
  cursor: pointer;
  font-size: 15px;
}

.btBtn:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #fff;
  background: #C9DD72;
}

@media screen and (max-width: 480px) {
  .header-block {
    height: calc(70px - 20px);
    padding: 10px 5px;
    border-bottom: 3px solid #C9DD72;
  }
  .header-text {
    display: none;
  }
  .header-inner {
    width: 100%;
    min-width: 100%;
  }
  .header-inner > .logo {
    min-width: 100%;
    width: 100%;
  }
  .header-inner > .logo > a {
    padding-left: 50px;
    background-size: 50px auto;
    font-size: 20px;
    height: 50px;
    width: 240px;
  }
  .header-inner > .logo span {
    font-size: 12px;
  }
  .header-info {
    display: none;
  }
  /* ナビゲーションアイコン */
  header .navBtn {
    top: 20px;
    right: 10px;
    background: #fff;
    width: 30px;
    padding: 7px 5px 14px;
    font-size: 11px;
  }
  .nav_re_logo a {
    font-size: 6vw;
  }
  header nav {
    width: auto;
    max-width: none;
  }
  header.navOpen nav {
    width: 100%;
  }
}

.main-inner {
  position: relative;
}

.main-block.-second .content-block {
  padding: 50px 0;
  font-size: 16px;
}

.re_mo_disp {
  display: block;
  z-index: 1002;
}

.footer-block {
  border-top: 2px solid #f4f4f4;
  margin-top: 50px;
}

.footer-block > .copy {
  color: #999999;
  font-size: 14px;
  text-align: center;
  padding: 10px 0px;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1100px;
  margin: 50px auto;
}

.footer-inner > .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-inner > .menu ul {
  padding: 20px 30px;
  border-left: 1px solid #dddddd;
  font-size: 14px;
  line-height: 1;
}

.footer-inner > .menu ul:last-child {
  border-right: 1px solid #dddddd;
}

.footer-inner > .menu ul li {
  margin-bottom: 15px;
}

.footer-inner > .menu ul li:last-child {
  margin-bottom: 0px;
}

.footer-info {
  margin-right: auto;
  background: url(../img/common/item/logo.svg) no-repeat top 5px left;
  padding-left: 90px;
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-info > .logo {
  margin-bottom: 10px;
}

.footer-info > .logo > a {
  color: #C9DD72;
  display: block;
  font-size: 35px;
  font-family: "Kosugi Maru", sans-serif;
}

.footer-info > .tel {
  color: #C9DD72;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
}

.footer-info > .tel span {
  font-size: 18px;
  margin-right: 10px;
}

#page-top {
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  position: fixed;
  z-index: 1001;
}

#page-top .backtotop {
  background: url(../img/common/item/top.svg) no-repeat 50% 50%/100%;
  display: block;
  width: 60px;
  height: 50px;
}

@media screen and (max-width: 480px) {
  .footer-block > .copy {
    font-size: 12px;
    padding: 5px 0px;
  }
  .footer-inner {
    margin: 30px auto 10px;
    width: 100%;
    padding: 0 10px;
  }
  .footer-inner > .menu {
    display: none;
  }
  .footer-info {
    background-size: 50px auto;
    padding-left: 50px;
  }
  .footer-info p {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .footer-info > .logo {
    margin-bottom: 5px;
    margin-top: 12px;
  }
  .footer-info > .logo > a {
    font-size: 19px;
  }
  .footer-info > .tel {
    font-size: 24px;
  }
  .footer-info > .tel span {
    font-size: 18px;
  }
  #page-top {
    top: auto;
    right: 5px;
    bottom: 15px;
    left: auto;
  }
  #page-top .backtotop {
    width: 50px;
  }
}

.slider-block {
  position: relative;
  height: 600px;
  z-index: -1;
}

.slider-inner {
  position: relative;
  width: 100%;
}

.slider-inner .img01 {
  background: url(../img/index/main.jpg) no-repeat center;
  width: 100%;
  height: 600px;
  background-size: cover;
}

.slider-inner .img02 {
  background: url(../img/index/main02.jpg) no-repeat center;
  width: 100%;
  height: 600px;
  background-size: cover;
}

.slider-inner .img03 {
  background: url(../img/index/main03.jpg) no-repeat center;
  width: 100%;
  height: 600px;
  background-size: cover;
}

.slider-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0px;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-family: "FOT-クックハンド Std R";
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 600px;
  color: #fff;
  margin-right: 50px;
  text-shadow: 0 0 5px #000;
}

.slider-text p {
  font-size: 50px;
}

.slider-text span {
  display: block;
  font-size: 28px;
}

@media screen and (max-width: 480px) {
  .slider-block {
    height: 400px;
  }
  .slider-inner .img01 {
    background: url(../img/index/main.jpg) no-repeat left -185px center;
    height: 400px;
    background-size: cover;
  }
  .slider-inner .img02 {
    height: 400px;
  }
  .slider-inner .img03 {
    height: 400px;
  }
  .slider-text {
    right: auto;
    left: 0;
    min-width: 100%;
    margin-right: 0px;
    padding-left: 10px;
  }
  .slider-text p {
    font-size: 30px;
  }
  .slider-text span {
    font-size: 20px;
  }
}

.content-inner {
  margin: 0 auto;
  position: relative;
  width: 1100px;
}

.content-block {
  padding: 120px 0;
}

.content-block .subtitle-01:first-child, .content-block .subtitle-02:first-child, .content-block .subtitle-03:first-child, .content-block .subtitle-04:first-child, .content-block .subtitle-05:first-child {
  margin-top: 0;
}

.content-block.-gray {
  background: #f7f7f7;
}

.content-block.-green {
  background: #C9DD72;
}

.content-box.-text p {
  margin: 30px 0;
}

@media screen and (max-width: 480px) {
  .content-inner {
    width: 96%;
  }
  .content-block {
    padding: 50px 0;
  }
  .content-box.-text p {
    margin: 10px 0;
  }
}

.btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
}

.btn-list li {
  margin: 0 10px;
}

.btn-list a {
  color: #fff;
  background: #000;
  display: inline-block;
  line-height: 1;
  padding: 20px 30px;
  border: 1px solid #000;
}

.btn-list a:hover {
  opacity: 0.8;
}

.btn-list li.-border a {
  color: #000;
  background: none;
  border: 1px solid #000;
}

.btn-list li.-border a:hover {
  background: #000;
  color: #C9DD72;
  opacity: 1.0;
}

.btn-list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0;
}

.btn-list02 li {
  width: calc((100% - 60px) / 4);
  margin-top: 20px;
}

.btn-list02 li:nth-child(-n+4) {
  margin-top: 0px;
}

.btn-list02 a {
  color: #000;
  background: #fff;
  display: block;
  line-height: 1;
  padding: 30px 0;
  text-align: center;
}

.btn-list02 a:hover {
  color: #fff;
  background: #000;
}

@media screen and (max-width: 480px) {
  .btn-list {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .btn-list li {
    margin: 0px;
    min-width: 46%;
  }
  .btn-list a {
    padding: 20px 5px;
    display: block;
    text-align: center;
    width: calc(100% - 10px);
  }
  .btn-list02 li {
    width: calc((100% - 10px) / 2);
    margin-top: 10px;
  }
  .btn-list02 li:nth-child(-n+2) {
    margin-top: 0px;
  }
  .btn-list02 li:nth-child(-n+4) {
    margin-top: 10px;
  }
  .btn-list02 a {
    padding: 25px 0;
  }
}

.question-box .-gray .question, .question-box .-green .question {
  color: #000;
}

.question-list {
  margin-top: 120px;
}

.question-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.question-list li {
  width: 45%;
  margin-top: 80px;
}

.question-list li:nth-child(-n+2) {
  margin-top: 0px;
}

.question-list .question {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #C9DD72;
  font-family: "FOT-クックハンド Std R";
  min-height: 110px;
}

.pad-list {
  margin: 20px 0;
}

.pad-list li {
  position: relative;
  padding-left: 25px;
}

.pad-list li::after {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: 0px;
  left: 0px;
  content: "";
  background: url(../../../img/common/icon/icon_pad.svg) no-repeat center;
  display: block;
  margin: auto;
  width: 15px;
  height: 15px;
  background-size: 100%;
}

.pad-list.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pad-list.-flex li {
  margin-right: 50px;
  margin-bottom: 5px;
}

@media screen and (max-width: 480px) {
  .question-list {
    margin-top: 40px;
  }
  .question-list li {
    width: 100%;
    margin-top: 30px;
  }
  .question-list li:nth-child(-n+2) {
    margin-top: 30px;
  }
  .question-list li:first-child {
    margin-top: 0 !important;
  }
  .question-list .question {
    font-size: 24px;
    margin-bottom: 10px;
    min-height: auto;
  }
  .pad-list {
    margin: 15px 0;
  }
  .pad-list li {
    padding-left: 20px;
  }
  .pad-list li::after {
    top: 6px;
    width: 12px;
    height: 12px;
    bottom: auto;
  }
  .pad-list.-flex li {
    margin-right: 50px;
  }
}

.info-box {
  position: relative;
}

.info-box .text {
  padding: 0px;
  width: 100%;
  font-size: 16px;
}

.info-box .date {
  margin-right: 50px;
  margin-bottom: 10px;
  font-size: 16px;
}

.info-box .date.-detail {
  margin-right: 0;
  font-size: 16px;
  margin-bottom: 0;
}

.info-box .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 5px 0px;
  text-align: center;
  width: 125px;
  margin-bottom: 10px;
}

.info-box .category.-cate01 {
  background: #0a63a5;
}

.info-box .category.-cate02 {
  background: #eabd00;
}

.info-box .category.-detail {
  margin-bottom: 0px;
  font-size: 16px;
  margin-right: 30px;
  padding: 5px 20px;
  width: auto;
  min-width: 100px;
}

.info-box > .image {
  margin-top: 20px;
  text-align: center;
}

.info-box > .image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.info-box > .image p {
  line-height: 1;
  text-align: center;
  font-size: 16px;
}

.info-list {
  max-height: 400px;
  overflow: auto;
  width: 100%;
}

.info-list.-index {
  max-height: 100%;
}

.info-list li {
  border-top: 1px solid #dbdbdb;
}

.info-list li:last-child {
  border-bottom: 1px solid #dbdbdb;
}

.info-list li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 30px 15px 20px;
  position: relative;
}

.info-list li > a::after {
  position: absolute;
  top: auto;
  right: 0px;
  bottom: 0px;
  left: auto;
  background: url(../img/common/icon/link-icon.svg) no-repeat bottom right;
  content: "";
  display: block;
  width: 48px;
  height: 48px;
}

.info-list li > a:hover .text {
  text-decoration: underline;
}

.info-list li > a.no-link:hover .text {
  text-decoration: none;
}

.info-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.btn-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.btn-info li {
  padding-left: 0px !important;
  margin-right: 10px;
  margin-bottom: 10px;
}

.btn-info li:last-child {
  margin-right: 0px;
}

.btn-info li:before {
  display: none;
}

.btn-info a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
  display: block;
  background: #999999;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 0.5em 2.5em;
}

.btn-info a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #C9DD72;
  text-decoration: none;
}

.pagenav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 40px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
}

.pagenav-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagenav-box li {
  margin-right: 10px;
}

.pagenav-box li:last-child {
  margin-right: 0px;
}

.pagenav-box a {
  background: #999999;
  border-radius: 50px;
  color: #fff;
  padding: 4px 8px;
}

.pagenav-box a:hover {
  opacity: 0.8;
  color: #fff;
}

.pagenav-box .prev, .pagenav-box .page-box > .next, .pagenav-box .page-box > .list, .pagenav-box .next {
  padding: 4px 15px;
}

.pagenav-box .current {
  background: #C9DD72;
  border-radius: 50px;
  color: #fff;
  padding: 3px 8px;
}

.info-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.info-image.-single {
  display: block;
}

.info-image.-single > .image {
  margin-left: 0%;
  max-width: 100%;
}

.info-image.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.info-image.-reverse > .image {
  margin-right: 2%;
  margin-left: 0;
}

.info-image > .text {
  width: 100%;
}

.info-image > .image {
  margin-left: 2%;
  max-width: 35%;
}

.info-image > .image {
  font-size: 16px;
  text-align: center;
}

.info-image > .image li {
  margin-bottom: 20px;
}

.info-image > .image img {
  margin-bottom: 5px;
  max-width: 100%;
  height: auto;
}

.info-image > .image p {
  line-height: 1;
  text-align: center;
}

.plural-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.plural-box > li {
  text-align: center;
  width: 48%;
  margin-bottom: 20px;
}

.plural-box > li img {
  max-width: 100%;
  height: auto;
}

.plural-box > li p {
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .info-box .date {
    margin-right: 10px;
    font-size: 100%;
  }
  .info-box .date.-detail {
    font-size: 100%;
  }
  .info-box .category {
    width: 100px;
  }
  .info-box .category.-detail {
    margin-bottom: 10px;
    margin-right: 20px;
    min-width: 70px;
    font-size: 100%;
  }
  .info-box .text {
    font-size: 100%;
  }
  .info-box > .image p {
    font-size: 100%;
  }
  .info-list li > a {
    padding: 15px 25px 15px 15px;
  }
  .info-list li > a::after {
    background-size: 40px auto;
  }
  .info-data {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .btn-info ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .btn-info li {
    margin-bottom: 5px;
  }
  .btn-info a {
    line-height: 1.4;
  }
  .info-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info-image > .text {
    margin-bottom: 20px;
    width: 100%;
  }
  .info-image > .image {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    font-size: 100%;
  }
  .plural-box > li {
    width: 100%;
  }
  .plural-box > li p {
    font-size: 100%;
  }
}

.article-box p a {
  text-decoration: underline;
}

.article-box p a:hover {
  text-decoration: none;
}

.-center {
  text-align: center !important;
}

@media screen and (max-width: 480px) {
  p.-center {
    text-align: left !important;
  }
}

.image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0;
}

.image-box.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.image-box.-reverse > .image {
  margin-right: 2%;
  margin-left: 0;
}

.image-box > .text {
  width: 63%;
}

.image-box > .text .title-02:first-child, .image-box .text .title-03:first-child, .image-box .text .title-04:first-child {
  margin-top: 0;
}

.image-box > .image {
  font-size: 90%;
  text-align: center;
  width: 35%;
}

.image-box > .image img {
  margin-bottom: 5px;
  max-width: 100%;
  height: auto;
}

.image-box > .image p {
  line-height: 1.4;
  text-align: center;
}

.image-box.-short .text {
  width: 78%;
}

.image-box.-short .image {
  width: 20% !important;
}

.image-box.-long .text {
  width: 58%;
}

.image-box.-long .image {
  width: 40%;
}

/*--------------画像2枚並び複数枚----------------*/
.plural-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

.plural-image > li {
  text-align: center;
  width: 48%;
  margin-bottom: 30px;
}

.plural-image > li img {
  max-width: 96%;
  height: auto;
}

.plural-image > li p {
  font-size: 90%;
  display: block;
  text-align: center;
}

.plural-image.-three {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.plural-image.-three li {
  width: 33%;
  margin-bottom: 20px;
}

.plural-image.-four {
  margin: 10px 0;
}

.plural-image.-four li {
  width: 25%;
  margin-bottom: 0px;
}

@media screen and (max-width: 480px) {
  .image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .image-box.-reverse > .image {
    margin-right: 0;
  }
  .image-box > .text {
    width: 100%;
    margin-bottom: 15px;
  }
  .image-box > .image {
    width: 100%;
    margin: auto;
  }
  .image-box.-short .text {
    width: 100%;
  }
  .image-box.-short .image {
    width: 100% !important;
  }
  .image-box.-short .image img {
    max-width: 80%;
  }
  .image-box.-long .text {
    width: 100%;
  }
  .image-box.-long .image {
    width: 100%;
  }
  /*--------------画像2枚並び複数枚----------------*/
  .plural-image {
    margin: 20px 0;
  }
  .plural-image > li {
    width: 100%;
  }
  .plural-image.-three li {
    width: 100%;
  }
  .plural-image.-four {
    margin: 20px 0;
  }
  .plural-image.-four li {
    width: 100%;
  }
}

.subtitle-01 {
  font-size: 88px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 100px;
  font-family: "FOT-クックハンド Std R";
}

.subtitle-02 {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #C9DD72;
  font-family: "FOT-クックハンド Std R";
}

.content-block.-green .subtitle-02 {
  color: #000;
}

.content-block.-gray .subtitle-02 {
  color: #000;
}

.subtitle-03 {
  font-size: 40px;
  line-height: 1.2;
  margin: 40px 0;
  font-family: "FOT-クックハンド Std R";
}

.subtitle-04 {
  font-size: 28px;
  line-height: 1.2;
  margin: 40px 0;
  font-family: "FOT-クックハンド Std R";
}

.subtitle-05 {
  font-size: 22px;
  line-height: 1.4;
  margin: 40px 0;
  font-family: "FOT-クックハンド Std R";
}

.subtitle-01.-green,
.subtitle-02.-green,
.subtitle-03.-green,
.subtitle-04.-green,
.subtitle-05.-green {
  color: #C9DD72 !important;
}

/*-----------------------------------------------------------------*/
.title-block {
  height: 150px;
  background: url(../img/second/main.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.title-block::before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -25px;
  left: 0;
  background: rgba(201, 221, 114, 0.9);
  content: "";
  width: 42%;
  height: 68px;
}

.title-block .title-inner {
  margin: 0 auto;
  width: 1100px;
  position: relative;
  height: 150px;
}

.title-block h1 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -28px;
  left: auto;
  font-size: 38px;
  padding: 15px 25px;
  line-height: 1;
  color: #fff;
  font-weight: normal;
  font-family: "FOT-クックハンド Std R";
}

.title-01 {
  font-size: 34px;
  margin: 50px 0 40px 0;
  padding: 15px 10px;
  position: relative;
  line-height: 1.2;
  font-family: "FOT-クックハンド Std R";
}

.title-01:after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: 0px;
  content: "";
  width: 20%;
  height: 2px;
  background: #C9DD72;
}

.title-01:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 2px;
  background: #dddddd;
}

.title-02 {
  font-size: 24px;
  padding: 10px 10px;
  background: #C9DD72;
  margin: 40px 0 30px 0;
  line-height: 1.4;
  font-family: "FOT-クックハンド Std R";
}

.title-03 {
  font-size: 20px;
  margin: 30px 0 20px 0;
  position: relative;
  padding: 0 0px 0px 10px;
  line-height: 1.4;
  font-weight: 600;
  font-family: "FOT-クックハンド Std R";
}

.title-03:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  left: 0;
  top: 0;
  background: #C9DD72;
}

.title-04 {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.4;
  font-weight: 600;
  color: #C9DD72;
  font-family: "FOT-クックハンド Std R";
}

.title-04 a {
  color: #C9DD72;
  text-decoration: underline;
}

.title-04 a:hover {
  text-decoration: none;
}

/*-----------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  .subtitle-01 {
    font-size: 40px;
    margin-bottom: 35px;
    margin-top: 100px;
  }
  .subtitle-02 {
    font-size: 34px;
    margin-bottom: 35px;
  }
  .subtitle-03 {
    font-size: 26px;
    margin: 20px 0;
  }
  .subtitle-04 {
    font-size: 20px;
    margin: 25px 0;
  }
  .subtitle-05 {
    font-size: 18px;
    margin: 15px 0;
  }
  /*-----------------------------------------------------------------*/
  .title-block::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    margin: auto;
  }
  .title-block .title-inner {
    width: 100%;
  }
  .title-block h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 8vw;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .title-01 {
    font-size: 26px;
    padding: 10px;
    line-height: 1.4;
  }
  .title-02 {
    font-size: 20px;
    margin: 40px 0 20px 0;
  }
  .title-03 {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }
  /*-----------------------------------------------------------------*/
}

.topicpath-box {
  padding: 10px 0px;
  width: 100%;
}

.topicpath-box ul {
  width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.topicpath-box ul li {
  font-size: 13px;
  margin-right: 20px;
  position: relative;
}

.topicpath-box ul li:after {
  position: absolute;
  top: -2px;
  right: -12px;
  bottom: auto;
  left: auto;
  content: "|";
}

.topicpath-box ul li:last-child {
  margin-right: 0px;
}

.topicpath-box ul li:last-child:after {
  content: "";
}

@media screen and (max-width: 480px) {
  .topicpath-box {
    padding: 10px 5px;
    width: calc(100% - 10px);
  }
  .topicpath-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}

.blog-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.blog-box .image.-detail {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 80%;
}

.blog-box .image.-detail img {
  width: 100%;
}

.blog-main {
  -ms-flex-preferred-size: 800px;
      flex-basis: 800px;
  width: 800px;
  margin-right: 50px;
}

.blog-main .list {
  width: auto;
}

.blog-list {
  border-top: 1px solid #dbdbdb;
}

.blog-list:last-child {
  border-bottom: 1px solid #dbdbdb;
}

.blog-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000 !important;
  padding: 10px 0px;
  font-size: 16px;
}

.blog-list a:hover {
  color: #C9DD72;
  text-decoration: underline;
}

.blog-list .image {
  background: #999999;
  margin-right: 15px;
  text-align: center;
  width: 80px;
  height: 53.3px;
}

.blog-list .image img {
  max-width: 100%;
  height: 100%;
}

.blog-list .text {
  color: #000 !important;
  font-size: 90%;
}

.blog-list .category {
  color: #000 !important;
  font-size: 90%;
}

.blog-post {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 30px;
  margin-bottom: 50px;
  font-size: 16px;
}

.blog-post > .text img {
  max-width: 100%;
  margin: 10px 0;
}

.blog-post > .text a {
  color: #C9DD72;
  text-decoration: underline;
}

.blog-post > .text a:hover {
  text-decoration: none;
}

.blog-post .title-02:first-child {
  margin-top: 0;
}

/*--------------------カテゴリ・年月日---------------------*/
.list-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
}

.list-date > .date {
  color: #000;
  font-weight: 600;
}

.list-date .cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 5em;
  position: relative;
  line-height: 1.4;
  margin-bottom: 5px;
  font-weight: 600;
}

.list-date .cate::after {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: 0px;
  content: "カテゴリ：";
}

.list-date .cate li {
  position: relative;
  padding-right: 1em;
}

.list-date .cate li:last-child {
  padding-right: 0px;
}

.list-date .cate li::after {
  position: absolute;
  top: 0px;
  right: -5px;
  bottom: auto;
  left: auto;
  content: "、";
}

.list-date .cate li:last-child:after {
  content: none;
}

/*--------------------カテゴリ・年月日---------------------*/
/*--------------------サイドメニュー---------------------*/
.blog-side {
  width: 250px;
}

.blog-side-box {
  padding: 15px;
  background: #f7f7f7;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
}

.blog-side-box .blog-side-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
}

/*--------------------サイドメニュー---------------------*/
/*--------------------カレンダー---------------------*/
.cal-box table {
  margin: 0 auto;
  table-layout: fixed;
  width: 100%;
}

.cal-box table th {
  font-weight: normal;
  font-size: 13px;
}

.cal-box table th:first-child {
  color: #e60012;
}

.cal-box table th:last-child {
  color: #0C3C87;
}

.cal-box table td {
  border-top: 1px solid #dbdbdb;
  font-size: 15px;
  line-height: 1rem;
  padding: 5px 0px 20px 0px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: calc(100% / 7);
}

.cal-box table a {
  display: block;
  color: #000;
}

.cal-box table a span {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 5px;
  left: calc(50% - 6px);
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #C9DD72;
  font-style: normal;
  font-size: 12px;
}

.cal-box table a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #0a63a5;
}

.cal-box table a:hover span {
  color: #0a63a5;
}

/*--------------------カレンダー---------------------*/
/*--------------------カレンダー年数---------------------*/
.cal-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 16px;
}

.cal-year > .current strong {
  font-size: 26px;
}

.cal-year > .prev, .page-box.cal-year > .next, .page-box.cal-year > .list,
.cal-year > .next {
  position: relative;
  width: 100%;
}

.cal-year > .prev a, .page-box.cal-year > .next a, .page-box.cal-year > .list a,
.cal-year > .next a {
  display: block;
}

.cal-year > .prev a:before, .page-box.cal-year > .next a:before, .page-box.cal-year > .list a:before {
  position: absolute;
  top: 10px;
  right: auto;
  bottom: auto;
  left: 50px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #000 transparent transparent;
  content: "";
  cursor: pointer;
  display: block;
  width: 0;
  height: 0;
}

.cal-year > .next a:after {
  position: absolute;
  top: 10px;
  right: 50px;
  bottom: auto;
  left: auto;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #000;
  content: "";
  cursor: pointer;
  display: block;
  width: 0;
  height: 0;
}

/*--------------------カレンダー年数---------------------*/
/*--------------------ページ送り---------------------*/
.page-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page-box > .prev > a, .page-box > .next > a, .page-box > .list > a {
  background: #999999;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 2;
  padding: 0px 30px;
}

.page-box > .prev > a:hover, .page-box > .next > a:hover, .page-box > .list > a:hover {
  background: #C9DD72;
}

/*--------------------ページ送り---------------------*/
/*--------------------検索---------------------*/
.form-box {
  position: relative;
}

.form-box ::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}

.form-box :-ms-input-placeholder {
  color: #bbb;
  opacity: 1;
}

.form-box ::-ms-input-placeholder {
  color: #bbb;
  opacity: 1;
}

.form-box ::placeholder {
  color: #bbb;
  opacity: 1;
}

.form-box .button {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
  background: #999999;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  padding: 0.3em 1.6em;
  margin-left: 10px;
}

.form-box .button.-search {
  position: absolute;
  top: 7px;
  right: 0px;
  bottom: auto;
  left: auto;
  background: url(../img/common/icon/search.svg) 50% 50% no-repeat;
  background-size: 18px auto;
  margin-left: 0px;
}

.form-box .button:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #000;
}

.form-box .field {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  font-family: inherit;
  font-size: 15px;
  padding: 0.5em 0.6em;
}

.form-box .field:focus {
  background: #fff;
  border: 1px solid #C9DD72;
}

.form-box .-lg {
  width: calc(100% - (0.6em * 2) - (1px * 2));
}

/*--------------------検索---------------------*/
@media screen and (max-width: 480px) {
  .blog-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blog-list a {
    font-size: 14px;
  }
  .blog-list .text {
    font-size: 14px;
  }
  .blog-list .category {
    font-size: 14px;
  }
  .blog-post {
    font-size: 100%;
  }
  .blog-main {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    margin-right: 0px;
  }
  /*--------------------カテゴリ・年月日---------------------*/
  .list-date {
    font-size: 14px;
  }
  /*--------------------カテゴリ・年月日---------------------*/
  /*--------------------カレンダー---------------------*/
  .cal-box table td {
    font-size: 14px;
  }
  /*--------------------カレンダー---------------------*/
  /*--------------------検索---------------------*/
  .form-box .field {
    font-size: 16px;
  }
  /*--------------------検索---------------------*/
  /*--------------------サイドメニュー---------------------*/
  .blog-side {
    width: 100%;
  }
  .blog-side-box .blog-side-title {
    font-size: 16px;
  }
  /*--------------------サイドメニュー---------------------*/
  /*--------------------ページ送り---------------------*/
  .page-box {
    margin-bottom: 50px;
  }
  .page-box > .prev > a, .page-box > .next > a, .page-box > .list > a {
    font-size: 12px;
    padding: 0px 12px;
  }
  /*--------------------ページ送り---------------------*/
}

.index-read p {
  margin: 30px auto;
  width: 780px;
  text-align: center;
}

.index-read p:last-child {
  margin-bottom: 0;
}

.index-info-list {
  margin: 80px 0;
}

.index-info-list li {
  width: 90%;
  margin: 0 auto 20px;
  min-width: 1100px;
}

.index-info-list a {
  background: #f7f7f7;
  display: block;
  padding: 25px 30px;
  font-family: "FOT-クックハンド Std R";
}

.index-info-list a:hover {
  opacity: 0.8;
}

.index-info-list .text {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.index-info-list .date {
  font-size: 16px;
  line-height: 1;
}

.index-info-list .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 5px 0px;
  width: 125px;
  margin-bottom: 10px;
}

.index-info-list .category.-cate01 {
  background: #0a63a5;
}

.index-info-list .category.-cate02 {
  background: #eabd00;
}

.index-guide {
  margin-bottom: 100px;
}

.index-guide .content-block {
  padding: 120px 0;
  width: 90%;
  margin: auto;
  min-width: 1100px;
}

.index-guide .subtitle-03:first-child {
  margin-top: 0;
}

.index-guide .btn-list a {
  color: #C9DD72;
  background: #000;
}

.schedule-box {
  margin: 30px auto;
}

.schedule-box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #fff;
  border-bottom: 1px #dddddd solid;
  line-height: 1;
}

.schedule-box dl:first-child {
  border-top: 1px #dddddd solid;
  background: #f7f7f7;
}

.schedule-box dt {
  width: calc(15% - 20px);
  border-left: 1px #dddddd solid;
  border-right: 1px #dddddd solid;
  padding: 15px 10px;
  text-align: center;
}

.schedule-box dt span {
  font-size: 80%;
  display: block;
  margin-top: 10px;
}

.schedule-box dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  width: calc((85% - 9px) / 7);
  border-right: 1px #dddddd solid;
  padding: 30px 0px;
}

.schedule-box dd p {
  font-size: 16px;
}

.schedule-box dd span {
  position: absolute;
  top: auto;
  right: 0px;
  bottom: 10px;
  left: 0px;
  text-align: center;
  margin: auto;
  font-size: 14px;
  display: block;
}

.schedule-box p.date {
  text-indent: 9999px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  height: 20px;
}

.schedule-box p.date::after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: "";
  background: url(../../../img/common/icon/icon_pad.svg) no-repeat center;
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
  background-size: 100%;
}

.main-block.-index .col-box li:nth-child(1) .image {
  background: url(../img/index/img01.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-index .col-box li:nth-child(2) .image {
  background: url(../img/index/img02.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-index .col-box li:nth-child(3) .image {
  background: url(../img/index/img03.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-index .col-box li:nth-child(4) .image {
  background: url(../img/index/img04.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-index .col-box li:nth-child(5) .image {
  background: url(../img/index/img05.jpg) no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 480px) {
  .index-read p {
    margin: 15px auto;
    width: 100%;
    text-align: left;
  }
  .index-info-list {
    margin: 40px 0;
  }
  .index-info-list li {
    width: 100%;
    min-width: 100%;
  }
  .index-info-list a {
    padding: 15px;
  }
  .index-info-list .text {
    font-size: 18px;
  }
  .index-info-list .date {
    font-size: 100%;
  }
  .index-info-list .category {
    font-size: 14px;
    width: 100px;
  }
  .index-guide .content-block {
    padding: 50px 0 10px;
    width: 96%;
    min-width: 96%;
  }
  .schedule-box {
    margin: 30px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .schedule-box dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: none;
    width: calc((100% - 2px) / 3);
  }
  .schedule-box dl:first-child {
    border-top: none;
  }
  .schedule-box dl:nth-child(2) {
    border-right: 1px #dddddd solid;
    border-left: 1px #dddddd solid;
  }
  .schedule-box dt {
    width: calc(100% - 10px);
    border-left: none;
    border-right: none;
    padding: 15px 5px;
    height: 40px;
    border-bottom: 1px #dddddd solid;
    background: #f7f7f7;
  }
  .schedule-box dt span {
    font-size: 3vw;
  }
  .schedule-box dd {
    width: 100%;
    border-right: none;
    padding: 20px 0px;
    border-bottom: 1px #dddddd solid;
    height: 25px;
  }
  .schedule-box dd p {
    font-size: 100%;
  }
  .schedule-box dd span {
    bottom: 7px;
    font-size: 3vw;
  }
  .schedule-box p.date {
    height: 15px;
  }
  .schedule-box p.date::after {
    width: 15px;
    height: 15px;
  }
}

.col-box {
  margin: 80px 0;
}

.col-box p {
  margin: 15px 0;
}

.col-box > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 740px;
  width: 90%;
  margin: 0 auto 60px;
}

.col-box > ul > li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col-box > ul > li:nth-child(even) .text {
  padding-left: 30px;
  padding-right: 0px;
}

.col-box > ul > li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 30px;
  width: calc(50% - 30px);
}

.col-box > ul > li .text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 460px;
}

.col-box > ul > li .text-inner div, .col-box > ul > li .text-inner p {
  width: 100%;
}

.col-box > ul > li .image {
  width: 50%;
}

.col-box > ul > li .subtitle-02, .col-box > ul > li .subtitle-03, .col-box > ul > li .subtitle-04, .col-box > ul > li .subtitle-05 {
  margin-top: 0 !important;
}

.col-box02 > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 700px;
}

.col-box02 > ul > li:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col-box02 > ul > li:nth-child(odd) .text {
  padding-left: 30px;
  padding-right: 0px;
}

.col-box02 > ul > li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 30px;
  width: calc(50% - 30px);
  background: #f7f7f7;
}

.col-box02 > ul > li .text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 460px;
}

.col-box02 > ul > li .text-inner div {
  width: 100%;
}

.col-box02 > ul > li .image {
  width: 50%;
  background-size: cover;
}

.col-box02 > ul > li .subtitle-02, .col-box02 > ul > li .subtitle-03, .col-box02 > ul > li .subtitle-04, .col-box02 > ul > li .subtitle-05 {
  margin-top: 0 !important;
}

.col-box03 {
  margin-bottom: 120px;
}

.col-box03 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.col-box03 .text {
  width: 43%;
}

.col-box03 .text .subtitle-02, .col-box03 .text .subtitle-04 {
  margin-top: 0 !important;
}

.col-box03 .image {
  width: 50%;
  height: 700px;
}

.col-box03 .image img {
  width: 100%;
}

.image-right {
  margin-top: 120px;
}

.image-right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image-right .text {
  width: 43%;
}

.image-right .image {
  width: 50%;
  height: 600px;
}

.image-right .image img {
  width: 100%;
}

.image-right .subtitle-02, .image-right .subtitle-03, .image-right .subtitle-04, .image-right .subtitle-05 {
  margin-top: 0 !important;
}

.image-left {
  margin: 120px 0;
}

.image-left li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image-left .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  width: calc(50% - 120px);
  background: #fff;
  height: 660px;
  padding: 0 60px;
}

.image-left .text .subtitle-02, .image-left .text .subtitle-03, .image-left .text .subtitle-04, .image-left .text .subtitle-05 {
  margin-top: 0 !important;
}

.image-left .image {
  width: 50%;
  height: 660px;
}

.image-left .image img {
  width: 100%;
}

.image-left .subtitle-03 {
  color: #C9DD72;
}

.image-left div, .image-left p {
  width: 100%;
}

.gray-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f7f7f7;
  width: 90%;
  margin: 80px auto;
}

.gray-box .gray-inner {
  padding: 0 150px;
  margin: auto;
}

.gray-box .content-block {
  padding: 80px 0;
}

.gray-box .subtitle-02 {
  color: #000;
}

.gray-box p {
  margin: 30px 0;
}

.length-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.length-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: calc((100% - 60px) / 2);
  margin-top: 60px;
  background: #f7f7f7;
}

.length-list .image img {
  width: 100%;
}

.length-list .text {
  padding: 60px;
}

.length-list .text .subtitle-02, .length-list .text .subtitle-03, .length-list .text .subtitle-04, .length-list .text .subtitle-05 {
  margin-top: 0 !important;
}

@media screen and (max-width: 480px) {
  .col-box {
    margin: 50px 0;
  }
  .col-box p {
    margin: 10px 0;
  }
  .col-box > ul > li {
    height: auto;
    width: 100%;
    margin: 0 auto 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .col-box > ul > li:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .col-box > ul > li:nth-child(even) .text {
    padding-left: 0px;
  }
  .col-box > ul > li .text {
    padding-right: 0px;
    width: 96%;
    margin: auto;
    margin-bottom: 10px;
  }
  .col-box > ul > li .text-inner {
    max-width: 100%;
  }
  .col-box > ul > li .image {
    height: 280px;
    width: 96%;
    margin: auto;
  }
  .col-box02 {
    background: #f7f7f7;
  }
  .col-box02 > ul > li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    padding-bottom: 50px;
  }
  .col-box02 > ul > li:first-child {
    padding-top: 50px;
  }
  .col-box02 > ul > li:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .col-box02 > ul > li:nth-child(odd) .text {
    padding-left: 0px;
  }
  .col-box02 > ul > li .text {
    padding-right: 0px;
    width: 96%;
    margin: auto;
    margin-bottom: 20px;
  }
  .col-box02 > ul > li .text-inner {
    max-width: 100%;
  }
  .col-box02 > ul > li .image {
    height: 280px;
    margin: auto;
    width: 96%;
  }
  .col-box03 {
    margin-bottom: 0px;
  }
  .col-box03 .text {
    width: 100%;
    margin: 10px 0;
  }
  .col-box03 .image {
    width: 80%;
    height: auto;
    max-height: 360px;
    overflow: hidden;
    margin: 10px auto;
  }
  .col-box03 .image img {
    width: auto;
    max-width: 100%;
  }
  .image-right {
    margin-top: 50px;
  }
  .image-right .text {
    width: 100%;
    margin-bottom: 15px;
  }
  .image-right .image {
    width: 100%;
    height: auto;
  }
  .image-right .image img {
    width: auto;
    max-width: 100%;
  }
  .image-left {
    margin: 50px 0;
  }
  .image-left li {
    margin-top: 50px;
  }
  .image-left .text {
    width: calc(100% - 60px);
    height: auto;
    padding: 30px;
  }
  .image-left .image {
    width: 100%;
    height: auto;
    max-height: 360px;
    overflow: hidden;
  }
  .image-left .image img {
    width: auto;
    max-width: 100%;
  }
  .gray-box {
    margin: 50px auto;
  }
  .gray-box .gray-inner {
    padding: 0 10px;
  }
  .gray-box .content-block {
    padding: 50px 0;
  }
  .gray-box p {
    margin: 10px 0;
  }
  .gray-box .subtitle-02 br {
    display: none;
  }
  .length-list li {
    width: 100%;
    margin-top: 40px;
  }
  .length-list .image img {
    width: auto;
    max-width: 100%;
  }
  .length-list .text {
    padding: 30px;
  }
}

.main-block.-introduction .col-box02 li:nth-child(1) .image {
  background: url(../../../img/introduction/int_img04.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(2) .image {
  background: url(../../../img/introduction/int_img05.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(3) .image {
  background: url(../../../img/introduction/int_img06.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(4) .image {
  background: url(../../../img/introduction/int_img07.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(5) .image {
  background: url(../../../img/introduction/int_img08.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(6) .image {
  background: url(../../../img/introduction/int_img09.jpg) no-repeat bottom;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(7) .image {
  background: url(../../../img/introduction/int_img10.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(8) .image {
  background: url(../../../img/introduction/int_img11.jpg) no-repeat bottom;
  background-size: cover;
}

.main-block.-introduction .col-box02 li:nth-child(9) .image {
  background: url(../../../img/introduction/int_img12.jpg) no-repeat center;
  background-size: cover;
}

.introduction-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../../../img/introduction/main.jpg) no-repeat center;
  background-size: cover;
  height: 700px;
  position: relative;
}

.introduction-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.introduction-box .introduction-inner {
  text-align: center;
}

.introduction-box .subtitle-02 {
  color: #fff;
}

.greeting-box > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 660px;
  width: 90%;
  margin: auto;
}

.greeting-box > ul > li .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  background: #C9DD72;
}

.greeting-box > ul > li .text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 460px;
}

.greeting-box > ul > li .text-inner div {
  width: 100%;
}

.greeting-box > ul > li .image {
  width: 50%;
  background: url(../../../img/introduction/greeting_img.jpg) no-repeat right -45px center;
  background-size: cover;
}

.greeting-box .subtitle-04:first-child {
  margin-top: 0;
}

.staff-list {
  margin-top: 120px;
}

.staff-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.staff-list li {
  width: 45%;
  margin-top: 80px;
}

.staff-list li:nth-child(-n+2) {
  margin-top: 0px;
}

.staff-list .name {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #C9DD72;
  font-family: "FOT-クックハンド Std R";
}

.staff-list .position {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 40px;
  font-family: "FOT-クックハンド Std R";
}

@media screen and (max-width: 480px) {
  .introduction-box {
    height: 400px;
  }
  .introduction-box .subtitle-02 {
    margin-bottom: 0;
  }
  .introduction-box .subtitle-02 br {
    display: none;
  }
  .greeting-box > ul > li {
    height: auto;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .greeting-box > ul > li .text {
    width: 100%;
  }
  .greeting-box > ul > li .text-inner {
    max-width: 96%;
    padding: 40px 0;
  }
  .greeting-box > ul > li .image {
    width: 100%;
    height: 280px;
    background: url(../../../img/introduction/greeting_img.jpg) no-repeat center center;
    background-size: cover;
  }
  .staff-list {
    margin-top: 20px;
  }
  .staff-list li {
    width: 100%;
    margin-top: 40px;
  }
  .staff-list li:nth-child(-n+2) {
    margin-top: 40px;
  }
  .staff-list .name {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .staff-list .position {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.access-img {
  margin: 80px 15px 0;
}

.access-img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.access-img li {
  text-align: center;
  width: 48%;
  position: relative;
  margin-bottom: 3%;
}

.access-img li::after {
  position: absolute;
  top: -15px;
  right: auto;
  bottom: auto;
  left: -15px;
  width: 55px;
  height: 55px;
  font-family: "Roboto", sans-serif;
  background: #fff;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 600;
  color: #C9DD72;
  line-height: 1.8;
  border: 4px solid #C9DD72;
}

.access-img li:first-child::after {
  content: "1";
}

.access-img li:nth-child(2)::after {
  content: "2";
}

.access-img li:nth-child(3)::after {
  content: "3";
}

.access-img li:nth-child(4)::after {
  content: "4";
}

.access-img li img {
  max-width: 96%;
  height: auto;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.access-img li p {
  font-size: 90%;
  text-align: center;
  margin-top: 15px;
}

.map-box {
  margin: 60px 0;
}

@media screen and (max-width: 480px) {
  iframe {
    max-width: 100%;
  }
  .access-img ul {
    margin: 25px 0px;
  }
  .access-img li {
    width: 100%;
    margin-bottom: 20px;
  }
  .access-img li::after {
    position: absolute;
    top: -10px;
    right: auto;
    bottom: auto;
    left: 0px;
    width: 45px;
    height: 45px;
    font-size: 25px;
  }
  .map-box {
    margin: 30px 0;
  }
}

.medical-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../../../img/medical/main.jpg) no-repeat center;
  background-size: cover;
  height: 700px;
  position: relative;
}

.medical-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.medical-box .medical-inner {
  text-align: center;
}

.medical-box .subtitle-02 {
  color: #fff;
}

@media screen and (max-width: 480px) {
  .medical-box {
    height: 400px;
  }
  .medical-box .content-block {
    width: 100%;
  }
  .medical-box .subtitle-02 {
    margin-bottom: 0;
  }
  .medical-box .subtitle-02 br {
    display: none;
  }
}

.main-block.-skin p {
  margin: 30px 0;
}

.main-block.-skin p + img {
  margin-top: 30px;
}

.main-block.-skin .col-box li:nth-child(1) .image {
  background: url(../../../img/skin/skin_img05.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-skin .col-box li:nth-child(2) .image {
  background: url(../../../img/skin/skin_img06.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-skin .col-box li:nth-child(3) .image {
  background: url(../../../img/skin/skin_img07.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-skin .col-box li:nth-child(4) .image {
  background: url(../../../img/skin/skin_img08.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-skin .col-box li:nth-child(5) .image {
  background: url(../../../img/skin/skin_img09.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-skin .col-box li:nth-child(6) .image {
  background: url(../../../img/skin/skin_img10.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-skin .col-box li:nth-child(7) .image {
  background: url(../../../img/skin/skin_img11.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-skin .col-box li:nth-child(8) .image {
  background: url(../../../img/skin/skin_img12.jpg) no-repeat center;
  background-size: cover;
}

.skin-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../../../img/skin/main.jpg) no-repeat center;
  background-size: cover;
  height: 700px;
}

.skin-box .skin-inner {
  color: #fff;
}

.skin-box .subtitle-01 {
  text-align: left;
}

.skin-box .subtitle-04 {
  margin-bottom: 0;
}

.skin-box.-second {
  background: url(../../../img/skin/submain.jpg) no-repeat center;
  background-size: cover;
}

.skin-box.-second .subtitle-01 {
  text-align: center;
}

.skin-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 25px 0;
}

.skin-list:first-child {
  margin-top: 0;
}

.skin-list > li {
  text-align: center;
  width: 48%;
  position: relative;
}

.skin-list li:after {
  position: absolute;
  top: 0px;
  right: -35px;
  bottom: 0px;
  left: auto;
  content: "";
  height: 0;
  width: 0;
  border-bottom: 20px solid transparent;
  border-left: 25px solid #999999;
  border-top: 20px solid transparent;
  margin: auto;
}

.skin-list li:last-child:after {
  content: none;
}

.skin-list > li img {
  max-width: 80%;
  height: auto;
}

.skin-list > li p {
  font-size: 90%;
  display: block;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .main-block.-skin p {
    margin: 10px 0;
  }
  .main-block.-skin p + img {
    margin-top: 15px;
  }
  .skin-box {
    height: 400px;
  }
  .skin-box .content-block {
    width: 100%;
  }
  .skin-box br {
    display: none;
  }
  .skin-list {
    margin: 0;
    border-top: 1px solid #dbdbdb;
    padding: 15px 0;
  }
  .skin-list > li {
    width: 100%;
    margin-bottom: 40px;
  }
  .skin-list > li:last-child {
    margin-bottom: 0px;
  }
  .skin-list > li p {
    font-size: 100%;
  }
  .skin-list li:after {
    position: absolute;
    top: auto;
    right: 0px;
    bottom: -50px;
    left: 0px;
    border-top: 20px solid #999999;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  }
  .content-block.-green .skin-list {
    border-top: 1px solid #000;
  }
  .content-block.-green .skin-list li:after {
    border-top: 20px solid  #000;
  }
  .content-box .skin-list:first-of-type {
    border-top: none !important;
  }
}

.main-block.-ear p + img {
  margin-top: 30px;
}

.main-block.-ear .col-box li:nth-child(1) .image {
  background: url(../../../img/ear/ear_img04.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-ear .col-box li:nth-child(2) .image {
  background: url(../../../img/ear/ear_img05.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-ear .col-box li:nth-child(3) .image {
  background: url(../../../img/ear/ear_img06.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-ear .col-box li:nth-child(4) .image {
  background: url(../../../img/ear/ear_img07.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-ear .col-box li:nth-child(5) .image {
  background: url(../../../img/ear/ear_img08.jpg) no-repeat center;
  background-size: cover;
}

.main-block.-ear .col-box li:nth-child(6) .image {
  background: url(../../../img/ear/ear_img09.jpg) no-repeat center;
  background-size: cover;
}

.ear-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../../../img/ear/main.jpg) no-repeat center;
  background-size: cover;
  height: 700px;
  position: relative;
}

.ear-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.ear-box .ear-inner {
  color: #fff;
}

.ear-box .subtitle-01 {
  text-align: left;
}

.ear-box .subtitle-04 {
  margin-bottom: 0;
}

.doctor-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.doctor-info .text {
  width: 43%;
}

.doctor-info .text .subtitle-02, .doctor-info .text .subtitle-04 {
  margin-top: 0 !important;
}

.doctor-info .image {
  width: 50%;
  height: 760px;
  position: relative;
  z-index: 1;
}

.doctor-info .image::before {
  position: absolute;
  top: auto;
  left: -20px;
  bottom: -20px;
  content: "";
  background: #000;
  width: 550px;
  height: 760px;
  z-index: -1;
}

.doctor-info .image img {
  width: 100%;
}

.case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

.case-list > li {
  text-align: center;
  width: calc(49% - 40px);
  margin-bottom: 20px;
  background: #f4f4f4;
  padding: 25px 20px;
}

.case-list > li img {
  max-width: 70%;
  height: auto;
  margin-bottom: 20px;
}

.case-list > li p {
  text-align: left;
  font-size: 16px;
}

@media screen and (max-width: 480px) {
  .main-block.-ear p + img {
    margin-top: 15px;
  }
  .ear-box {
    height: 400px;
  }
  .ear-box .subtitle-01 br {
    display: none;
  }
  .doctor-info .text {
    width: 100%;
  }
  .doctor-info .image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    max-height: 360px;
    overflow: hidden;
  }
  .doctor-info .image::before {
    display: none;
  }
  .doctor-info .image img {
    width: auto;
    max-width: 100%;
  }
  .case-list > li {
    width: calc(100% - 40px);
    margin-bottom: 10px;
  }
  .case-list > li img {
    max-width: 100%;
  }
  .case-list > li p {
    font-size: 100%;
  }
}

._mt20 {
  margin-top: 20px !important;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.fade_in, .fade_right, .fade_left,
.slider-block,
.slider-box,
.main-block {
  opacity: 0;
}

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

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

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

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

@-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: none;
            transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
            transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

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

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

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

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

@-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-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: none;
            transform: none;
  }
}

@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: none;
            transform: none;
  }
}

.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: none;
            transform: none;
  }
}

@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: none;
            transform: none;
  }
}

.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: none;
            transform: none;
  }
}

@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: none;
            transform: none;
  }
}

.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-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: none;
            transform: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: none;
            transform: none;
  }
}

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

.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) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

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

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

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

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

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

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  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: none;
            transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  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-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: none;
            transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  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;
}
