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

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: #333;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #4d4d4d;
}

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

*:focus {
  outline: none;
}

body {
  font-size: 15px;
  color: #333;
  font-family: "Brygada 1918", "Noto Serif Jp", "Hiragino Mincho Pro", "Yu Mincho", serif;
  line-height: 2.2;
  min-width: 1260px;
}

.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;
    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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 80px;
  z-index: 1;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  min-width: 1260px;
  width: 1500px;
}
.header-inner > .logo {
  line-height: 1;
  position: relative;
}
.header-inner > .logo > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img2/common/item/logo.png) no-repeat 0 0;
  font-size: 28px;
  font-weight: 700;
  padding-left: 63px;
  height: 52px;
}
.header-inner > .logo > a > span {
  display: inline-block;
  font-size: 16px;
  margin-right: 10px;
}
.header-inner > .tel {
  background: url(../img2/common/icon/tel.svg) no-repeat 0 50%/24px;
  color: #ed6b92;
  font-family: "Allura";
  font-size: 30px;
  font-weight: 700;
  padding-left: 35px;
  margin-bottom: 20px;
}
.header-inner > .tel span {
  font-size: 15px;
}
.header-inner > .er {
  position: absolute;
  top: auto;
  right: 5px;
  bottom: 10px;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  content: "";
}
.header-inner > .er li {
  background: #e71220;
  color: #fff;
  font-size: 10.7px;
  line-height: 1;
  padding: 5px;
}
.header-inner > .er li:first-child {
  margin-right: 10px;
}

.resize-box .btn > a {
  background: #eee;
  display: block;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  padding: 8px 0px;
  width: 120px;
}
.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;
}
.resize-box .btn a:hover {
  background: #ed6b92;
  color: #fff;
}
.resize-box .btn:hover ul {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 1;
  visibility: visible;
}

.header-list {
  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;
  opacity: 0.9;
}
.header-list li {
  margin-right: 15px;
}
.header-list a {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 16px;
  padding-left: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  text-align: center;
}
.header-list a:hover {
  opacity: 0.8;
}
.header-list a.t01 {
  background: url(../img2/common/icon/medic.svg) no-repeat 0 0/21px;
}
.header-list a.t02 {
  background: url(../img2/common/icon/pin.svg) no-repeat 0 0/21px;
}
.header-list a.t03 {
  background: url(../img2/common/icon/mail.svg) no-repeat 0 0/21px;
}

.contact-box {
  margin-right: 20px;
}
.contact-box > .btn {
  background: #ed6b92;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  padding: 8px 0px;
  width: 150px;
}

/* 以下ハンバーガーメニュー */
#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: #ed6b92;
  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-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-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-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-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: 1260px;
  height: 100vh;
}
.sitemap-inner > .logo {
  background: url(../img2/common/item/logo.svg) no-repeat 0 0/250px;
}

.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-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 {
    height: 90px;
  }
  .header-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-width: 100%;
    width: 100%;
  }
  .header-inner > .logo {
    margin-left: 20px;
    margin-top: 10px;
  }
  .header-inner > .logo > a {
    background-size: 42px;
    display: block;
    font-size: 22px;
    padding-left: 55px;
    height: 42px;
  }
  .header-inner > .logo > a > span {
    display: block;
    font-size: 12px;
    margin-right: 0px;
    margin-bottom: 7px;
  }
  .header-inner .tel,
  .header-inner .resize-box {
    display: none;
  }
  .header-inner > .er {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 10px;
    left: 20px;
  }
  .header-info {
    padding-top: 10px;
  }
  .header-info > .logo > a {
    background: url(../img2/common/item/logo.png) no-repeat left 10px center;
    background-size: 40px auto;
    font-size: 22px;
    padding-left: 60px;
    width: 100%;
    height: 40px;
  }
  .header-info > .logo > a > span {
    margin-bottom: 7px;
  }
  .header-info .link {
    display: none;
  }
  .header-info .info {
    display: none;
  }
  .header-item {
    display: none;
  }
  .header-list {
    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-box {
    margin-top: 0px;
  }
  .sitemap-inner .logo-box a {
    color: #333;
  }
  .sitemap-list {
    margin-right: 0px;
    margin-top: 20px;
    width: 100%;
    height: 1000px;
  }
  .sitemap-list li {
    margin: 0;
  }
  .sitemap-list a {
    font-size: 15px;
  }
  .sitemap-list a:hover {
    opacity: 0.7;
  }
  .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: rgb(151, 123, 109);
    border: none;
    color: #fff;
    padding: 20px 10px;
    line-height: 1;
    display: block;
    text-align: center;
  }
  .sitemap-list .list02 li {
    width: 100%;
  }
  .sitemap-list .list02 a {
    color: #666;
    display: block;
    padding: 10px;
    text-align: center;
    background: #eee;
  }
  .sitemap-list .list02 a.blank {
    background: #f1e7e2 url(../img/common/icon/blank.png) no-repeat 95% 50%/10px;
    padding-right: 20px;
  }
  .sitemap-list .list03 li {
    width: 100%;
  }
  .sitemap-list .list03 a {
    border-top: 1px solid #ddd;
    padding: 10px;
    display: block;
  }
}
.menu-box {
  position: relative;
  margin-bottom: 30px;
  width: 270px;
}
.menu-box .title {
  background: #ed6b92;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 15px 0px;
  text-align: center;
}

.menu-inner {
  border: 1px solid #ddd;
  border-top: none;
}
.menu-inner li {
  border-bottom: 1px solid #ddd;
}
.menu-inner li:last-child {
  border-bottom: none;
}
.menu-inner li a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  display: block;
  font-size: 14px;
  line-height: 1.4;
  padding: 15px 35px 15px 20px;
  position: relative;
}
.menu-inner li a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #f2f2f2;
  color: #ed6b92;
}
.menu-inner li a:before {
  position: absolute;
  top: calc(50% - 5.5px);
  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 #ed6b92;
  border-right: 2px solid #ed6b92;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.menu-inner li a:hover:before {
  position: absolute;
  top: calc(50% - 5.5px);
  right: 18px;
  bottom: auto;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.menu-inner li:before {
  display: none;
}

@media screen and (max-width: 480px) {
  .menu-box {
    width: 100%;
  }
}
.main-inner {
  position: relative;
}

.nav-block {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background: 0 0 rgba(58, 36, 36, 0.25);
  width: 100%;
  height: 110px;
  z-index: 1;
}
.nav-block#sub {
  display: none;
  position: fixed;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  height: 65px;
  top: 0;
}
.nav-block#sub .nav-inner > .list {
  top: 25px;
}
.nav-block#sub .logo-box {
  margin-top: 15px;
}
.nav-block#sub .logo-box .sub {
  font-size: 12px;
  padding-left: 50px;
}
.nav-block#sub .logo-box .title {
  font-size: 18px;
  padding-left: 50px;
}
.nav-block#sub .logo-box a {
  background: url(../img/common/icon/logo.svg) no-repeat 0 50%/32px;
  height: 32px;
}
.nav-block.-sub {
  background: rgba(255, 255, 255, 0.9);
  position: relative;
}
.nav-block.-sub a {
  color: #333;
}
.nav-block.-sub .nav-list > .item > a {
  color: #333;
}
.nav-block.-sub .nav-list > .item > a.blank {
  background: url(../img/common/icon/blank.png) no-repeat 95% 50%/10px;
  padding-right: 20px;
}

.nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px auto;
  width: 1260px;
}
.nav-inner > .list {
  position: absolute;
  top: 47.5px;
  right: 0px;
  bottom: auto;
  left: auto;
  width: 750px;
}

.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;
  margin-left: 10px;
  margin-top: 32px;
}
.logo-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  background: url(../img/common/icon/logo.svg) no-repeat 0 50%/48px;
  color: #fff;
  margin-right: auto;
  letter-spacing: 2px;
  width: 300px;
  height: 48px;
}
.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: 14px;
  line-height: 1;
  padding-left: 63px;
  text-align: justify;
  white-space: nowrap;
}
.logo-box .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;
  font-size: 21px;
  padding-left: 63px;
  line-height: 1;
  white-space: nowrap;
}

.nav-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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.nav-list > .item {
  position: relative;
}
.nav-list > .item > a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.1;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.nav-list > .item > a:hover {
  opacity: 0.8;
}
.nav-list > .item > a.blank {
  background: url(../img/common/icon/blank_w.png) no-repeat 95% 50%/10px;
  padding-right: 20px;
}
.nav-list > .item > a:hover:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 20px;
  left: auto;
  -webkit-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
}
.nav-list > .item:last-child:after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: auto;
  left: auto;
  content: "";
  border-right: 1px solid #ddd;
  height: 100%;
}
.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: #ed6b92;
  color: #fff;
}

.drop-box {
  background: rgba(237, 107, 146, 0.95);
}
.drop-box a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eee;
  display: block;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  padding: 5px 0px;
  width: 120px;
}
.drop-box a:hover {
  color: #ed6b92;
}

.re_mo_disp {
  display: none;
}

@media screen and (max-width: 480px) {
  .re_mo_disp {
    display: block;
  }
  .slider-block + .nav-block {
    display: none;
  }
  .nav-inner {
    width: 100%;
  }
  .nav-inner .list {
    display: none;
  }
  .nav-block {
    height: 80px;
  }
  .logo-box {
    margin-top: 16px;
  }
  .logo-box a {
    background: url(../img/common/icon/logo.svg) no-repeat 0 50%/42px;
  }
  .logo-box .sub {
    font-size: 12px;
    padding-left: 53px;
    margin-bottom: 3px;
  }
  .logo-box .title {
    font-size: 18px;
    padding-left: 53px;
  }
}
.footer-block {
  border-top: 1px solid #ddd;
  position: relative;
  z-index: 1;
}
.footer-block > .copy {
  margin: 0 auto;
  font-size: 12px;
  font-family: "EB Garamond";
  padding: 8px 0px;
  letter-spacing: 1px;
  text-align: center;
}

.footer-inner {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1260px;
  max-width: 1500px;
}

.footer-info {
  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;
  position: relative;
  margin-top: 50px;
  width: 100%;
}
.footer-info .info {
  width: 310px;
}
.footer-info .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: 13px;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-left: 10px;
  margin-bottom: 20px;
}
.footer-info .info .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: 500;
  font-family: "EB Garamond";
  line-height: 1;
  letter-spacing: 2px;
  margin-left: 10px;
  margin-right: 50px;
}
.footer-info .info .tel span {
  font-size: 18px;
  margin-right: 5px;
}
.footer-info .info .tel p {
  font-size: 30px;
}
.footer-info .icon {
  width: 115px;
}
.footer-info .icon img {
  width: 100%;
  vertical-align: top;
}
.footer-info .logo-box {
  margin-bottom: 30px;
  margin-top: 0px;
}
.footer-info .logo-box a {
  color: #333;
}
.footer-info .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
}
.footer-info .list ul li {
  font-size: 14px;
  margin-left: 30px;
}
.footer-info .list ul li a.blank {
  background: url(../img/common/icon/blank.png) no-repeat 95% 50%/10px;
  padding-right: 20px;
}
.footer-info .list .inquiry {
  position: absolute;
  top: auto;
  right: 0px;
  bottom: auto;
  left: auto;
}
.footer-info .list .inquiry a {
  background: #ed6b92 url(../img/common/icon/blank_w.png) no-repeat 95% 50%/10px;
  color: #fff;
  display: block;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  padding: 12px;
  width: 176px;
}

.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: #333;
  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: 20px;
  bottom: 20px;
  left: auto;
  position: fixed;
  z-index: 1001;
}
#page-top .backtotop {
  background: #ed6b92;
  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: #f082a3;
}

