@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;
}

.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: #222;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #3c3c3c;
}

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

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #222;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho", sans-serif;
  line-height: 2;
  min-width: 1240px;
}

.wrap {
  margin: 0px;
  padding: 0px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    min-width: 100%;
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
  }
  input[type=button], input[type=submit] {
    -webkit-appearance: none;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
}
.header-block {
  position: absolute;
  top: 20px;
  right: 0;
  bottom: auto;
  left: 0;
  margin: 0 auto;
  min-width: calc(1240px - 20px);
  max-width: 1500px;
  z-index: 1;
}
.header-block.-sub {
  position: static;
}
.header-block.-sub .header-inner {
  background: none;
  margin: 0 auto;
  padding: 15px 0px;
  width: 1240px;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #fff;
  padding: 20px;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: calc(100% - 40px - 20px);
}
.header-inner .logo-box {
  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;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
}
.header-inner .logo-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  background: url(../img/common/icon/logo.svg) no-repeat 0 4px/48px;
  letter-spacing: 1.9px;
}
.header-inner .logo-box .sub {
  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;
  font-size: 12px;
  line-height: 1.2;
  padding-left: 42px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}
.header-inner .logo-box .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 5px;
  padding-left: 60px;
}
.header-inner .logo-box .title span {
  display: block;
  font-weight: 500;
  font-size: 13px;
}
.header-inner .logo-box .title .en {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 15px;
  font-family: "EB Garamond";
  font-weight: 500;
  margin-top: 5px;
  line-height: 1;
  letter-spacing: 2.5px;
}
.header-inner .header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-left: auto;
  z-index: 1;
}
.header-inner .header-info {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 15px;
  left: 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;
}
.header-inner .header-info .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-right: 40px;
}
.header-inner .header-info .link li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho", sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  padding-left: 20px;
  line-height: 1;
  z-index: 1;
}
.header-inner .header-info .link li:before {
  position: absolute;
  top: 16px;
  right: auto;
  bottom: auto;
  left: 8px;
  border-width: 4px;
  border-style: solid;
  border-color: transparent transparent transparent #138C5A;
  content: "";
}
.header-inner .header-info .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-inner .header-info .tel li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "EB Garamond";
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.header-inner .header-info .tel li:not(:last-child) {
  margin-right: 20px;
}
.header-inner .header-info .tel li span {
  font-size: 18px;
  padding-right: 6px;
  padding-bottom: 2px;
}
.header-inner .resize-box {
  margin-right: 20px;
}
.header-inner .resize-box .btn > a {
  background: #eee;
  display: block;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  padding: 10px 0px;
  width: 120px;
}
.header-inner .resize-box .btn ul {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.header-inner .resize-box .btn a:hover {
  background: #138C5A;
  color: #fff;
}
.header-inner .resize-box .btn:hover ul {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 1;
  visibility: visible;
}
.header-inner .drop-box {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  padding-top: 10px;
}
.header-inner .drop-box.-resize {
  padding-top: 0px;
}
.header-inner .drop-box.-resize a {
  font-size: 13px;
  text-align: center;
  width: 85px;
}
.header-inner .drop-box.-resize a:hover {
  padding: 10px 20px 10px 15px;
  width: 85px;
}
.header-inner .drop-box li {
  background: #eee;
}
.header-inner .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;
  background: #eee;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  font-size: 14px;
  line-height: 1.1;
  padding: 10px 20px 10px 15px;
  width: 150px;
}
.header-inner .drop-box a:hover {
  padding: 10px 20px 10px 25px;
  width: 140px;
}
.header-inner .drop-box a:hover {
  color: #138C5A;
}
.header-inner .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-inner .btn-box li {
  margin-right: 20px;
  width: 160px;
}
.header-inner .btn-box li:first-child a {
  background: #7bc06f;
}
.header-inner .btn-box li:nth-child(2) a {
  border: 1px solid #ddd;
  color: #222;
}
.header-inner .btn-box li:last-child {
  margin-right: 0;
}
.header-inner .btn-box li:last-child a {
  background: #138C5A;
}
.header-inner .btn-box li a {
  color: #fff;
  display: block;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  padding: 8px 0px;
}

/* 以下ハンバーガーメニュー */
#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;
}

#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;
}

/* オーバーレイ */
.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 {
  display: block;
  opacity: 1;
  right: 0;
  overflow: hidden;
  height: 100vh;
}

header nav ul {
  width: 100%;
}

/* ナビゲーションアイコン */
header .navBtn {
  width: 20px;
  height: 20px;
  padding: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: #fff;
}

header .navBtn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #138C5A;
  border-radius: 2px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.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 {
  position: fixed;
  top: 0;
  opacity: 0;
  right: 0%;
  float: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9999;
  height: auto;
  padding-bottom: 0px;
}

.nav_re_logo a {
  display: block;
  background: url(../img2/common/header/logo_name.png) no-repeat 0 50%/75%;
  width: 70%;
  height: 30px;
  margin: 20px auto 20px 15px;
  padding-left: 40px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}

.sitemap-box {
  background: #fff;
  position: relative;
}
.sitemap-box.-none > div {
  -webkit-animation: fadeout ease 0.5s;
          animation: fadeout ease 0.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.sitemap-box.-none > div a, .sitemap-box.-none > div ul {
  display: none;
}
.sitemap-box.-active > div {
  -webkit-animation: fadein ease 0.5s;
          animation: fadein ease 0.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@-webkit-keyframes fadein {
  0% {
    height: 0vh;
    padding: 0;
  }
  100% {
    height: calc(100vh - 130px);
  }
}
@keyframes fadein {
  0% {
    height: 0vh;
    padding: 0;
  }
  100% {
    height: calc(100vh - 130px);
  }
}
@-webkit-keyframes fadeout {
  0% {
    height: calc(100vh - 130px);
  }
  100% {
    height: 0vh;
    padding: 0;
  }
}
@keyframes fadeout {
  0% {
    height: calc(100vh - 130px);
  }
  100% {
    height: 0vh;
    padding: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .sitemap-box.-none .sitemap-inner {
    animation: fadeout ease 0.5s;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    backface-visibility: hidden;
    height: 0;
    padding: 0;
    display: none;
  }
  *::-ms-backdrop,
  .sitemap-box.-none .sitemap-inner a {
    display: none;
  }
  *::-ms-backdrop,
  .sitemap-box.-none .sitemap-inner ul {
    display: none;
  }
  *::-ms-backdrop,
  .sitemap-box.-none .sitemap-inner {
    animation: fadein ease 0.5s;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: both;
    backface-visibility: hidden;
  }
}
.sitemap-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 50px;
  width: 1240px;
  height: 100vh;
}

.sitemap-list {
  width: calc((100% - 60px) / 3);
  height: 100vh;
  margin-top: 90px;
  margin-right: 30px;
}
.sitemap-list.-wide {
  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;
  width: calc((100% - 60px) / 2);
}
.sitemap-list.-wide .title {
  display: block;
  width: 100%;
}
.sitemap-list.-wide li {
  margin-right: 20px;
  width: calc((100% - 20px) / 2);
}
.sitemap-list.-wide li:nth-child(2n) {
  margin-right: 0px;
}
.sitemap-list:nth-child(3n) {
  margin-right: 0px;
}
.sitemap-list a {
  font-family: "Noto Serif JP";
  font-size: 13px;
}
.sitemap-list a:hover {
  background: rgba(32, 38, 64, 0.05);
}
.sitemap-list li {
  margin: 10px 0;
}
.sitemap-list > .title {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 10px;
}
.sitemap-list > .title a {
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .header-block {
    top: 10px;
    min-width: calc(100% - 20px);
    max-width: 100%;
    z-index: 2;
  }
  .header-block.-sub {
    padding-left: 10px;
  }
  .header-block .header-btn {
    display: none;
  }
  .header-block .header-info {
    display: none;
  }
  .header-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 15px;
    width: calc(92% - 15px);
  }
  .header-inner .logo-box {
    margin-bottom: 0;
  }
  .header-inner .logo-box a {
    background: url(../img/common/icon/logo.svg) no-repeat 0 0%/40px;
  }
  .header-inner .logo-box .title {
    font-size: 24px;
    margin-right: 0px;
    padding-left: 50px;
    line-height: 1;
  }
  .header-inner .logo-box .title span {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .header-inner .logo-box .title .en {
    font-size: 13px;
    padding-left: 0px;
    letter-spacing: 1.8px;
  }
  .header-inner .tel {
    display: none;
  }
  .sitemap-box {
    overflow: auto !important;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .sitemap-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 20px 10px 0px;
    width: calc(100% - 20px);
    height: calc(100vh - 30px);
  }
  .sitemap-inner > .logo {
    background: url(../img/common/icon/logo.svg) no-repeat left top/36px;
    font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
    font-size: 20px;
    padding-left: 45px;
    line-height: 1;
    width: 100%;
  }
  .sitemap-inner > .logo a {
    display: inline-block;
    line-height: 1.3;
    letter-spacing: 5px;
    width: auto;
    height: 100%;
  }
  .sitemap-inner > .logo span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .sitemap-list {
    margin-right: 0px;
    margin-top: 20px;
    width: 100%;
    height: 1000px;
  }
  .sitemap-list li {
    margin: 0;
  }
  .sitemap-list a {
    cursor: pointer;
    font-size: 15px;
  }
  .sitemap-list a:hover {
    opacity: 0.7;
  }
  .sitemap-list .tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    line-height: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .sitemap-list .tel span {
    -ms-flex-item-align: end;
        align-self: flex-end;
    font-size: 16px;
    font-family: "EB Garamond";
    padding-right: 5px;
    padding-bottom: 2px;
  }
  .sitemap-list .tel a {
    color: #138C5A;
    font-size: 24px;
    font-weight: 600;
    font-family: "EB Garamond";
  }
  .sitemap-list .list,
  .sitemap-list .list01,
  .sitemap-list .list02 {
    margin-bottom: 10px;
  }
  .sitemap-list .list ul,
  .sitemap-list .list01 ul,
  .sitemap-list .list02 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;
  }
  .sitemap-list .list li,
  .sitemap-list .list01 li,
  .sitemap-list .list02 li {
    width: 49%;
    margin-bottom: 2%;
  }
  .sitemap-list .list li {
    margin-bottom: 0;
  }
  .sitemap-list .list a {
    display: block;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    background: #eee;
  }
  .sitemap-list .list01 li {
    width: 100%;
  }
  .sitemap-list .list01 a {
    background: #138C5A;
    border: none;
    color: #fff;
    padding: 20px 10px;
    display: block;
    text-align: center;
  }
  .sitemap-list .list02 li {
    width: 100%;
  }
  .sitemap-list .list02 a {
    display: block;
    padding: 10px;
    text-align: center;
    background: #eee;
  }
  .sitemap-list .list03 li {
    width: 100%;
  }
  .sitemap-list .list03 a {
    border-top: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    display: block;
  }
}
.main-block {
  position: relative;
}
.main-block.-sub:before {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: auto;
  content: "";
  background: #ebf9ea;
  width: 100%;
  height: 200px;
}

.main-inner {
  position: relative;
}

.nav-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.nav-block.-sub {
  border-top: 1px solid #ddd;
}
.nav-block.-sub .nav-list > .item {
  height: 60px;
}
.nav-block.-sub .nav-list > .item a {
  font-size: 15px;
  letter-spacing: 1px;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto;
  width: 1500px;
}
.nav-list > .item {
  border-right: 1px solid #ddd;
  position: relative;
  height: 100px;
  width: 100%;
}
.nav-list > .item:first-child {
  border-left: 1px solid #ddd;
}
.nav-list > .item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -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;
  background: #fff;
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  height: 100%;
}
.nav-list > .item > a:hover {
  background: #f2f2f2;
  color: #138C5A;
}
.nav-list .drop ul {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  width: 100%;
}
.nav-list .drop:hover ul {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  opacity: 1;
  visibility: visible;
}
.nav-list .drop ul a {
  font-size: 14px;
  padding: 15px 0px;
  width: 100%;
}
.nav-list .drop ul a:hover {
  background: #138C5A;
  color: #fff;
}

.re_mo_disp {
  display: none;
}

