@charset "UTF-8";
/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
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,
sub,
sup,
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;
}

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

ol,
ul {
  list-style: none;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  color: #000;
  position: relative;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  font-style: normal;
  padding-top: 70px;
}
body.home {
  padding-top: 0;
}
.js-blur-body body:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: block;
  z-index: 900;
  transition: all 0.75s;
}

div::-moz-selection,
p::-moz-selection,
h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
span::-moz-selection,
dt::-moz-selection,
dd::-moz-selection,
img::-moz-selection,
strong::-moz-selection,
li::-moz-selection,
a::-moz-selection {
  background: rgba(15, 138, 199, .9);
  color: #efefef;
}

div::selection,
p::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
span::selection,
dt::selection,
dd::selection,
img::selection,
strong::selection,
li::selection,
a::selection {
  background: rgba(15, 138, 199, .9);
  color: #efefef;
}

div::-moz-selection,
p::-moz-selection,
h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
dt::-moz-selection,
dd::-moz-selection,
img::-moz-selection,
span::-moz-selection,
strong::-moz-selection,
li::-moz-selection,
a::-moz-selection {
  background: rgba(15, 138, 199, .9);
  color: #efefef;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
button,
input,
select,
textarea {
  color: #000;
  outline: none;
}

button {
  cursor: pointer;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: none;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 990px) {
  a:hover {
    text-decoration: none;
  }
}

p {
  margin: 0 0 1em;
}

label,
select,
input[type=submit] {
  cursor: pointer;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a:active img.over,
.desktop a:hover img.over {
  cursor: pointer;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
@media only screen and (max-width: 990px) {
  a:active img.over,
  .desktop a:hover img.over {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

img {
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

address {
  font-style: normal;
}

/*
 Container
----------------------------------------------------------- */
.largeContainer {
  overflow: hidden;
}

/*
 Header
----------------------------------------------------------- */
.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.headerMain {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 2%;
  height: 70px;
}
.headerMain_logo a {
  display: block;
}
.headerMain_logo a img {
  width: 210px;
}
.headerMain_left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.headerMain_left p {
  margin: 0;
  font-weight: 700;
  margin-left: 30px;
}
.headerMain_right {
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.headerMain_tel {
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -ms-flex-align: end;
      align-items: end;
  font-family: "Oswald", serif;
  letter-spacing: 0.15em;
  font-weight: 400;
}
.headerMain_tel dt {
  font-size: 2rem;
}
.headerMain_tel dd {
  font-size: 2.7rem;
}

.headerMainSearch {
  margin-left: 10px;
}
.headerMainSearch button {
  padding: 0;
  border: none;
  height: 70px;
  background: #ff7701;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  width: 150px;
  letter-spacing: 0.1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .headerMainSearch button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.headerMainSearch button:active, .desktop .headerMainSearch button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .headerMainSearch button:active, .desktop .headerMainSearch button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.menuBtn {
  width: 70px;
  height: 70px;
  z-index: 8000;
  cursor: pointer;
  display: block;
  background: #000;
  border: none;
  padding: 0;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: start;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .menuBtn {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.menuBtn:active, .desktop .menuBtn:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .menuBtn:active, .desktop .menuBtn:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.menuBtn_text {
  font-size: 1.4rem;
  color: #fff;
  font-family: "Montserrat", serif;
  line-height: 1;
  text-align: center;
  padding-top: 10px;
}
.menuBtn,
.menuBtn span {
  transition: all 0.3s;
  transition-timing-function: cubic-bezier(0, 1.01, 0.47, 1);
}
.menuBtn span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 26px);
  height: 3px;
  background-color: #fff;
  display: inline-block;
}
.menuBtn span:nth-of-type(1) {
  top: 32px;
}
.menuOpen .menuBtn span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
.menuBtn span:nth-of-type(2) {
  top: 43px;
}
.menuOpen .menuBtn span:nth-of-type(2) {
  display: none;
}
.menuBtn span:nth-of-type(3) {
  bottom: 14px;
}
.menuOpen .menuBtn span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

.langBtn {
  width: 70px;
  font-family: "Montserrat", serif;
  line-height: 1;
  border: none;
  padding: 0;
  background: #00a7ac;
  height: 70px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .langBtn {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.langBtn:active, .desktop .langBtn:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .langBtn:active, .desktop .langBtn:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.langBtn_title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 0.07em;
  color: #e4df36;
}
.langBtn_icon img {
  width: 32px;
}

.langList {
  position: fixed;
  top: 70px;
  left: 0;
  background: #00a7ac;
  width: 100%;
  padding-right: 2%;
  z-index: 500;
  display: none;
}
.langListOpen .langList {
  display: block;
}
.langList_inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: right;
      justify-content: right;
  height: 70px;
  -ms-flex-align: center;
      align-items: center;
}

.langListMain {
  line-height: 1;
}
.langListMain_jp {
  color: #e4df36;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.langListMain_en {
  letter-spacing: 0.075em;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", serif;
  color: #e4df36;
  margin-bottom: 6px;
}
.langListMain ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0 25px;
}
.langListMain ul li {
  border-left: 1px solid #e4df36;
  padding: 3px 0 3px 25px;
}
.langListMain ul li:first-child {
  border-left: none;
}
.langListMain ul li a {
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .langListMain ul li a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.langListMain ul li a:active, .desktop .langListMain ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .langListMain ul li a:active, .desktop .langListMain ul li a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.gNavi {
  position: fixed;
  top: 70px;
  left: 0;
  background: #000;
  width: 100%;
  padding-right: 2%;
  z-index: 500;
  display: none;
}
.menuOpen .gNavi {
  display: block;
}
.gNavi_inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: right;
      justify-content: right;
  height: 70px;
  -ms-flex-align: center;
      align-items: center;
}

.gNaviList ul {
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  line-height: 1;
}
.gNaviList ul li {
  position: relative;
  padding-left: 15px;
}
.gNaviList ul li:before {
  content: "";
  width: 1px;
  height: 34px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  background: #fff;
}
.gNaviList ul li:first-child {
  padding-left: 0;
}
.gNaviList ul li:first-child:before {
  display: none;
}
.gNaviList ul a:active, .desktop .gNaviList ul a:hover {
  text-decoration: none;
}
.gNaviList ul a:active .gNaviList_en,
.gNaviList ul a:active .gNaviList_jp, .desktop .gNaviList ul a:hover .gNaviList_en,
.desktop .gNaviList ul a:hover .gNaviList_jp {
  color: #e4df36;
}
.gNaviList_en {
  color: #fff;
  display: block;
  letter-spacing: 0.075em;
  margin-bottom: 5px;
  font-weight: 700;
  transition: all 0.4s;
}
.gNaviList_jp {
  color: #fff;
  display: block;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  transition: all 0.4s;
}

.gNaviSns {
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  -ms-flex-align: center;
      align-items: center;
  margin-left: 30px;
  margin-top: 5px;
}
.gNaviSns svg {
  fill: #fff;
  width: auto;
  height: 26px;
  transition: all 0.4s;
}
.gNaviSns a:active, .desktop .gNaviSns a:hover {
  text-decoration: none;
}
.gNaviSns a:active svg, .desktop .gNaviSns a:hover svg {
  fill: #e4df36;
}

.footer {
  background: #000;
  margin-top: 100px;
  position: relative;
}
.footer_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}
.footer:before {
  content: "";
  width: 50%;
  height: 10px;
  position: absolute;
  background: #00a7ac;
  bottom: 0;
  left: 0;
}
.footer:after {
  content: "";
  width: 50%;
  height: 10px;
  background: #e4df36;
  position: absolute;
  bottom: 0;
  right: 0;
}

.footerMain {
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}
.footerMain_title {
  color: #fff;
  border-bottom: 1px solid #fff;
  font-family: "Montserrat", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-right: 5em;
}
.footerMain_list li {
  margin-top: 10px;
}
.footerMain_list a {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.footerMain_text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 2.9;
}
.footerMain_text a {
  color: #fff;
}
.footerMain_item02 {
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.footerMain_logo a {
  display: block;
}
.footerMain_logo img {
  width: 160px;
}
.footerMain_btm {
  margin-top: auto;
}
.footerMain_btm p {
  color: #fff;
  margin-bottom: 5px;
}
.footerMain_btm p a {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.footerMain_copy {
  color: #fff;
  font-size: 1rem;
  font-family: "Montserrat", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.spLangBtn {
  display: none;
}

/*
 Container
----------------------------------------------------------- */
@media only screen and (max-width: 990px) {
  html {
    scroll-padding-top: 60px;
  }
  body {
    width: 100%;
    min-width: 320px !important;
    min-height: 0;
    min-height: initial;
    -webkit-text-size-adjust: 100%;
    position: relative;
    padding-top: 50px;
  }
  body.home {
    padding-top: 50px;
  }
  /*
   Header
  ----------------------------------------------------------- */
  .header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  }
  .headerMain {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding-left: 2%;
    height: 50px;
  }
  .headerMain_logo a {
    display: block;
  }
  .headerMain_logo a img {
    width: 150px;
  }
  .headerMain_left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .headerMain_left p {
    margin: 0;
    margin-left: 10px;
    font-size: 1rem;
    display: none;
  }
  .headerMain_right {
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .headerMain_tel {
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    -ms-flex-align: end;
        align-items: end;
    font-family: "Oswald", serif;
    letter-spacing: 0.15em;
    font-weight: 400;
    display: none;
  }
  .headerMain_tel dt {
    font-size: 2rem;
  }
  .headerMain_tel dd {
    font-size: 2.7rem;
  }
  .headerMainSearch {
    margin-left: 10px;
  }
  .headerMainSearch button {
    height: 50px;
    font-size: 1.4rem;
    width: 80px;
  }
  .menuBtn {
    width: 50px;
    height: 50px;
  }
  .menuBtn_text {
    font-size: 1rem;
    padding-top: 8px;
  }
  .menuBtn span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 22px);
    height: 1px;
  }
  .menuBtn span:nth-of-type(1) {
    top: 26px;
  }
  .menuOpen .menuBtn span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
  }
  .menuBtn span:nth-of-type(2) {
    top: 32px;
  }
  .menuOpen .menuBtn span:nth-of-type(2) {
    display: none;
  }
  .menuBtn span:nth-of-type(3) {
    bottom: 10px;
  }
  .menuOpen .menuBtn span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
            transform: translateY(-7px) rotate(45deg);
  }
  .langBtn {
    width: 50px;
    height: 50px;
  }
  .langBtn_title {
    padding-top: 2px;
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .langBtn_icon img {
    width: 22px;
  }
  .gNavi {
    position: fixed;
    top: 50px;
    left: 0;
    background: #000;
    width: 100%;
    padding-right: 2%;
    z-index: 500;
    height: calc(100vh - 50px);
    display: none;
  }
  .menuOpen .gNavi {
    display: block;
  }
  .gNavi_inner {
    height: auto;
    -ms-flex-align: center;
        align-items: center;
    display: block;
  }
  .gNaviList {
    width: 100%;
    margin-bottom: 30px;
  }
  .gNaviList ul {
    display: -ms-flexbox;
    display: flex;
    gap: 0 15px;
    line-height: 1;
    width: 100%;
    display: block;
  }
  .gNaviList ul li {
    position: relative;
    padding-left: 0px;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
  }
  .gNaviList ul li:before {
    content: "";
    width: 1px;
    height: 34px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    background: #fff;
    display: none;
  }
  .gNaviList ul li:first-child {
    padding-left: 0;
  }
  .gNaviList ul li:first-child:before {
    display: none;
  }
  .gNaviList_en {
    color: #fff;
    display: block;
    letter-spacing: 0.075em;
    margin-bottom: 5px;
    font-weight: 700;
    transition: all 0.4s;
  }
  .gNaviList_jp {
    color: #fff;
    display: block;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    transition: all 0.4s;
  }
  .gNaviSns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    margin-left: 0;
    margin-top: 0;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .gNaviSns svg {
    fill: #fff;
    width: auto;
    height: 26px;
    transition: all 0.4s;
  }
  .gNaviSns a:active, .desktop .gNaviSns a:hover {
    text-decoration: none;
  }
  .gNaviSns a:active svg, .desktop .gNaviSns a:hover svg {
    fill: #e4df36;
  }
  .footer {
    margin-top: 60px;
  }
  .footer_inner {
    padding: 30px 25px;
  }
  .footerMain {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: initial;
  }
  .footerMain_title {
    font-size: 1.4rem;
    padding-bottom: 15px;
    padding-right: 0;
    padding-right: initial;
  }
  .footerMain_list li {
    margin-top: 10px;
  }
  .footerMain_list a {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  .footerMain_text {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 2.9;
  }
  .footerMain_text a {
    color: #fff;
  }
  .footerMain_item {
    width: 100%;
    margin-bottom: 25px;
  }
  .footerMain_item02 {
    width: 100%;
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    text-align: center;
  }
  .footerMain_logo {
    margin-bottom: 20px;
  }
  .footerMain_logo a {
    display: block;
  }
  .footerMain_logo img {
    width: 160px;
  }
  .footerMain_btm {
    margin-top: auto;
  }
  .footerMain_btm p {
    color: #fff;
    margin-bottom: 5px;
  }
  .footerMain_btm p a {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
  .footerMain_copy {
    color: #fff;
    font-size: 1rem;
    font-family: "Montserrat", serif;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .spLangBtn {
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    margin-left: -0.1em;
    font-size: 1.2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 15px;
    padding: 30px 20px 0;
  }
  .spLangBtn a {
    color: #fff;
  }
  .langList {
    top: 50px;
    padding-right: 0;
    display: none;
  }
  .langListOpen .langList {
    display: block;
  }
  .langList_inner {
    height: auto;
    display: block;
    padding: 30px 30px 30px 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .langListMain ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
  .langListMain ul li {
    width: 45%;
    border-left: none;
    padding: 0;
  }
  .langListMain ul li:first-child {
    border-left: none;
  }
}
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Animate.css
 */

.animate__animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 0.5;
  animation-iteration-count: 0.5;
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: 1.5;
  animation-iteration-count: 1.5;
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animate__animated.animate__delay-1-2s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.animate__animated.animate__delay-1-4s {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.animate__animated.animate__delay-1-6s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animate__animated.animate__delay-1-8s {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.animate__animated.animate__delay-3-5s {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3s;
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, 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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, 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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__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;
  }
}
.animate__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);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

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

@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

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

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

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: 0.375s;
  animation-duration: 0.375s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

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

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60%, 0);
    transform: translate3d(0, 60%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp02 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 90%, 0);
            transform: translate3d(0, 90%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp02 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 300px, 0);
            transform: translate3d(0, 300px, 0);
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
}
.animate__fadeInUp02 {
  -webkit-animation-name: fadeInUp02;
          animation-name: fadeInUp02;
}

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

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: 0.375s;
  animation-duration: 0.375s;
  -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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: 0.375s;
  animation-duration: 0.375s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-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);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.js-move-box,
.js-move-box02 {
  visibility: hidden;
  opacity: 0;
}

.spPic {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.commonTitle {
  text-align: center;
  margin-bottom: 40px;
}
.commonTitle span {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  letter-spacing: 0.1em;
  padding-left: 25px;
}
.commonTitle span:before {
  content: "";
  width: 5px;
  height: 22px;
  background: #e4df36;
  position: absolute;
  top: 0;
  left: 0;
}
.commonTitle span:after {
  content: "";
  width: 5px;
  height: 22px;
  background: #00a7ac;
  position: absolute;
  top: 22px;
  left: 0;
}

.lineBtmPic {
  text-align: center;
  margin-bottom: 80px;
}
.lineBtmPic a {
  display: inline-block;
  width: 1000px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .lineBtmPic a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.lineBtmPic a:active, .desktop .lineBtmPic a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .lineBtmPic a:active, .desktop .lineBtmPic a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.subPageTitle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.1em;
  height: 350px;
  font-weight: 700;
  margin-bottom: 80px;
}

.subPageTitle02 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #000;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  min-height: 220px;
  font-weight: 700;
}

.subPageTitle03 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #000;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  height: 230px;
  font-weight: 700;
  margin-bottom: 60px;
  background-repeat: no-repeat;
  background-size: auto 75px;
  background-position: center center;
}

.searchHeadBox {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 600;
  background: #00a7ac;
  padding: 0 2%;
  display: none;
}
.searchBoxOpen .searchHeadBox {
  display: block;
}
.searchHeadBox_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

.searchHeadBoxMain {
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}
.searchHeadBoxMain_left {
  -ms-flex: 1;
      flex: 1;
}
.searchHeadBoxMain_right {
  width: 150px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.searchHeadBoxMain_text {
  margin-bottom: 30px;
}
.searchHeadBoxMain_text input {
  width: 100%;
  padding: 5px;
  height: 50px;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
.searchHeadBoxMain_check li {
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.searchHeadBoxMain_check li input {
  margin-right: 5px;
}
.searchHeadBoxMain_btn {
  margin-top: auto;
}
.searchHeadBoxMain_btn button {
  width: 160px;
  height: 128px;
  border-radius: 10px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #00a7ac;
  background: #e4df36;
  border: 2px solid #00a7ac;
  box-shadow: 0 0 0 #e4df36;
  font-size: 2rem;
  font-weight: 700;
  outline: 4px solid #e4df36;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .searchHeadBoxMain_btn button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.searchHeadBoxMain_btn button:active, .desktop .searchHeadBoxMain_btn button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .searchHeadBoxMain_btn button:active, .desktop .searchHeadBoxMain_btn button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.searchHeadBoxMainColumn {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.searchHeadBoxMainColumn_item {
  -ms-flex: 1;
      flex: 1;
}
.searchHeadBoxMainColumn_title {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.22em;
}
.searchHeadBoxMainColumn_select {
  position: relative;
}
.searchHeadBoxMainColumn_select-mb {
  margin-bottom: 40px;
}
.searchHeadBoxMainColumn_select-mb:before {
  content: "";
  position: absolute;
  bottom: -26px;
  right: 0;
  left: 0;
  margin: auto;
  background: #ffffff;
  height: 12.124355653px;
  width: 20px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.searchHeadBoxMainColumn_select select {
  width: 100%;
  height: 50px;
  padding: 0 20px 0 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000;
  font-size: 1.6rem;
}
.searchHeadBoxMainColumn_select:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 20px;
  right: 15px;
  margin: auto;
  border: solid #00a7ac;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contactTxt {
  text-align: center;
  line-height: 2.4;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

.lookingforSec_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.lookingforSec_text {
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 90px;
}

.lookingforSecMain {
  margin-bottom: 90px;
}
.lookingforSecMain_item {
  border: 1px solid #00a7ac;
  padding: 25px;
  margin-bottom: 60px;
}
.lookingforSecMain_pic {
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.lookingforSecMain_pic-item {
  width: calc(20% - 24px);
}
.lookingforSecMain_pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.lookingforSecMain_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.lookingforSecMain_list dt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
.lookingforSecMain_list dd {
  margin-left: auto;
}
.lookingforSecMain_text {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.lookingforSecMain_more a {
  background: #04c755;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 40px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .lookingforSecMain_more a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.lookingforSecMain_more a:active, .desktop .lookingforSecMain_more a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .lookingforSecMain_more a:active, .desktop .lookingforSecMain_more a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.privacySec {
  margin-bottom: 90px;
}
.privacySec_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.privacySec p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5em;
}

@media only screen and (max-width: 990px) {
  .spBr {
    display: block;
  }
  .pcPic {
    display: none;
  }
  .spPic {
    display: inline-block;
  }
  .commonTitle {
    margin-bottom: 30px;
  }
  .commonTitle span {
    font-size: 2rem;
    padding-left: 18px;
  }
  .commonTitle span:before {
    content: "";
    width: 5px;
    height: 14px;
  }
  .commonTitle span:after {
    content: "";
    width: 5px;
    height: 14px;
    top: 14px;
  }
  .lineBtmPic {
    margin-bottom: 40px;
    padding: 0 25px;
  }
  .lineBtmPic a {
    width: 100%;
  }
  .subPageTitle {
    font-size: 2rem;
    letter-spacing: 0.1em;
    height: 140px;
    margin-bottom: 40px;
  }
  .subPageTitle02 {
    font-size: 1.8rem;
    height: auto;
    min-height: 0;
    min-height: initial;
    margin-bottom: 0px;
    padding: 30px 25px;
  }
  .subPageTitle03 {
    font-size: 1.8rem;
    height: 120px;
    font-weight: 700;
    margin-bottom: 20px;
    background-size: auto 28px;
  }
  .searchHeadBox {
    position: fixed;
    top: 50px;
    left: 0;
    padding: 0;
  }
  .searchBoxOpen .searchHeadBox {
    display: block;
  }
  .searchHeadBox_inner {
    padding: 30px 25px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 50px);
  }
  .searchHeadBoxMain {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 10px;
  }
  .searchHeadBoxMain_left {
    -ms-flex: initial;
        flex: initial;
    width: 100%;
  }
  .searchHeadBoxMain_right {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    padding-top: 20px;
  }
  .searchHeadBoxMain_text {
    margin-bottom: 30px;
  }
  .searchHeadBoxMain_text input {
    width: 100%;
    padding: 5px;
    height: 50px;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }
  .searchHeadBoxMain_check li {
    margin-bottom: 3px;
  }
  .searchHeadBoxMain_btn {
    margin-top: 0;
    margin-top: initial;
    margin-left: auto;
  }
  .searchHeadBoxMain_btn button {
    width: 150px;
    height: 128px;
    font-size: 1.8rem;
  }
  .searchHeadBoxMainColumn {
    display: -ms-flexbox;
    display: flex;
    gap: 10px 0;
    margin-top: 0px;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .searchHeadBoxMainColumn_item {
    -ms-flex: initial;
        flex: initial;
    width: 48%;
    margin-bottom: 0;
  }
  .searchHeadBoxMainColumn_item.wodth100 {
    width: 100%;
    margin-top: 10px;
  }
  .searchHeadBoxMainColumn_item-wrapper {
    display: -ms-flexbox;
    display: flex;
    gap: 0 30px;
  }
  .searchHeadBoxMainColumn_title {
    font-size: 1.4rem;
  }
  .searchHeadBoxMainColumn_select {
    position: relative;
    -ms-flex: 1;
        flex: 1;
  }
  .searchHeadBoxMainColumn_select-mb {
    margin-bottom: 0;
  }
  .searchHeadBoxMainColumn_select-mb:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    right: -22px;
    left: auto;
    left: initial;
    margin: auto;
    background: #fff;
    height: 13.8564064606px;
    width: 12px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .searchHeadBoxMainColumn_select select {
    width: 100%;
    height: 40px;
    padding: 0 20px 0 5px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 1px solid #000;
    font-size: 1.3rem;
  }
  .searchHeadBoxMainColumn_select:after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 14px;
    right: 13px;
    margin: auto;
    border: solid #00a7ac;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .contactTxt {
    text-align: center;
    line-height: 2.4;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
  }
  .lookingforSec_inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .lookingforSec_text {
    margin-bottom: 40px;
    padding: 0 25px;
  }
  .lookingforSecMain {
    margin-bottom: 50px;
    padding: 0 25px;
  }
  .lookingforSecMain_item {
    padding: 25px 20px;
    margin-bottom: 60px;
  }
  .lookingforSecMain_pic {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }
  .lookingforSecMain_pic-item {
    width: 48%;
  }
  .lookingforSecMain_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
  }
  .lookingforSecMain_list dt {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .lookingforSecMain_list dt br {
    display: none;
  }
  .lookingforSecMain_list dd {
    margin-left: auto;
    text-align: center;
    width: 100%;
    padding-top: 15px;
  }
  .lookingforSecMain_text {
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .lookingforSecMain_more a {
    background: #04c755;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 40px;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .lookingforSecMain_more a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .lookingforSecMain_more a:active, .desktop .lookingforSecMain_more a:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .lookingforSecMain_more a:active, .desktop .lookingforSecMain_more a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .privacySec {
    margin-bottom: 90px;
  }
  .privacySec_inner {
    padding: 0 25px;
  }
  .privacySec p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 2.5em;
  }
}
.topMainv {
  position: relative;
  height: 700px;
  overflow: hidden;
}
.topMainv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/pic_mainv.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 5;
  transition: all 20s;
}
.js-anime-satart .topMainv_bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.topMainv_item01 {
  width: 0;
  max-width: 390px;
  height: 108px;
  position: absolute;
  top: 30%;
  left: 5%;
  overflow: hidden;
  z-index: 10;
}
.topMainv_item01.js-anime-01 {
  -webkit-animation-name: widthAnime;
          animation-name: widthAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.topMainv_item01 span {
  background-image: url("../img/top/pic_mainv_text_01.svg");
  background-repeat: no-repeat;
  background-size: 390px auto;
  background-position: left;
  display: block;
  width: 390px;
  height: 108px;
  position: absolute;
  top: 0;
  left: 0;
}
.topMainv_item02 {
  width: 0;
  height: 108px;
  top: 45%;
  left: 5%;
  position: absolute;
  overflow: hidden;
  z-index: 10;
}
.topMainv_item02.js-anime-02 {
  -webkit-animation-name: widthAnime;
          animation-name: widthAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.topMainv_item02 span {
  background-image: url("../img/top/pic_mainv_text_02.svg");
  background-repeat: no-repeat;
  background-size: 692px auto;
  background-position: left;
  display: block;
  width: 692px;
  height: 108px;
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes widthAnime {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes widthAnime {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.topSearchBox {
  position: relative;
  z-index: 20;
  margin-top: -100px;
}
.topSearchBox_inner {
  max-width: 980px;
  margin: 0 auto;
}

.topSearchBoxMain {
  background: #e6e6e6;
  padding: 2em 2em 3.5em;
  margin-bottom: 90px;
}
.topSearchBoxMain_title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.topSearchBoxMain_title span {
  position: relative;
  display: inline-block;
  padding: 0 1.5em 20px;
}
.topSearchBoxMain_title span:before {
  content: "";
  width: 50%;
  height: 5px;
  background: #e4df36;
  position: absolute;
  bottom: 0;
  left: 0;
}
.topSearchBoxMain_title span:after {
  content: "";
  width: 50%;
  height: 5px;
  background: #00a7ac;
  position: absolute;
  bottom: 0;
  right: 0;
}

.topSearchBoxMainField {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 0 20px;
}
.topSearchBoxMainField_select {
  position: relative;
  width: 240px;
}
.topSearchBoxMainField_select select {
  width: 100%;
  height: 50px;
  padding: 0 20px 0 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000;
}
.topSearchBoxMainField_select:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 20px;
  right: 15px;
  margin: auto;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.topSearchBoxMainField_btn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #000;
  border: none;
  padding: 0;
  width: 240px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 2rem;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: all 0.4s;
}
.topSearchBoxMainField_btn button:active, .desktop .topSearchBoxMainField_btn button:hover {
  color: #e4df36;
}

.topConcept {
  margin-bottom: 80px;
}
.topConcept_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.topConcept_title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.topConcept_text {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.topNewsSec {
  margin-bottom: 90px;
}
.topNewsSec_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.topNewsSecMain {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.topNewsSecMain::before {
  content: "";
  display: block;
  width: 23%;
  -ms-flex-order: 1;
      order: 1;
}
.topNewsSecMain::after {
  content: "";
  display: block;
  width: 23%;
}
.topNewsSecMain_item {
  width: 23%;
  position: relative;
  margin-bottom: 40px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .topNewsSecMain_item {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.topNewsSecMain_item:active, .desktop .topNewsSecMain_item:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .topNewsSecMain_item:active, .desktop .topNewsSecMain_item:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.topNewsSecMain_pic {
  margin-bottom: 15px;
  height: 230px;
}
.topNewsSecMain_pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.topNewsSecMain_icon {
  position: absolute;
  top: 5px;
  right: 5px;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}
.topNewsSecMain_icon li {
  font-size: 1.2rem;
}
.topNewsSecMain_icon li span {
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 22px;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 5px;
}
.topNewsSecMain_icon-01 {
  background: #e4df36;
  color: #000;
}
.topNewsSecMain_icon-02 {
  background: #00a7ac;
  color: #fff;
}
.topNewsSecMain_icon-03 {
  background: #ff0200;
  color: #fff;
}
.topNewsSecMain_name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 10px;
}
.topNewsSecMain_name:before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
}
.topNewsSecMain_list {
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.topNewsSecMain_list dt {
  width: 80px;
  font-weight: 700;
}
.topNewsSecMain_list dd {
  -ms-flex: 1;
      flex: 1;
}

.topInstSec {
  margin-bottom: 90px;
}
.topInstSec_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.topInstSec_text {
  text-align: center;
  margin-top: -30px;
}
.topInstSec_text img {
  width: auto;
  height: 20px;
}

.topNewsParts_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.topNewsPartsMain {
  display: -ms-flexbox;
  display: flex;
  background: #f0f0f0;
  -ms-flex-align: center;
      align-items: center;
}
.topNewsPartsMain_title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  background: #000;
  color: #fff;
  width: 120px;
  height: 70px;
  padding-left: 20px;
  line-height: 1;
}
.topNewsPartsMain_title-01 {
  font-size: 1.5rem;
  font-family: "Montserrat", serif;
  letter-spacing: 0.075em;
  margin-bottom: 3px;
}
.topNewsPartsMain_title-02 {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
.topNewsPartsMain_main {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2%;
  padding-right: 2%;
  -ms-flex-align: center;
      align-items: center;
}
.topNewsPartsMain_main p {
  margin-bottom: 0;
  font-size: 1.2rem;
}
.topNewsPartsMain_main p span {
  font-weight: 700;
  margin-right: 10px;
  letter-spacing: 0.075em;
}
.topNewsPartsMain_main p a {
  letter-spacing: 0.2em;
}
.topNewsPartsMain_btn {
  margin-left: auto;
}
.topNewsPartsMain_btn a {
  background: #000;
  color: #fff;
  width: 70px;
  height: 30px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  transition: all 0.4s;
}
.topNewsPartsMain_btn a:active, .desktop .topNewsPartsMain_btn a:hover {
  text-decoration: none;
  color: #e4df36;
}

.topNewsSecMainMore {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
}
.topNewsSecMainMore a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #ff7700;
  color: #fff;
  width: 300px;
  height: 50px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .topNewsSecMainMore a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.topNewsSecMainMore a:active, .desktop .topNewsSecMainMore a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .topNewsSecMainMore a:active, .desktop .topNewsSecMainMore a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@media only screen and (max-width: 990px) {
  .topMainv {
    height: 85vh;
  }
  .topMainv_bg {
    background-image: url("../img/top/pic_mainv_sp.jpg");
    background-position: top;
  }
  .topMainv_item01 {
    max-width: 168px;
    height: 46px;
    position: absolute;
    top: 15%;
    left: 30px;
    overflow: hidden;
    z-index: 10;
  }
  .topMainv_item01 span {
    background-image: url("../img/top/pic_mainv_text_01_sp.svg");
    background-repeat: no-repeat;
    background-size: 168px auto;
    background-position: left;
    display: block;
    width: 168px;
    height: 46px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topMainv_item02 {
    height: 70px;
    top: 22%;
    left: 30px;
    position: absolute;
    overflow: hidden;
    z-index: 10;
  }
  .topMainv_item02 span {
    background-image: url("../img/top/pic_mainv_text_02_sp.svg");
    background-repeat: no-repeat;
    background-size: 300px auto;
    background-position: left;
    display: block;
    width: 300px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .topSearchBox {
    margin: -60px 30px 0;
  }
  .topSearchBoxMain {
    background: #e6e6e6;
    padding: 30px 25px;
    margin-bottom: 60px;
  }
  .topSearchBoxMain_title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .topSearchBoxMain_title span {
    padding: 0 0.5em 15px;
  }
  .topSearchBoxMain_title span:before {
    height: 4px;
  }
  .topSearchBoxMain_title span:after {
    height: 4px;
  }
  .topSearchBoxMainField {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    gap: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .topSearchBoxMainField_select {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
  .topSearchBoxMainField_btn {
    width: 100%;
  }
  .topSearchBoxMainField_btn button {
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
  }
  .topConcept {
    margin-bottom: 60px;
  }
  .topConcept_inner {
    padding: 0 25px;
  }
  .topConcept_title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .topConcept_text {
    font-size: 1.4rem;
    text-align: justify;
  }
  .topConcept_text br {
    display: none;
  }
  .topNewsSec {
    margin-bottom: 30px;
  }
  .topNewsSec_inner {
    padding: 0 25px;
  }
  .topNewsSecMain {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .topNewsSecMain::before {
    display: none;
  }
  .topNewsSecMain::after {
    display: none;
  }
  .topNewsSecMain_item {
    width: 48%;
    margin-bottom: 30px;
  }
  .topNewsSecMain_pic {
    margin-bottom: 10px;
    height: calc(50vw - 30px);
  }
  .topNewsSecMain_icon {
    position: absolute;
    top: 5px;
    right: 5px;
    display: -ms-flexbox;
    display: flex;
    gap: 0 5px;
  }
  .topNewsSecMain_icon li {
    font-size: 1.1rem;
  }
  .topNewsSecMain_icon li span {
    height: 20px;
    padding: 0 4px;
  }
  .topNewsSecMain_name {
    font-size: 1.4rem;
    padding-left: 10px;
  }
  .topNewsSecMain_list {
    font-size: 1.1rem;
  }
  .topNewsSecMain_list dt {
    width: 70px;
  }
  .topNewsSecMain_list dd {
    -ms-flex: 1;
        flex: 1;
  }
  .topInstSec {
    margin-bottom: 60px;
  }
  .topInstSec_inner {
    padding: 0 20px;
  }
  .topInstSec_text {
    margin-top: -20px;
  }
  .topInstSec_text img {
    width: auto;
    height: 18px;
  }
  .topNewsParts_inner {
    padding: 0 25px;
  }
  .topNewsPartsMain {
    display: -ms-flexbox;
    display: flex;
    background: #f0f0f0;
    -ms-flex-align: center;
        align-items: center;
  }
  .topNewsPartsMain_title {
    width: 80px;
    height: 50px;
    padding-left: 10px;
    line-height: 1;
  }
  .topNewsPartsMain_title-01 {
    font-size: 1.2rem;
  }
  .topNewsPartsMain_title-02 {
    font-size: 1.1rem;
  }
  .topNewsPartsMain_main {
    -ms-flex: 1;
        flex: 1;
    display: -ms-flexbox;
    display: flex;
    padding-left: 2%;
    padding-right: 2%;
    -ms-flex-align: center;
        align-items: center;
  }
  .topNewsPartsMain_main p {
    font-size: 1.1rem;
  }
  .topNewsPartsMain_btn {
    margin-left: auto;
    display: none;
  }
  .topNewsPartsMain_btn a {
    background: #000;
    color: #fff;
    width: 70px;
    height: 30px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    transition: all 0.4s;
  }
  .topNewsPartsMain_btn a:active, .desktop .topNewsPartsMain_btn a:hover {
    text-decoration: none;
    color: #e4df36;
  }
  .topNewsSecMainMore {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .topNewsSecMainMore a {
    width: 260px;
    height: 50px;
  }
}
.detailContactBoxMain {
  padding: 2em;
}
.detailContactBoxMain-thanks {
  text-align: center;
  line-height: 2;
}
.detailContactBoxMain_btn {
  text-align: center;
  padding-top: 25px;
}
.detailContactBoxMain_btn a {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 5px 30px;
  border-radius: 10px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .detailContactBoxMain_btn a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.detailContactBoxMain_btn a:active, .desktop .detailContactBoxMain_btn a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .detailContactBoxMain_btn a:active, .desktop .detailContactBoxMain_btn a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.detailContactBoxMain_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #000;
}
.detailContactBoxMain_item:last-child {
  border-bottom: 1px solid #000;
}
.detailContactBoxMain_item-top {
  -ms-flex-align: start;
      align-items: start;
}
.detailContactBoxMain_title {
  width: 210px;
  padding: 15px 0;
  font-size: 14px;
  font-weight: bold;
}
.detailContactBoxMain_main {
  -ms-flex: 1;
      flex: 1;
  padding: 15px 0;
  font-size: 14px;
}
.detailContactBoxMain input[type=text],
.detailContactBoxMain input[type=email],
.detailContactBoxMain input[type=tel] {
  border: none;
  background: #f5f5f5;
  padding: 5px;
  font-size: 14px;
  min-height: 30px;
}
.detailContactBoxMain textarea {
  width: 100%;
  height: 200px;
  border: none;
  background: #f5f5f5;
  padding: 5px;
  font-size: 14px;
}
.detailContactBoxMain .formText01 input[type=text] {
  width: 65%;
}
.detailContactBoxMain .formText02 input[type=text] {
  width: 100%;
}
.detailContactBoxMain .formText03 input[type=text] {
  width: 65%;
}
.detailContactBoxMain .formTextFix input[type=text] {
  width: 100%;
  background: none;
  pointer-events: none;
}
.detailContactBoxMain input[name=お問い合わせ物件名] {
  pointer-events: none;
  background: #fff;
  border: #fff !important;
}
.detailContactBoxMain .mwform-radio-field {
  display: block;
  margin: 0 0 10px !important;
}
.detailContactBoxMain .formFile {
  margin-bottom: 10px;
  position: relative;
}
.detailContactBoxMain .formFile_inner {
  display: inline-block;
  position: relative;
  padding-right: 40px;
}
.detailContactBoxMain .formFile .mwform-file-delete {
  position: absolute;
  top: 3px;
  right: 0;
}
.detailContactBoxMain .formFile .fileSet .mwform-file-delete {
  visibility: visible;
}
.detailContactBoxMain .formFileInfo {
  color: #de0012;
}
.detailContactBoxMain .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0 15px 0 0 !important;
}

.formBtnBox {
  text-align: center;
  padding-bottom: 40px;
  border-top: 1px solid #000;
  padding-top: 50px;
}
.formBtnBox input {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 150px;
  height: 40px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #000;
  border: none;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 10px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .formBtnBox input {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.formBtnBox input:active, .desktop .formBtnBox input:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .formBtnBox input:active, .desktop .formBtnBox input:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.detailContactBox {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #000;
  margin-bottom: 100px;
}
.detailContactBox_title {
  background: #000;
  text-align: center;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.detailContactBox_title img {
  width: auto;
  height: 18px;
}
.detailContactBox_title02 {
  background: #000;
  text-align: center;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.detailContactBox_title02 img {
  width: auto;
  height: 18px;
}
.detailContactBox br {
  display: none;
}

.formBtnContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 30px;
  gap: 0 20px;
}
.formBtnContainer_submit-back input {
  width: 100%;
  height: 52px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #efefef;
  border: none;
  font-size: 14px;
  color: #333;
  padding: 0 2em;
  -webkit-appearance: none;
  border-radius: 5px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .formBtnContainer_submit-back input {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.formBtnContainer_submit-back input:active, .desktop .formBtnContainer_submit-back input:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .formBtnContainer_submit-back input:active, .desktop .formBtnContainer_submit-back input:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.formBtnContainer_submit-next input {
  width: 200px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #000;
  border: none;
  font-size: 14px;
  color: #fff;
  padding: 0 2em;
  -webkit-appearance: none;
  border-radius: 5px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .formBtnContainer_submit-next input {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.formBtnContainer_submit-next input:active, .desktop .formBtnContainer_submit-next input:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .formBtnContainer_submit-next input:active, .desktop .formBtnContainer_submit-next input:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@media only screen and (max-width: 990px) {
  .detailContactBoxMain {
    padding: 20px;
  }
  .detailContactBoxMain-thanks {
    text-align: center;
    line-height: 2;
  }
  .detailContactBoxMain_btn {
    text-align: center;
    padding-top: 25px;
  }
  .detailContactBoxMain_btn a {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px 30px;
    border-radius: 10px;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .detailContactBoxMain_btn a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .detailContactBoxMain_btn a:active, .desktop .detailContactBoxMain_btn a:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .detailContactBoxMain_btn a:active, .desktop .detailContactBoxMain_btn a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .detailContactBoxMain_item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #000;
  }
  .detailContactBoxMain_title {
    width: 100%;
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
  .detailContactBoxMain_main {
    -ms-flex: initial;
        flex: initial;
    width: 100%;
    padding: 15px 0;
    font-size: 14px;
  }
  .detailContactBoxMain input[type=text],
  .detailContactBoxMain input[type=email],
  .detailContactBoxMain input[type=tel] {
    border: none;
    background: #f5f5f5;
    padding: 5px;
    font-size: 1.4rem;
    min-height: 30px;
  }
  .detailContactBoxMain textarea {
    width: 100%;
    height: 200px;
    border: none;
    background: #f5f5f5;
    padding: 5px;
    font-size: 1.4rem;
  }
  .detailContactBoxMain .formText01 input[type=text],
  .detailContactBoxMain .formText01 input[type=email],
  .detailContactBoxMain .formText01 input[type=tel] {
    width: 100%;
  }
  .detailContactBoxMain .formText02 input[type=text],
  .detailContactBoxMain .formText02 input[type=email] {
    width: 100%;
  }
  .detailContactBoxMain .formText03 input[type=text],
  .detailContactBoxMain .formText03 input[type=email] {
    width: 65%;
  }
  .detailContactBoxMain .formTextFix input[type=text] {
    width: 100%;
    background: none;
    pointer-events: none;
  }
  .detailContactBoxMain input[type=email] {
    width: 100% !important;
  }
  .detailContactBoxMain input[name=お問い合わせ物件名] {
    pointer-events: none;
    background: #fff;
    border: #fff !important;
  }
  .detailContactBoxMain .mwform-radio-field {
    display: block;
    margin: 0 0 10px !important;
  }
  .detailContactBoxMain .wpcf7-form-control-wrap .wpcf7-list-item {
    margin: 0 15px 10px 0 !important;
  }
  .detailContactBoxMain .formFile {
    margin-bottom: 10px;
    position: relative;
  }
  .detailContactBoxMain .formFile_inner {
    display: inline-block;
    position: relative;
    padding-right: 40px;
  }
  .detailContactBoxMain .formFile .mwform-file-delete {
    position: absolute;
    top: 3px;
    right: 0;
  }
  .detailContactBoxMain .formFile .fileSet .mwform-file-delete {
    visibility: visible;
  }
  .detailContactBoxMain .formFileInfo {
    color: #de0012;
  }
  .formBtnBox {
    text-align: center;
    padding-bottom: 40px;
    border-top: 1px solid #000;
    padding-top: 50px;
  }
  .formBtnBox input {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 150px;
    height: 40px;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background: #000;
    border: none;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #fff;
    -webkit-appearance: none;
    border-radius: 10px;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .formBtnBox input {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .formBtnBox input:active, .desktop .formBtnBox input:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .formBtnBox input:active, .desktop .formBtnBox input:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .detailContactBox {
    margin: 0 25px 60px;
  }
  .detailContactBox_title {
    height: 50px;
    font-size: 1.6rem;
  }
  .detailContactBox_title img {
    width: auto;
    height: 18px;
  }
  .detailContactBox_title02 {
    background: #000;
    text-align: center;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.06em;
  }
  .detailContactBox_title02 img {
    width: auto;
    height: 18px;
  }
  .detailContactBox br {
    display: none;
  }
  .formBtnContainer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    padding-top: 30px;
    gap: 0 20px;
  }
  .formBtnContainer_submit-back input {
    width: 100%;
    height: 52px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background: #efefef;
    border: none;
    font-size: 14px;
    color: #333;
    padding: 0 2em;
    -webkit-appearance: none;
    border-radius: 5px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .formBtnContainer_submit-back input {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .formBtnContainer_submit-back input:active, .desktop .formBtnContainer_submit-back input:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .formBtnContainer_submit-back input:active, .desktop .formBtnContainer_submit-back input:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .formBtnContainer_submit-next input {
    width: 200px;
    height: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background: #000;
    border: none;
    font-size: 14px;
    color: #fff;
    padding: 0 2em;
    -webkit-appearance: none;
    border-radius: 5px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .formBtnContainer_submit-next input {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .formBtnContainer_submit-next input:active, .desktop .formBtnContainer_submit-next input:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .formBtnContainer_submit-next input:active, .desktop .formBtnContainer_submit-next input:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productSec {
  padding: 0 2%;
}
.productSec_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.productSecCount {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  text-align: right;
}
.productSecCount.mb {
  margin-bottom: 0px;
}

.productSecMain {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 0px;
}
.productSecMain::before {
  content: "";
  display: block;
  width: 23%;
  -ms-flex-order: 1;
      order: 1;
}
.productSecMain::after {
  content: "";
  display: block;
  width: 23%;
}
.productSecMain_item {
  display: block;
  width: 23%;
  position: relative;
  margin-bottom: 40px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .productSecMain_item {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productSecMain_item:active, .desktop .productSecMain_item:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .productSecMain_item:active, .desktop .productSecMain_item:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productSecMain_pic {
  margin-bottom: 15px;
  height: 230px;
}
.productSecMain_pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.productSecMain_icon {
  position: absolute;
  top: 5px;
  right: 5px;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}
.productSecMain_icon li {
  font-size: 1.2rem;
}
.productSecMain_icon li span {
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 22px;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 5px;
}
.productSecMain_icon-01 {
  background: #e4df36;
  color: #000;
}
.productSecMain_icon-02 {
  background: #00a7ac;
  color: #fff;
}
.productSecMain_icon-03 {
  background: #ff0200;
  color: #fff;
}
.productSecMain_name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 10px;
}
.productSecMain_name:before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
}
.productSecMain_list {
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.productSecMain_list dt {
  width: 80px;
  font-weight: 700;
}
.productSecMain_list dd {
  -ms-flex: 1;
      flex: 1;
}

.commonPager .wp-pagenavi {
  padding: 20px 0 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-align: center;
      align-items: center;
  gap: 0 15px;
}
.commonPager .wp-pagenavi .page {
  width: 40px;
  height: 40px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  background: #fff;
  color: #ff7700;
  border: 1px solid #ff7700;
  display: -ms-flexbox;
  display: flex;
  transition: all 0.4s;
  font-family: "Montserrat", serif;
}
.commonPager .wp-pagenavi .page:active, .desktop .commonPager .wp-pagenavi .page:hover {
  background: #ff7700;
  color: #fff;
  text-decoration: none;
}
.commonPager .wp-pagenavi .current {
  width: 40px;
  height: 40px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  background: #ff7700;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
}
.commonPager .wp-pagenavi .previouspostslink {
  width: 70px;
  height: 40px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  background: #ff7700;
  display: -ms-flexbox;
  display: flex;
  transition: all 0.4s;
  position: relative;
  color: #fff;
  letter-spacing: 0.05em;
}
.commonPager .wp-pagenavi .previouspostslink:active, .desktop .commonPager .wp-pagenavi .previouspostslink:hover {
  color: #e4df36;
  text-decoration: none;
}
.commonPager .wp-pagenavi .nextpostslink {
  width: 70px;
  height: 40px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  background: #ff7700;
  display: -ms-flexbox;
  display: flex;
  transition: all 0.4s;
  position: relative;
  color: #fff;
  letter-spacing: 0.05em;
}
.commonPager .wp-pagenavi .nextpostslink:active, .desktop .commonPager .wp-pagenavi .nextpostslink:hover {
  color: #e4df36;
  text-decoration: none;
}

.productSecSubInfo {
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #000;
  margin-bottom: 100px;
}
.productSecSubInfo_item {
  width: 50%;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  padding: 10px;
  letter-spacing: 0.1em;
}
.productSecSubInfo_item-01 {
  position: relative;
}
.productSecSubInfo_item-01:after {
  content: "";
  width: 20px;
  height: 100%;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  right: -20px;
}
.productSecSubInfo_item-02 {
  background: #000;
  color: #fff;
}
.productSecSubInfo_item-02 a {
  color: #fff;
  position: relative;
  display: inline-block;
}
.productSecSubInfo_item-02 a:after {
  content: "";
  position: absolute;
  top: 0;
  right: -34px;
  bottom: 0;
  margin: auto;
  background: #ffffff;
  height: 25.9807621135px;
  width: 24px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.productDetailSec {
  margin-bottom: 120px;
}
.productDetailSec_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.productDetailSecHead {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 0 30px;
  margin-bottom: 20px;
}
.productDetailSecHead_left {
  width: 640px;
}
.productDetailSecHead_right {
  -ms-flex: 1;
      flex: 1;
}
.productDetailSecHead_right .productStatusIcon_icon {
  margin-bottom: 20px;
}
.productDetailSecHead_right .productStatusIcon_icon li span {
  font-size: 15px;
  height: 24px;
  padding: 0 10px;
}
.productDetailSecHead_list {
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.productDetailSecHead_list dt {
  font-weight: 700;
  width: 80px;
}
.productDetailSecHead_list dd {
  -ms-flex: 1;
      flex: 1;
}
.productDetailSecHead_youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 30px;
}
.productDetailSecHead_youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.productDetailSlide {
  position: relative;
}
.productDetailSlide .swiper-button-disabled {
  display: none;
}
.productDetailSlide_prev {
  width: 50px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, .5);
  z-index: 10;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .productDetailSlide_prev {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailSlide_prev:active, .desktop .productDetailSlide_prev:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .productDetailSlide_prev:active, .desktop .productDetailSlide_prev:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailSlide_prev:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.productDetailSlide_next {
  width: 50px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, .5);
  z-index: 10;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .productDetailSlide_next {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailSlide_next:active, .desktop .productDetailSlide_next:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .productDetailSlide_next:active, .desktop .productDetailSlide_next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailSlide_next:after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.productDetailSlide_item img {
  width: 100%;
  height: 425px;
  object-fit: cover;
}

.productDetailThumb {
  margin-bottom: 50px;
  position: relative;
}
.productDetailThumb.sp {
  display: none;
}
.productDetailThumb .swiper-slide {
  width: 100px;
}
.productDetailThumb_item {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  position: relative;
}
.productDetailThumb_item img {
  height: 100px;
  object-fit: cover;
}
.swiper-slide-active .productDetailThumb_item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 5px solid #e4df36;
  top: 0;
  left: 0;
  z-index: 10;
}
.productDetailThumb .swiper-button-disabled {
  display: none;
}
.productDetailThumb_prev {
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, .5);
  z-index: 10;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_prev {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailThumb_prev:active, .desktop .productDetailThumb_prev:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_prev:active, .desktop .productDetailThumb_prev:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailThumb_prev:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.productDetailThumb_next {
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, .5);
  z-index: 10;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_next {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailThumb_next:active, .desktop .productDetailThumb_next:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_next:active, .desktop .productDetailThumb_next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailThumb_next:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.productDetailComment {
  padding: 1.5em;
  border: 1px solid #00a7ac;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
.productDetailComment p:last-of-type {
  margin-bottom: 0;
}

.downLoadBtn {
  margin-bottom: 20px;
}
.downLoadBtn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .downLoadBtn button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.downLoadBtn button:active, .desktop .downLoadBtn button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .downLoadBtn button:active, .desktop .downLoadBtn button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.downLoadBtn button img {
  width: 180px;
}

.btmContactBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 50px;
}
.btmContactBox_title {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}
.btmContactBox_item:last-of-type {
  border-left: 2px solid #000;
  padding-left: 50px;
}
.btmContactBox_tel {
  text-align: center;
  font-family: "Oswald", serif;
  letter-spacing: 0.14em;
}
.btmContactBox_tel-01 {
  font-size: 3.6rem;
}
.btmContactBox_tel-02 {
  font-size: 4.8rem;
}
.btmContactBox_more {
  text-align: center;
}
.btmContactBox_more a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 320px;
  height: 60px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 2.3rem;
  font-weight: 600;
  background: #04c755;
  color: #fff;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .btmContactBox_more a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.btmContactBox_more a:active, .desktop .btmContactBox_more a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .btmContactBox_more a:active, .desktop .btmContactBox_more a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.productStatusIcon_icon {
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  margin-bottom: 10px;
}
.productStatusIcon_icon li {
  font-size: 1.2rem;
}
.productStatusIcon_icon li span {
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 22px;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 5px;
}
.productStatusIcon_icon-01 {
  background: #e4df36;
  color: #000;
}
.productStatusIcon_icon-02 {
  background: #00a7ac;
  color: #fff;
}
.productStatusIcon_icon-03 {
  background: #ff0200;
  color: #fff;
}

.productDetailCopyBtn {
  padding-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.productDetailCopyBtn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #ff7700;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-image: url("../img/common/pic_textcp.svg");
  background-repeat: no-repeat;
  height: 32px;
  padding-left: 38px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .productDetailCopyBtn button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.productDetailCopyBtn button:active, .desktop .productDetailCopyBtn button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .productDetailCopyBtn button:active, .desktop .productDetailCopyBtn button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.copyTextMain {
  display: none;
}

@media only screen and (max-width: 990px) {
  .productSec {
    padding: 0 25px;
  }
  .productSecCount {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .productSecCount.mb {
    margin-bottom: 10px;
  }
  .productSecMain {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 40px;
  }
  .productSecMain::before {
    display: none;
  }
  .productSecMain::after {
    display: none;
  }
  .productSecMain_item {
    width: 48%;
    margin-bottom: 30px;
  }
  .productSecMain_pic {
    margin-bottom: 10px;
    height: calc(50vw - 30px);
  }
  .productSecMain_icon {
    position: absolute;
    top: 5px;
    right: 5px;
    display: -ms-flexbox;
    display: flex;
    gap: 0 5px;
  }
  .productSecMain_icon li {
    font-size: 1.1rem;
  }
  .productSecMain_icon li span {
    height: 20px;
    padding: 0 4px;
  }
  .productSecMain_name {
    font-size: 1.4rem;
    padding-left: 10px;
  }
  .productSecMain_list {
    font-size: 1.1rem;
  }
  .productSecMain_list dt {
    width: 70px;
  }
  .productSecMain_list dd {
    -ms-flex: 1;
        flex: 1;
  }
  .commonPager .wp-pagenavi {
    padding: 10px 0 40px;
    gap: 0 10px;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .commonPager .wp-pagenavi .page {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }
  .commonPager .wp-pagenavi .current {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }
  .commonPager .wp-pagenavi .previouspostslink {
    width: 54px;
    height: 28px;
    font-size: 1.2rem;
  }
  .commonPager .wp-pagenavi .nextpostslink {
    width: 54px;
    height: 28px;
    font-size: 1.2rem;
  }
  .productSecSubInfo {
    display: -ms-flexbox;
    display: flex;
    border: 2px solid #000;
    margin-bottom: 60px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .productSecSubInfo_item {
    width: 100%;
    font-size: 1.4rem;
    padding: 5px;
    letter-spacing: 0.05em;
  }
  .productSecSubInfo_item-01 {
    position: relative;
  }
  .productSecSubInfo_item-01:after {
    content: "";
    width: 100%;
    height: 20px;
    background: #fff;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
            clip-path: polygon(100% 0, 0 0, 50% 100%);
    position: absolute;
    top: auto;
    top: initial;
    bottom: -20px;
    right: 0px;
  }
  .productSecSubInfo_item-02 {
    background: #000;
    color: #fff;
  }
  .productSecSubInfo_item-02 a {
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 30px 10px 10px;
  }
  .productSecSubInfo_item-02 a:after {
    content: "";
    position: absolute;
    top: 0;
    right: -34px;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    height: 25.9807621135px;
    width: 24px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: none;
  }
  .productDetailSec {
    margin-bottom: 60px;
  }
  .productDetailSecHead {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 30px;
    margin-bottom: 20px;
  }
  .productDetailSecHead_left {
    width: 100%;
    margin-bottom: 20px;
  }
  .productDetailSecHead_right {
    -ms-flex: initial;
        flex: initial;
    width: 100%;
    padding: 0 25px;
  }
  .productDetailSecHead_list {
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
  .productDetailSecHead_list dt {
    font-weight: 700;
    width: 80px;
  }
  .productDetailSecHead_list dd {
    -ms-flex: 1;
        flex: 1;
  }
  .productDetailSecHead_youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 30px;
  }
  .productDetailSecHead_youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .productDetailSlide {
    position: relative;
    margin-bottom: 30px;
  }
  .productDetailSlide .swiper-button-disabled {
    display: none;
  }
  .productDetailSlide_prev {
    width: 30px;
    height: 60px;
  }
  .productDetailSlide_prev:after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .productDetailSlide_next {
    width: 30px;
    height: 60px;
  }
  .productDetailSlide_next:after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .productDetailSlide_item img {
    height: auto;
  }
  .productDetailThumb {
    margin-bottom: 50px;
    position: relative;
    display: none;
  }
  .productDetailThumb.sp {
    display: block;
    margin-bottom: 0;
  }
  .productDetailThumb .swiper-slide {
    width: 100px;
  }
  .productDetailThumb_item {
    width: 100px;
    height: 100px;
    margin-right: 10px;
    position: relative;
  }
  .productDetailThumb_item img {
    height: 100px;
    object-fit: cover;
  }
  .swiper-slide-active .productDetailThumb_item:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border: 5px solid #e4df36;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .productDetailThumb .swiper-button-disabled {
    display: none;
  }
  .productDetailThumb_prev {
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0, 0, 0, .5);
    z-index: 10;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .productDetailThumb_prev {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_prev:active, .desktop .productDetailThumb_prev:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .productDetailThumb_prev:active, .desktop .productDetailThumb_prev:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_prev:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .productDetailThumb_next {
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0, 0, 0, .5);
    z-index: 10;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .productDetailThumb_next {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_next:active, .desktop .productDetailThumb_next:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .productDetailThumb_next:active, .desktop .productDetailThumb_next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .productDetailThumb_next:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .productDetailComment {
    padding: 1.5em;
    margin: 0 25px 60px;
  }
  .downLoadBtn {
    margin-bottom: 40px;
    padding-left: 25px;
  }
  .downLoadBtn button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background: none;
    padding: 0;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .downLoadBtn button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .downLoadBtn button:active, .desktop .downLoadBtn button:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .downLoadBtn button:active, .desktop .downLoadBtn button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .downLoadBtn button img {
    width: 180px;
  }
  .btmContactBox {
    gap: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 25px;
  }
  .btmContactBox_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .btmContactBox_item {
    width: 100%;
  }
  .btmContactBox_item:last-of-type {
    border-left: none;
    padding-left: 0px;
    margin-top: 30px;
    border-top: 1px solid #000;
    padding-top: 30px;
  }
  .btmContactBox_tel {
    line-height: 1;
  }
  .btmContactBox_tel-01 {
    font-size: 2.2rem;
  }
  .btmContactBox_tel-02 {
    font-size: 3.6rem;
  }
  .btmContactBox_more {
    text-align: center;
  }
  .btmContactBox_more a {
    width: 280px;
    height: 50px;
    font-size: 2rem;
  }
}
.companySec {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 100px;
}
.companySec_inner {
  max-width: 510px;
  margin: 0 auto;
  padding: 90px 0;
}
.companySec_text {
  color: #fff;
  margin-bottom: 20px;
}
.companySec_text dt {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 30px;
}
.companySec_text dd {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
}
.companySec_name {
  color: #fff;
  text-align: right;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.companySec_name span {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  margin-right: 15px;
}

.companySec02_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0;
}
.companySec02_title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.companySec02Main_list {
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #000;
}
.companySec02Main_list:last-of-type {
  border-bottom: 1px solid #000;
}
.companySec02Main_list dt {
  width: 180px;
  background: #f5f5f5;
  font-weight: 600;
}
.companySec02Main_list dd {
  -ms-flex: 1;
      flex: 1;
}
.companySec02Main_list dd a {
  color: #e10112;
  text-decoration: underline;
}
.companySec02Main_list dd a:hover {
  text-decoration: none;
}
.companySec02Main_list dt,
.companySec02Main_list dd {
  padding: 20px;
}

@media only screen and (max-width: 990px) {
  .companySec {
    margin-bottom: 40px;
  }
  .companySec_inner {
    padding: 40px 25px;
  }
  .companySec_text {
    color: #fff;
    margin-bottom: 20px;
  }
  .companySec_text dt {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .companySec_name {
    color: #fff;
    text-align: right;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1em;
  }
  .companySec_name span {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.4rem;
    margin-right: 15px;
  }
  .companySec02_inner {
    padding: 30px 25px;
  }
  .companySec02_title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .companySec02Main_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #000;
  }
  .companySec02Main_list:last-of-type {
    border-bottom: 1px solid #000;
  }
  .companySec02Main_list dt {
    width: 100%;
    font-size: 1.6rem;
    border-bottom: 1px solid #000;
  }
  .companySec02Main_list dd {
    -ms-flex: 1;
        flex: 1;
  }
  .companySec02Main_list dd a {
    color: #e10112;
    text-decoration: underline;
  }
  .companySec02Main_list dd a:hover {
    text-decoration: none;
  }
  .companySec02Main_list dt,
  .companySec02Main_list dd {
    padding: 10px;
  }
  .companySec02Main_list dt {
    padding: 15px 10px;
  }
}
.blogSec_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.blogSecMain {
  margin-bottom: 90px;
}
.blogSecMain_item {
  border-bottom: 1px solid #00a7ac;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.blogSecMain_head {
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.1em;
  font-size: 2rem;
  margin-bottom: 30px;
}
.blogSecMain_head.mb0 {
  margin-bottom: 0;
}
.blogSecMain_head-day {
  font-family: "Oswald", serif;
  margin-right: 20px;
}
.blogSecMain_head-title {
  font-weight: 700;
}
.blogSecMain_text {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
}
.blogSecMain_thumb img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.blogSecMain_thumb a {
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .blogSecMain_thumb a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.blogSecMain_thumb a:active, .desktop .blogSecMain_thumb a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .blogSecMain_thumb a:active, .desktop .blogSecMain_thumb a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@media only screen and (max-width: 990px) {
  .blogSec_inner {
    padding: 0 25px;
  }
  .blogSecMain {
    margin-bottom: 40px;
  }
  .blogSecMain_item {
    border-bottom: 1px solid #00a7ac;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .blogSecMain_head {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .blogSecMain_head-day {
    font-family: "Oswald", serif;
    margin-right: 10px;
  }
  .blogSecMain_text {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2.2;
  }
}