@media screen and (max-width: 480px) {
  .footer-block > .copy {
    font-size: 11px;
  }
  .footer-inner {
    padding-bottom: 0px;
    min-width: 100%;
    width: calc(100% - 20px);
    max-width: 100%;
  }
  .footer-link {
    display: none;
  }
  .footer-info {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .footer-info .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .footer-info .list {
    display: none;
  }
  .footer-info .addr {
    font-size: 13px;
    margin: 10px auto;
  }
  .footer-info .tel {
    margin: 0 auto;
  }
  .footer-info .tel p {
    font-size: 24px;
  }
  .footer-info .tel a {
    color: #333;
  }
  .footer-info .logo-box {
    margin-bottom: 10px;
  }
  .footer-info .logo-box a {
    margin: 0 auto;
    height: 42px;
  }
  #page-top {
    bottom: 45px;
  }
}
.article-box {
  margin-bottom: 120px;
}
.article-box p:not([class]) {
  min-height: 1rem;
}
.article-box p a:not([class]) {
  color: #ed6b92;
}
.article-box p a:not([class]):hover {
  text-decoration: underline;
}
.article-box p > img {
  max-width: 100%;
}
.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";
}

.staff-box {
  -webkit-box-shadow: 0 20px 20px rgba(139, 90, 85, 0.15);
          box-shadow: 0 20px 20px rgba(139, 90, 85, 0.15);
}
.staff-box .staff-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.staff-box .staff-inner .image {
  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;
  overflow: hidden;
  width: 60%;
}
.staff-box .staff-inner .image img {
  vertical-align: top;
  width: 100%;
  height: 100%;
}
.staff-box .staff-inner .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;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #f6e1dc;
  padding-left: 80px;
  padding-right: 20px;
  position: relative;
  width: calc(40% - 100px);
}
.staff-box .staff-inner .text .ital {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: -120px;
  content: "";
  color: #ed6b92;
  font-family: "Allura";
  font-size: 80px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 1;
}
.staff-box .staff-inner .text .post {
  background: #ed6b92;
  color: #fff;
  margin-bottom: 40px;
  margin-right: auto;
  line-height: 1;
  padding: 15px 25px;
}
.staff-box .staff-inner .text .length {
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
}
.staff-box .staff-inner .text .name {
  font-size: 48px;
  line-height: 1;
  width: 100%;
}
.staff-box .staff-inner .text .en {
  color: #888;
  font-size: 15px;
  font-family: "EB Garamond";
  margin-top: 10px;
}
.staff-box .staff-inner .text .msg {
  line-height: 2;
}

.outer-box {
  background: #f6e1dc;
  padding: 50px;
}
.outer-box.-wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 60px 0px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0px;
}
.outer-box.-wide .bx-wrapper {
  max-width: 1263px !important;
  position: relative;
}
.outer-box.-wide .bx-wrapper .bx-prev:focus,
.outer-box.-wide .bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}
.outer-box.-wide .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  outline: 0;
  width: 35px;
  height: 35px;
  text-indent: -9999px;
  z-index: 9999;
}
.outer-box.-wide .bx-wrapper .bx-prev {
  left: 10px;
  background: url(../img/common/icon/prev.png) center no-repeat;
}
.outer-box.-wide .bx-wrapper .bx-next {
  right: 10px;
  background: url(../img/common/icon/next.png) center no-repeat;
}
.outer-box.-test {
  min-height: 820px;
}

.sche-box {
  background: #fff;
  -webkit-box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
          box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
  margin: 0px auto;
  padding: 80px 0px;
  position: relative;
  max-width: 1200px;
}
.sche-box .title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1;
}
.sche-box .ital {
  position: absolute;
  top: -10px;
  right: auto;
  bottom: auto;
  left: -30px;
  content: "";
  color: #ed6b92;
  font-family: "Allura";
  font-size: 72px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 1;
}
.sche-box .timeline {
  position: relative;
}
.sche-box .timeline:before {
  position: absolute;
  top: 5px;
  right: 0;
  bottom: auto;
  left: 0;
  content: "";
  background: rgba(237, 107, 146, 0.6);
  margin: auto;
  width: 3px;
  height: 100%;
  z-index: 1;
}

.sche-item {
  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;
  margin-bottom: 40px;
}
.sche-item .text {
  width: calc(50% - 65px);
}
.sche-item .text .time {
  font-size: 26px;
  font-family: "EB Garamond";
  margin-bottom: 20px;
  position: relative;
  line-height: 1;
  letter-spacing: 2px;
}
.sche-item .text .time:before {
  position: absolute;
  top: -7px;
  right: -84px;
  bottom: auto;
  left: auto;
  content: "";
  background: #f6e1dc;
  border-radius: 50%;
  margin: auto;
  width: 39px;
  height: 39px;
}
.sche-item .text .time:after {
  position: absolute;
  top: 1px;
  right: -76px;
  bottom: auto;
  left: auto;
  content: "";
  background: #ed6b92;
  border-radius: 50%;
  margin: auto;
  width: 23px;
  height: 23px;
}
.sche-item .text .lead {
  font-size: 16px;
}
.sche-item .image {
  width: calc(50% - 65px);
}
.sche-item .image img {
  margin-bottom: 20px;
  vertical-align: top;
}
.sche-item .image img:last-child {
  margin-bottom: 0;
}
.sche-item .none {
  width: calc(50% - 65px);
}
.sche-item div:nth-child(odd) {
  text-align: right;
  margin-right: 65px;
}
.sche-item div:nth-child(even) {
  margin-left: 65px;
}
.sche-item div:nth-child(even) .time:before {
  position: absolute;
  top: -7px;
  right: auto;
  bottom: auto;
  left: -85px;
}
.sche-item div:nth-child(even) .time:after {
  position: absolute;
  top: 1px;
  right: auto;
  bottom: auto;
  left: -77px;
}

.sche-note {
  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;
  margin-bottom: 40px;
}
.sche-note.-last {
  margin-bottom: 0px;
}
.sche-note .head {
  font-size: 24px;
  margin-right: 45px;
  text-align: right;
  line-height: 1.3;
  width: 30%;
}
.sche-note .head.-sub {
  font-size: 18px;
}
.sche-note .text {
  width: 70%;
}

.sche-list li {
  margin-left: 30px;
}
.sche-list li a {
  display: block;
  padding: 20px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
          box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
  margin-top: 10px;
  margin-bottom: 40px;
}
.sche-list .image img {
  margin-bottom: 20px;
  width: 100%;
  vertical-align: top;
}
.sche-list .title {
  font-size: 21px;
  line-height: 1;
  text-align: center;
}
.sche-list .ital {
  position: absolute;
  top: -20px;
  right: auto;
  bottom: auto;
  left: -14px;
  content: "";
  color: #ed6b92;
  font-family: "Allura";
  font-size: 42px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 1;
}

.qa-box {
  margin: 0px auto;
  min-width: 1260px;
  max-width: 1500px;
}
.qa-box .qa-list {
  position: relative;
}
.qa-box .qa-list li {
  background: #fff;
  -webkit-box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
          box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
}
.qa-box .qa-list li.list {
  margin-right: auto;
  margin-bottom: 80px;
  padding: 50px 60px;
  position: relative;
  width: 60%;
  z-index: 1;
}
.qa-box .qa-list li.list.-right {
  margin-right: 0px;
  margin-left: auto;
}
.qa-box .qa-list li.image {
  position: relative;
}
.qa-box .qa-list li.image.-right img {
  position: absolute;
  top: -80px;
  right: -120px;
  bottom: auto;
  left: auto;
}
.qa-box .qa-list li.image img {
  position: absolute;
  top: -80px;
  right: auto;
  bottom: auto;
  left: -120px;
  content: "";
  z-index: 0;
}
.qa-box .qa-list li:last-child {
  margin-bottom: 0px;
}
.qa-box .qa-list li .ques {
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1;
}
.qa-box .qa-list li .ques span {
  color: #ed6b92;
  display: inline-block;
  font-size: 30px;
  margin-right: 10px;
}
.qa-box .qa-list li .ans {
  letter-spacing: 1.5px;
}

.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: #ed6b92;
  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 a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #ed6b92;
  border: 1px solid #ed6b92;
  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: #ed6b92 !important;
  background: #fff;
  border: 1px solid #ed6b92;
  text-decoration: none !important;
}