@media screen and (max-width: 480px) {
  .re_mo_disp {
    display: block;
  }
  .slider-block + .nav-block {
    display: none;
  }
  .nav-block {
    display: none;
  }
  .nav-block.fixed + div {
    margin-top: 0;
  }
}
.footer-block {
  border-top: 1px solid #eee;
  position: relative;
  z-index: 1;
}
.footer-block > .copy {
  position: absolute;
  top: auto;
  right: 0px;
  bottom: 20px;
  left: 0px;
  font-size: 12px;
  font-family: "EB Garamond";
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
}

.footer-inner {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  min-width: calc(1240px - 20px);
  max-width: calc(1500px - 20px);
}
.footer-inner .logo-box {
  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;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
  margin-bottom: 40px;
}
.footer-inner .logo-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  background: url(../img/common/icon/logo.svg) no-repeat 0 4px/48px;
  letter-spacing: 1.9px;
}
.footer-inner .logo-box .sub {
  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;
  font-size: 12px;
  line-height: 1.2;
  padding-left: 42px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}
.footer-inner .logo-box .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 5px;
  padding-left: 60px;
}
.footer-inner .logo-box .title span {
  display: block;
  font-weight: 500;
  font-size: 10px;
}
.footer-inner .logo-box .title .en {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 12px;
  font-family: "EB Garamond";
  font-weight: 500;
  margin-top: 5px;
  line-height: 1;
  letter-spacing: 2.2px;
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 100%;
}
.footer-info .info {
  margin: 30px auto 20px 0px;
  width: 400px;
}
.footer-info .addr {
  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;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer-info .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: "EB Garamond";
  font-weight: 500;
  line-height: 1;
  width: 100%;
}
.footer-info .tel span {
  font-size: 18px;
  margin-right: 5px;
}
.footer-info .tel p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}
.footer-info .tel > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-info .tel > ul:first-child {
  margin-bottom: 10px;
}
.footer-info .tel > ul:first-child li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.footer-info .tel > ul:first-child li:first-child {
  margin-right: 20px;
}
.footer-info .regional {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.footer-info .regional li {
  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;
}
.footer-info .regional span {
  background: #cceac7;
  color: #fff;
  font-size: 12px;
  padding: 5px 20px;
  letter-spacing: 1px;
  margin-right: 10px;
}
.footer-info .regional p a {
  color: #cceac7;
}
.footer-info .regional p small {
  color: #cceac7;
  font-size: 12px;
}

.link-box {
  margin: 30px 0px 30px auto;
}
.link-box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 14px;
  font-weight: 500;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
.link-box .list li {
  margin-right: 30px;
}
.link-box .list li:last-child {
  margin-right: 0px;
}
.link-box .sublist {
  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;
  font-size: 12px;
}
.link-box .sublist li {
  margin-right: 50px;
}
.link-box .sublist li:last-child {
  margin-right: 0px;
}

.footer-list {
  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;
}
.footer-list li a {
  border-radius: 50px;
  display: block;
  font-size: 14px;
  padding: 12px 0px;
  text-align: center;
  line-height: 1;
  width: 155px;
}
.footer-list li a.t01 {
  background: #fff url(../img/common/icon/pin.svg) no-repeat 20px 48%/16px;
  padding-left: 15px;
  margin-right: 20px;
}
.footer-list li a.t01:hover {
  opacity: 0.8;
}
.footer-list li a.t02 {
  background: #138C5A url(../img/common/icon/mail.svg) no-repeat 20px 48%/16px;
  color: #fff;
  padding-left: 15px;
}
.footer-list li a.t02:hover {
  opacity: 0.8;
}

.accord-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;
  color: #fff;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.accord-box > .btn {
  cursor: pointer;
  padding: 25px 0px;
  position: relative;
  width: 100%;
}
.accord-box > .inner {
  background: #fff;
  border-radius: 10px;
  color: #222;
  display: none;
  margin-bottom: 25px;
  padding: 30px;
  width: 100%;
}

.accord-icon {
  -webkit-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  position: absolute;
  top: 35px;
  right: 10px;
  bottom: auto;
  left: auto;
  width: 30px;
  height: 30px;
}
.accord-icon span {
  -webkit-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: 7px;
  background: #fff;
  border-radius: 4px;
  width: 50%;
  height: 3px;
}
.accord-icon span:nth-of-type(1) {
  top: 13px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accord-icon span:nth-of-type(2) {
  top: 13px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accord-icon.-active span:nth-of-type(1) {
  display: none;
}
.accord-icon.-active span:nth-of-type(2) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#page-top {
  top: auto;
  right: 10px;
  bottom: 20px;
  left: auto;
  position: fixed;
  z-index: 1001;
}
#page-top .backtotop {
  background: #138C5A;
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
}
#page-top .backtotop:before {
  position: absolute;
  top: 26px;
  right: auto;
  bottom: auto;
  left: 26px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 6px;
  height: 6px;
}
#page-top .backtotop:hover {
  background: #16a268;
}

@media screen and (max-width: 480px) {
  .footer-block > .copy {
    font-size: 11px;
  }
  .footer-inner {
    padding-bottom: 0px;
    min-width: 100%;
    width: calc(100% - 20px);
  }
  .footer-inner .logo-box .title {
    padding-left: 0px;
  }
  .footer-link {
    display: none;
  }
  .footer-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-info .logo-box {
    margin-bottom: 20px;
  }
  .footer-info .logo-box a {
    background: url(../img/common/icon/logo.svg) no-repeat 0 0%/42px;
    padding-left: 55px;
    height: 48px;
  }
  .footer-info .logo-box .title {
    font-size: 21px;
    margin-right: 0px;
    line-height: 1.2;
    letter-spacing: 3px;
  }
  .footer-info .logo-box .title .en {
    margin-top: 3px;
    letter-spacing: 1px;
  }
  .footer-info .link-box {
    margin: 10px auto 20px 10px;
  }
  .footer-info .link-box .list {
    display: none;
  }
  .footer-info .link-box .sublist li {
    margin-right: 20px;
  }
  .footer-info .addr {
    font-size: 10px;
  }
  .footer-info .tel p {
    font-size: 21px;
  }
  .footer-info .info {
    margin: 20px auto 50px;
    width: 100%;
  }
  .footer-info .link-box {
    display: none;
  }
  .footer-info .regional span {
    font-size: 10px;
    padding: 5px 15px;
  }
  #page-top {
    bottom: 80px;
  }
}
.article-box {
  margin-bottom: 50px;
  min-height: 300px;
}
.article-box p:not([class]) {
  min-height: 1rem;
}
.article-box p a:not([class]) {
  color: #138C5A;
}
.article-box p a:not([class]):hover {
  text-decoration: underline;
}
.article-box > ol li a, .article-box table ol li a {
  text-decoration: underline;
}
.article-box > ol li a:hover, .article-box table ol li a:hover {
  text-decoration: none;
}
.article-box .mark {
  border-bottom: 1px solid #e71220;
}
.article-box .left {
  text-align: left;
}
.article-box .right {
  text-align: right;
}
.article-box .center {
  text-align: center;
}
.article-box .mincho {
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
}

.public-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.public-box a {
  display: block;
}

.public-list {
  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-left: 0px !important;
  width: 100%;
}
.public-list:before {
  display: none;
}
.public-list.-back {
  margin-bottom: 30px;
  margin-right: 30px;
  width: 200px;
}
.public-list.-back:nth-child(4n) {
  margin-right: 0px;
}
.public-list.-back > .image {
  margin-right: 0px;
}
.public-list.-back > .title {
  background: #f2f2f2;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 7px 10px;
  line-height: 1.3;
  width: 100%;
}
.public-list.-back > .title span {
  font-size: 14px;
  margin-left: 10px;
}
.public-list > .image {
  margin-right: 40px;
  width: 280px;
}
.public-list > .image img {
  width: 100%;
  vertical-align: top;
}
.public-list > .image a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 0.8;
}
.public-list > .text {
  width: calc(100% - 320px);
}
.public-list > .text > .title {
  background: #138C5A;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  padding: 10px 10px 10px 15px;
  position: relative;
}
.public-list > .text > .date {
  font-size: 18px;
  font-weight: 700;
}
.public-list > .text > .pickup {
  margin-bottom: 20px;
}
.public-list > .text > .pickup > .title {
  background: #f2f2f2;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 10px;
  line-height: 1.4;
}

.note-box {
  border: 1px solid #ddd;
  padding: 20px 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.note-box p:first-child {
  margin-top: 0px;
}
.note-box.-page {
  padding: 40px 0px;
  text-align: center;
}

.col-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.col-box.-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.col-box.-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.col-box > .col {
  width: 50%;
}
.col-box > .col:first-child {
  width: calc((100% - 30px) / 2);
  padding-right: 30px;
}
.col-box > .col .sub_title:first-child,
.col-box .col .sub_title_02:first-child,
.col-box .col .sub_title_03:first-child,
.col-box .col .sub_title_04:first-child,
.col-box .col .sub_title_05:first-child,
.col-box p {
  margin-top: 0;
}
.col-box > .col .image-box:first-child {
  margin-top: 0;
}

.cat-box {
  background: #f2f2f2;
  margin-top: 50px;
  padding: 20px 50px;
}
.cat-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0px !important;
}
.cat-box ul li {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 20px;
  padding-left: 0;
}
.cat-box ul li:before {
  display: none;
}
.cat-box ul li.now a {
  border: 1px solid #F4974F;
  background: #F4974F;
}
.cat-box ul li.now a:hover {
  border: 1px solid #F4974F;
  color: #F4974F !important;
}
.cat-box ul li a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #138C5A;
  border: 1px solid #138C5A;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #fff !important;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  padding: 10px 30px;
}
.cat-box ul li a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #138C5A !important;
  background: #fff;
  border: 1px solid #138C5A;
  text-decoration: none !important;
}

@media screen and (max-width: 480px) {
  .article-box p img {
    max-width: 100%;
    height: auto;
  }
  .article-box iframe {
    width: 100%;
  }
  .article-box img {
    max-width: 100%;
    height: auto;
  }
  .cat-box {
    padding: 20px;
  }
  .cat-box ul li a {
    font-size: 13px;
    padding: 8px 20px;
  }
}
.btn-zip, .btn-xls, .btn-doc, .btn-pdf {
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  padding: 10px 10px 10px 40px;
}

/*------------------------------------------------

   subtitle

------------------------------------------------*/
.article-box > .subtitle-01:first-child {
  padding-top: 100px;
  margin-top: 0px;
}