.test-box {
  background: #fff;
  -webkit-box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
          box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
  margin: 50px auto;
  padding: 50px 60px;
  position: relative;
  width: 60%;
  z-index: 1;
}
.test-box .step {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
}
.test-box .step b {
  color: #ed6b92;
  font-size: 42px;
  font-weight: 500;
}
.test-box .title {
  margin: 0px auto 60px;
  text-align: center;
  line-height: 1;
}
.test-box .title.-result {
  font-size: 32px;
}
.test-box .title.-result b {
  color: #ed6b92;
  font-weight: 500;
  font-size: 60px;
}
.test-box .title.-result span {
  font-size: 48px;
}
.test-box .title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff6));
  background: linear-gradient(transparent 60%, #ff6 60%);
  display: inline-block;
  font-size: 24px;
}
.test-box .choice {
  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;
  margin-bottom: 100px;
}
.test-box .ital {
  position: absolute;
  top: -40px;
  right: auto;
  bottom: auto;
  left: -40px;
  content: "";
  color: #ed6b92;
  font-family: "Allura";
  font-size: 72px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 1;
}
.test-box .text {
  font-size: 18px;
  margin-bottom: 30px;
}
.test-box .subtitle {
  color: rgb(151, 123, 109);
  font-size: 24px;
  text-align: center;
}
.test-box .retest {
  background: url(../img/common/icon/test.svg) no-repeat 50% 0%/32px;
  font-size: 21px;
  text-align: center;
}
.test-box .retest a {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #e087a2));
  background: linear-gradient(transparent 90%, #e087a2 90%);
  display: inline-block;
  padding-top: 30px;
}
.test-box .retest a:hover {
  color: #ed6b92;
}
.test-box.-accord {
  -webkit-animation: accord ease 1s;
          animation: accord ease 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes accord {
  0% {
    height: 380px;
  }
  100% {
    height: 580px;
  }
}
@keyframes accord {
  0% {
    height: 380px;
  }
  100% {
    height: 580px;
  }
}

.data-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.data-box .data-list {
  background: #fff;
  -webkit-box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
          box-shadow: 0 20px 20px rgba(58, 36, 36, 0.15);
  padding: 60px;
  position: relative;
  margin-right: 50px;
  margin-bottom: 50px;
  min-width: 411.5px;
  width: calc(50% - 120px - 25px);
}
.data-box .data-list:nth-child(2n+0) {
  margin-right: 0px;
}
.data-box .data-list.-pointer {
  cursor: pointer;
}
.data-box .data-list.-modal {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0px;
  width: 50%;
}
.data-box .data-list.-modal .ital {
  top: -130px;
  left: -30px;
}
.data-box .data-list:hover .ontext {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: 0px;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: rgba(151, 123, 109, 0.9);
  content: "";
  color: #fff;
  overflow: hidden;
  padding: 40px;
  width: calc(100% - 80px);
  height: auto;
  opacity: 1;
}
.data-box .data-list .ontext {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: 0px;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  padding: 40px;
  overflow: hidden;
  height: auto;
  opacity: 0;
  z-index: 2;
}
.data-box .data-list .ital {
  position: absolute;
  top: -30px;
  right: auto;
  bottom: auto;
  left: -20px;
  content: "";
  color: #ed6b92;
  font-family: "Allura";
  font-size: 50px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 1;
}
.data-box .data-list .ital b {
  font-weight: normal;
}
.data-box .data-list .title {
  font-size: 36px;
  text-align: center;
  line-height: 1;
  margin-bottom: 50px;
}
.data-box .data-list .text {
  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;
  font-weight: 500;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-bottom: 50px;
}
.data-box .data-list .text .data {
  color: #ed6b92;
  font-family: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho";
  font-size: 80px;
}
.data-box .data-list .text.-q2 {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: auto;
  margin-bottom: 0px;
  width: 270px;
  height: 270px;
  z-index: 2;
}
.data-box .data-list .text.-q2 .data {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-shadow: #fff 2px 0px 0px, #fff -2px 0px 0px, #fff 0px -2px 0px, #fff 0px 2px 0px, #fff 2px 2px 0px, #fff -2px 2px 0px, #fff 2px -2px 0px, #fff -2px -2px 0px, #fff 1px 2px 0px, #fff -1px 2px 0px, #fff 1px -2px 0px, #fff -1px -2px 0px, #fff 2px 1px 0px, #fff -2px 1px 0px, #fff 2px -1px 0px, #fff -2px -1px 0px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #333;
  font-size: 21px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.data-box .data-list .text.-q2 .data b {
  color: #ed6b92;
  font-weight: normal;
  font-size: 40px;
}
.data-box .data-list .text.-q2 .data span {
  font-size: 21px;
}
.data-box .data-list .text.-q2 .data p {
  font-size: 30px;
  text-align: center;
  width: 100%;
}
.data-box .data-list .text.-q2 .data p small {
  font-size: 16px;
}
.data-box .data-list .text.-q2 .data.-d01 {
  position: absolute;
  top: 0px;
  right: -20px;
  bottom: auto;
  left: auto;
}
.data-box .data-list .text.-q2 .data.-d02 {
  position: absolute;
  top: auto;
  right: -60px;
  bottom: 50px;
  left: auto;
}
.data-box .data-list .text.-q2 .data.-d03 {
  position: absolute;
  top: auto;
  right: 60px;
  bottom: -20px;
  left: auto;
}
.data-box .data-list .text.-q2 .data.-d04 {
  position: absolute;
  top: 140px;
  right: auto;
  bottom: auto;
  left: -70px;
}
.data-box .data-list .text.-q2 .data.-d05 {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: -20px;
}
.data-box .data-list .text.-q4 .data {
  letter-spacing: 10px;
}
.data-box .data-list .text.-q4 .data .title {
  font-size: 18px;
  color: #333;
  letter-spacing: 0;
}
.data-box .data-list .text.-q5 {
  margin-bottom: 0px;
}
.data-box .data-list .text.-q5 .commute-box {
  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;
  width: 100%;
}
.data-box .data-list .text.-q5 .commute-box li .circle {
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  background: rgb(139, 90, 85);
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  width: 200px;
  height: 200px;
}
.data-box .data-list .text.-q5 .commute-box li .circle .image {
  width: 100%;
}
.data-box .data-list .text.-q5 .commute-box li .circle .image img {
  width: 30%;
}
.data-box .data-list .text.-q5 .commute-box li .circle .data {
  color: #fff;
}
.data-box .data-list .text.-q5 .commute-box li .circle span {
  color: #fff;
  font-size: 21px;
  padding-top: 40px;
}
.data-box .data-list .text.-q5 .commute-box li .title {
  font-size: 21px;
  text-align: center;
}
.data-box .data-list .text.-q5 .commute-box li:nth-child(n+2) .percent {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.data-box .data-list .text.-q5 .commute-box li:nth-child(n+2) .percent .data {
  color: rgb(139, 90, 85);
  font-size: 30px;
  margin-bottom: 10px;
}
.data-box .data-list .text.-q5 .commute-box li:nth-child(n+2) .percent span {
  padding-left: 5px;
}
.data-box .data-list .text.-q5 .commute-box li:nth-child(n+2) .circle {
  width: 90px;
  height: 90px;
}
.data-box .data-list .text.-q5 .commute-box li:last-child .circle .image img {
  width: 50%;
}
.data-box .data-list .text.-q6 {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: auto;
  margin-bottom: 0px;
  width: 270px;
  height: 270px;
  z-index: 2;
}
.data-box .data-list .text.-q6 .data {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-shadow: #fff 2px 0px 0px, #fff -2px 0px 0px, #fff 0px -2px 0px, #fff 0px 2px 0px, #fff 2px 2px 0px, #fff -2px 2px 0px, #fff 2px -2px 0px, #fff -2px -2px 0px, #fff 1px 2px 0px, #fff -1px 2px 0px, #fff 1px -2px 0px, #fff -1px -2px 0px, #fff 2px 1px 0px, #fff -2px 1px 0px, #fff 2px -1px 0px, #fff -2px -1px 0px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #333;
  font-size: 21px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.data-box .data-list .text.-q6 .data b {
  color: #ed6b92;
  font-weight: normal;
  font-size: 40px;
}
.data-box .data-list .text.-q6 .data span {
  font-size: 21px;
}
.data-box .data-list .text.-q6 .data p {
  font-size: 30px;
  text-align: center;
  width: 100%;
}
.data-box .data-list .text.-q6 .data p small {
  font-size: 16px;
}
.data-box .data-list .text.-q6 .data.-d01 {
  position: absolute;
  top: 40px;
  right: -70px;
  bottom: auto;
  left: auto;
}
.data-box .data-list .text.-q6 .data.-d01 b {
  font-size: 50px;
}
.data-box .data-list .text.-q6 .data.-d02 {
  position: absolute;
  top: auto;
  right: 115px;
  bottom: -10px;
  left: auto;
}
.data-box .data-list .text.-q6 .data.-d03 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 110px;
  left: -80px;
  white-space: nowrap;
}
.data-box .data-list .text.-q6 .data.-d04 {
  position: absolute;
  top: 30px;
  right: auto;
  bottom: auto;
  left: -20px;
}
.data-box .data-list .text.-q6 .data.-d04 b {
  font-size: 24px;
}
.data-box .data-list .text.-q6 .data.-d04 span {
  font-size: 16px;
}
.data-box .data-list .text.-q6 .data.-d04 p {
  font-size: 21px;
}
.data-box .data-list .text.-q7 {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: auto;
  margin-bottom: 0px;
  width: 270px;
  height: 270px;
  z-index: 2;
}
.data-box .data-list .text.-q7 .data {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-shadow: #fff 2px 0px 0px, #fff -2px 0px 0px, #fff 0px -2px 0px, #fff 0px 2px 0px, #fff 2px 2px 0px, #fff -2px 2px 0px, #fff 2px -2px 0px, #fff -2px -2px 0px, #fff 1px 2px 0px, #fff -1px 2px 0px, #fff 1px -2px 0px, #fff -1px -2px 0px, #fff 2px 1px 0px, #fff -2px 1px 0px, #fff 2px -1px 0px, #fff -2px -1px 0px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #333;
  font-size: 21px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.data-box .data-list .text.-q7 .data b {
  color: #ed6b92;
  font-weight: normal;
  font-size: 40px;
}
.data-box .data-list .text.-q7 .data span {
  font-size: 21px;
}
.data-box .data-list .text.-q7 .data p {
  font-size: 30px;
  text-align: center;
  width: 100%;
}
.data-box .data-list .text.-q7 .data p small {
  font-size: 16px;
}
.data-box .data-list .text.-q7 .data.-d01 {
  position: absolute;
  top: 90px;
  right: -45px;
  bottom: auto;
  left: auto;
}
.data-box .data-list .text.-q7 .data.-d01 b {
  font-size: 60px;
}
.data-box .data-list .text.-q7 .data.-d02 {
  position: absolute;
  top: 90px;
  right: auto;
  bottom: auto;
  left: -45px;
}
.data-box .data-list .text.-q7 .data.-d02 b {
  font-size: 60px;
}
.data-box .data-list .text.-q8 {
  margin-bottom: 0px;
}
.data-box .data-list .text.-q8 .lunch-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.data-box .data-list .text.-q8 .lunch-box .graph {
  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: rgb(139, 90, 85);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0px;
  position: relative;
  height: 100%;
}
.data-box .data-list .text.-q8 .lunch-box .graph .title {
  color: #fff;
  width: 100%;
}
.data-box .data-list .text.-q8 .lunch-box .graph .image {
  position: absolute;
  top: 110px;
  right: auto;
  bottom: auto;
  left: auto;
  text-align: center;
  opacity: 0.8;
}
.data-box .data-list .text.-q8 .lunch-box .graph .image img {
  width: 50%;
}
.data-box .data-list .text.-q8 .lunch-box .graph .data {
  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;
  color: #fff;
}
.data-box .data-list .text.-q8 .lunch-box .graph .data span {
  color: #fff;
  font-size: 18px;
}
.data-box .data-list .text.-q8 .lunch-box .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;
  font-size: 18px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.data-box .data-list .text.-q8 .lunch-box li:first-child {
  width: 40%;
  height: 250px;
}
.data-box .data-list .text.-q8 .lunch-box li:first-child .image img {
  width: 40%;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(n+2) {
  width: 20%;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(n+2) .graph {
  background: rgb(151, 123, 109);
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(n+2) .data {
  font-size: 24px;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(n+2) .image {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 50px;
  left: auto;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(3) .graph {
  background: #B08F80;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.data-box .data-list .text.-q8 .lunch-box li:nth-child(4) .graph {
  background: #C8A391;
}
.data-box .data-list .text > span {
  font-size: 30px;
  padding-top: 20px;
}
.data-box .data-list .image {
  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;
  position: relative;
  z-index: 0;
}
.data-box .data-list .image img {
  width: 270px;
}
.data-box .data-list .image img.sm {
  width: 150px;
}
.data-box .data-list .image .q2 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 50px;
}
.data-box .data-list .image .q6g {
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
.data-box .data-list .image .q7 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 70px;
}
.data-box .data-list .image .q7g {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.data-box .data-list .image.-q4 img {
  width: 100%;
}
.data-box .data-title {
  font-size: 36px;
  text-align: center;
  line-height: 1;
  margin-bottom: 50px;
  width: 100%;
}
.data-box .data-text {
  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;
  width: 50%;
}

@media screen and (max-width: 480px) {
  .article-box {
    margin-bottom: 60px;
  }
  .article-box p img {
    max-width: 100%;
    height: auto;
  }
  .article-box iframe {
    width: 100%;
  }
  .article-box img {
    max-width: 100%;
    height: auto;
  }
  .outer-box {
    padding: 30px;
  }
  .outer-box.-wide .bx-wrapper {
    max-width: 100% !important;
  }
  .sche-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sche-box .title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .sche-box .ital {
    top: -30px;
    font-size: 40px;
  }
  .sche-box .timeline:before {
    right: auto;
    left: 33px;
  }
  .sche-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .sche-item div:nth-child(odd) {
    margin-right: 30px;
    margin-left: 70px;
    text-align: left;
  }
  .sche-item div:nth-child(odd).image {
    margin-bottom: 10px;
  }
  .sche-item div:nth-child(even) {
    margin-left: 70px;
  }
  .sche-item div:nth-child(even) .time:before {
    left: -55px;
  }
  .sche-item div:nth-child(even) .time:after {
    left: -47px;
  }
  .sche-item div:nth-child(even).image {
    margin-top: 10px;
  }
  .sche-item .image {
    margin-right: 30px;
    width: calc(100% - 100px);
  }
  .sche-item .text {
    width: 100%;
  }
  .sche-item .text .time:before {
    right: auto;
    left: -55px;
  }
  .sche-item .text .time:after {
    right: auto;
    left: -47px;
  }
  .sche-item .text .lead {
    font-size: 14px;
  }
  .sche-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sche-list li {
    margin-left: 30px;
  }
  .staff-box .staff-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .staff-box .staff-inner .image {
    width: 100%;
  }
  .staff-box .staff-inner .text {
    padding-top: 30px;
    padding-left: 20px;
    padding-bottom: 30px;
    width: 100%;
  }
  .staff-box .staff-inner .text .ital {
    font-size: 50px;
    top: -100px;
    left: 0px;
  }
  .staff-box .staff-inner .text .post {
    margin-bottom: 20px;
    padding: 10px 20px;
  }
  .staff-box .staff-inner .text .length {
    margin-bottom: 0px;
  }
  .staff-box .staff-inner .text .name {
    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;
  }
  .staff-box .staff-inner .text .name .en {
    margin-left: 20px;
  }
  .qa-box {
    min-width: 100%;
    max-width: 100%;
  }
  .qa-box .qa-list li.list {
    padding: 30px 30px;
    margin-bottom: 40px;
    width: auto;
  }
  .qa-box .qa-list li.image.-right img {
    position: static;
    vertical-align: top;
    content: initial;
  }
  .qa-box .qa-list li.image img {
    position: static;
    vertical-align: top;
    content: initial;
  }
  .qa-box .qa-list li .ques {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .qa-box .qa-list li .ques span {
    position: absolute;
    top: -15px;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .qa-box .qa-list li .ans {
    font-size: 13px;
  }
  .data-box .data-list {
    margin-right: 0px;
    padding: 30px;
    min-width: calc(100% - 60px);
    width: calc(100% - 60px);
  }
  .data-box .data-list.-pointer {
    background: #fff url(../img/common/icon/tap.svg) no-repeat right 10px bottom 10px/30px;
  }
  .data-box .data-list > .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .data-box .data-list .ital {
    font-size: 40px;
  }
  .data-box .data-list .text {
    margin-bottom: 40px;
  }
  .data-box .data-list .text.-q2 {
    width: 250px;
    height: 250px;
  }
  .data-box .data-list .text.-q2 .data b {
    font-size: 32px;
  }
  .data-box .data-list .text.-q2 .data p {
    font-size: 24px;
  }
  .data-box .data-list .text.-q4 .data {
    letter-spacing: 0;
  }
  .data-box .data-list .text.-q4 .data .title {
    font-size: 12px;
  }
  .data-box .data-list .text.-q5 .commute-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .data-box .data-list .text.-q5 .commute-box li:first-child {
    width: 100%;
  }
  .data-box .data-list .text.-q5 .commute-box li .circle {
    margin: 0 auto 15px;
  }
  .data-box .data-list .text.-q5 .commute-box li .title {
    margin-bottom: 0px;
  }
  .data-box .data-list .text.-q6 .data b {
    font-size: 32px;
  }
  .data-box .data-list .text.-q6 .data p {
    font-size: 24px;
  }
  .data-box .data-list .text.-q6 .data.-d01 {
    top: 10px;
    right: -50px;
  }
  .data-box .data-list .text.-q6 .data.-d02 {
    right: 125px;
    bottom: 10px;
  }
  .data-box .data-list .text.-q6 .data.-d03 {
    bottom: 120px;
    left: -60px;
  }
  .data-box .data-list .text.-q8 {
    margin-bottom: inherit;
  }
  .data-box .data-list .text .data {
    font-size: 60px;
  }
  .data-box .data-list .image img {
    width: 250px;
  }
  .data-box .data-list .image img.sm {
    width: 100px;
  }
  .test-box {
    padding: 50px 30px;
    width: auto;
  }
  .test-box .title {
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .test-box .title span {
    font-size: 18px;
    display: inline;
  }
  .test-box .title.-result {
    font-size: 21px;
  }
  .test-box .title.-result span {
    font-size: 26px;
  }
  .test-box .text {
    font-size: 14px;
  }
  .test-box .choice {
    margin-bottom: 70px;
  }
  .test-box .ital {
    font-size: 52px;
    left: -20px;
  }
}
.btn-box {
  padding: 40px 0px;
  text-align: center;
}
.btn-box.-flex {
  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;
}
.btn-box.-flex > .btn {
  width: 30%;
}
.btn-box.-center {
  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;
}
.btn-box.-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.btn-box.-around > .btn {
  width: 30%;
}
.btn-box.-none {
  padding: 0;
}
.btn-box > a.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-box > a:hover.btn {
  text-decoration: none;
}
.btn-box > .btn {
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  width: 500px;
  height: 80px;
}
.btn-box > .btn a {
  display: block;
}
.btn-box > .btn.-light {
  font-size: 0.9em;
  line-height: 2.2;
  padding: 0.5em 3em;
  height: auto;
}
.btn-box > .btn.-auto {
  width: auto;
}
.btn-box > .btn.-medium {
  width: 60%;
  height: auto;
}
.btn-box > .btn.-short {
  width: 30%;
  height: auto;
}
.btn-box > .btn.-arrow {
  position: relative;
}
.btn-box > .btn.-arrow:after {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
.btn-box > .btn.-submit {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #ed6b92;
  border: none;
  color: #fff;
}
.btn-box > .btn.-submit:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #f082a3;
}
.btn-box > .btn.-prev {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #ddd;
  border: none;
  color: #333;
}
.btn-box > .btn.-prev:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #eaeaea;
}
.btn-box > .btn.-action {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: rgb(139, 90, 85);
  border: none;
  color: #fff;
}
.btn-box > .btn.-action:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #9b645f;
}
.btn-box > .btn.-link {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: rgb(151, 123, 109);
  border: none;
  color: #fff;
  padding: 0.5em;
  width: calc(300px - 1em);
  height: auto;
}
.btn-box > .btn.-link:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #a2887c;
}

.btn-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 20px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-link li {
  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;
  width: 100%;
}
.btn-link li:first-child .btn {
  background: #eee;
  color: rgb(151, 123, 109);
}
.btn-link li:first-child {
  margin-left: 0px;
}
.btn-link li a {
  display: block;
}
.btn-link.-col {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.btn-link.-result {
  margin-bottom: 50px;
}
.btn-link.-result li:first-child .btn {
  background: rgb(151, 123, 109);
  color: #fff;
}
.btn-link.-result li:first-child .btn:hover {
  background: #eee;
  color: rgb(151, 123, 109);
}
.btn-link.-result .btn {
  width: 80%;
}
.btn-link.-contact {
  margin-bottom: 30px;
}
.btn-link.-contact li:first-child a {
  background: #ed6b92 url(../img/common/icon/blank_w.png) no-repeat 95% 50%/10px;
  color: #fff;
}
.btn-link.-contact li:first-child a:hover {
  background: #eee url(../img/common/icon/blank.png) no-repeat 95% 50%/10px;
  color: #ed6b92;
}
.btn-link.-contact a {
  background: #ed6b92 url(../img/common/icon/blank_w.png) no-repeat 95% 50%/10px;
}
.btn-link.-contact a:hover {
  background: #eee url(../img/common/icon/blank.png) no-repeat 95% 50%/10px;
  color: #ed6b92;
}
.btn-link.-info {
  margin-top: 40px;
}
.btn-link.-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.btn-link.-info li {
  margin-right: 20px;
}
.btn-link.-info li:last-child {
  margin-right: 0px;
}
.btn-link.-info li a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
  background: #666;
  border: none;
  color: #fff;
  font-size: 13px;
  padding: 0.3em 1.6em;
}
.btn-link.-info li a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #8c8c8c;
  color: #fff;
  text-decoration: none;
}
.btn-link .btn {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
  background: rgb(151, 123, 109);
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  padding: 1em 0px;
  text-align: center;
  width: 300px;
}
.btn-link .btn:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #eee;
  color: rgb(151, 123, 109);
  text-decoration: none;
}
.btn-link .btn.-t02 {
  background: #aaa;
  border: none;
  font-size: 14px;
}
.btn-link .btn.-t02:hover {
  background: #ddd;
  border: none;
}
.btn-link .btn.-lg {
  padding: 0.3em 0.5em;
  width: 100%;
}

.btn-list li {
  margin-top: 2%;
  width: 100%;
}
.btn-list.-sp02 li {
  width: 49%;
  margin-right: 2%;
}
.btn-list.-sp02 li:nth-child(2n) {
  margin-right: 0;
}
.btn-list.-sp03 li {
  width: 32%;
  margin-right: 2%;
}
.btn-list.-sp03 li:nth-child(3n) {
  margin-right: 0;
}

.btn-list.-t01 {
  margin: 0 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btn-list.-t01 li a {
  background: #ddd;
  display: block;
  padding: 15px 0px;
  position: relative;
  text-align: center;
}
.btn-list.-t01 li a:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #ed6b92;
  border-right: 2px solid #ed6b92;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btn-list.-t01 li a:hover {
  background: #f2f2f2;
  color: #ed6b92;
}
.btn-list.-t01 li.-pdf a {
  background: #f2f2f2 url(../img2/common/icon/icon_pdf.png) no-repeat right 10px top 10px !important;
}
.btn-list.-t01 li.-pdf a:before, .btn-list.-t01 li.-pdf a:after {
  display: none;
}

.btn-list.-t02 {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.btn-list.-t02 li a {
  background: #ed6b92;
  display: block;
  color: #fff;
  font-size: 16px;
  text-align: center;
  opacity: 1 !important;
  padding: 20px 50px 20px 50px;
  position: relative;
  line-height: 1.5;
}
.btn-list.-t02 li a:hover {
  background: #f2f2f2;
  color: #ed6b92;
}
.btn-list.-t02 li a:hover:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #ed6b92;
  border-right: 2px solid #ed6b92;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btn-list.-t02 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;
}
.btn-list.-t02 li:before {
  display: none;
}

.btn-list.-t03 {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.btn-list.-t03 li a {
  background: #ed6b92;
  display: block;
  color: #fff;
  font-size: 16px;
  text-align: center;
  opacity: 1 !important;
  padding: 20px 50px 20px 50px;
  position: relative;
  line-height: 1.5;
}
.btn-list.-t03 li a:hover {
  background: #f2f2f2;
  color: #ed6b92;
}
.btn-list.-t03 li a:hover:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #ed6b92;
  border-right: 2px solid #ed6b92;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btn-list.-t03 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;
}
.btn-list.-t03 li:before {
  display: none;
}

.btn-list.-t04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  overflow: hidden;
  padding: 0;
}
.btn-list.-t04 li a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #ccc;
  font-size: 14px;
  line-height: 1.5rem;
  display: block;
  padding: 15px 15px 15px 40px;
  font-weight: 500;
  position: relative;
}
.btn-list.-t04 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 #ed6b92;
  border-right: 2px solid #ed6b92;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btn-list.-t04 li a:hover {
  color: #ed6b92;
  padding-left: 50px;
}
.btn-list.-t04 li a:hover:before {
  position: absolute;
  top: calc(50% - 4px);
  right: auto;
  bottom: auto;
  left: 20px;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  border-top: 2px solid #ed6b92;
  border-right: 2px solid #ed6b92;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.btn-list.-t04 li.-pdf a {
  background: url(../img2/common/icon/icon_pdf.png) no-repeat 15px 12px/21px !important;
  padding-left: 43px;
}
.btn-list.-t04 li.-pdf a:hover {
  background: #f2f2f2 url(../img2/common/icon/icon_pdf.png) no-repeat 15px 12px/21px !important;
}

@media screen and (max-width: 480px) {
  .btn-box > .btn {
    font-size: 14px;
    width: 48%;
  }
  .btn-link.-col {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .btn-link.-contact {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .btn-link.-result {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .btn-link.-result li {
    margin-bottom: 10px;
  }
  .btn-link.-result li:first-child {
    margin-top: 0px;
  }
  .btn-link li:first-child {
    margin-top: 20px;
  }
}
/*------------------------------------------------

   subtitle

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

.subtitle-01 {
  color: #ed6b92;
  font-size: 42px;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 80px;
  line-height: 1.3;
  text-align: center;
}

.subtitle-02 {
  font-size: 30px;
  line-height: 1;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 10px 0 15px 0px;
  position: relative;
  border-bottom: 1px solid #ed6b92;
}
.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 {
  font-size: 16px;
  display: inline-block;
}

.subtitle-03 {
  background: -webkit-gradient(linear, left top, right top, from(#f6e1dc), to(#f6e1dc));
  background: linear-gradient(90deg, #f6e1dc, #f6e1dc);
  color: #333;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 20px 10px 20px 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 {
  font-size: 21px;
  margin-top: 35px;
  margin-bottom: 10px;
  padding: 10px;
  line-height: 1.4;
}

.subtitle-05 {
  color: #ed6b92;
  font-size: 21px;
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.subtitle-06 {
  font-size: 18px;
  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;
}

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

	   list

------------------------------------------------*/
.article-box ul:not([class]) {
  margin-top: 10px;
}
.article-box ul:not([class]) a {
  color: #ed6b92;
}
.article-box ul:not([class]) a:hover {
  text-decoration: underline;
}
.article-box ul:not([class]) li {
  font-size: 15px;
  padding-left: 28px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
}
.article-box ul:not([class]) li:before {
  position: absolute;
  top: 10px;
  right: auto;
  bottom: auto;
  left: 8px;
  border-width: 4px;
  border-radius: 50%;
  border-style: solid;
  border-color: #ed6b92;
  content: "";
}
.article-box ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.article-box ol > li {
  padding-left: 8px;
}
.article-box ol > li:before {
  display: none;
}
.article-box .pdf {
  background: url(../img/common/icon/icon_pdf.png) no-repeat 0 1px/21px !important;
}
.article-box .pdf:before {
  display: none;
}
.article-box .xls {
  background: url(../img/common/icon/icon_xls.png) no-repeat 0 1px/21px !important;
}
.article-box .xls:before {
  display: none;
}
.article-box .doc {
  background: url(../img/common/icon/icon_doc.png) no-repeat 0 1px/21px !important;
}
.article-box .doc:before {
  display: none;
}
.article-box .red {
  color: #dd0000;
}
.article-box .blue {
  color: #0080cc;
}
.article-box .green {
  color: #00aa66;
}
.article-box .strong {
  font-weight: 700;
}
.article-box .underline {
  text-decoration: underline;
}
.article-box hr {
  border: 0.5px solid #ddd;
}

.btnlist-01 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.btnlist-01 li {
  margin: 0 auto 2%;
  padding-left: 0px;
  width: 50%;
}
.btnlist-01 li:before {
  display: none;
}
.btnlist-01 li a {
  background: rgb(151, 123, 109);
  color: #fff;
  display: block;
  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: rgb(151, 123, 109);
}
.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 rgb(151, 123, 109);
  border-right: 2px solid rgb(151, 123, 109);
  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: rgb(151, 123, 109);
  color: #fff;
  display: block;
  font-size: 15px;
  padding: 30px 40px 30px 30px;
  position: relative;
  line-height: 1.4;
}
.btnlist-02 li a:hover {
  background: #f2f2f2;
  color: rgb(151, 123, 109);
}
.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 rgb(139, 90, 85);
  border-right: 2px solid rgb(139, 90, 85);
  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.-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btnlist-03 li {
  margin-right: 2%;
  margin-bottom: 2%;
  padding-left: 0px;
  width: 32%;
}
.btnlist-03 li:nth-child(3n) {
  margin-right: 0;
}
.btnlist-03 li a {
  background: rgb(151, 123, 109);
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 25px 40px 25px 30px;
  position: relative;
  line-height: 1.1;
}
.btnlist-03 li a:hover {
  background: #f2f2f2;
  color: rgb(151, 123, 109);
}
.btnlist-03 li a:hover:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid rgb(151, 123, 109);
  border-right: 2px solid rgb(151, 123, 109);
  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: 2%;
  padding-left: 0px;
}
.btnlist-04 li.pdf {
  background: url(../img/common/icon/icon_pdf.png) 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.png) 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.png) 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;
  font-size: 13px;
  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 #ed6b92;
  border-right: 2px solid #ed6b92;
  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 #ed6b92;
  color: #ed6b92;
}
.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 #ed6b92;
  border-right: 2px solid #ed6b92;
  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.png) no-repeat 15px 12px/21px !important;
  padding-left: 43px;
}
.btnlist-04 li.-pdf a:hover {
  background: #f2f2f2 url(../img/common/icon/icon_pdf.png) 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 {
  font-size: 15px;
  padding-left: 28px;
  margin-right: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  line-height: 1;
}
.flex-list li a {
  color: #ed6b92;
}
.flex-list li a:hover {
  text-decoration: underline;
}
.flex-list li:before {
  position: absolute;
  top: 0.2em;
  right: auto;
  bottom: auto;
  left: 8px;
  border-width: 4px;
  border-radius: 50%;
  border-style: solid;
  border-color: #ed6b92;
  content: "";
}

.col-02 {
  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: 15px auto;
}
.col-02 > li {
  margin-bottom: 10px;
  padding: 0;
  width: calc(50% - 10px);
}
.col-02 > li:before {
  display: none;
}

.col-03 {
  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: 15px auto;
}
.col-03 > li {
  margin-bottom: 10px;
  padding: 0;
  width: calc((100% - 40px) / 3);
}
.col-03 > li:before {
  display: none;
}

@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: #ed6b92;
  }
  .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: 14px;
  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: #ed6b92;
  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: 15px;
  margin-top: 10px;
  width: 100%;
}
.table-gray th,
.table-blue th,
.table-red th,
.table-list th,
.table-none th {
  background: #f2f2f2;
  font-weight: 700;
  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 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:before,
.table-blue li:before,
.table-red li:before,
.table-list li:before,
.table-none li:before {
  top: 7px;
}

.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 img,
.table-imgr img {
  margin-bottom: 10px;
  vertical-align: top;
}
.table-imgl td,
.table-imgr td {
  vertical-align: top;
}
.table-imgl td:first-child,
.table-imgr td:first-child {
  padding-right: 30px;
}
.table-imgl td:last-child,
.table-imgr td:last-child {
  width: 100%;
}
.table-imgl td:last-child p:first-child,
.table-imgr td:last-child p:first-child {
  margin-top: 0px;
}
.table-imgl td img,
.table-imgr td img {
  max-width: 480px;
  height: auto;
}
.table-imgl img + p,
.table-imgr img + p {
  font-size: 12px;
  text-align: center;
  margin-top: 0px;
  line-height: 1.2;
  max-width: 98%;
}

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

.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;
}
.table-img td img {
  max-width: 96%;
  height: auto;
}
.table-img img + p {
  font-size: 12px;
  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;
}
.table-img2 td {
  width: 50%;
  padding-bottom: 2%;
  text-align: center;
}
.table-img2 td img {
  vertical-align: top;
}
.table-img2 td img {
  max-width: 96%;
  height: auto !important;
}
.table-img2 td > img + p {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
  max-width: 96%;
}
.table-img2 td > p + p {
  font-size: 12px;
  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;
}
.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 {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
  max-width: 98%;
}

.table-staff {
  border: none;
  width: 100%;
}
.table-staff td:first-child {
  padding-right: 0px;
}
.table-staff td:first-child img {
  width: 200px;
  height: auto;
}
.table-staff td:first-child + td:last-child {
  width: 100%;
}
.table-staff td:last-child {
  padding-left: 30px;
  vertical-align: top;
}
.table-staff td:last-child img {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 480px) {
  .subtitle-01 {
    font-size: 30px;
    margin-bottom: 40px;
    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: 10px;
  }
  .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 {
    font-size: 13px;
  }
  .table-gray iframe,
  .table-blue iframe,
  .table-red iframe,
  .table-list iframe,
  .table-none iframe {
    width: 100%;
  }
  .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 {
    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 {
    display: table-cell !important;
    width: auto;
  }
  .table-imgr td.td_img img {
    margin: 10px auto 0px;
  }
  .table-sp {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .table-sp table {
    width: 700px !important;
  }
  .table-sp table td {
    padding: 5px 10px !important;
  }
  .table-list td:nth-child(1) {
    background: #f2f2f2;
  }
  .table-list td {
    border-top: none;
    border-bottom: 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%;
  }
  .btnlist-01 li {
    width: 100%;
  }
  .btnlist-01 li a {
    padding: 30px 35px 30px 30px;
  }
  .btnlist-02 li {
    margin-right: 0%;
    width: 100%;
  }
  .btnlist-02 li a {
    padding: 30px 35px 30px 30px;
    font-size: 14px;
  }
  .btnlist-03 li {
    margin-right: 0;
    width: 100%;
  }
  .btnlist-03 li a {
    padding: 25px 35px 25px 30px;
    line-height: 1.4;
  }
  .btnlist-04 li a {
    line-height: 1.3;
  }
  .col-02 > li {
    width: 100%;
  }
  .article-box ul:not([class]) li {
    font-size: 15px;
    line-height: 1.7;
  }
  .article-box ul:not([class]) li:before {
    top: 0.45em;
  }
}
.content-block.-grad {
  background: -webkit-gradient(linear, left bottom, left top, from(#feebf1), to(#eee));
  background: linear-gradient(0deg, #feebf1, #eee);
}
.content-block.-blue {
  background: #f4f9fa;
}
.content-block.-wblue {
  background: #f4f9fa;
  padding: 40px 0px;
}
.content-block.-gray {
  background: #eee;
}
.content-block.-recruit {
  position: relative;
}
.content-block.-recruit:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 80px;
  left: auto;
  background: #f6e1dc;
  content: "";
  width: 100%;
  height: 350px;
}
.content-block.-interview {
  -webkit-animation: slider linear infinite 60s;
          animation: slider linear infinite 60s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: url(../img/index/interview_bg.jpg) repeat-x scroll 50% 50%;
  backface-visibility: hidden;
  overflow: hidden;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  margin-top: 50px;
}
.content-block.-interview:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  content: "";
  background: rgba(58, 36, 36, 0.3);
  width: 100%;
  height: 100%;
}
@-webkit-keyframes slider {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -3840px;
  }
}
@keyframes slider {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -3840px;
  }
}
.content-block.-feature {
  position: relative;
}
.content-block.-feature:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 110px;
  left: auto;
  background: #f6e1dc;
  content: "";
  width: 100%;
  height: 500px;
}
.content-block.-summary {
  position: relative;
  margin-bottom: 100px;
  margin-top: 100px;
}
.content-block.-summary:before {
  position: absolute;
  top: 262px;
  right: auto;
  bottom: auto;
  left: auto;
  background: #f6e1dc;
  content: "";
  width: calc(50% - 75px);
  height: 45%;
}
.content-block.-summary:after {
  position: absolute;
  top: auto;
  right: 0px;
  bottom: 0px;
  left: auto;
  background: #f6e1dc;
  content: "";
  width: calc(50% - 75px);
  height: 45%;
  z-index: 0;
}
.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: "EB Garamond";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 115px;
}