.subtitle-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #138C5A;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
  font-size: 42px;
  line-height: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 10px 0 30px 0px;
  position: relative;
}
.subtitle-01:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: 0px;
  background: -webkit-gradient(linear, left top, right top, from(#138C5A), to(#ddd));
  background: linear-gradient(90deg, #138C5A, #ddd);
  content: "";
  width: 100%;
  height: 1px;
}

.subtitle-02 {
  color: #138C5A;
  font-size: 30px;
  line-height: 1;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 10px 20px 12px 30px;
  position: relative;
}
.subtitle-02:before {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: 0px;
  background: #138C5A;
  content: "";
  width: 5px;
  height: 100%;
}
.subtitle-02.-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.subtitle-02 span {
  color: #555;
  font-size: 16px;
  display: inline-block;
}

.subtitle-03 {
  background: -webkit-gradient(linear, left top, right top, from(#138C5A), to(#7bc06f));
  background: linear-gradient(90deg, #138C5A, #7bc06f);
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 15px 10px 15px 15px;
  position: relative;
}
.subtitle-03.-schedule {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.subtitle-03.-schedule .i_week {
  font-size: 14px;
}

.subtitle-04 {
  background: #f2f2f2;
  font-size: 18px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 10px;
  padding: 10px;
  line-height: 1.4;
}

.subtitle-05 {
  color: #138C5A;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.subtitle-06 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 5px;
  line-height: 1.4;
}

table td > div.subtitle-02:first-child,
table td > div.subtitle-03:first-child,
table td > div.subtitle-04:first-child,
table td > div.subtitle-05:first-child {
  margin-top: 0px;
}

table td > div.subtitle-02:nth-child(n+2),
table td > div.subtitle-03:nth-child(n+2),
table td > div.subtitle-04:nth-child(n+2) {
  margin-top: 40px;
}

table td > ul.btnlist-01:first-child,
table td > ul.btnlist-02:first-child li,
table td > ul.btnlist-03:first-child,
table td > ul.btnlist-04:first-child {
  margin-top: 0px;
}

.col-02 li > div.subtitle-01:first-child,
.col-02 li > div.subtitle-02:first-child,
.col-02 li > div.subtitle-03:first-child,
.col-02 li > div.subtitle-04:first-child,
.col-02 li > div.subtitle-05:first-child {
  margin-top: 0px;
}

.col-03 li > div.subtitle-01:first-child,
.col-03 li > div.subtitle-02:first-child,
.col-03 li > div.subtitle-03:first-child,
.col-03 li > div.subtitle-04:first-child,
.col-03 li > div.subtitle-05:first-child {
  margin-top: 0px;
}

.article-box table td > ul:not([class]) {
  margin-top: 0px;
}

/*------------------------------------------------

	   list

------------------------------------------------*/
.article-box ul:not([class]),
.article-box .flex-list,
.mce-content-body ul:not([class]),
.mce-content-body .flex-list {
  margin-top: 10px;
  margin-bottom: 10px;
}
.article-box ul:not([class]) a,
.article-box .flex-list a,
.mce-content-body ul:not([class]) a,
.mce-content-body .flex-list a {
  color: #138C5A;
}
.article-box ul:not([class]) a:hover,
.article-box .flex-list a:hover,
.mce-content-body ul:not([class]) a:hover,
.mce-content-body .flex-list a:hover {
  text-decoration: underline;
}
.article-box ul:not([class]) li,
.article-box .flex-list li,
.mce-content-body ul:not([class]) li,
.mce-content-body .flex-list li {
  font-size: 93.8%;
  padding-left: 28px;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.8;
  position: relative;
}
.article-box ul:not([class]) li:before,
.article-box .flex-list li:before,
.mce-content-body ul:not([class]) li:before,
.mce-content-body .flex-list li:before {
  position: absolute;
  top: 7px;
  right: auto;
  bottom: auto;
  left: 8px;
  border-width: 4px;
  border-radius: 50%;
  border-style: solid;
  border-color: #138C5A;
  content: "";
}
.article-box ol,
.mce-content-body ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.article-box ol > li,
.mce-content-body ol > li {
  padding-left: 8px;
}
.article-box ol > li:before,
.mce-content-body ol > li:before {
  display: none;
}
.article-box .pdf,
.mce-content-body .pdf {
  background: url(../img/common/icon/icon_pdf.svg) no-repeat 0 2px/21px !important;
}
.article-box .pdf:before,
.mce-content-body .pdf:before {
  display: none;
}
.article-box .xls,
.mce-content-body .xls {
  background: url(../img/common/icon/icon_xls.svg) no-repeat 0 2px/21px !important;
}
.article-box .xls:before,
.mce-content-body .xls:before {
  display: none;
}
.article-box .doc,
.mce-content-body .doc {
  background: url(../img/common/icon/icon_doc.svg) no-repeat 0 2px/21px !important;
}
.article-box .doc:before,
.mce-content-body .doc:before {
  display: none;
}
.article-box .zip,
.mce-content-body .zip {
  background: url(../img/common/icon/icon_zip.svg) no-repeat 0 2px/21px !important;
}
.article-box .zip:before,
.mce-content-body .zip:before {
  display: none;
}
.article-box .red,
.mce-content-body .red {
  color: #dd0000;
}
.article-box .blue,
.mce-content-body .blue {
  color: #0080cc;
}
.article-box .green,
.mce-content-body .green {
  color: #00aa66;
}
.article-box .strong,
.mce-content-body .strong {
  font-weight: 700;
}
.article-box .underline,
.mce-content-body .underline {
  text-decoration: underline;
}
.article-box hr,
.mce-content-body hr {
  border: 0.5px solid #ddd;
}
.article-box p img,
.mce-content-body p img {
  vertical-align: middle;
}

.btnlist-01 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.btnlist-01 li {
  margin: 0 auto 2%;
  padding-left: 0px;
  width: 60%;
}
.btnlist-01 li:before {
  display: none;
}
.btnlist-01 li a {
  background: #138C5A;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 15px 0px;
  position: relative;
  text-align: center;
}
.btnlist-01 li a:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btnlist-01 li a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #eee;
  color: #138C5A;
}
.btnlist-01 li a:hover:before {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border-top: 2px solid #138C5A;
  border-right: 2px solid #138C5A;
  display: block;
}

.btnlist-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btnlist-02 li {
  margin-right: 2%;
  margin-bottom: 2%;
  padding-left: 0px;
  width: 49%;
}
.btnlist-02 li:nth-child(2n) {
  margin-right: 0;
}
.btnlist-02 li a {
  background: #138C5A;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 100%;
  padding: 20px 40px 20px 30px;
  position: relative;
  line-height: 1.4;
}
.btnlist-02 li a:hover {
  background: #eee;
  color: #138C5A;
}
.btnlist-02 li a:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btnlist-02 li a:hover:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #138C5A;
  border-right: 2px solid #138C5A;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btnlist-02 li:before {
  display: none;
}

.btnlist-03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btnlist-03 li {
  margin-right: 2%;
  margin-bottom: 2%;
  padding-left: 0px;
  width: 32%;
}
.btnlist-03 li.now a {
  background: #F4974F;
  border: 2px solid #F4974F;
}
.btnlist-03 li.now a:after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  content: "募集中";
  font-size: 10px;
  line-height: 1;
  margin-left: 15px;
  background: #e93030;
  border-radius: 8px;
  padding: 3px 12px 4px;
}
.btnlist-03 li.now a:hover {
  color: #F4974F;
}
.btnlist-03 li.now a:hover:before {
  border-top: 2px solid #F4974F;
  border-right: 2px solid #F4974F;
}
.btnlist-03 li.now a:hover:after {
  color: #ffffff;
}
.btnlist-03 li:nth-child(3n) {
  margin-right: 0;
}
.btnlist-03 li a {
  background: #138C5A;
  border: 2px solid #138C5A;
  border-radius: 50px;
  display: block;
  color: #fff;
  font-size: 100%;
  text-align: center;
  padding: 20px 40px 20px 30px;
  position: relative;
  line-height: 1.1;
}
.btnlist-03 li a:hover {
  background: #f2f2f2;
  color: #138C5A;
}
.btnlist-03 li a:hover:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #138C5A;
  border-right: 2px solid #138C5A;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btnlist-03 li a:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btnlist-03 li:before {
  display: none;
}

.btnlist-04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btnlist-04 li {
  margin-right: 2%;
  margin-bottom: 1%;
  padding-left: 0px;
}
.btnlist-04 li.pdf {
  background: url(../img/common/icon/icon_pdf.svg) no-repeat 15px calc(50% - 0px)/21px !important;
}
.btnlist-04 li.pdf a:before, .btnlist-04 li.pdf a:hover:before {
  display: none;
}
.btnlist-04 li.xls {
  background: url(../img/common/icon/icon_xls.svg) no-repeat 15px calc(50% - 0px)/21px !important;
}
.btnlist-04 li.xls a:before, .btnlist-04 li.xls a:hover:before {
  display: none;
}
.btnlist-04 li.doc {
  background: url(../img/common/icon/icon_doc.svg) no-repeat 15px calc(50% - 0px)/21px !important;
}
.btnlist-04 li.doc a:before, .btnlist-04 li.doc a:hover:before {
  display: none;
}
.btnlist-04 li a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 87.5%;
  line-height: 1;
  display: block;
  padding: 12px 15px 12px 45px;
  font-weight: 500;
  position: relative;
}
.btnlist-04 li:not([class]) a {
  padding-left: 36px;
}
.btnlist-04 li a:before {
  position: absolute;
  top: calc(50% - 4px);
  right: auto;
  bottom: auto;
  left: 15px;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  border-top: 2px solid #138C5A;
  border-right: 2px solid #138C5A;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
.btnlist-04 li a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #138C5A;
  color: #138C5A;
}
.btnlist-04 li a:hover:before {
  position: absolute;
  top: calc(50% - 4px);
  right: auto;
  bottom: auto;
  left: 15px;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  border-top: 2px solid #138C5A;
  border-right: 2px solid #138C5A;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
.btnlist-04 li.-pdf a {
  background: url(../img/common/icon/icon_pdf.svg) no-repeat 15px 12px/21px !important;
  padding-left: 43px;
}
.btnlist-04 li.-pdf a:hover {
  background: #f2f2f2 url(../img/common/icon/icon_pdf.svg) no-repeat 15px 12px/21px !important;
}
.btnlist-04 li:before {
  display: none;
}

.flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0px;
}
.flex-list li {
  margin-right: 15px;
}
.flex-list li a {
  color: #138C5A;
}
.flex-list li a:hover {
  text-decoration: underline;
}

.btn-pdf:hover,
.btn-doc:hover,
.btn-xls:hover,
.btn-zip:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #138C5A;
  color: #138C5A;
}

.btn-pdf {
  background: url(../img/common/icon/icon_pdf.svg) no-repeat 10px 50%/21px;
}

.btn-doc {
  background: url(../img/common/icon/icon_doc.svg) no-repeat 10px 50%/21px;
}

.btn-xls {
  background: url(../img/common/icon/icon_xls.svg) no-repeat 10px 50%/21px;
}

.btn-zip {
  background: url(../img/common/icon/icon_zip.svg) no-repeat 10px 50%/21px;
}

.table-col2 {
  table-layout: fixed;
  width: 100%;
}
.table-col2 > tbody > tr > td {
  margin-bottom: 10px;
  padding: 0;
  vertical-align: top;
  width: calc(50% - 10px);
}
.table-col2 > tbody > tr > td:first-child {
  padding-right: 10px;
}
.table-col2 > tbody > tr > td:last-child {
  padding-left: 10px;
}
.table-col2 > tbody > tr > td.td_img {
  padding: 0;
}

.table-col3 {
  table-layout: fixed;
  width: 100%;
}
.table-col3 > tbody > tr > td {
  margin-bottom: 10px;
  padding: 0;
  vertical-align: top;
  width: calc((100% - 40px) / 3);
}
.table-col3 > tbody > tr > td:first-child {
  padding-right: 10px;
}
.table-col3 > tbody > tr > td:nth-child(2) {
  padding: 0px 10px;
}
.table-col3 > tbody > tr > td:last-child {
  padding-left: 10px;
}

.staff-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;
}
.staff-box .list {
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 20px;
  width: calc(50% - 60px - 2px - 10px);
}