.content-inner {
  margin: 0 auto;
  position: relative;
  min-width: 1260px;
  max-width: 1500px;
  z-index: 1;
}
.content-inner .red {
  color: #e71220;
}
.content-inner .memo a {
  text-decoration: underline;
}
.content-inner .memo a:hover {
  text-decoration: none;
}
.content-inner .note {
  font-size: 13px;
  margin-top: 10px;
}

.content-col {
  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;
}
.content-col > .col {
  margin-left: 30px;
}
.content-col > .col.-inner {
  width: 830px;
  margin-left: 0px;
}
.content-col > .col.-blog {
  width: 300px;
}

.content-box {
  padding: 50px 100px;
  width: calc(1100px - 100px * 2);
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.content-box > .text {
  padding: 20px 0px;
}
.content-box > .banner {
  text-align: center;
}

.content-area {
  background: none;
  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%;
}

.msg-box {
  background: none repeat scroll 0 0 #ffffff;
  /* border-radius: 5px; */
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  display: none;
  overflow-y: scroll;
  padding: 60px;
  width: 900px;
  height: 45vh;
}

.msg-box p {
  margin-top: 10px;
}

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

.msg-box.-md {
  height: 50vh;
}

.msg-box.-sm {
  height: 40vh;
}

.modal-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: #eee;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-y: scroll;
  top: calc(50% - 20vh) !important;
  text-align: center;
  padding-top: 80px;
  left: 0 !important;
  margin-left: 0 !important;
  width: 100%;
  height: 40vh;
  min-height: 370px;
}