.staff-card .staff-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}
.staff-card .staff-inner .image {
  margin-right: 30px;
  width: 385px;
}
.staff-card .staff-inner .image img {
  width: 100%;
  vertical-align: top;
}
.staff-card .staff-inner .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: 163px;
}
.staff-card .staff-inner .text .post {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #138C5A;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 5px 15px;
  margin-bottom: 10px;
}
.staff-card .staff-inner .text .name {
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
  font-size: 27px;
  width: 100%;
}
.staff-card .info .flex-list li {
  font-size: 13px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.table-sche .table-gray .bg-green {
  font-size: 93.8%;
  font-weight: 700;
}
.table-sche .table-gray th {
  font-size: 93.8%;
  line-height: 1.2;
  width: 12.5%;
  vertical-align: middle;
}
.table-sche .table-gray td {
  font-size: 87.5%;
  padding: 10px;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
}
.table-sche .table-gray tr {
  -webkit-transition: all 0.1s ease 0s !important;
  transition: all 0.1s ease 0s !important;
}
.table-sche .table-gray tr:hover {
  -webkit-transition: all 0.1s ease 0s !important;
  transition: all 0.1s ease 0s !important;
  background: #EEFAE8;
}
.table-sche .close {
  background: #faf4f6;
  color: #e93030;
  font-weight: 700;
}
.table-sche .red {
  color: #e71220;
}

@media all and (-ms-high-contrast: none) {
  .flex-list {
    display: block;
  }
  .flex-list li {
    display: inline-block;
    margin-right: 15px;
  }
  .flex-list li a {
    color: #138C5A;
  }
  .flex-list li a:hover {
    text-decoration: underline;
  }
}
.faq-list {
  margin-bottom: 10px;
}
.faq-list li {
  position: relative;
}
.faq-list li:nth-child(odd) {
  font-weight: bold;
  background: #f2f2f2;
  color: #000;
  padding: 12px 12px 12px 47px !important;
  font-size: 18px;
  font-weight: 600;
}
.faq-list li:nth-child(odd):before,
.faq-list li:nth-child(even):before {
  display: none;
}
.faq-list li:nth-child(odd):after {
  border: none;
  color: #138C5A;
  content: "Q.";
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 4px;
  width: 40px;
  height: 20px;
}
.faq-list li:nth-child(even) {
  font-size: 1rem;
  padding: 20px 20px 15px 47px !important;
  margin-bottom: 10px;
}
.faq-list li:nth-child(even):after {
  position: absolute;
  top: 7px;
  right: auto;
  bottom: auto;
  left: 12px;
  content: "A.";
  color: #f30c28;
  font-size: 28px;
  font-weight: bold;
}

/*------------------------------------------------

	   table

------------------------------------------------*/
.bg-gray {
  background: #f2f2f2;
}

.bg-blue {
  background: #f4f9fa;
}

.bg-red {
  background: #faf4f6;
}

.bg-green {
  background: #EEFAE8;
}

.table-gray,
.table-blue,
.table-red,
.table-list,
.table-none {
  border: 0;
  border-collapse: collapse;
  font-size: 93.8%;
  margin-top: 10px;
  width: 100%;
}
.table-gray th,
.table-blue th,
.table-red th,
.table-list th,
.table-none th {
  background: #f2f2f2;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  padding: 10px 15px;
}
.table-gray td,
.table-blue td,
.table-red td,
.table-list td,
.table-none td {
  text-align: left;
  line-height: 1.5;
  padding: 10px 15px;
  vertical-align: top;
}
.table-gray td.td_file li,
.table-blue td.td_file li,
.table-red td.td_file li,
.table-list td.td_file li,
.table-none td.td_file li {
  padding-left: 0px;
}
.table-gray td.td_file li:before,
.table-blue td.td_file li:before,
.table-red td.td_file li:before,
.table-list td.td_file li:before,
.table-none td.td_file li:before {
  display: none;
}
.table-gray td.td_file li a,
.table-blue td.td_file li a,
.table-red td.td_file li a,
.table-list td.td_file li a,
.table-none td.td_file li a {
  color: #222;
}
.table-gray td p, .table-gray td .list-box:first-child,
.table-blue td p,
.table-blue td .list-box:first-child,
.table-red td p,
.table-red td .list-box:first-child,
.table-list td p,
.table-list td .list-box:first-child,
.table-none td p,
.table-none td .list-box:first-child {
  margin-top: 0;
}
.table-gray li a:hover:before .table-gray li a[href$=".pdf"]:before, .table-gray li a[href$=".pdf"]:hover:before, .table-gray li.pdf a:before, .table-gray li.pdf a:hover:before,
.table-gray li a:hover:before .table-blue li a[href$=".pdf"]:before,
.table-blue li a[href$=".pdf"]:hover:before,
.table-blue li.pdf a:before,
.table-blue li.pdf a:hover:before,
.table-gray li a:hover:before .table-red li a[href$=".pdf"]:before,
.table-red li a[href$=".pdf"]:hover:before,
.table-red li.pdf a:before,
.table-red li.pdf a:hover:before,
.table-gray li a:hover:before .table-list li a[href$=".pdf"]:before,
.table-list li a[href$=".pdf"]:hover:before,
.table-list li.pdf a:before,
.table-list li.pdf a:hover:before,
.table-gray li a:hover:before .table-none li a[href$=".pdf"]:before,
.table-none li a[href$=".pdf"]:hover:before,
.table-none li.pdf a:before,
.table-none li.pdf a:hover:before,
.table-blue li a:hover:before .table-gray li a[href$=".pdf"]:before,
.table-blue li a:hover:before .table-blue li a[href$=".pdf"]:before,
.table-blue li a:hover:before .table-red li a[href$=".pdf"]:before,
.table-blue li a:hover:before .table-list li a[href$=".pdf"]:before,
.table-blue li a:hover:before .table-none li a[href$=".pdf"]:before,
.table-red li a:hover:before .table-gray li a[href$=".pdf"]:before,
.table-red li a:hover:before .table-blue li a[href$=".pdf"]:before,
.table-red li a:hover:before .table-red li a[href$=".pdf"]:before,
.table-red li a:hover:before .table-list li a[href$=".pdf"]:before,
.table-red li a:hover:before .table-none li a[href$=".pdf"]:before,
.table-list li a:hover:before .table-gray li a[href$=".pdf"]:before,
.table-list li a:hover:before .table-blue li a[href$=".pdf"]:before,
.table-list li a:hover:before .table-red li a[href$=".pdf"]:before,
.table-list li a:hover:before .table-list li a[href$=".pdf"]:before,
.table-list li a:hover:before .table-none li a[href$=".pdf"]:before,
.table-none li a:hover:before .table-gray li a[href$=".pdf"]:before,
.table-none li a:hover:before .table-blue li a[href$=".pdf"]:before,
.table-none li a:hover:before .table-red li a[href$=".pdf"]:before,
.table-none li a:hover:before .table-list li a[href$=".pdf"]:before,
.table-none li a:hover:before .table-none li a[href$=".pdf"]:before {
  display: none;
}
.table-gray li a[href$=".xls"]:before,
.table-gray li a[href$=".xlsx"]:before, .table-gray li a[href$=".xls"]:hover:before,
.table-gray li a[href$=".xlsx"]:hover:before, .table-gray li.xls a:before, .table-gray li.xls a:hover:before,
.table-blue li a[href$=".xls"]:before,
.table-blue li a[href$=".xlsx"]:before,
.table-blue li a[href$=".xls"]:hover:before,
.table-blue li a[href$=".xlsx"]:hover:before,
.table-blue li.xls a:before,
.table-blue li.xls a:hover:before,
.table-red li a[href$=".xls"]:before,
.table-red li a[href$=".xlsx"]:before,
.table-red li a[href$=".xls"]:hover:before,
.table-red li a[href$=".xlsx"]:hover:before,
.table-red li.xls a:before,
.table-red li.xls a:hover:before,
.table-list li a[href$=".xls"]:before,
.table-list li a[href$=".xlsx"]:before,
.table-list li a[href$=".xls"]:hover:before,
.table-list li a[href$=".xlsx"]:hover:before,
.table-list li.xls a:before,
.table-list li.xls a:hover:before,
.table-none li a[href$=".xls"]:before,
.table-none li a[href$=".xlsx"]:before,
.table-none li a[href$=".xls"]:hover:before,
.table-none li a[href$=".xlsx"]:hover:before,
.table-none li.xls a:before,
.table-none li.xls a:hover:before {
  display: none;
}
.table-gray li a[href$=".doc"]:before,
.table-gray li a[href$=".docx"]:before, .table-gray li a[href$=".doc"]:hover:before,
.table-gray li a[href$=".docx"]:hover:before, .table-gray li.doc a:before, .table-gray li.doc a:hover:before,
.table-blue li a[href$=".doc"]:before,
.table-blue li a[href$=".docx"]:before,
.table-blue li a[href$=".doc"]:hover:before,
.table-blue li a[href$=".docx"]:hover:before,
.table-blue li.doc a:before,
.table-blue li.doc a:hover:before,
.table-red li a[href$=".doc"]:before,
.table-red li a[href$=".docx"]:before,
.table-red li a[href$=".doc"]:hover:before,
.table-red li a[href$=".docx"]:hover:before,
.table-red li.doc a:before,
.table-red li.doc a:hover:before,
.table-list li a[href$=".doc"]:before,
.table-list li a[href$=".docx"]:before,
.table-list li a[href$=".doc"]:hover:before,
.table-list li a[href$=".docx"]:hover:before,
.table-list li.doc a:before,
.table-list li.doc a:hover:before,
.table-none li a[href$=".doc"]:before,
.table-none li a[href$=".docx"]:before,
.table-none li a[href$=".doc"]:hover:before,
.table-none li a[href$=".docx"]:hover:before,
.table-none li.doc a:before,
.table-none li.doc a:hover:before {
  display: none;
}

.table-imgl,
.table-imgr,
.table-img,
.table-img3 {
  margin-top: 15px;
}

.table-gray th {
  background: #f2f2f2;
  border: 1px solid #ddd;
}
.table-gray td {
  border: 1px solid #ddd;
}

.table-blue th {
  background: #f2f2f2;
  border: 1px solid #0C3C87;
}
.table-blue td {
  border: 1px solid #0C3C87;
}

.table-red th {
  background: #f2f2f2;
  border: 1px solid #e60012;
}
.table-red td {
  border: 1px solid #e60012;
}

.table-col > tbody > tr > td {
  padding-bottom: 1%;
  width: 49%;
}
.table-col > tbody > tr > td:nth-child(2n+1) {
  padding-right: 1%;
}
.table-col > tbody > tr > td:nth-child(2n+0) {
  padding-left: 1%;
}

.table-none > tr > th {
  border: none;
}
.table-none > tr > td {
  border: none;
}

.table-list td:nth-child(1), .table-list td:nth-child(2) {
  border-top: none;
}
.table-list td {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: none;
}

.table-imgl,
.table-imgr {
  border: none;
  width: 100%;
}
.table-imgl > tbody > tr > td,
.table-imgr > tbody > tr > td {
  vertical-align: top;
  width: auto;
}
.table-imgl > tbody > tr > td:first-child,
.table-imgr > tbody > tr > td:first-child {
  padding-right: 30px;
}
.table-imgl > tbody > tr > td:last-child,
.table-imgr > tbody > tr > td:last-child {
  width: 100%;
}
.table-imgl > tbody > tr > td:last-child p:first-child,
.table-imgr > tbody > tr > td:last-child p:first-child {
  margin-top: 0px;
}
.table-imgl > tbody > tr > td img,
.table-imgr > tbody > tr > td img {
  margin-bottom: 10px;
  vertical-align: top;
  max-width: 400px;
  height: auto;
}
.table-imgl > tbody > tr > td img + p,
.table-imgr > tbody > tr > td img + p {
  font-size: 87.5%;
  text-align: center;
  line-height: 1.2;
}

.table-imgr {
  border: none;
  width: 100%;
}
.table-imgr > tbody > tr > td:first-child {
  padding-right: 0px;
  width: 100%;
}
.table-imgr > tbody > tr > td:last-child {
  padding-left: 30px;
  text-align: right;
  width: auto;
}

.table-img {
  table-layout: fixed;
}
.table-img > td {
  width: 50%;
  padding-bottom: 2%;
  text-align: center;
}
.table-img > td:nth-child(2n+1) {
  text-align: left;
}
.table-img > td:nth-child(2n+2) {
  text-align: right;
}
.table-img > td img {
  vertical-align: top;
  max-width: 96%;
  height: auto;
}
.table-img > td img + p {
  font-size: 87.5%;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
  max-width: 98%;
}
.table-img > td div {
  text-align: center;
  margin-top: 10px;
}

.table-img2 {
  table-layout: fixed;
  width: 100%;
}
.table-img2 td {
  width: 50%;
  padding-bottom: 2%;
  text-align: center;
}
.table-img2 td img {
  display: block;
  max-width: 96%;
  margin: 0 auto;
  height: auto !important;
}
.table-img2 td > img + p {
  font-size: 87.5%;
  line-height: 1;
  text-align: center;
  margin: 10px auto 0px;
  max-width: 96%;
}
.table-img2 td > p + p {
  font-size: 81.3%;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
  max-width: 98%;
}
.table-img2 td div {
  text-align: center;
  margin-top: 10px;
}

.table-img3 {
  table-layout: fixed;
  width: 100%;
}
.table-img3 td {
  padding-bottom: 2%;
  vertical-align: top;
  width: 33.3333333333%;
}
.table-img3 td:nth-child(1) {
  text-align: left;
}
.table-img3 td:nth-child(2) {
  text-align: center;
}
.table-img3 td:nth-child(3) {
  text-align: right;
}
.table-img3 td img {
  margin: 0 auto;
  max-width: 96%;
  vertical-align: top;
  height: auto;
}
.table-img3 img + p,
.table-img3 p + p,
.table-img3 a + p {
  font-size: 87.5%;
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
  max-width: 98%;
}

.scroll-box {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 30px auto 50px;
  overflow-y: scroll;
  height: 180px;
}
.scroll-box .subtitle-02 {
  margin-top: 0px;
}

@media screen and (max-width: 480px) {
  .article-box ul:not([class]) li,
  .article-box .flex-list li {
    font-size: 14px;
  }
  .article-box video {
    width: 100%;
    height: auto;
  }
  .article-box > .subtitle-01:first-child {
    margin-top: 40px;
    padding-top: 0px;
  }
  .subtitle-01 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 1.3;
  }
  .subtitle-02 {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .subtitle-02.-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .subtitle-02 span {
    font-size: 15px;
  }
  .subtitle-03 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px 15px;
  }
  .subtitle-03.-schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .subtitle-03.-schedule .i_week {
    line-height: 1.5;
    font-size: 10px;
  }
  .subtitle-04 {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .subtitle-05 {
    font-size: 16px;
    margin-top: 25px;
  }
  .subtitle-06 {
    font-size: 16px;
    margin-top: 25px;
  }
  .table-gray,
  .table-blue,
  .table-red,
  .table-list,
  .table-none {
    /*
    th {
      white-space: nowrap;
    }
    */
  }
  .table-gray,
  .table-blue,
  .table-red,
  .table-list,
  .table-none {
    font-size: 13px;
  }
  .table-gray iframe,
  .table-blue iframe,
  .table-red iframe,
  .table-list iframe,
  .table-none iframe {
    width: 100%;
  }
  .table-gray th:first-child,
  .table-blue th:first-child,
  .table-red th:first-child,
  .table-list th:first-child,
  .table-none th:first-child {
    width: 25%;
  }
  .table-gray th, .table-gray td,
  .table-blue th,
  .table-blue td,
  .table-red th,
  .table-red td,
  .table-list th,
  .table-list td,
  .table-none th,
  .table-none td {
    font-weight: 600;
    padding: 10px;
  }
  .table-imgl td,
  .table-imgr td {
    display: block;
    width: 100%;
  }
  .table-imgl td.td_img,
  .table-imgr td.td_img {
    display: block;
    margin-bottom: 20px;
    padding: 0 !important;
    width: 100% !important;
  }
  .table-imgl td.td_img img,
  .table-imgr td.td_img img {
    display: block;
    max-width: 96%;
    margin: 0 auto 10px;
  }
  .table-imgl table td,
  .table-imgr table td {
    width: auto;
  }
  .table-imgl > tbody > tr > td:first-child {
    padding-right: 0;
  }
  .table-imgr td.td_img img {
    margin: 10px auto 0px;
  }
  .table-imgr > tbody > tr > td:last-child {
    padding-left: 0;
  }
  .table-img2 td > img + p,
  .table-img2 td > p + p,
  .table-img2 td > a + p {
    font-size: 12px;
    line-height: 1;
    text-align: center;
    margin-top: 5px;
    max-width: 98%;
  }
  .table-img3 td > img + p,
  .table-img3 td > p + p,
  .table-img3 td > a + p {
    font-size: 12px;
    line-height: 1;
    text-align: center;
    margin-top: 5px;
    max-width: 98%;
  }
  .table-sp {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .table-sp table {
    width: 800px !important;
  }
  .table-sp table th:first-child {
    width: auto;
  }
  .table-sp table td {
    padding: 5px 10px !important;
  }
  .table-list td:nth-child(1) {
    border-bottom: none;
    font-weight: 600;
    padding: 10px 10px 0px;
  }
  .table-list td {
    border-top: none;
    display: block;
    width: calc(100% - 20px) !important;
  }
  .table-staff td:first-child {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .table-staff td:last-child {
    padding-left: 0px;
    display: block;
  }
  .table-staff .table-list td {
    width: calc(100% - 20px) !important;
    margin-bottom: 0px;
    padding: 10px;
  }
  .table-col > tbody > tr > td {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  .table-col > tbody > tr > td:nth-child(2n+1) {
    padding-right: 0%;
  }
  .table-col > tbody > tr > td:nth-child(2n+0) {
    padding-left: 0%;
  }
  .table-col2 > tbody > tr > td {
    display: block;
    width: 100%;
  }
  .table-col2 > tbody > tr > td:first-child {
    padding-right: 0;
  }
  .table-col2 > tbody > tr > td:last-child {
    padding-left: 0;
  }
  .table-col3 > tbody > tr td {
    display: block;
    padding: 0 !important;
    width: 100%;
  }
  .btnlist-01 li {
    width: 100%;
  }
  .btnlist-01 li a {
    padding: 10px 35px 10px 30px;
  }
  .btnlist-02 li {
    margin-right: 0%;
    width: 100%;
  }
  .btnlist-02 li a {
    padding: 10px 35px 10px 30px;
    font-size: 14px;
  }
  .btnlist-03 li {
    margin-right: 0;
    width: 100%;
  }
  .btnlist-03 li a {
    padding: 15px 35px 15px 30px;
    line-height: 1.4;
  }
  .btnlist-03 li.now a:after {
    border-radius: 11px;
    margin-left: 8px;
    padding: 4px 10px;
    font-size: 10px;
    margin-top: 2px;
  }
  .btnlist-04 li a {
    line-height: 1.3;
  }
  .col-02 li,
  .col-03 li {
    width: 100%;
  }
  .faq-list li:nth-child(odd) {
    font-size: 18px;
    line-height: 1.2;
  }
  .faq-list li:nth-child(odd):after {
    font-size: 24px;
    top: 5px;
  }
  .faq-list li:nth-child(even):after {
    font-size: 24px;
  }
}
.content-block.-info {
  background: #ebf9ea;
}
.content-block.-gray {
  background: #eee;
}
.content-block.-sub {
  background: #fff;
  position: relative;
  top: -50px;
  margin: 0 auto;
  min-width: 1240px;
  max-width: 1500px;
  z-index: 2;
}
.content-block.-sub:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  content: "";
  -webkit-box-shadow: 0px -20px 20px rgba(19, 140, 90, 0.1);
          box-shadow: 0px -20px 20px rgba(19, 140, 90, 0.1);
  width: 100%;
  height: 300px;
  z-index: 1;
}
.content-block > .title {
  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: #fff;
  font-size: 30px;
  font-family: "Noto Serif JP";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 115px;
}

.content-inner {
  margin: 0 auto;
  position: relative;
  width: calc(1240px - 20px);
  z-index: 2;
}
.content-inner.-index {
  padding: 0 20px;
  width: calc(100% - 40px);
}
.content-inner.-emg {
  padding: 50px 20px;
  min-width: calc(1240px - 20px);
  max-width: 1500px;
  width: auto;
}
.content-inner.-box {
  padding: 0;
  width: auto;
}
.content-inner.-bnr {
  padding: 0 20px;
  width: calc(100% - 40px);
}
.content-inner.-bnr div:not(:last-child) {
  padding-bottom: 0px;
}

@media screen and (max-width: 480px) {
  .content-block.-sub {
    top: -20px;
    min-width: 96%;
    max-width: 96%;
  }
  .content-inner {
    width: 96%;
  }
  .content-inner.-index {
    padding: 50px 0px;
    min-width: 96%;
    width: 96%;
  }
  .content-inner.-emg {
    padding: 0px;
    min-width: 100%;
    max-width: 100%;
  }
  .content-inner.-bnr {
    padding: 0;
  }
  .content-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content-col > .col {
    margin-left: 0px;
  }
  .content-col > .col.-inner {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 30px;
  }
  .content-col > .col.-blog {
    width: 100%;
  }
}
.aform-radio-ul li:before {
  display: none;
}

.aform-required {
  position: absolute;
  top: 3px;
  right: 20px;
  bottom: auto;
  left: auto;
  background: #e71220;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.8;
  padding: 0px 0.6em;
  display: inline-block;
}

.aform-content .submit {
  background: none !important;
}

.aform-content .submit {
  text-align: center;
}

.submit input {
  color: #fff;
  background: #138C5A !important;
  border-radius: 50px;
  border: none !important;
  font-size: 120% !important;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho", sans-serif;
  margin: 0 !important;
  padding: 15px 50px !important;
  cursor: pointer;
  width: 40%;
}

.aform-header {
  font-size: 130%;
  font-weight: bold;
  margin: 1em 0 1em;
  padding: 3px 0;
  border-bottom: 1px solid #ccc;
}

.aform-hdln {
  font-size: 120%;
  font-weight: bold;
  margin: 2em 0 0.5em;
  padding: 3px 0;
  border-bottom: 1px dotted #ccc;
}

.aform-input.error {
  background: #FDECF1;
}

.aform-content ul,
.aform-content li,
.aform-content dl p {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aform-content dl {
  margin: 0.5em 0;
  padding: 0.5em 0;
}

.aform-content dl dt {
  font-weight: bold;
}

.aform-content dl dd {
  margin: 0 0 0.5em;
}

.aform-content dl input,
.aform-content dl textarea,
.aform-content dl select {
  -webkit-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  font-size: 16px;
  padding: 10px !important;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.aform-content dl input:focus,
.aform-content dl textarea:focus,
.aform-content dl select:focus {
  -webkit-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  border: 1px solid #138C5A;
}

.aform-content dl input[type=radio],
.aform-content dl input[type=checkbox],
.aform-content dl input[type=file] {
  font-size: inherit;
  width: auto;
  padding: 0;
}

.aform-content dl input[type=file] {
  margin-bottom: 10px;
}

.aform-content ul input,
.aform-content dl .aform-calendar {
  width: auto;
}

.aform-calendar {
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}

.aform-calendar + label {
  margin-right: 5px;
  vertical-align: middle;
}

.aform-content .ui-datepicker-trigger {
  margin-left: 5px;
  vertical-align: text-top;
}

.aform-content input.aform-checkbox,
.aform-content input.aform-radio {
  margin-right: 5px;
}

.aform-content input.aform-field-option-text {
  margin-left: 5px;
  vertical-align: middle;
}

.aform-content .aform-name-ul li,
.aform-content .aform-kana-ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.aform-content .aform-name-ul li:before,
.aform-content .aform-kana-ul li:before {
  display: none;
}

.aform-content input.aform-name,
.aform-content input.aform-kana {
  margin-right: 5px;
}

.aform-content .aform-horizontal-ul li {
  display: inline-block;
  margin-right: 1.5em;
}

.aform-content ul.aform-payment li {
  margin-bottom: 0.8em;
}

.aform-content ul.aform-payment .aform-payment-description {
  margin-left: 22px;
  margin-top: 3px;
}

.aform-content ul.aform-payment .aform-payment-description table th {
  font-weight: normal;
  padding: 2px 5px 2px 0;
  vertical-align: top;
  text-align: left;
}

.aform-content ul.aform-payment .aform-payment-description table td {
  padding: 2px 5px 2px 0;
}

.aform-content .aform-validation,
.aform-content .aform-input-example {
  color: #595959;
  font-size: 90%;
  font-weight: normal;
  margin-bottom: 0.3em;
}

.aform-content .aform-note {
  margin-bottom: 1em;
  padding: 5px 8px;
  background: #f3f3f3;
}

.aform-content .aform-twice-note {
  display: block;
}

.aform-content input.require-twice {
  margin-top: 3px;
}

.validation-advice {
  margin: 0;
  padding: 5px;
  color: #D92B00;
  background-color: #FFF;
}

.aform-content dl.aform-error-list {
  margin-bottom: 20px;
}

.aform-content dl.aform-error-list dt {
  float: none;
  width: auto;
  font-size: 120%;
  margin-bottom: 10px;
}

.aform-content dl.aform-error-list dd {
  padding-left: inherit;
  display: list-item;
  margin-left: 25px;
}

.aform-content .submit {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f3f3f3;
  text-align: center;
}

.aform-content p.powerdby {
  text-align: right;
  font-size: 70%;
  margin: 1em 0;
}

.aform-content p.powerdby a {
  color: #fff;
  padding: 0 5px;
  background: #BAD7E4;
  text-decoration: none;
}

.aform-content p.powerdby a:hover {
  background: #75AECA;
}

.aform-content .aform-demo {
  text-align: center;
  margin: 2em 0;
  padding: 5px 10px;
  border: 1px solid #EE7BA0;
  background: #FDECF1;
}

.aform-content .aform-demo a {
  color: #903;
  font-weight: bold;
  margin: 0 5px;
}

/*----------------------------------*/
#aform_result {
  color: #c00;
  font-weight: bold;
}

#aform_result a {
  margin: 0 1em;
}

/*----------------------------------

	form-layout

----------------------------------*/
.aform-content dl {
  border-bottom: 1px dotted #ccc;
  overflow: hidden;
}

.aform-content dl dt {
  float: left;
  width: 25%;
  position: relative;
}

.aform-content dl dt .aform-label {
  padding-right: 2em;
  display: block;
}

.en_us .aform-content dl dt .aform-label {
  padding-right: 3.5em;
}

.aform-content dl dd {
  padding-left: 27%;
}

.aform-content .aform-name-ul li,
.aform-content .aform-kana-ul li {
  display: block;
  margin-bottom: 5px;
}
.aform-content .aform-name-ul li:before,
.aform-content .aform-kana-ul li:before {
  display: none;
}

.aform-content .aform-name-ul li input,
.aform-content .aform-kana-ul li input {
  width: 100%;
}

.ui-datepicker .ui-widget-header {
  color: inherit;
}

.aform-checkbox-ul li:before {
  display: none;
}

.aform-button-area {
  margin-top: 60px !important;
  background: none !important;
  padding: 0 !important;
  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;
}
.aform-button-area input {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: block;
  font-size: 16px;
  padding: 15px 0px !important;
  width: 30%;
  background: #138C5A;
  color: #fff;
}
.aform-button-area input:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 0.9;
  text-decoration: none;
}
.aform-button-area #aform_btn_back {
  background: #ddd;
  color: #000;
  margin-right: 20px;
}
.aform-button-area #aform_btn_submit {
  background: #138C5A;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .aform-content dl dt {
    float: none;
    width: auto;
    position: relative;
  }
  .aform-content dl dt .required {
    position: static;
    top: auto;
    right: auto;
  }
  .aform-content dl dd {
    padding-left: 0;
  }
  .aform-button-area {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .aform-button-area input {
    font-size: 14px !important;
    width: 49% !important;
    margin: 0 !important;
  }
}
.info-box {
  position: relative;
  width: 100%;
}
.info-box.-detail {
  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;
  font-size: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.info-box .text {
  padding: 0px;
}
.info-box .date {
  font-size: 15px;
  font-weight: 700;
  margin-right: 20px;
  letter-spacing: 1px;
  min-width: 90px;
}
.info-box .date.-detail {
  margin-right: 20px;
}
.info-box .category {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  margin-right: 20px;
  padding: 5px 0px;
  text-align: center;
  width: 160px;
}
.info-box .category.-cate01 {
  background: #138C5A;
}
.info-box .category.-cate02 {
  background: #3FBAEE;
}
.info-box .category.-cate03 {
  background: #F4974F;
}
.info-box .category.-cateemg {
  background: #e71220;
}
.info-box .category.-detail {
  margin-left: auto;
  margin-right: 0px;
}
.info-box > .title {
  border-bottom: 3px solid #138C5A;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 15px;
  line-height: 1;
}
.info-box > .title span {
  color: #aaa;
  font-family: "EB Garamond";
  font-size: 14px;
  font-weight: initial;
  margin-left: 30px;
}
.info-box > .return {
  border: 1px solid #ccc;
  margin-top: 20px;
}
.info-box > .return a {
  color: #138C5A;
  font-size: 14px;
  display: block;
  text-align: center;
}
.info-box > .return a:hover {
  background: #ddd;
}

.info-list {
  padding: 0px;
}
.info-list li {
  border-bottom: 1px solid #ddd;
}
.info-list li:last-child {
  border-bottom: none;
}
.info-list li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 93.8%;
  line-height: 1.4;
  padding: 20px 15px;
}
.info-list li > a p {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.info-list li > a:hover p {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  text-decoration: underline;
}
.info-list li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  line-height: 1.5;
  padding: 18px 20px;
}
.info-list li .text {
  width: calc(100% - 110px);
}
.info-list.-detail {
  margin-bottom: 50px;
  height: auto;
}
.info-list.-detail li {
  padding-left: 0px;
}
.info-list.-detail li:before {
  display: none;
}
.info-list.-detail p {
  margin-top: 0;
}

.info-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.info-data > .date {
  margin-right: 20px;
}

.pagebute-box {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.pagebute-box a {
  background: #f2f2f2;
  display: block;
  font-size: 14px;
  padding: 5px 10px;
  margin: 0px 5px;
  line-height: 1;
}
.pagebute-box a:hover {
  background: #138C5A;
  color: #fff;
}
.pagebute-box .current_page {
  background: #138C5A;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  margin: 0px 5px;
  line-height: 1;
}

.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: 13px;
}
.pagenav-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.pagenav-box li {
  margin-right: 10px;
}
.pagenav-box li:last-child {
  margin-right: 0px;
}
.pagenav-box a {
  background: #ddd;
  display: inline-block;
  padding: 4px 10px;
}
.pagenav-box a:hover {
  background: #555;
  color: #fff;
}
.pagenav-box .prev, .pagenav-box .next {
  padding: 4px 15px;
}
.pagenav-box .current {
  background: #138C5A;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
}

.article-box .info-box {
  width: 100%;
}
.article-box .info-list li {
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.article-box .info-list li:before {
  display: none;
}

@media screen and (max-width: 480px) {
  .info-box {
    width: 100%;
  }
  .info-box.-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info-box .date {
    margin-right: 10px;
  }
  .info-box .date.-detail {
    margin-right: 10px;
  }
  .info-box .category {
    font-size: 12px;
    margin-right: 0px;
    width: 100px;
  }
  .info-list li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 10px;
  }
  .info-list li .text {
    font-size: 14px;
    padding: 5px 0px 0px;
    width: 100%;
  }
  .pagebute-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pagebute-box a {
    margin: 5px 5px;
  }
  .pagebute-box .current_page {
    margin: 5px 5px;
  }
}
.dl-box {
  margin-top: 10px;
}
.dl-box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #eee;
  padding: 20px;
}
.dl-box dt {
  font-weight: 700;
  padding-right: 20px;
  position: relative;
  width: 250px;
}
.dl-box dd {
  width: calc(100% - 200px);
}
.dl-box dd ul {
  margin-top: 0px !important;
}