.modal-box.-index {
  top: calc(50% - 37.5vh) !important;
  height: 75vh;
}

.modal-box.-index .check {
  margin-top: 0px;
  margin-bottom: 30px;
}

.modal-box > .check {
  font-size: 24px;
  margin-top: 30px;
}

#lean_overlay {
  position: fixed;
  z-index: 10000;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  display: none;
  background: #000;
}

@media screen and (max-width: 480px) {
  .content-block.-recruit:before {
    bottom: 18px;
    height: 130px;
  }
  .content-block.-feature:before {
    bottom: 20vh;
    height: 60vh;
  }
  .content-block.-summary:before {
    top: 300px;
    width: 90%;
  }
  .content-block.-summary {
    margin-bottom: 50px;
    margin-top: 40px;
  }
  .content-block.-summary:after {
    bottom: 30px;
    width: 90%;
  }
  .content-block.-interview {
    margin-top: 0px;
  }
  .content-inner.-interview {
    padding-bottom: 20px;
  }
  .content-inner {
    padding: 0px 0px 50px;
    min-width: 96%;
    /*width: calc(100% - 4%);*/
    max-width: 100%;
  }
  .content-inner.-index {
    padding: 0px;
    min-width: 96%;
    width: 96%;
  }
  .content-inner.-accord {
    width: 100%;
  }
}
.form-box {
  position: relative;
}
.form-box ::-webkit-input-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-box ::-moz-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-box :-ms-input-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-box ::-ms-input-placeholder {
  color: #bbb;
  opacity: 1;
}
.form-box ::placeholder {
  color: #bbb;
  opacity: 1;
}
.form-box dl {
  border-bottom: none;
}
.form-box dl dt > .req {
  position: absolute;
  top: 28px;
  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;
}
.form-box dl dd > .btn {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  cursor: pointer;
  background: #666;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  padding: 0.3em 1.6em;
  margin-left: 10px;
}
.form-box dl dd > .btn:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #ddd;
  color: #000;
}
.form-box.-contact {
  background: #f2f2f2;
  padding: 50px;
}
.form-box.-contact .inner {
  margin: 0px auto 50px;
  padding: 50px 100px;
  background: #fff;
  width: 1000px;
}
.form-box .privacy {
  margin: 50px auto 0px;
  text-align: center;
}
.form-box .caption {
  color: #ed6b92;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 70px;
}
.form-box .msg {
  font-size: 15px;
  margin-bottom: 30px;
}
.form-box .memo {
  font-size: 13px;
  padding: 10px 0px;
}
.form-box .error {
  color: #ed6b92;
  font-size: 13px;
  text-align: left;
  padding-top: 5px;
}
.form-box .field, .form-box .search {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #555;
  font-family: inherit;
  font-size: 15px;
  padding: 8px;
}
.form-box .field:focus, .form-box .search:focus {
  background: #fff;
  border: 1px solid #ed6b92;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  outline: 0;
}
.form-box .search {
  background: #fff;
  font-size: 18px;
  padding: 20px;
  position: relative;
  width: 808px;
}
.form-box .loupe {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: auto;
  left: auto;
  background: url(../img/common/icon/loupe.png) no-repeat 0 0/32px;
  border: none;
  content: "";
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 1;
}
.form-box .textarea {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #555;
  font-family: inherit;
  font-size: 15px;
  padding: 0.8em;
}
.form-box .ui-datepicker-trigger {
  margin-left: 10px;
}
.form-box .-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form-box .-lg {
  width: calc(100% - 1.6em - 2px);
}
.form-box .-md {
  width: 60%;
}
.form-box .-sm {
  width: 30%;
}
.form-box .-xs {
  width: 10%;
}

.radio-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.radio-box li {
  margin: 0px;
  padding-left: 0px !important;
}
.radio-box li:before {
  display: none;
}
.radio-box .label {
  cursor: pointer;
  font-size: 14px;
  position: relative;
  margin-right: 30px;
  padding-top: 3px;
  padding-left: 30px;
}
.radio-box .label.-last {
  margin-right: 0px;
}
.radio-box .label:before {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: 0px;
  content: "";
  display: block;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 22px;
  height: 22px;
}
.radio-box .label:after {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  position: absolute;
  top: 5px;
  right: auto;
  bottom: auto;
  left: 5px;
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #ed6b92;
  opacity: 0;
  width: 14px;
  height: 14px;
}
.radio-box .radioinput {
  display: none;
}
.radio-box .radioinput:checked + .label:before {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.radio-box .radioinput:checked + .label:after {
  opacity: 1;
}
.radio-box.-test li {
  margin-right: 30px;
}
.radio-box.-test li:last-child {
  margin-right: 0px;
}
.radio-box.-test label {
  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;
  padding-top: 0px;
  padding-left: 0px;
  margin-right: 0px;
  width: 180px;
  height: 42px;
}
.radio-box.-test label:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  color: #ed6b92;
}
.radio-box.-test label:before {
  left: calc(50% - 21px);
  width: 42px;
  height: 42px;
}
.radio-box.-test label:after {
  top: 7px;
  left: calc(50% - 14px);
  width: 30px;
  height: 30px;
}
.radio-box.-test label p {
  display: block;
  text-align: center;
  margin-top: 80px;
  width: 100%;
}

.check-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0;
  line-height: 0;
}
.check-box.-single {
  margin: 50px 0px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.check-box.-col3 li {
  width: 33.3333333333%;
}
.check-box.-col3 li:nth-child(-n+5) {
  margin-top: 10px;
}
.check-box.-col3 li:nth-child(-n+3) {
  margin-top: 0px;
}
.check-box.-col5 li {
  width: 20%;
}
.check-box.-col5 li:nth-child(-n+5) {
  margin-top: 0px;
}
.check-box li {
  margin-top: 10px;
}
.check-box li:nth-child(-n+5) {
  margin-top: 0px;
}
.check-box li.all {
  margin-bottom: 20px;
  width: 100%;
}
.check-box li.all .label {
  font-size: 15px;
  font-weight: 600;
}
.check-box .list {
  text-align: left;
  width: 20%;
}
.check-box .label {
  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;
  border-radius: 3px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  padding: 5px 10px 5px 34px;
}
.check-box .label:hover {
  color: #ed6b92;
}
.check-box .label.-last {
  margin-right: 0px;
}
.check-box .label:before {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: 0px;
  content: "";
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  display: block;
  width: 22px;
  height: 22px;
}
.check-box .label:after {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  position: absolute;
  top: 5px;
  right: auto;
  bottom: auto;
  left: 3px;
  content: "";
  background: url(../img/common/icon/icon_check.png) no-repeat 0 0/16px;
  display: block;
  opacity: 0;
  width: 16px;
  height: 17px;
}
.check-box .checkinput {
  display: none;
}
.check-box .checkinput:checked + .label {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.check-box .checkinput:checked + .label:before {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #ed6b92;
}
.check-box .checkinput:checked + .label:after {
  opacity: 1;
}

.select-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-size: 14px;
  position: relative;
}
.select-box > .select {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #555;
  cursor: pointer;
  font-family: "EB Garamond";
  font-size: 14px;
  padding: 0.2em 1.2em 0.2em 0.4em;
  line-height: 1.2;
  position: relative;
  margin-right: 3px;
}
.select-box > .select.-modal {
  padding: 0.6em 1.2em 0.6em 0.8em;
  width: 100%;
}
.select-box > .select.-modal:before {
  position: absolute;
  top: auto;
  right: 15px;
  bottom: auto;
  left: auto;
  top: calc(50% - 6px);
  border-top: 2px solid #ed6b92;
  border-right: 2px solid #ed6b92;
  content: "";
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  opacity: 1 !important;
  width: 6px;
  height: 6px;
}
.select-box > .select:focus {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  border: 1px solid #ed6b92;
}
.select-box > .select::-ms-expand {
  display: none;
}
.select-box > .select option {
  color: #333;
}
.select-box .sep {
  display: inline-block;
  padding-right: 3px;
}

.step-box {
  margin: 0 auto;
  width: 1260px;
}
.step-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.step-box 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;
  background: #aaa;
  border-radius: 50px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  padding: 10px 20px;
  margin-right: 20px;
  width: calc((100% - 40px) / 3 - 40px);
}
.step-box li.active {
  background: rgb(151, 123, 109);
  color: #fff;
}
.step-box li .step {
  font-size: 18px;
}
.step-box li .step span {
  font-size: 24px;
  padding-left: 5px;
}
.step-box li .title {
  font-size: 18px;
  text-align: center;
  width: calc(100% - 92px);
}

@media screen and (max-width: 480px) {
  .radio-box {
    margin-bottom: 10px;
  }
  .radio-box.-test {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
  }
  .radio-box.-test li {
    margin-right: 0px;
  }
  .radio-box.-test .label {
    width: auto;
  }
  .radio-box.-test .label p {
    font-size: 12px;
  }
  .radio-box .label {
    font-size: 13px;
  }
  .form-box dl dt > .req {
    font-size: 10px;
    top: 15px;
    right: 0;
  }
  .form-box.-contact {
    padding: 10px 10px 50px 10px;
  }
  .form-box.-contact .inner {
    padding: 20px;
    margin-bottom: 30px;
    width: calc(100% - 40px);
  }
  .form-box .privacy {
    font-size: 12px;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .form-box .-md {
    width: 80%;
  }
  .form-box .-sm {
    width: 60%;
  }
  .form-box .-xs {
    width: 30%;
  }
  .form-box .search {
    width: 100%;
  }
  .check-box li {
    margin-top: 0px;
  }
  .check-box.-col3 li {
    margin-bottom: 5px;
    width: 50%;
  }
  .check-box.-col3 li:nth-child(-n+5) {
    margin-top: 0px;
  }
  .check-box.-col5 li {
    margin-bottom: 5px;
    width: 50%;
  }
  .check-box .list {
    margin-bottom: 10px;
    width: 50%;
  }
  .check-box .label {
    font-size: 13px;
  }
  .step-box {
    width: 100%;
  }
  .step-box li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: 10px;
    width: 100%;
  }
  .step-box li .title {
    font-size: 14px;
    line-height: 1;
    margin: 5px 0px;
    width: 100%;
  }
  .step-box li .step {
    margin: 0 auto;
    font-size: 13px;
    line-height: 1;
  }
  .step-box li .step span {
    font-size: 18px;
  }
  .step-box li:last-child {
    margin-right: 0px;
  }
}
.info-box {
  position: relative;
  width: calc(100% - 220px);
}
.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-weight: 700;
  margin-right: 20px;
  width: 80px;
}
.info-box .date.-detail {
  margin-right: 20px;
}
.info-box .category {
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  margin-right: 20px;
  padding: 5px 0px;
  text-align: center;
  width: 140px;
}
.info-box .category.-cate01 {
  background: #ed6b92;
}
.info-box .category.-cate02 {
  background: #f1e7e2;
}
.info-box .category.-cate03 {
  background: rgb(139, 90, 85);
}
.info-box .category.-cate04 {
  background: rgb(151, 123, 109);
}
.info-box .category.-detail {
  margin-left: auto;
  margin-right: 0px;
}
.info-box > .title {
  border-bottom: 3px solid #ed6b92;
  color: #fff;
  font-family: "EB Garamond";
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 15px;
  line-height: 1;
}
.info-box > .title span {
  color: #aaa;
  font-family: "Allura";
  font-size: 14px;
  font-weight: initial;
  margin-left: 30px;
}
.info-box > .return {
  border: 1px solid #ccc;
  margin-top: 20px;
}
.info-box > .return a {
  color: #ed6b92;
  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: 15px;
  line-height: 1.2;
  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% - 260px);
}
.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: #ed6b92;
  color: #fff;
}
.pagebute-box .current_page {
  background: #ed6b92;
  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: #666;
  color: #fff;
}
.pagenav-box .prev, .pagenav-box .next {
  padding: 4px 15px;
}
.pagenav-box .current {
  background: #ed6b92;
  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;
}