.category-box {
  background: #ebf9ea;
  margin-top: 50px;
}
.category-box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 30px 30px 20px 30px;
}
.category-box .inner li {
  padding-left: 0px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.category-box .inner li:before {
  display: none;
}
.category-box .inner li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(19, 140, 90, 0.1);
          box-shadow: 0 5px 10px rgba(19, 140, 90, 0.1);
  font-weight: 500;
  position: relative;
  padding: 10px 30px;
}
.category-box .inner li a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-box-shadow: 0 8px 10px rgba(19, 140, 90, 0.15);
          box-shadow: 0 8px 10px rgba(19, 140, 90, 0.15);
  color: #138C5A;
}

@media screen and (max-width: 480px) {
  .dl-box dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dl-box dt {
    padding-right: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
  .dl-box dd {
    width: 100%;
  }
  .index-list li {
    margin-right: 0;
    width: 100%;
  }
  .category-box {
    font-size: 15px;
    line-height: 1;
  }
  .category-box .inner {
    padding: 20px 20px 10px 20px;
  }
  .category-box .inner li a {
    padding: 10px 20px;
  }
}
.slider-inner .img06, .slider-inner .img05, .slider-inner .img04, .slider-inner .img03, .slider-inner .img02, .slider-inner .img01 {
  width: 100%;
  min-height: calc(100vh - 100px);
}

.slider-block {
  position: relative;
  z-index: 0;
}
.slider-block:before {
  background: top;
  width: 100%;
  height: 100%;
}

.slider-inner {
  position: relative;
  width: 100%;
  z-index: 0;
}
.slider-inner img {
  height: 1px;
}
.slider-inner .img01:before,
.slider-inner .img02:before,
.slider-inner .img03:before,
.slider-inner .img04:before,
.slider-inner .img05:before,
.slider-inner .img06:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  content: "";
}
.slider-inner .img01 {
  background: url(../img/index/main.jpg) no-repeat 40% 0%/cover;
}
.slider-inner .img02 {
  background: url(../img/index/main_02.jpg) no-repeat 40% 0%/cover;
}
.slider-inner .img03 {
  background: url(../img/index/main_03.jpg) no-repeat 40% 0%/cover;
}
.slider-inner .img04 {
  background: url(../img/index/main_04.jpg) no-repeat 40% 0%/cover;
}
.slider-inner .img05 {
  background: url(../img/index/main_05.jpg) no-repeat 40% 0%/cover;
}
.slider-inner .img06 {
  background: url(../img/index/main_06.jpg) no-repeat 40% 0%/cover;
}

.slider-copy {
  margin: 0 auto;
  position: relative;
  width: 1240px;
}
.slider-copy .copy {
  position: absolute;
  top: 200px;
  right: 0px;
  bottom: auto;
  left: 0px;
  border: 1px solid #fff;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 30px;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
  padding: 50px 20px;
  margin: 0 auto;
  height: auto;
  width: 600px;
  z-index: 1000;
}
.slider-copy .copy p {
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.slider-copy .copy p span {
  font-size: 30px;
}
.slider-copy .copy p:nth-child(1) {
  font-size: 40px;
  margin-bottom: 30px;
}
.slider-copy .copy p:nth-child(2) {
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.slider-copy .copy p:nth-child(3) {
  font-size: 52px;
  letter-spacing: 2px;
}
.slider-copy .copy p br {
  display: none;
}

.sche-box {
  position: relative;
  margin: 0 auto;
  min-width: 1240px;
  max-width: 1500px;
}

.sche-inner {
  position: absolute;
  top: calc(100vh - 312px - 230px);
  right: 10px;
  bottom: auto;
  left: auto;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  line-height: 21px;
  z-index: 9;
  width: 595px;
}
.sche-inner:before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  background: url(../img/common/icon/logo.svg) no-repeat 0 0/24px;
  content: "";
  width: 24px;
  height: 24px;
}
.sche-inner .title {
  border-bottom: 2px solid #138C5A;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 0px 0px 15px;
}
.sche-inner .read {
  font-size: 14px;
  font-weight: 500;
  margin-right: auto;
  margin-bottom: 20px;
  line-height: 2;
  width: 50%;
}
.sche-inner .read a {
  color: #138C5A;
}
.sche-inner .btn {
  position: absolute;
  top: 206px;
  right: 30px;
  bottom: auto;
  left: auto;
  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: 0 auto 25px;
  width: calc(49% - 30px);
}
.sche-inner .btn li {
  width: calc(50% - 10px);
}
.sche-inner .btn li:nth-child(n+6) a {
  margin-bottom: 0px;
}
.sche-inner .btn li:nth-child(1) a, .sche-inner .btn li:nth-child(2) a {
  background: #138C5A;
}
.sche-inner .btn li:nth-child(3) a, .sche-inner .btn li:nth-child(4) a {
  background: #7bc06f;
}
.sche-inner .btn li:nth-child(5) a, .sche-inner .btn li:nth-child(6) a {
  background: #e93030;
}
.sche-inner .btn li:nth-child(7) a, .sche-inner .btn li:nth-child(8) a {
  background: #3FBAEE;
}
.sche-inner .btn li.large {
  width: 100%;
}
.sche-inner .btn li.large a {
  background: #138C5A;
}
.sche-inner .btn li a {
  margin-bottom: 10px;
}
.sche-inner .btn li a:hover {
  opacity: 0.8;
}
.sche-inner .btn a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: block;
  text-align: center;
  line-height: 1;
  padding: 13px 0px;
  width: 100%;
}
.sche-inner .btn a:hover {
  background: #8bc881;
}
.sche-inner .largebtn {
  width: 48%;
}
.sche-inner .largebtn a {
  background: #138C5A;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 13px 0px;
  line-height: 1;
}
.sche-inner .largebtn a:hover {
  opacity: 0.8;
}
.sche-inner .largebtn a:not(:last-child) {
  margin-bottom: 10px;
}

.sche-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 15px;
}
.sche-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  margin-right: 4%;
  width: 48%;
}
.sche-list > li:nth-child(2n+0) {
  margin-right: 0;
}
.sche-list > li .label {
  background: #eee;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  padding: 5px 0px;
  width: 93px;
}
.sche-list > li .time {
  color: #138C5A;
  font-family: "EB Garamond";
  font-size: 28px;
  font-weight: 900;
  text-align: right;
  letter-spacing: 0.5px;
}
.sche-list > li .time span {
  color: #222;
  display: block;
  font-family: "Noto Serif JP";
  font-size: 14px;
}
.sche-list .sat .label {
  background: #138C5A;
  color: #fff;
}
.sche-list .holi .label {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: #e93030;
  color: #fff;
}
.sche-list .holi .text {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

@media screen and (max-width: 480px) {
  .slider-inner .img01, .slider-inner .img02, .slider-inner .img03, .slider-inner .img04, .slider-inner .img05, .slider-inner .img06 {
    width: 100%;
    min-height: 250px;
    height: 250px;
    width: 100%;
  }
  .slider-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 1;
    height: auto;
    overflow: visible;
  }
  .slider-inner {
    position: relative;
    width: 100%;
    z-index: 0;
  }
  .slider-inner ul li img {
    width: 100%;
  }
  .slider-inner .img01, .slider-inner .img02, .slider-inner .img03, .slider-inner .img04, .slider-inner .img05, .slider-inner .img06 {
    min-height: 250px;
    height: 250px;
    width: 100%;
  }
  .slider-copy {
    width: 100%;
  }
  .slider-copy .copy {
    top: 60px;
    left: 10px;
    padding: 20px;
    width: calc(80% - 40px);
  }
  .slider-copy .copy p {
    font-weight: 700;
    line-height: 1;
  }
  .slider-copy .copy p:nth-child(1) {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .slider-copy .copy p:nth-child(2) {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .slider-copy .copy p:nth-child(3) {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 0px;
  }
  .slider-copy .copy p span {
    font-size: 16px;
  }
  .slider-copy .copy p br {
    display: block;
  }
  .sche-box {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sche-inner {
    border-radius: 0px;
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 60px);
  }
  .sche-inner .title {
    border-radius: 0px;
  }
  .sche-inner .read {
    width: 100%;
  }
  .sche-inner .btn {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
  .sche-inner .btn a {
    font-weight: 600;
  }
  .sche-inner .largebtn {
    width: 100%;
  }
  .sche-list > li {
    margin-right: 0;
    width: 100%;
  }
}
.tab-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 5px solid #138C5A;
  width: 100%;
}

.tab-btn {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #fff;
  border: none;
  cursor: pointer;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho", sans-serif;
  margin-right: 10px;
  padding: 20px 0px 18px;
  line-height: 1;
  width: 33.3333333333%;
}
.tab-btn:last-child {
  margin-right: 0;
}
.tab-btn:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #138C5A;
  color: #fff;
}
.tab-btn.is-active {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #138C5A;
  color: #fff;
}

.tab-panel {
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: none;
  padding: 20px 45px;
  width: calc(100% - 90px);
}
.tab-panel .-download {
  display: none;
}

.tab-panel {
  -webkit-animation: tab ease 0.3s;
          animation: tab ease 0.3s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@-webkit-keyframes tab {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes tab {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

.table-achiv {
  border: 0;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
  width: 100%;
}
.table-achiv tr td:first-child {
  white-space: nowrap;
}
.table-achiv tr:first-child td {
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
}
.table-achiv tr:hover {
  background: #F4974F;
}
.table-achiv td {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}
.table-achiv td a:link, .table-achiv td a:visited {
  color: #138C5A;
}
.table-achiv td a:link:hover, .table-achiv td a:visited:hover {
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .tab-btn {
    font-size: 13px;
    margin-right: 5px;
  }
  .tab-btn.-dl {
    display: none;
  }
  .tab-panel {
    padding: 20px 20px;
    width: calc(100% - 40px);
  }
  .tab-panel .archive.-download {
    display: block;
  }
  .tab-panel .archive.-download a {
    -webkit-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
    background: #ddd;
    border: none;
    border-radius: 50px;
    color: #7bc06f;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho", sans-serif;
  }
}
.title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 100%;
  height: 300px;
}
.title-block:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  content: "";
  background: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100%;
}
.title-block.-common, .title-block.-info, .title-block.-important {
  background: url(../img/common/title/common.jpg) no-repeat 50% 0/cover;
}

.title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  line-height: 1;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1240px;
  height: 100%;
}
.title-inner > h1 {
  color: #fff;
  display: block;
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 20px;
  width: 100%;
}
.title-inner > span {
  color: #fff;
  display: block;
  font-size: 24px;
  font-family: "Noto Serif JP";
  font-weight: 500;
  text-align: center;
  letter-spacing: 2px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .title-block {
    height: 120px;
  }
  .title-block.-common {
    background: url(../img/common/title/common.jpg) 0 0/cover;
  }
  .title-inner {
    width: 100%;
  }
  .title-inner > h1 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .title-inner > span {
    font-size: 14px;
    font-weight: 600;
  }
}
.topicpath-box {
  padding: 40px 10px 0px;
  margin-bottom: 30px;
  width: calc(100% - 20px);
}
.topicpath-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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 auto;
}
.topicpath-box ul li {
  font-size: 81.3%;
  margin-right: 20px;
  position: relative;
  line-height: 1.5;
}
.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: 20px 10px 0px;
  }
  .topicpath-box ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.recruit-box .recruit-inner .text::before {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  content: "";
  border-style: solid;
  border-width: 0 0 90px 35px;
  border-color: transparent transparent transparent #138C5A;
  width: 0;
  height: 0;
  z-index: 1;
}

.recruit-box .recruit-inner .text::after {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  content: "";
  border-style: solid;
  border-width: 0 0 90px 35px;
  border-color: transparent transparent #138C5A transparent;
  width: 0;
  height: 0;
  z-index: 1;
}

.index-bnr-box {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
.index-bnr-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}
.index-bnr-box ul li {
  width: 42%;
}
.index-bnr-box ul li a {
  display: block;
  position: relative;
  width: calc(100% - 40px);
  padding: 22px 20px;
  color: #fff;
  text-align: center;
  font-size: 112.5%;
}
.index-bnr-box ul li a:after {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.index-bnr-box ul li a:hover {
  opacity: 0.8;
}
.index-bnr-box ul li a.bnr01 {
  background: url(../img/index/bnr_01.png) #0C3C87 no-repeat;
  background-size: 40px;
  background-position: 5% 50%;
}
.index-bnr-box ul li a.bnr02 {
  background: url(../img/index/bnr_02.png) #e460a1 no-repeat;
  background-size: 40px;
  background-position: 5% 50%;
}
.index-bnr-box ul li a.bnr03 {
  background: url(../img/index/bnr_03.png) #0C3C87 no-repeat;
  background-size: 40px;
  background-position: 5% 50%;
}
.index-bnr-box ul li a.bnr04 {
  background: url(../img/index/bnr_04.png) #0C3C87 no-repeat;
  background-size: 40px;
  background-position: 5% 50%;
}
.index-bnr-box ul li a.bnr05 {
  background: url(../img/index/bnr_05.png) #0C3C87 no-repeat;
  background-size: 40px;
  background-position: 5% 50%;
}
.index-bnr-box ul li a.bnr06 {
  background: url(../img/index/bnr_06.png) #e460a1 no-repeat;
  background-size: 40px;
  background-position: 5% 50%;
}
.index-bnr-box.-double {
  min-width: 1220px;
  max-width: 1500px;
}
.index-bnr-box.-triple ul li:nth-child(2) {
  margin: 0 20px;
}

.index-box {
  margin-top: 100px;
  position: relative;
}
.index-box:before {
  position: absolute;
  top: auto;
  right: 0;
  bottom: -50px;
  left: auto;
  background: #ebf9ea;
  content: "";
  width: 1580px;
  height: 420px;
  z-index: -1;
}
.index-box.-rev {
  margin-bottom: 100px;
}
.index-box.-rev:before {
  right: auto;
  left: 0;
}
.index-box.-rev .index-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.index-box.-rev .index-inner .text {
  right: auto;
  left: 0;
}
.index-box.-rev .index-inner .image {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.index-box > .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 48px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
  margin-bottom: 50px;
}
.index-box > .title p {
  color: #138C5A;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
}
.index-box > .title p.en {
  font-size: 60px;
}

.index-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  margin: 0 auto;
  max-width: 1500px;
}
.index-inner a:hover .text::before {
  -webkit-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  right: 5%;
  background: #ebf9ea;
  opacity: 0.7;
  z-index: 0;
}
.index-inner a:hover .read::before {
  left: calc(52% - 25px);
}
.index-inner a:hover .read::after {
  right: calc(48% - 25px);
}
.index-inner .image {
  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;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .index-inner .image {
    width: 55%;
  }
}
.index-inner .text {
  position: absolute;
  top: calc(50% - 230px);
  right: 0;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-shadow: 0px 5px 80px rgba(19, 140, 90, 0.15);
          box-shadow: 0px 5px 80px rgba(19, 140, 90, 0.15);
  padding: 60px 0px 100px;
  overflow: hidden;
  width: 720px;
  height: 300px;
  text-align: center;
}
.index-inner .text::before {
  position: absolute;
  top: auto;
  right: -100%;
  bottom: 0;
  left: auto;
  -webkit-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  content: "";
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.index-inner .text::after {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  content: "";
  border-style: solid;
  border-width: 0 0 90px 35px;
  border-color: transparent transparent #138C5A transparent;
  width: 0;
  height: 0;
  z-index: 1;
}
.index-inner .text .title,
.index-inner .text .en,
.index-inner .text .read,
.index-inner .text .icon {
  width: 100%;
  z-index: 1;
}
.index-inner .text .title {
  font-size: 30px;
}
.index-inner .text .en {
  color: #138C5A;
  font-size: 21px;
  font-family: "EB Garamond";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.index-inner .text .icon {
  margin: 0 auto 40px;
  width: 48px;
}
.index-inner .text .icon img {
  width: 100%;
}
.index-inner .text .read {
  line-height: 2;
  position: relative;
}
.index-inner .text .read:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -30px;
  left: calc(50% - 25px);
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #138C5A;
  content: "";
  width: 50px;
  height: 1px;
}
.index-inner .text .read:after {
  position: absolute;
  top: auto;
  right: calc(50% - 25px);
  bottom: -25px;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #138C5A;
  content: "";
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  width: 15px;
  height: 1px;
}

.recruit-box {
  background: url(../img/index/recruit.jpg) no-repeat 50% 0;
  margin-bottom: 100px;
  position: relative;
}
.recruit-box::before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  content: "";
  width: 100%;
  height: 423px;
  background: #024227;
  opacity: 0.15;
}
.recruit-box .recruit-inner {
  text-align: center;
  position: relative;
  margin: 0 auto;
  min-width: 1240px;
}
.recruit-box .recruit-inner::before {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 182px;
  left: 0;
  background: #ebf9ea;
  content: "";
  margin: 0 auto;
  width: 1500px;
  height: 160px;
  z-index: -1;
}
.recruit-box .recruit-inner .copy {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 60px;
  padding-top: 180px;
  padding-bottom: 80px;
  line-height: 1;
}
.recruit-box .recruit-inner .text {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #fff;
  -webkit-box-shadow: 0px 5px 80px rgba(19, 140, 90, 0.15);
          box-shadow: 0px 5px 80px rgba(19, 140, 90, 0.15);
  overflow: hidden;
  padding: 50px 0px;
  position: relative;
  margin: 0 auto;
  width: 1240px;
  text-align: center;
}
.recruit-box .recruit-inner .text .title {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 30px;
}
.recruit-box .recruit-inner .text .en {
  color: #138C5A;
  font-size: 21px;
  font-family: "EB Garamond";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1;
  margin-bottom: 30px;
}
.recruit-box .recruit-inner .text .icon {
  margin: 0 auto 40px;
  width: 64px;
}
.recruit-box .recruit-inner .text .icon img {
  width: 100%;
  vertical-align: top;
}
.recruit-box .recruit-inner .text .read {
  line-height: 2;
  position: relative;
  margin-bottom: 50px;
}
.recruit-box .recruit-inner .text .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*
  li:last-child {
    margin-left: 80px;
  }
  */
}
.recruit-box .recruit-inner .text .link a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  display: block;
  color: #138C5A;
  padding-right: 70px;
  position: relative;
  line-height: 1;
}
.recruit-box .recruit-inner .text .link a:before {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 1px;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #138C5A;
  content: "";
  width: 50px;
  height: 1px;
}
.recruit-box .recruit-inner .text .link a:after {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 6px;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #138C5A;
  content: "";
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  width: 15px;
  height: 1px;
}
.recruit-box .recruit-inner .text .link a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.recruit-box .recruit-inner .text .link a:hover:before, .recruit-box .recruit-inner .text .link a:hover:after {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  right: -10px;
}