@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%;
  }
}
.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 .img01:before,
.slider-inner .img02:before,
.slider-inner .img03:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  content: "";
}
.slider-inner .img01, .slider-inner .img03, .slider-inner .img02 {
  background: url(../img/index/main.jpg) no-repeat 50% 0%/cover;
  width: 100%;
  height: 850px;
}
.slider-inner .img02 {
  background: url(../img/index/main_02.jpg) no-repeat 50% 0%/cover;
}
.slider-inner .img03 {
  background: url(../img/index/main_03.jpg) no-repeat 50% 0%/cover;
}

.slider-info {
  margin: 0 auto;
  position: relative;
  width: 1260px;
}
.slider-info .info {
  position: absolute;
  top: 670px;
  right: auto;
  bottom: auto;
  left: 50px;
  background: 0 0 rgba(255, 255, 255, 0.9);
  font-size: 14px;
  -webkit-box-shadow: 0px 0px 30px rgba(246, 225, 220, 0.3);
          box-shadow: 0px 0px 30px rgba(246, 225, 220, 0.3);
  padding: 40px;
  width: 570px;
  height: 60px;
  z-index: 1000;
}

.slider-bnr {
  margin: 0 auto;
  position: relative;
  width: 1260px;
}
.slider-bnr .bnr {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  position: absolute;
  top: -170px;
  right: 0px;
  bottom: auto;
  left: auto;
  background: 0 0 rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 0px 30px rgba(246, 225, 220, 0.3);
          box-shadow: 0px 0px 30px rgba(246, 225, 220, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 360px;
  height: 141px;
  z-index: 1000;
}
.slider-bnr .bnr:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  opacity: 0.8;
}
.slider-bnr .bnr:first-child {
  right: 430px;
}
.slider-bnr .bnr:first-child:before {
  content: "Assistant";
}
.slider-bnr .bnr:before {
  position: absolute;
  top: -20px;
  right: auto;
  bottom: auto;
  left: -30px;
  color: #ed6b92;
  content: "Aptitude Test";
  font-family: "Allura";
  font-size: 32px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 0;
}
.slider-bnr .bnr:after {
  position: absolute;
  top: auto;
  right: 15px;
  bottom: 15px;
  left: auto;
  background: #ed6b92;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  width: 12px;
  height: 10px;
}
.slider-bnr .bnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #f6e1dc;
  font-size: 14px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 30px 10px 30px;
}
.slider-bnr .bnr .text .title {
  color: #ed6b92;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}
.slider-bnr .bnr .text p {
  font-size: 12px;
  letter-spacing: 2px;
}
.slider-bnr .bnr .btn {
  -ms-flex-item-align: center;
      align-self: center;
  background: #ed6b92;
  color: #fff;
  font-family: "EB Garamond";
  line-height: 1;
  padding: 10px 30px;
  text-align: center;
}

.emg-box {
  position: absolute;
  top: 315px;
  right: auto;
  bottom: auto;
  left: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #fff;
  -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);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 750px;
  height: 393px;
  z-index: 9;
}
.emg-box .title {
  background: #d34937;
  color: #fff;
  font-size: 21px;
  padding: 10px 20px;
}
.emg-box .text {
  font-size: 18px;
  padding: 20px;
}

.emg-cate {
  margin-top: auto;
}
.emg-cate li {
  border-bottom: 1px solid #ddd;
}
.emg-cate li:first-child {
  border-top: 1px solid #ddd;
}
.emg-cate li a {
  display: block;
  font-size: 18px;
  padding: 10px 20px;
  position: relative;
}
.emg-cate li a:before {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  bottom: auto;
  left: auto;
  content: "";
  border-top: 2px solid #ddd;
  border-right: 2px solid #ddd;
  display: block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.emg-cate li a:hover {
  background: #d34937;
  color: #fff;
}
.emg-cate li a:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 480px) {
  .slider-inner ul li img {
    width: 100%;
  }
  .slider-inner .img01, .slider-inner .img02, .slider-inner .img03 {
    min-height: 250px;
    height: 250px;
    width: 100%;
  }
  .slider-copy {
    width: 100%;
  }
  .slider-copy .copy {
    top: 70px;
    left: 20px;
    width: calc(100% - 40px);
  }
  .slider-copy .copy p {
    font-weight: 700;
    line-height: 1;
  }
  .slider-copy .copy p:nth-child(1) {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .slider-copy .copy p:nth-child(2) {
    font-family: "EB Garamond";
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
  .slider-copy .copy p:nth-child(3) {
    font-size: 15px;
    line-height: 1.5;
  }
  .slider-bnr {
    width: 100%;
  }
  .slider-bnr .bnr {
    position: relative;
    top: 0;
    width: calc(100% - 20px);
  }
  .slider-bnr .bnr:before {
    top: -30px;
    left: -10px;
  }
  .slider-bnr .bnr .text {
    margin-bottom: 10px;
  }
  .slider-bnr .bnr .text .title {
    text-align: center;
  }
  .slider-bnr .bnr .text p {
    text-align: center;
    margin-bottom: 10px;
  }
  .slider-bnr .bnr .btn {
    margin: 0 auto;
  }
  .slider-bnr .bnr a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 30px 20px 30px;
  }
  .slider-bnr .bnr a .text {
    width: 100%;
  }
  .emg-box {
    position: relative;
    top: auto;
    left: auto;
    margin: 0px auto 40px;
    width: 100%;
    height: auto;
  }
  .emg-box .title {
    font-size: 18px;
  }
  .emg-box .text {
    font-size: 15px;
  }
  .emg-cate li a {
    font-size: 15px;
  }
}
.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(58, 36, 36, 0.3);
  width: 100%;
  height: 100%;
}
.title-block.-common {
  background: url(../img/common/title/common.jpg) fixed no-repeat;
}
.title-block.-about {
  background: url(../img/common/title/about.jpg) fixed no-repeat;
}
.title-block.-education {
  background: url(../img/common/title/education.jpg) fixed no-repeat;
}
.title-block.-jobs, .title-block.-interview {
  background: url(../img/common/title/jobs.jpg) fixed no-repeat;
}
.title-block.-department {
  background: url(../img/common/title/department.jpg) fixed no-repeat;
}
.title-block.-recruit {
  background: url(../img/common/title/recruit.jpg) fixed no-repeat;
}

.title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1260px;
  height: 100%;
}
.title-inner > h1 {
  color: #fff;
  display: block;
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}
.title-inner > span {
  color: #fff;
  display: block;
  font-size: 42px;
  font-family: "Allura";
  text-align: center;
  text-shadow: 0 0 10px rgb(255, 255, 255);
  letter-spacing: 0.5px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .title-block {
    height: 120px;
  }
  .title-block.-common {
    background: url(../img/common/title/common.jpg) no-repeat 0 0/cover;
  }
  .title-block.-about {
    background: url(../img/common/title/about.jpg) no-repeat 0 0/cover;
  }
  .title-block.-jobs {
    background: url(../img/common/title/jobs.jpg) no-repeat 0 0/cover;
  }
  .title-inner {
    width: 100%;
  }
  .title-inner > h1 {
    font-size: 24px;
  }
  .title-inner > span {
    font-size: 18px;
  }
}
.topicpath-box {
  background: #f2f2f2;
  padding: 10px 10px;
  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;
  margin: 0 auto;
  width: 1500px;
}
.topicpath-box ul li {
  font-size: 13px;
  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: "";
}

.title-box + .topicpath-box {
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .topicpath-box ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}
.index-btn {
  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;
  padding: 50px 0px;
}
.index-btn li {
  width: calc((100% - 100px) / 3);
  max-width: 640px;
}
.index-btn li:nth-child(-n+3) {
  margin-bottom: 30px;
}
.index-btn a {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  background: #fff;
  -webkit-box-shadow: 0 5px 50px rgba(250, 124, 163, 0.15);
          box-shadow: 0 5px 50px rgba(250, 124, 163, 0.15);
  display: block;
  position: relative;
}
.index-btn a:hover {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-box-shadow: 0 5px 50px rgba(250, 124, 163, 0.25);
          box-shadow: 0 5px 50px rgba(250, 124, 163, 0.25);
}
.index-btn a:hover img {
  -webkit-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.index-btn a .image {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
.index-btn .image {
  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;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 180px;
}
.index-btn .image img {
  -webkit-transition: all 0.5s ease 0s !important;
  transition: all 0.5s ease 0s !important;
  margin: 0 auto;
  vertical-align: top;
}
.index-btn .title,
.index-btn .en {
  line-height: 1;
  text-align: center;
}
.index-btn .title {
  font-size: 24px;
  font-weight: 700;
}
.index-btn .en {
  color: #ed6b92;
  font-size: 21px;
  font-weight: 600;
  font-family: "EB Garamond";
  margin-top: 15px;
  padding-bottom: 30px;
}

.index-info:before {
  position: absolute;
  top: -50px;
  right: auto;
  bottom: auto;
  left: -50px;
  color: #ed6b92;
  content: "Information";
  font-family: "Allura";
  font-size: 60px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 0;
}
.index-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  position: relative;
  height: 100%;
  z-index: 1;
}
.index-info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.2px;
}
.index-info a .date {
  color: #666;
  margin-right: 20px;
}
.index-info a .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 477px;
}
.index-info a:hover .text {
  text-decoration: underline;
}
.index-info .archive a {
  background: #ed6b92;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  text-align: center;
  padding: 5px 20px;
  line-height: 1;
  margin: 20px auto 0px;
}
.index-info .archive a:hover {
  background: #f082a3;
}

.index-box > .title {
  padding-top: 100px;
  margin-bottom: 60px;
  text-align: center;
}
.index-box > .title p {
  color: #ed6b92;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 2;
}
.index-box > .title p.en {
  color: #888;
  font-family: "EB Garamond";
  font-size: 14px;
  padding-top: 40px;
}
.index-box > .text {
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: 2px;
}
.index-box.-summary .title {
  padding-top: 0px;
}

.recruit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  margin-bottom: 100px;
}
.recruit-box li {
  position: relative;
  width: 100%;
}
.recruit-box li a {
  -webkit-box-shadow: 0 0 30px rgba(139, 90, 85, 0.3);
          box-shadow: 0 0 30px rgba(139, 90, 85, 0.3);
  display: block;
  overflow: hidden;
}
.recruit-box .image:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background: rgba(246, 225, 220, 0.15);
  content: "";
  width: 100%;
  height: 100%;
}
.recruit-box .image img {
  vertical-align: top;
  width: 100%;
}
.recruit-box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: #666;
  padding: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 2px;
  line-height: 1;
}
.recruit-box .text > .title {
  background: url(../img/common/icon/blank.png) no-repeat right 50%/16px;
  font-size: 21px;
  padding-right: 25px;
}
.recruit-box .text > .en {
  font-family: "EB Garamond";
  font-size: 12px;
}
.recruit-box .ital {
  position: absolute;
  top: 20px;
  right: auto;
  bottom: auto;
  left: -20px;
  content: "";
  color: #ed6b92;
  font-family: "Allura";
  font-size: 40px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.interview-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  min-width: 1260px;
  max-width: 1500px;
}
.interview-box .interview-text {
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(139, 90, 85, 0.3);
          box-shadow: 0px 0px 30px rgba(139, 90, 85, 0.3);
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 120px;
  width: 450px;
  height: 420px;
}
.interview-box .interview-text .title {
  color: #ed6b92;
  font-size: 48px;
  margin-top: 60px;
  margin-bottom: 60px;
  line-height: 1;
}
.interview-box .interview-text .title > .en {
  color: #666;
  font-family: "EB Garamond";
  font-size: 12px;
  margin-top: 40px;
}
.interview-box .interview-text .text {
  margin-bottom: 20px;
}
.interview-box .interview-text .btn a {
  background: rgb(151, 123, 109);
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 15px 0px;
  width: 200px;
}

.interview-slide {
  position: relative;
  width: 700px;
  z-index: 0;
}
.interview-slide .img01, .interview-slide .img02, .interview-slide .img03 {
  width: 100%;
  height: 650px;
}
.interview-slide .img01, .interview-slide .slider-inner .img02, .slider-inner .interview-slide .img02, .interview-slide .slider-inner .img03, .slider-inner .interview-slide .img03 {
  background: url(../img/index/interview_img_01.png) no-repeat 50% 0px/cover;
}
.interview-slide .img02 {
  background: url(../img/index/interview_img_02.png) no-repeat 50% 0px/cover;
}
.interview-slide .img03 {
  background: url(../img/index/interview_img_03.png) no-repeat 50% 0px/cover;
}
.interview-slide .ital {
  position: absolute;
  top: 20px;
  right: auto;
  bottom: auto;
  left: 60px;
  content: "";
  color: #ed6b92;
  font-family: "Allura";
  font-size: 40px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 1;
}
.interview-slide .bx-viewport {
  z-index: 0;
}

.feature-box .feature-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0px 0px 30px rgba(139, 90, 85, 0.3);
          box-shadow: 0px 0px 30px rgba(139, 90, 85, 0.3);
  margin: 100px auto;
  min-width: 1260px;
  max-width: 1500px;
}
.feature-box .feature-inner li {
  width: 50%;
}
.feature-box .feature-inner li a {
  color: #fff;
  display: block;
  position: relative;
}
.feature-box .feature-inner li .image {
  position: relative;
}
.feature-box .feature-inner li .image:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  content: "";
  background: rgba(139, 90, 85, 0.3);
  width: 100%;
  height: 100%;
}
.feature-box .feature-inner li .image img {
  vertical-align: top;
  width: 100%;
}
.feature-box .feature-inner li .text {
  position: absolute;
  top: 30px;
  right: auto;
  bottom: auto;
  left: 30px;
  content: "";
  border: 1px solid #fff;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  z-index: 1;
}
.feature-box .feature-inner li .text .title {
  margin-top: 10%;
}
.feature-box .feature-inner li .text .title:before {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: calc(50% - 100px);
  content: "";
  background: #fff;
  width: 200px;
  height: 1px;
}
.feature-box .feature-inner li .text .en {
  font-family: "Allura";
  margin-top: 13.5%;
}

.summary-box {
  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: 0 auto;
  z-index: 1;
}
.summary-box li {
  -webkit-box-shadow: 0px 0px 30px rgba(139, 90, 85, 0.2);
          box-shadow: 0px 0px 30px rgba(139, 90, 85, 0.2);
  width: calc(50% - 25px);
}
.summary-box li a {
  display: block;
  position: relative;
}
.summary-box li .image {
  overflow: hidden;
  position: relative;
}
.summary-box li .image:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  content: "";
  background: rgba(139, 90, 85, 0.2);
  width: 100%;
  height: 100%;
}
.summary-box li .image img {
  vertical-align: top;
  width: 100%;
}
.summary-box li .text {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: auto;
  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;
  padding: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 2px;
  line-height: 1;
  width: calc(100% - 80px);
}
.summary-box li .text > .title {
  font-size: 32px;
}
.summary-box li .text > .en {
  font-family: "EB Garamond";
  font-size: 12px;
}
.summary-box li .ital {
  position: absolute;
  top: 0px;
  right: auto;
  bottom: auto;
  left: 10px;
  content: "";
  color: #fff;
  font-family: "Allura";
  font-size: 80px;
  line-height: 1;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.summary-box li:last-child {
  margin-top: -50px;
}

.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 0;
}
.index-sbnr a {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  display: block;
  position: relative;
}
.index-sbnr a:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 200px;
  z-index: 1;
}
.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.1);
          box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
.index-sbnr a:hover:before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 200px;
}
.index-sbnr a:hover .image img {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}
.index-sbnr li {
  width: 420px;
  height: 200px;
}
.index-sbnr li:nth-child(2) {
  margin: 0 20px;
}
.index-sbnr li img {
  vertical-align: top;
  width: 100%;
}
.index-sbnr .text {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index-sbnr .text .sub,
.index-sbnr .text .title {
  display: block;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  width: 100%;
}
.index-sbnr .text .sub {
  font-size: 18px;
  margin-bottom: 10px;
}
.index-sbnr .image {
  overflow: hidden;
}
.index-sbnr .image img {
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  vertical-align: top;
}

.bnr-box {
  margin: 0 auto;
  position: relative;
  padding: 10px;
  width: 900px;
  margin-bottom: 100px;
  -webkit-box-shadow: 0 0 30px rgba(139, 90, 85, 0.3);
          box-shadow: 0 0 30px rgba(139, 90, 85, 0.3);
}
.bnr-box:before {
  position: absolute;
  top: -20px;
  right: auto;
  bottom: auto;
  left: -30px;
  color: #ed6b92;
  content: "Aptitude Test";
  font-family: "Allura";
  font-size: 32px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 0;
}
.bnr-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #f6e1dc;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  padding: 40px;
}
.bnr-box .text .title {
  color: #ed6b92;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}
.bnr-box .text p {
  font-size: 16px;
  letter-spacing: 2px;
}
.bnr-box .btn {
  -ms-flex-item-align: center;
      align-self: center;
  background: #ed6b92;
  color: #fff;
  font-family: "EB Garamond";
  line-height: 1;
  padding: 10px 30px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .index-box > .title {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .index-box > .title p {
    font-size: 30px;
  }
  .index-box > .title p.en {
    font-size: 12px;
    padding-top: 20px;
  }
  .index-box > .text {
    font-size: 12px;
    margin-bottom: 50px;
  }
  .index-box > .text br {
    display: none;
  }
  .recruit-box {
    margin-bottom: 50px;
  }
  .recruit-box .text {
    padding: 30px;
  }
  .recruit-box .text > .title {
    background-size: 12px;
    font-size: 16px;
  }
  .recruit-box .text > .en {
    font-size: 10px;
  }
  .recruit-box .ital {
    font-size: 21px;
    top: -10px;
    left: -10px;
  }
  .interview-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 100%;
    max-width: 100%;
  }
  .interview-box .interview-text {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    margin: 20px auto 0px;
    width: 70%;
    height: 100%;
  }
  .interview-box .interview-text .title {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .interview-box .interview-text .title > .en {
    margin-top: 20px;
  }
  .interview-box .interview-text .text {
    font-size: 12px;
  }
  .interview-box .interview-text .text br {
    display: none;
  }
  .interview-box .interview-text .btn a {
    font-size: 13px;
    width: 180px;
    padding: 10px 0px;
  }
  .interview-slide {
    margin-top: 20px;
    width: 100%;
  }
  .interview-slide .img01, .interview-slide .img02, .interview-slide .img03 {
    width: 90%;
    height: 90vw;
  }
  .interview-slide .img01 img, .interview-slide .img02 img, .interview-slide .img03 img {
    width: 100%;
    height: 90vw;
  }
  .interview-slide .img01, .interview-slide .slider-inner .img02, .slider-inner .interview-slide .img02, .interview-slide .slider-inner .img03, .slider-inner .interview-slide .img03 {
    background: url(../img/index/interview_img_01.png) no-repeat 50% 0px/contain;
  }
  .interview-slide .img02 {
    background: url(../img/index/interview_img_02.png) no-repeat 50% 0px/contain;
  }
  .interview-slide .img03 {
    background: url(../img/index/interview_img_03.png) no-repeat 50% 0px/contain;
  }
  .interview-slide .ital {
    top: -20px;
    left: -10px;
  }
  .feature-box .feature-inner {
    margin: 0px auto;
    min-width: 90%;
    max-width: 90%;
  }
  .feature-box .feature-inner li {
    width: 100%;
  }
  .feature-box .feature-inner li .text {
    font-size: 18px;
  }
  .feature-box .feature-inner li .text .en {
    margin-top: 5%;
  }
  .summary-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .summary-box li {
    margin: 0px auto 20px;
    width: 96%;
  }
  .summary-box li:last-child {
    margin-top: 0px;
  }
  .summary-box li .text {
    padding: 20px;
    width: calc(100% - 40px);
  }
  .summary-box li .text > .title {
    font-size: 24px;
  }
  .summary-box li .text > .en {
    font-size: 10px;
  }
  .summary-box li .ital {
    font-size: 50px;
    left: 0;
  }
  .index-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 10px;
  }
  .index-info > .title {
    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;
    margin-bottom: 30px;
    width: 100%;
  }
  .index-info > .title p {
    font-size: 32px;
    margin-bottom: 0px;
  }
  .index-info > .title span {
    font-size: 24px;
    padding-left: 20px;
  }
  .index-info > .title .en {
    font-size: 18px;
    margin-top: 20px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .index-info > .title .archive {
    margin-left: 20px;
  }
  .index-info .archive a {
    margin-top: 0px;
  }
  .index-btn li {
    width: calc(50% - 5px);
  }
  .index-btn li:nth-child(-n+3) {
    margin-bottom: 10px;
  }
  .index-btn li:last-child {
    margin-left: 0px;
  }
  .index-btn a .image:before {
    height: 100%;
  }
  .index-btn .image {
    height: 100px;
  }
  .index-btn .image img {
    width: 32%;
  }
  .index-btn .title {
    font-size: 15px;
  }
  .index-btn .en {
    font-size: 14px;
    margin-top: 10px;
    padding-bottom: 15px;
  }
  .index-sbnr li {
    margin: 0 auto 20px;
    width: 80%;
    height: auto;
  }
  .index-sbnr li:last-child {
    margin-bottom: 0px;
  }
  .index-sbnr a:before {
    height: 100%;
  }
  .index-sbnr a:hover:before {
    height: 100%;
  }
  .index-sbnr li:nth-child(2) {
    margin: 0 auto 20px;
  }
  .bnr-box {
    width: calc(100% - 20px);
    margin-bottom: 0px;
  }
  .bnr-box:before {
    top: -30px;
    left: -10px;
  }
  .bnr-box a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 30px 20px 30px;
    font-size: 14px;
  }
  .bnr-box .text {
    width: 100%;
    margin-bottom: 10px;
  }
  .bnr-box .text .title {
    text-align: center;
  }
  .bnr-box .text p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
  }
  .bnr-box .btn {
    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,
.slider-block,
.slider-inner,
.slider-inner .copy,
.title-block,
.title-block h1,
.title-block span,
.header-block,
.main-block,
.recruit-box,
.info-box,
.index-bnr,
.footer-block {
  opacity: 0;
}

.delay02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

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

.delay15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

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

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