.index-sbnr {
  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;
  padding: 50px 0px;
  margin: 0 auto;
  min-width: 1240px;
  max-width: 1500px;
}
.index-sbnr li {
  width: calc((100% - 40px) / 5);
}
.index-sbnr li:nth-child(-n+5) {
  margin-bottom: 10px;
}
.index-sbnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  height: 75px;
}
.index-sbnr a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
  background: #ebf9ea;
  color: #138C5A;
}
.index-sbnr .text {
  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;
  line-height: 1;
  width: 100%;
}
.index-sbnr .text .sub,
.index-sbnr .text .title {
  display: block;
  font-size: 15px;
}
.index-sbnr .text .sub {
  font-size: 12px;
  margin-bottom: 8px;
}
.index-sbnr .text .title {
  font-weight: 500;
  text-align: center;
}

.index-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 50px auto 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index-col .col {
  margin-right: 2%;
  width: 49%;
}
.index-col .col:last-child {
  margin-right: 0;
}
.index-col .col iframe {
  width: 100%;
}
.index-col .col p {
  font-size: 14px;
  text-align: center;
}

.index-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 0px 50px 0px;
  position: relative;
  margin: 0 auto;
  min-width: calc(1240px - 20px);
  max-width: 1500px;
}
.index-info.-emg {
  border: 2px solid #e93030;
  padding: 0;
}
.index-info.-emg > .title {
  background: #e93030;
  color: #fff;
}
.index-info.-emg > .title .en {
  color: rgba(231, 18, 32, 0.2);
}
.index-info.-emg .info-box {
  padding: 20px 30px 20px;
  width: 100%;
}
.index-info.-emg .archive {
  margin-top: 0;
}
.index-info.-emg .archive a {
  background: #e93030;
}
.index-info.-emg .archive a:hover {
  background: #f2f2f2;
  color: #e93030;
}
.index-info > .title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  padding: 20px;
  width: 100%;
}
.index-info .archive {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
}
.index-info .archive a {
  background: #138C5A;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  padding: 15px 0px;
  line-height: 1;
  width: 300px;
}
.index-info .archive a:hover {
  background: #16a268;
}

.index-btn {
  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;
  padding-bottom: 50px;
  margin: 0 auto;
  min-width: calc(1240px - 20px);
  max-width: 1500px;
}
.index-btn li {
  width: calc(20% - 20px);
}
.index-btn li:nth-child(1) a:after {
  background: url(../img/index/btn_01.png) no-repeat 0 0/48px;
}
.index-btn li:nth-child(2) a:after {
  background: url(../img/index/btn_02.svg) no-repeat 0 0/48px;
}
.index-btn li:nth-child(3) a:after {
  background: url(../img/index/btn_03.png) no-repeat 0 0/48px;
}
.index-btn li:nth-child(4) a:after {
  background: url(../img/index/btn_04.png) no-repeat 0 0/48px;
}
.index-btn li:nth-child(5) a:after {
  background: url(../img/index/btn_05.png) no-repeat 0 0/48px;
}
.index-btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  background: #fff;
  -webkit-box-shadow: 0 5px 50px rgba(19, 140, 90, 0.15);
          box-shadow: 0 5px 50px rgba(19, 140, 90, 0.15);
  font-size: 21px;
  position: relative;
  height: 300px;
}
.index-btn li a:before {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  content: "";
  border-style: solid;
  border-width: 0 0 90px 35px;
  border-color: transparent transparent #138C5A transparent;
  width: 0;
  height: 0;
  z-index: 1;
}
.index-btn li a:after {
  position: absolute;
  top: 42%;
  right: 0;
  bottom: auto;
  left: 0;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  margin: 0 auto;
  width: 48px;
  height: 60px;
  z-index: 1;
}
.index-btn li a:hover {
  -webkit-box-shadow: 0 5px 50px rgba(19, 140, 90, 0.35);
          box-shadow: 0 5px 50px rgba(19, 140, 90, 0.35);
}
.index-btn li a:hover:after {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.index-btn li a .title,
.index-btn li a .en {
  text-align: center;
  line-height: 1;
  width: 100%;
}
.index-btn li a .title {
  font-weight: 600;
  margin-top: 40px;
}
.index-btn li a .en {
  color: #138C5A;
  font-family: "EB Garamond";
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.contact-box {
  background: #f2f2f2;
  margin: 30px auto;
  padding: 20px;
  width: 50%;
}
.contact-box .title {
  color: #138C5A;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
  font-size: 24px;
  text-align: center;
  line-height: 1;
  margin-bottom: 15px;
}
.contact-box .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-bottom: 5px;
}
.contact-box .tel span {
  font-size: 18px;
  padding-right: 8px;
  padding-bottom: 2px;
}
.contact-box .tel p {
  font-size: 24px;
}
.contact-box .tel small {
  font-size: 14px;
}
.contact-box .note {
  font-size: 14px;
  text-align: center;
  line-height: 1;
}

.accord-box > .btn {
  background: -webkit-gradient(linear, left top, right top, from(#138C5A), to(#7bc06f));
  background: linear-gradient(90deg, #138C5A, #7bc06f);
  color: #fff;
  cursor: pointer;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 15px 10px 15px 15px;
  position: relative;
}
.accord-box > .btn:hover {
  opacity: 0.95;
}
.accord-box > .inner {
  display: none;
  margin-bottom: 25px;
}

.accord-icon {
  -webkit-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  position: absolute;
  top: 11px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: #fff;
  border-radius: 50%;
  width: 29px;
  height: 29px;
}
.accord-icon span {
  -webkit-transition: all 0.4s ease 0s !important;
  transition: all 0.4s ease 0s !important;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: 7px;
  background: #138C5A;
  border-radius: 4px;
  width: 50%;
  height: 3px;
}
.accord-icon span:nth-of-type(1) {
  top: 13px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accord-icon span:nth-of-type(2) {
  top: 13px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accord-icon.-active span:nth-of-type(1) {
  display: none;
}
.accord-icon.-active span:nth-of-type(2) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 480px) {
  .index-bnr-box {
    width: 100%;
  }
  .index-bnr-box ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .index-bnr-box ul li {
    width: 100%;
  }
  .index-bnr-box ul li a {
    background: #0C3C87;
    font-size: 16px;
  }
  .index-bnr-box ul li a::after {
    right: 15px;
  }
  .index-bnr-box ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .index-bnr-box.-double {
    min-width: 100%;
    max-width: 100%;
  }
  .index-bnr-box.-triple ul li:nth-child(2) {
    margin: 0 0 20px 0px;
  }
  .index-box:before {
    bottom: 0;
  }
  .index-box.-rev {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .index-box.-rev:before {
    width: 100%;
  }
  .index-box > .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 28px;
    margin-bottom: 30px;
  }
  .index-box > .title p {
    margin-bottom: 10px;
    width: 100%;
  }
  .index-box > .title p.en {
    font-size: 30px;
  }
  .index-box .text {
    font-size: 15px;
  }
  .index-box .text iframe {
    height: 400px;
  }
  .index-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .index-col .col {
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .index-col .col:last-child {
    margin-bottom: 0;
  }
  .index-info {
    padding: 0 0 50px 0;
    min-width: calc(100% - 4px);
    max-width: 100%;
  }
  .index-btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 0;
    min-width: 100%;
    max-width: 100%;
  }
  .index-btn li {
    margin-bottom: 10px;
    width: calc(50% - 5px);
  }
  .index-btn li:last-child {
    margin: 0 auto;
  }
  .index-btn li a {
    font-size: 18px;
    height: 200px;
  }
  .index-btn li a:before {
    border-width: 0 0 50px 25px;
  }
  .index-btn li a:after {
    background-position: 50% 0px;
    background-size: 42px;
    top: 39%;
  }
  .index-btn li a .title {
    margin-top: 30px;
  }
  .index-btn li a .en {
    margin-bottom: 30px;
  }
  .index-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
  }
  .index-inner .image {
    width: 100%;
  }
  .index-inner .image img {
    width: 100%;
  }
  .index-inner .text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    top: -60px;
    padding: 40px 0px 80px;
    margin: 0 auto;
    width: 90%;
    height: auto;
  }
  .index-inner .text .icon {
    margin-bottom: 20px;
  }
  .index-inner .text .read {
    font-size: 13px;
    margin: 0 auto;
    width: calc(100% - 20px);
  }
  .contact-box {
    width: calc(100% - 40px);
  }
  .recruit-box {
    margin-bottom: 50px;
  }
  .recruit-box .recruit-inner {
    min-width: 100%;
  }
  .recruit-box .recruit-inner .copy {
    font-size: 32px;
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .recruit-box .recruit-inner .text {
    padding: 40px 0px;
    width: 100%;
  }
  .recruit-box .recruit-inner .text .title {
    margin-bottom: 20px;
  }
  .recruit-box .recruit-inner .text .icon {
    margin: 0 auto 20px;
    width: 48px;
  }
  .recruit-box .recruit-inner .text .read {
    margin: 0px auto 30px;
    width: 90%;
  }
  .index-sbnr {
    padding: 30px 10px;
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  .index-sbnr li {
    width: calc((100% - 10px) / 2);
  }
  .index-sbnr li:last-child {
    margin: 0 auto;
  }
}
._fs-xs {
  font-size: 11px;
}

._fs-sm {
  font-size: 12px;
}

._fs-md {
  font-size: 18px;
}

._fs-lg {
  font-size: 24px;
}

._fs-xl {
  font-size: 30px;
}

._mr-sm {
  margin-right: 20px;
}

._mb0 {
  margin-bottom: 0 !important;
}

._mb-xs {
  margin-bottom: 10px;
}

._mb-sm {
  margin-bottom: 20px;
}

._mb-md {
  margin-bottom: 30px;
}

._mb-lg {
  margin-bottom: 60px;
}

._mb-xl {
  margin-bottom: 80px;
}

._mt-xs {
  margin-top: 10px;
}

._mt-sm {
  margin-top: 20px;
}

._mt-md {
  margin-top: 30px;
}

._mt-lg {
  margin-top: 50px;
}

._mt-xl {
  margin-top: 80px;
}

._w5 {
  width: 5%;
}

._w10 {
  width: 10%;
}

._w20 {
  width: 20%;
}

._w30 {
  width: 30%;
}

._w40 {
  width: 40%;
}

._w50 {
  width: 50%;
}

._w60 {
  width: 60%;
}

._w70 {
  width: 70%;
}

._w80 {
  width: 80%;
}

._w90 {
  width: 90%;
}

._w95 {
  width: 95%;
}

._w100 {
  width: 100%;
}

@media screen and (max-width: 480px) {
  ._fs-md {
    font-size: 16px;
  }
  ._fs-lg {
    font-size: 21px;
  }
  ._fs-xl {
    font-size: 26px;
  }
  ._mr-sm {
    margin-right: 2%;
  }
}
/*!
 * 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,
.header-block,
.nav-block,
.slider-block,
.slider-inner,
.slider-inner .copy,
.title-block,
.title-block h1,
.title-block span,
.header-block,
.main-block,
.recruit-box,
.info-box,
.outer-box,
.index-bnr,
.footer-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: 0.75s;
          animation-duration: 0.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.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, 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;
}