@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要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* 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) {
  * {
    animation-duration: 0.01ms !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: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  font-style: normal;
  padding-top: 70px;
}

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(255, 246, 87, 0.9);
  color: #000;
}

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(255, 246, 87, 0.9);
  color: #000;
}

/* ==========================================================================
   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 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  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;
}

main {
  padding-top: 70px;
}

.subPageContainer {
  padding-bottom: 150px;
}
.subPageContainer_inner {
  max-width: 1200px;
  margin: 0 auto;
}
.subPageContainer_title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #027041;
}
.subPageContainer_title img {
  width: 50px;
}

/*
 Header
----------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  background: #f8fff4;
  width: 100%;
  z-index: 1000;
}
.header_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.headerMain {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 20px 10px;
}
.headerMain_mark {
  width: 100px;
  height: 100px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fff4;
  border-radius: 100px;
}
.headerMain_mark img {
  width: 55px;
}
.headerMain_title {
  font-size: 2rem;
  color: #027041;
}
.headerMain_title a {
  color: #027041;
}

.headerSearch {
  margin-left: auto;
  position: relative;
  display: inline-block;
}
.headerSearch.spShow {
  display: none;
}
.headerSearch_text {
  border-radius: 35px;
  border: 1px solid #989898;
  background: #feffd6;
  box-shadow: 0 1px 6.7px 0 rgba(0, 0, 0, 0.25) inset;
  height: 40px;
  padding: 5px 45px 5px 15px;
  width: 100%;
  max-width: 340px;
}
.headerSearch_button {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 26px;
  width: 26px;
  padding: 0;
  background: none;
  border: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .headerSearch_button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.headerSearch_button:active, .desktop .headerSearch_button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .headerSearch_button:active, .desktop .headerSearch_button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.footer {
  background: #f8fff4;
}
.footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1px 0 60px;
}
.footer_icon {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  margin: -60px auto -20px;
  display: flex;
  background: #f8fff4;
  align-items: center;
  justify-content: center;
}
.footer_icon img {
  width: 60px;
  height: auto;
}
.footer_title {
  text-align: center;
  font-size: 2.4rem;
  color: #027041;
  margin-bottom: 40px;
}
.footer_copy {
  text-align: center;
  font-size: 1.4rem;
  text-align: center;
}

.footerMain {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footerMain_list dt {
  font-size: 1.8rem;
  color: #027041;
}
.footerMain_list ul li {
  margin-top: 10px;
}
.footerMain_list ul li a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #9cc813;
}
.footerMain_list ul li a:before {
  content: "・";
  color: #027041;
}
.footerMain_list 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) {
  .footerMain_list ul li a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.footerMain_list ul li a:active, .desktop .footerMain_list ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .footerMain_list ul li a:active, .desktop .footerMain_list ul li a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.pageTopBtn {
  position: fixed;
  right: 50px;
  bottom: 100px;
  width: 75px;
}
.pageTopBtn a {
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .pageTopBtn a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.pageTopBtn a:active, .desktop .pageTopBtn a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .pageTopBtn a:active, .desktop .pageTopBtn a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.spMenuBox {
  display: none;
}

.spNaviBox {
  display: none;
}

.headSosBtn {
  margin-left: auto;
  padding-right: 10px;
  padding-top: 6px;
}
.headSosBtn button {
  padding: 0;
  background: none;
  border: none;
  display: inline-flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .headSosBtn button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.headSosBtn button:active, .desktop .headSosBtn button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .headSosBtn button:active, .desktop .headSosBtn button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.headSosBtn button img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}
.js-sos-on .headSosBtn button img {
  opacity: 0.6;
}

.sosPopBox {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.64);
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
}
body.js-sos-on .sosPopBox {
  display: block;
}
.sosPopBox_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sosPopBoxMain {
  border-radius: 30px;
  background: #f3ffcf;
  width: 100%;
  max-width: 430px;
  height: auto;
  padding: 20px 30px 40px;
}
.sosPopBoxMain_title {
  text-align: center;
  color: #027041;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.sosPopBoxMain_btn {
  text-align: right;
  margin-right: -20px;
}
.sosPopBoxMain_close {
  padding: 0;
  background: none;
  border: none;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .sosPopBoxMain_close {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.sosPopBoxMain_close:active, .desktop .sosPopBoxMain_close:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .sosPopBoxMain_close:active, .desktop .sosPopBoxMain_close:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.sosPopBoxMain_over {
  max-height: calc(70vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 10px 30px;
}

.sosPopBoxMainList_item {
  border: 1px solid #027041;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  gap: 0 10px;
  margin-bottom: 15px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .sosPopBoxMainList_item {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.sosPopBoxMainList_item:active, .desktop .sosPopBoxMainList_item:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .sosPopBoxMainList_item:active, .desktop .sosPopBoxMainList_item:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.sosPopBoxMainList_item:last-child {
  margin-bottom: 0;
}
.sosPopBoxMainList_icon {
  width: 20px;
  flex-shrink: 0;
}
.sosPopBoxMainList_icon img {
  width: 20px;
  height: auto;
}
.sosPopBoxMainList_data {
  flex: 1;
}
.sosPopBoxMainList_title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #027041;
}
.sosPopBoxMainList_tel {
  font-size: 1.5rem;
}
.sosPopBoxMainList_text {
  font-size: 1.2rem;
  font-weight: 400;
}

/*
 Container
----------------------------------------------------------- */
@media only screen and (max-width: 990px) {
  html {
    font-size: 62.5%;
    scroll-padding-top: 50px;
  }
  html.chatBoxOpen {
    overflow: clip;
    overflow: hidden;
  }
  body {
    font-size: 16px;
    width: 100%;
    min-width: 320px !important;
    min-height: initial;
    -webkit-text-size-adjust: 100%;
    position: relative;
    padding-top: 50px;
  }
  .chatBoxOpen body {
    overflow: clip;
    overflow: hidden;
  }
  main {
    padding-top: 30px;
  }
  main.mapSp {
    padding-top: 0;
  }
  main.mapSp .subPageContainer_title {
    display: none;
  }
  main.mapSp .subPageContainer_inner {
    padding: 0;
  }
  main.mapSp .subPageContainer {
    padding-bottom: 0;
  }
  .subPageContainer {
    padding-bottom: 150px;
  }
  .subPageContainer_inner {
    padding: 0 20px;
  }
  .subPageContainer_title {
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .subPageContainer_title img {
    width: 25px;
  }
  /*
   Header
  ----------------------------------------------------------- */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    background: #f8fff4;
    width: 100%;
  }
  .headerMain {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap: 0;
  }
  .headerMain_mark {
    width: 55px;
    height: 55px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fff4;
    border-radius: 100px;
  }
  .headerMain_mark img {
    width: 26px;
  }
  .headerMain_title {
    font-size: 1.6rem;
  }
  .headerSearch {
    display: none;
  }
  .headerSearch.spShow {
    display: block;
    margin: 0 20px 25px;
    position: relative;
  }
  .headerSearch_text {
    height: 40px;
    padding: 5px 45px 5px 15px;
    width: 100%;
    max-width: initial;
    font-size: 1.5rem;
  }
  .headerSearch_button {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 26px;
    width: 26px;
    padding: 0;
    background: none;
    border: none;
  }
  .footer {
    background: #f8fff4;
    display: none;
  }
  .footer_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1px 0 40px;
  }
  .footer_icon {
    width: 120px;
    height: 120px;
    border-radius: 100px;
    margin: -60px auto -20px;
    display: flex;
    background: #f8fff4;
    align-items: center;
    justify-content: center;
  }
  .footer_icon img {
    width: 60px;
    height: auto;
  }
  .footer_title {
    text-align: center;
    font-size: 2.4rem;
    color: #027041;
    margin-bottom: 40px;
  }
  .footer_copy {
    text-align: center;
    font-size: 1.5rem;
    text-align: center;
  }
  .footerMain {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .footerMain_list dt {
    font-size: 2rem;
    color: #027041;
  }
  .footerMain_list ul li {
    margin-top: 10px;
  }
  .footerMain_list ul li a {
    font-size: 2rem;
    font-weight: 400;
    color: #9cc813;
  }
  .footerMain_list ul li a:before {
    content: "・";
    color: #027041;
  }
  .footerMain_list 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) and (max-width: 990px) {
  .footerMain_list ul li a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .footerMain_list ul li a:active, .desktop .footerMain_list ul li a:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .footerMain_list ul li a:active, .desktop .footerMain_list ul li a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .pageTopBtn {
    position: fixed;
    right: 50px;
    bottom: 100px;
    width: 100px;
    display: none;
  }
  .pageTopBtn a {
    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) {
  .pageTopBtn a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .pageTopBtn a:active, .desktop .pageTopBtn a:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .pageTopBtn a:active, .desktop .pageTopBtn a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .spMenuBox {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 500;
  }
  .spMenuBox_inner {
    display: flex;
    height: 80px;
  }
  .spMenuBox_item01 {
    width: 25%;
    position: relative;
  }
  .spMenuBox_item01 a {
    height: 80px;
    display: block;
    background: #9cc813;
    padding-top: 10px;
  }
  .spMenuBox_name {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
  }
  .spMenuBox_icon {
    width: 35px;
    height: 35px;
    margin: 0 auto;
  }
  .spMenuBox_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .spMenuBox_btn {
    width: 25%;
    position: relative;
  }
  .spMenuBox_btn button {
    height: 80px;
    display: block;
    background: #9cc813;
    padding-top: 10px;
    border: none;
    padding: 0;
    width: 100%;
  }
  .spMenuBox .line:before {
    content: "";
    width: 1px;
    height: 85%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .spNaviBox {
    display: block;
    position: fixed;
    bottom: -100vh;
    left: 0;
    width: 100%;
    height: calc(var(--page-height, 100vh) - 80px);
    z-index: 200;
    background: rgba(7, 7, 7, 0.5);
    transition: all 0.4s ease-in-out;
    opacity: 0;
  }
  .openNaviMenu .spNaviBox {
    bottom: 80px;
    opacity: 1;
  }
  .spNaviBox_inner {
    display: flex;
    height: 100%;
    align-items: center;
  }
  .spNaviBox_wrap {
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .spNaviBox_mark {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100px;
    margin: 0 auto;
  }
  .spNaviBox_mark img {
    width: 36px;
  }
  .spNaviBoxMain_close {
    text-align: right;
    margin-bottom: 15px;
  }
  .spNaviBoxMain_close button {
    width: 60px;
    border: none;
    background: none;
  }
  .headSosBtn {
    margin-left: auto;
  }
  .sosPopBox {
    background: none;
    height: calc(100vh - 130px);
    display: block;
    top: 110vh;
    transition: top 0.4s ease-in-out;
  }
  body.js-sos-on .sosPopBox {
    top: 50px;
    display: block;
  }
  .sosPopBox_inner {
    display: block;
  }
  .sosPopBoxMain {
    border-radius: 0;
    height: calc(100vh - 130px);
    padding: 20px 20px 40px;
  }
  .sosPopBoxMain_title {
    margin-bottom: 10px;
  }
  .sosPopBoxMain_btn {
    text-align: right;
    margin-right: -20px;
    margin-bottom: -20px;
  }
  .sosPopBoxMain_close {
    margin-right: 20px;
    width: 38px;
    height: 38px;
  }
  .sosPopBoxMain_over {
    max-height: calc(100vh - 240px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 10px 30px;
  }
  .sosPopBoxMainList_item {
    border: 1px solid #027041;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    gap: 0 10px;
    margin-bottom: 15px;
    align-items: start;
  }
  .sosPopBoxMainList_item:last-child {
    margin-bottom: 0;
  }
  .sosPopBoxMainList_icon {
    width: 20px;
  }
  .sosPopBoxMainList_data {
    flex: 1;
  }
  .sosPopBoxMainList_title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #027041;
  }
  .sosPopBoxMainList_tel {
    font-size: 1.5rem;
  }
  .sosPopBoxMainList_text {
    font-size: 1.2rem;
    font-weight: 400;
  }
}
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Animate.css
 */
:root {
  --animate-duration: 0.5s;
  --animate-delay: 0.5s;
  --animate-repeat: 0.5;
}

.animate__animated {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -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: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-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% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -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: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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, 100px, 0);
    transform: translate3d(0, 100px, 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 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: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -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;
}

.spFixBtn {
  display: none;
}

.chatBox {
  position: fixed;
  z-index: 100;
  right: 1.2%;
  background: #dbeeb8;
  border-radius: 10px 10px 0 0;
  border: 1px solid #625f5f;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  width: 490px;
  bottom: calc(75px - 65vh);
  height: 65vh;
}
.chatBoxOpen .chatBox {
  bottom: 0;
}
.chatBox_title {
  position: relative;
}
.chatBox_title:before {
  content: "";
  width: 65px;
  height: 2px;
  background: #9b9b9b;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.chatBox_title button {
  width: 100%;
  padding: 0 10px 0 50px;
  background: #9cc813;
  border: none;
  display: flex;
  align-items: center;
  font-size: 2rem;
  height: 75px;
  color: #fff;
  position: relative;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .chatBox_title button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.chatBox_title button:active, .desktop .chatBox_title button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .chatBox_title button:active, .desktop .chatBox_title button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.chatBox_title button:before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  margin: auto;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.chatBoxOpen .chatBox_title button:before {
  top: 10px;
  border-width: 2px 0 0 2px;
  transform: rotate(45deg);
}
.chatBox_title button img {
  width: 50px;
  margin-left: auto;
  display: none;
}
.chatBoxOpen .chatBox_title button img {
  display: block;
}

.chatBoxMain {
  padding: 20px 20px;
}
.chatBoxMain_inner {
  max-height: 790px;
  height: calc(65vh - 210px);
  margin-bottom: 10px;
  overflow-y: auto;
  padding: 0 20px 10px;
}
.chatBoxMain_inner p {
  margin-bottom: 20px;
}
.chatBoxMain_inner p:last-of-type {
  margin-bottom: 0;
}
.chatBoxMain_inner a {
  color: #008e00;
  position: relative;
  padding-left: 15px;
}
.chatBoxMain_inner a:before {
  content: "・";
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.chatBoxMain_textarea textarea {
  width: 100%;
  height: 85px;
  border-radius: 15px;
  border: 1px solid #989898;
  background: #feffd6;
  box-shadow: 0 1px 6.7px 0 rgba(0, 0, 0, 0.25) inset;
  padding: 10px;
}
.chatBoxMain_user {
  font-size: 1.5rem;
  background: #ffffff;
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
}
.chatBoxMain_user:after {
  content: "";
  background: #fff;
  height: 13.8564064606px;
  width: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  bottom: 15px;
  right: -18px;
}
.chatBoxMain_admin {
  font-size: 1.5rem;
  background: #feffd6;
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
}
.chatBoxMain_admin:after {
  content: "";
  background: #feffd6;
  height: 13.8564064606px;
  width: 20px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  bottom: 15px;
  left: -18px;
}

.androidAddbox,
.appleAddbox {
  display: none;
}

@media only screen and (max-width: 990px) {
  .spBr {
    display: block;
  }
  .pcPic {
    display: none;
  }
  .spPic {
    display: inline-block;
  }
  .spNone {
    display: none !important;
  }
  .chatBox {
    position: fixed;
    z-index: 100;
    bottom: -100vh;
    right: 0;
    border-radius: 0;
    border: none;
    height: calc(var(--page-height) - 130px);
    width: 100%;
    transition: initial;
  }
  .chatBoxOpen .chatBox {
    bottom: 80px;
  }
  .chatBox_title {
    position: relative;
    cursor: grab;
  }
  .chatBox_title:active {
    cursor: grabbing;
  }
  .chatBox_title:before {
    width: 65px;
    height: 2px;
    top: 6px;
  }
  .chatBox_title button {
    width: 100%;
    padding: 0 10px 0 40px;
    font-size: 1.5rem;
    height: 45px;
    cursor: grab;
  }
  .chatBox_title button:active {
    cursor: grabbing;
  }
  .chatBox_title button:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
  }
  .chatBoxOpen .chatBox_title button:before {
    top: 0;
    border-width: 0 2px 2px 0;
  }
  .chatBox_title button img {
    width: 30px;
    display: none !important;
  }
  .chatBoxMain {
    padding: 20px 20px;
  }
  .chatBoxMain_inner {
    max-height: 690px;
    height: calc(var(--page-height) - 50px - 160px - 85px);
  }
  .chatBoxMain_inner {
    margin-bottom: 15px;
    overflow-y: auto;
    padding: 0 20px 10px;
  }
  .chatBoxMain_inner p {
    margin-bottom: 20px;
  }
  .chatBoxMain_inner p:last-of-type {
    margin-bottom: 0;
  }
  .chatBoxMain_inner a {
    color: #008e00;
    position: relative;
    padding-left: 15px;
  }
  .chatBoxMain_inner a:before {
    content: "・";
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
  }
  .chatBoxMain_textarea textarea {
    height: 68px;
  }
  .chatBoxMain_user {
    font-size: 1.5rem;
    background: #ffffff;
    font-weight: 400;
    position: relative;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
  }
  .chatBoxMain_user:after {
    content: "";
    background: #fff;
    height: 13.8564064606px;
    width: 20px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    bottom: 15px;
    right: -18px;
  }
  .chatBoxMain_admin {
    font-size: 1.5rem;
    background: #feffd6;
    font-weight: 400;
    position: relative;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
  }
  .chatBoxMain_admin:after {
    content: "";
    background: #feffd6;
    height: 13.8564064606px;
    width: 20px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    position: absolute;
    bottom: 15px;
    left: -18px;
  }
  .androidAddbox {
    display: none;
    position: fixed;
    top: 60px;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2000;
  }
  .androidAddbox:after {
    content: "";
    position: absolute;
    top: -8px;
    right: 25px;
    border: solid #007200;
    border-width: 2px 0 0 2px;
    background: #feffed;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    z-index: 3;
  }
  .androidAddbox_inner {
    position: relative;
    border: 2px solid #007200;
    background: #feffed;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: 20px 15px 15px;
  }
  .appleAddbox {
    display: none;
    position: fixed;
    bottom: 40px;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2000;
  }
  .appleAddbox:after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border: solid #007200;
    border-width: 0 2px 2px 0;
    background: #feffed;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    z-index: 3;
  }
  .appleAddbox_inner {
    position: relative;
    border: 2px solid #007200;
    background: #feffed;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: 20px 15px 15px;
  }
  .addboxMain {
    display: flex;
    align-items: center;
    gap: 0 10px;
  }
  .addboxMain_logo {
    width: 54px;
  }
  .addboxMain_text {
    flex: 1;
    color: #077344;
    font-weight: 500;
    line-height: 1.3;
  }
  .addboxMain_text img {
    width: 22px;
    height: auto;
  }
  .addboxMain_close {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 500;
  }
  .addboxMain_close button {
    padding: 0;
    background: none;
    border: none;
  }
  .addboxMain_close button img {
    width: 22px;
  }
}
.topNavibox {
  margin-bottom: 100px;
}
.topNavibox_inner {
  max-width: 900px;
  margin: 0 auto;
}

.topCommonTitle {
  text-align: center;
  margin-bottom: 60px;
}
.topCommonTitle.spNone {
  display: none;
}
.topCommonTitle span {
  background: #9cc813;
  color: #fff;
  display: inline-flex;
  min-width: 280px;
  height: 50px;
  font-size: 2.4rem;
  font-weight: 500;
  border-radius: 50px;
  background: #9cc813;
  align-items: center;
  justify-content: center;
}

.topNaviMain {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 34px 0;
}
.topNaviMain::after {
  content: "";
  display: block;
  width: 30%;
}
.topNaviMain_item {
  width: 30%;
}
.topNaviMain_link {
  display: block;
  border-radius: 5px;
  border: 1px solid #94b824;
  background: #fcfff4;
  padding: 20px;
  transition: all 0.2s ease-in-out;
}
.topNaviMain_link:active, .desktop .topNaviMain_link:hover {
  text-decoration: none;
  background: #dceeb8;
}
.topNaviMain_icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.topNaviMain_icon img {
  width: 100%;
  object-fit: contain;
}
.topNaviMain_name {
  text-align: center;
}

.topInfobox {
  background: #feffed;
}
.topInfobox_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 120px;
}
.topInfobox_icon {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  margin: -60px auto -20px;
  display: flex;
  background: #feffed;
  align-items: center;
  justify-content: center;
}
.topInfobox_icon img {
  width: 55px;
  height: auto;
}

.topInfoboxHead {
  max-width: 900px;
  margin: 0 auto 60px;
}
.topInfoboxHead_text {
  color: #f29d00;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10px;
}

.topInfoboxList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.topInfoboxList li {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.topInfoboxList li a {
  display: flex;
  height: 100%;
  align-items: center;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .topInfoboxList li a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.topInfoboxList li a:active, .desktop .topInfoboxList li a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .topInfoboxList li a:active, .desktop .topInfoboxList li a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.topInfoboxList li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topColumn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.topInfoboxLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.topInfoboxLink li a {
  display: flex;
  background: #fafff0;
  border: 1px solid #9cc813;
  border-radius: 10px;
  color: #027041;
  min-width: 148px;
  height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.topInfoboxLink li a span {
  font-size: 1.7rem;
  font-weight: 700;
}
.topInfoboxLink li a:active, .desktop .topInfoboxLink li a:hover {
  text-decoration: none;
  background: #dceeb8;
}
.topInfoboxLink li a.active {
  background: #dceeb8;
}

.moreInfoBtn {
  text-align: center;
}
.moreInfoBtn a {
  display: inline-flex;
  background: #9cc813;
  color: #fff;
  align-items: center;
  justify-content: center;
  width: 338px;
  height: 60px;
  font-size: 2rem;
  font-weight: 500;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .moreInfoBtn a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.moreInfoBtn a:active, .desktop .moreInfoBtn a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .moreInfoBtn a:active, .desktop .moreInfoBtn a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@media only screen and (max-width: 990px) {
  .topNavibox {
    margin-bottom: 40px;
  }
  .topNavibox_inner {
    padding: 0 20px;
  }
  .topCommonTitle {
    margin-bottom: 20px;
    text-align: left;
  }
  .topCommonTitle span {
    background: none;
    color: #027041;
    min-width: initial;
    height: auto;
    font-size: 1.5rem;
    display: block;
    font-weight: 700;
  }
  .topNaviMain {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 0;
  }
  .topNaviMain_link {
    padding: 20px 10px;
  }
  .topNaviMain_icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
  }
  .topNaviMain_name {
    font-size: 1rem;
  }
  .topInfobox_inner {
    padding: 40px 20px 120px;
  }
  .topInfobox_icon {
    display: none;
  }
  .topInfoboxHead {
    margin: 0 auto 40px;
  }
  .topInfoboxHead_text {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .topInfoboxList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
  .topColumn .topInfoboxList {
    order: 1;
  }
  .topColumn .topInfoboxLink {
    order: 2;
  }
  .topInfoboxLink {
    padding: 0 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .topInfoboxLink li a {
    border-radius: 10px;
    min-width: 70px;
    height: 25px;
  }
  .topInfoboxLink li a span {
    font-size: 1.2rem;
  }
  .moreInfoBtn {
    text-align: center;
  }
  .moreInfoBtn a {
    width: 200px;
    height: 35px;
    font-size: 1.4rem;
  }
}
.categoryWrap {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.categoryWrap_left {
  width: 320px;
  align-self: flex-start;
}
.categoryWrap_right {
  flex: 1;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  align-self: flex-start;
}

.categorySideArea {
  border: 1px solid #cecccc;
  border-radius: 20px;
  padding: 25px;
  position: sticky;
  top: 90px;
}

.categoryWrapMainArea {
  border: 1px solid #cecccc;
  border-radius: 20px;
  padding: 25px 35px 40px;
  background: #feffed;
}
.categoryWrapMainArea.none {
  display: none;
}
.categoryWrapMainArea_title {
  font-size: 2rem;
  color: #027041;
  font-weight: 500;
  margin-bottom: 0;
}
.categoryWrapMainArea_title span {
  margin-left: 10px;
  color: #95bf95;
}
.categoryWrapMainArea_description {
  font-size: 1.2rem;
  color: #9b9b9b;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0;
}

.categoryWrapMainAreaNone {
  border: 1px solid #cecccc;
  border-radius: 20px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 660px;
}
.categoryWrapMainAreaNone.none {
  display: none;
}
.categoryWrapMainAreaNone_title {
  font-size: 2rem;
  margin-bottom: 30px;
}
.categoryWrapMainAreaNone_icon {
  width: 130px;
  opacity: 0.4;
}

.categorySideArea_title {
  display: flex;
  font-size: 2rem;
  color: #027041;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  margin-bottom: 10px;
}
.categorySideArea_title img {
  width: 25px;
}

.categorySideAreaData.none {
  display: none;
}
.categorySideAreaData_list > li button {
  position: relative;
  display: block;
  font-size: 1.4rem;
  padding: 20px 0;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px dashed #cecccc;
}
.categorySideAreaData_list > li button .categorySideAreaData_description {
  font-size: 1.2rem;
  color: #9b9b9b;
  margin-top: 5px;
}
.categorySideAreaData_list > li button:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  margin: auto;
  border: solid #9cc813;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
.categorySideAreaData_more {
  position: relative;
  display: block;
  font-size: 1.4rem;
  padding: 20px 0;
  border-bottom: 1px dashed #cecccc;
  cursor: pointer;
}
.categorySideAreaData_more .categorySideAreaData_description {
  font-size: 1.2rem;
  color: #9b9b9b;
  margin-top: 5px;
}
.categorySideAreaData_more + .categorySideAreaData_list {
  display: none;
  opacity: 0;
  margin-right: 0px;
}
.categorySideAreaData_more.active + .categorySideAreaData_list {
  display: block;
  opacity: 1;
}
.categorySideAreaData_more:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid #9cc813;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.categorySideAreaData_more.active:before {
  content: "";
  width: 18px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.categorySideAreaData_more.active:after {
  display: none;
}
.categorySideAreaData_more.inStep03:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid #027041;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
.categorySideAreaData_description {
  font-size: 1.2rem;
  color: #9b9b9b;
  margin-top: 5px;
}
.categorySideAreaData .detailContents {
  background: #feffed;
  margin-right: -25px;
  padding-right: 25px;
  padding-left: 25px;
}

.categoryWrapMainAreaData_list {
  border-bottom: 1px dashed #e7e5e5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.categoryWrapMainAreaData_list:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.categoryWrapMainAreaData_list dt {
  margin-bottom: 5px;
}
.categoryWrapMainAreaData_list dt a {
  color: #008e00;
  display: block;
  position: relative;
}
.categoryWrapMainAreaData_list dt a:after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/cmn/img/icon/icon_blank.svg");
  position: absolute;
  background-size: 14px auto;
  top: 5px;
  right: 0;
}
.categoryWrapMainAreaData_list dd {
  font-size: 1.2rem;
  padding-right: 25px;
}

.backCategoryBtn {
  border-bottom: 2px solid #cecccc;
  padding-bottom: 20px;
  padding-top: 20px;
}
.backCategoryBtn.none {
  display: none;
}
.backCategoryBtn_btn {
  position: relative;
  display: block;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #9cc813;
  background: #feffed;
  width: 100%;
  text-align: left;
  padding: 15px 10px 15px 30px;
  font-weight: 700;
}
.backCategoryBtn_btn:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  margin: auto;
  border: solid #31c107;
  border-width: 0 0 3px 3px;
  transform: rotate(45deg);
}

#step03 {
  display: none;
}

.category-page .largeContainer {
  overflow: visible;
}
.category-page .subPageContainer {
  overflow: visible;
}
.category-page .subPageContainer_inner {
  overflow: visible;
}

@media only screen and (max-width: 990px) {
  .categoryWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .categoryWrap_left {
    width: 100%;
  }
  .categoryWrap_right {
    flex: initial;
    width: 100%;
  }
  .categorySideArea {
    border: 1px solid #cecccc;
    border-radius: 20px;
    padding: 20px 20px;
  }
  .categorySideArea_title {
    display: flex;
    font-size: 2rem;
    color: #027041;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    margin-bottom: 10px;
  }
  .categorySideArea_title img {
    width: 25px;
  }
  .categoryWrapMainArea {
    border: none;
    border-radius: 0;
    padding: 0;
    background: #feffed;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(-1 * (var(--page-height) - 120px));
    z-index: 100;
    height: calc(var(--page-height) - 120px);
    max-height: calc(var(--page-height) - 120px);
    transition: bottom 0.5s ease-in-out;
    padding-bottom: 80px;
  }
  .categoryWrapMainArea.show {
    bottom: 0;
  }
  .categoryWrapMainArea.none {
    display: none;
  }
  .categoryWrapMainArea_title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    background: #9cc813;
    padding: 20px 10px 20px 50px;
    position: relative;
    min-height: 64px;
  }
  .categoryWrapMainArea_title:before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    margin: auto;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .categoryWrapMainArea_title:after {
    content: "";
    width: 65px;
    height: 2px;
    background: #9b9b9b;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
  }
  .categoryWrapMainArea_title span {
    display: none;
  }
  .categoryWrapMainArea_description {
    font-size: 1.2rem;
    color: #9b9b9b;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0;
  }
  .categoryWrapMainAreaNone {
    display: none !important;
    min-height: initial;
  }
  .categorySideAreaData.none {
    display: none;
  }
  .categorySideAreaData_list > li button {
    position: relative;
    display: block;
    font-size: 1.4rem;
    padding: 20px 0;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px dashed #cecccc;
  }
  .categorySideAreaData_list > li button .categorySideAreaData_description {
    font-size: 1.2rem;
    color: #9b9b9b;
    margin-top: 5px;
  }
  .categorySideAreaData_list > li button:after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4px;
    margin: auto;
    border: solid #9cc813;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
  }
  .categorySideAreaData_more {
    position: relative;
    display: block;
    font-size: 1.4rem;
    padding: 20px 0;
  }
  .categorySideAreaData_description {
    font-size: 1.2rem;
    color: #9b9b9b;
    margin-top: 5px;
  }
  .categorySideAreaData .detailContents {
    margin-right: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .categoryWrapMainAreaData {
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(var(--page-height) - 260px);
  }
  .categoryWrapMainAreaData_list {
    border-bottom: 1px dashed #e7e5e5;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .categoryWrapMainAreaData_list:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .categoryWrapMainAreaData_list dt {
    margin-bottom: 5px;
  }
  .categoryWrapMainAreaData_list dt a {
    display: block;
    position: relative;
    font-size: 1.4rem;
  }
  .categoryWrapMainAreaData_list dt a:after {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("/cmn/img/icon/icon_blank.svg");
    position: absolute;
    background-size: 14px auto;
    top: 5px;
    right: 0;
  }
  .categoryWrapMainAreaData_list dd {
    font-size: 1.2rem;
    padding-right: 25px;
  }
  .backCategoryBtn {
    padding-bottom: 15px;
    padding-top: 0px;
  }
  .backCategoryBtn.none {
    display: none;
  }
  .backCategoryBtn_btn {
    padding: 0;
    border-radius: 6px;
    border: 1px solid #9cc813;
    background: #feffed;
    width: 100%;
    text-align: left;
    padding: 8px 10px 8px 30px;
  }
  .backCategoryBtn_btn:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 14px;
    margin: auto;
    border: solid #31c107;
    border-width: 0 0 3px 3px;
    transform: rotate(45deg);
  }
}
.infoContainer {
  margin-bottom: 100px;
}
.infoContainer_title {
  text-align: center;
  color: #027041;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.infoContainer_inner {
  max-width: 800px;
  margin: 0 auto;
}
.infoContainer_day {
  font-size: 3rem;
  text-align: center;
  color: #027041;
  font-weight: 700;
  margin-bottom: 40px;
}

.infoboxList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.infoboxList li {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.infoboxList li a {
  display: flex;
  height: 100%;
  align-items: center;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .infoboxList li a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.infoboxList li a:active, .desktop .infoboxList li a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .infoboxList li a:active, .desktop .infoboxList li a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.infoboxList li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listNavigation {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  gap: 0 20px;
  font-weight: 400;
}
.listNavigation_prev, .listNavigation_nect {
  color: #027041;
}
.listNavigation_active {
  color: #9cc813;
  font-weight: 700;
}

.infoDetail_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.infoDetail_prev, .infoDetail_next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.infoDetail_prev a, .infoDetail_next a {
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .infoDetail_prev a, .infoDetail_next a {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.infoDetail_prev a:active, .desktop .infoDetail_prev a:hover, .infoDetail_next a:active, .desktop .infoDetail_next a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .infoDetail_prev a:active, .desktop .infoDetail_prev a:hover, .infoDetail_next a:active, .desktop .infoDetail_next a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.infoDetail_prev {
  left: 0;
}
.infoDetail_next {
  right: 0;
}

.infoDetailSlide {
  position: relative;
}
.infoDetailSlide_item img {
  width: 100%;
}
.infoDetailSlide_prev {
  left: 2%;
}
.infoDetailSlide_next {
  right: 2%;
}
.infoDetailSlide_prev, .infoDetailSlide_next {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 100;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .infoDetailSlide_prev, .infoDetailSlide_next {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.infoDetailSlide_prev:active, .desktop .infoDetailSlide_prev:hover, .infoDetailSlide_next:active, .desktop .infoDetailSlide_next:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .infoDetailSlide_prev:active, .desktop .infoDetailSlide_prev:hover, .infoDetailSlide_next:active, .desktop .infoDetailSlide_next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.infoDetailSlide_prev img, .infoDetailSlide_next img {
  width: 100%;
}
.infoDetailSlide_pagination {
  position: absolute;
  width: 100%;
  bottom: 10px !important;
  z-index: 100;
  display: flex;
  justify-content: center;
}
.infoDetailSlide_pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #fff;
  opacity: 1 !important;
}
.infoDetailSlide_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #9cc813;
}

.infoDetailSlide {
  max-width: 540px;
  margin: 0 auto 40px;
}

.infoDetailText {
  max-width: 540px;
  margin: 0 auto 60px;
  font-size: 1.8rem;
}

.otherPostTitle {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.otherPostTitle:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #9cc813;
}
.otherPostTitle span {
  position: relative;
  background: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  color: #027041;
  z-index: 10;
  padding: 0 30px;
}

@media only screen and (max-width: 990px) {
  .infoContainer {
    margin-bottom: 50px;
  }
  .infoContainer_title {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
  .infoContainer_title span {
    font-size: 1.5rem;
    background: #9cc813;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 10px;
    color: #fff;
  }
  .infoContainer_inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .infoContainer_day {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .listNavigation {
    font-size: 1.6rem;
    gap: 0 10px;
  }
  .infoDetail_inner {
    padding: 0 25px;
  }
  .infoDetail_prev, .infoDetail_next {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 30%;
    bottom: initial;
  }
  .infoDetail_prev {
    left: -10px;
  }
  .infoDetail_next {
    right: -10px;
  }
  .infoDetailSlide {
    position: relative;
  }
  .infoDetailSlide_item img {
    width: 100%;
  }
  .infoDetailSlide_prev {
    left: 2%;
  }
  .infoDetailSlide_next {
    right: 2%;
  }
  .infoDetailSlide_prev, .infoDetailSlide_next {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 100;
    top: 0;
    bottom: 0;
    margin: auto;
    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) {
  .infoDetailSlide_prev, .infoDetailSlide_next {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .infoDetailSlide_prev:active, .desktop .infoDetailSlide_prev:hover, .infoDetailSlide_next:active, .desktop .infoDetailSlide_next:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .infoDetailSlide_prev:active, .desktop .infoDetailSlide_prev:hover, .infoDetailSlide_next:active, .desktop .infoDetailSlide_next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .infoDetailSlide_prev img, .infoDetailSlide_next img {
    width: 100%;
  }
  .infoDetailSlide_pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
  }
  .infoDetailSlide {
    margin: 0 auto 30px;
  }
  .infoDetailText {
    margin: 0 auto 30px;
    font-size: 1.5rem;
  }
  .otherPostTitle {
    margin-bottom: 30px;
  }
  .otherPostTitle:after {
    height: 2px;
  }
  .otherPostTitle span {
    font-size: 2rem;
    padding: 0 20px;
  }
}
.dantaiContainer {
  margin-bottom: 100px;
}
.dantaiContainer_text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.dantaiContainer_text a {
  color: #a7cf2f;
}
.dantaiContainer_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.dantaiMain_item {
  margin-bottom: 60px;
}
.dantaiMain_title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.dantaiMain_title:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #9cc813;
}
.dantaiMain_title span {
  position: relative;
  background: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  color: #027041;
  z-index: 10;
  padding: 0 30px;
}
.dantaiMain_list li {
  border-bottom: 1px solid #ddd;
}
.dantaiMain_list li a {
  font-size: 1.8rem;
  padding: 20px 0 20px 30px;
  position: relative;
  display: block;
}
.dantaiMain_list li a:before {
  content: "・";
  position: absolute;
  top: 20px;
  left: 0;
  color: #027041;
}
.dantaiMain_list li a:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  border: solid #9cc815;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}

.dantaiDetail {
  margin-bottom: 90px;
}
.dantaiDetail_title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.dantaiDetail_title:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #9cc813;
}
.dantaiDetail_title span {
  position: relative;
  background: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  color: #027041;
  z-index: 10;
  padding: 0 30px;
}
.dantaiDetail_item {
  display: flex;
  position: relative;
  padding: 30px 20px;
}
.dantaiDetail_item:before {
  content: "";
  width: 180px;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.dantaiDetail_item:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #e7e5e5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.dantaiDetail_subtitle {
  font-size: 2rem;
  width: 180px;
}
.dantaiDetail_main {
  font-size: 2rem;
  flex: 1;
  padding-left: 20px;
}
.dantaiDetail_main p {
  margin-bottom: 20px;
}
.dantaiDetail_main p:last-of-type {
  margin-bottom: 0;
}
.dantaiDetail_main a {
  color: #9cc813;
  position: relative;
  word-break: break-all;
}
.dantaiDetail_main a[target=_blank]:after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("/cmn/img/icon/icon_blank.svg");
  background-size: 14px auto;
  margin-left: 5px;
}
.dantaiDetail_category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dantaiDetail_category a {
  display: inline-block;
  display: flex;
  background: #fafff0;
  border: 1px solid #9cc813;
  border-radius: 10px;
  color: #027041;
  min-width: 148px;
  height: 48px;
  padding: 0 20px;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.dantaiDetail_category a:active, .desktop .dantaiDetail_category a:hover {
  text-decoration: none;
  background: #dceeb8;
}
.dantaiDetail_category a.active {
  background: #dceeb8;
}
.dantaiDetail_file {
  display: flex;
  line-height: 1.5;
  margin-bottom: 30px;
}
.dantaiDetail_file:last-of-type {
  margin-bottom: 0;
}
.dantaiDetail_file-icon {
  width: 70px;
}
.dantaiDetail_file-name {
  flex: 1;
}

.dantaiDetailColumn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 70px;
}
.dantaiDetailColumn_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dantaiDetailColumn_pic {
  margin-bottom: 15px;
}
.dantaiDetailColumn_main {
  font-size: 2rem;
}

@media only screen and (max-width: 990px) {
  .dantaiContainer {
    margin-bottom: 0;
  }
  .dantaiContainer_text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .dantaiContainer_inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .dantaiMain_item {
    margin-bottom: 30px;
  }
  .dantaiMain_title {
    margin-bottom: 20px;
  }
  .dantaiMain_title:after {
    height: 2px;
  }
  .dantaiMain_title span {
    font-size: 1.5rem;
    padding: 0 20px;
  }
  .dantaiMain_list li a {
    font-size: 1.5rem;
    padding: 15px 0 15px 20px;
  }
  .dantaiMain_list li a:before {
    top: 15px;
  }
  .dantaiMain_list li a:after {
    width: 10px;
    height: 10px;
  }
  .dantaiDetail {
    margin-bottom: 30px;
  }
  .dantaiDetail_title {
    margin-bottom: 20px;
  }
  .dantaiDetail_title:after {
    height: 2px;
  }
  .dantaiDetail_title span {
    font-size: 1.5rem;
    padding: 0 20px;
  }
  .dantaiDetail_item {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .dantaiDetail_item:before {
    display: none;
  }
  .dantaiDetail_item:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #e7e5e5;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .dantaiDetail_subtitle {
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: 10px;
    color: #027041;
  }
  .dantaiDetail_main {
    font-size: 1.4rem;
    width: 100%;
    flex: initial;
    padding-left: 0;
  }
  .dantaiDetail_main p {
    margin-bottom: 20px;
  }
  .dantaiDetail_main p:last-of-type {
    margin-bottom: 0;
  }
  .dantaiDetail_main a {
    color: #9cc813;
    position: relative;
    word-break: break-all;
  }
  .dantaiDetail_main a[target=_blank]:after {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    background-image: url("/cmn/img/icon/icon_blank.svg");
    background-size: 14px auto;
    margin-left: 5px;
  }
  .dantaiDetail_category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
  }
  .dantaiDetail_category a {
    display: inline-block;
    background: #fafff0;
    border: 1px solid #9cc813;
    color: #027041;
    border-radius: 20px;
    min-width: initial;
    height: auto;
    padding: 2px 8px;
    font-size: 1.1rem;
  }
  .dantaiDetail_file {
    display: flex;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .dantaiDetail_file:last-of-type {
    margin-bottom: 0;
  }
  .dantaiDetail_file-icon {
    width: 45px;
  }
  .dantaiDetail_file-name {
    flex: 1;
  }
  .dantaiDetailColumn {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: initial;
  }
  .dantaiDetailColumn_item {
    width: 100%;
    display: flex;
    flex-direction: initial;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #eee;
  }
  .dantaiDetailColumn_pic {
    width: 75px;
    margin: 0;
  }
  .dantaiDetailColumn_main {
    flex: 1;
    font-size: 1.5rem;
  }
}
.mapContainer {
  position: relative;
  overflow: hidden;
}
.mapContainer_map {
  position: relative;
  width: 100%;
  padding-top: 640px;
}
.mapContainer_map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.mapContainer_map #js-map-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.mapContainerInfo {
  border-radius: 10px;
  border: 2px solid #737373;
  background: #fafff0;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 100;
  width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: -50px;
}
.mapContainerInfo_icon {
  width: 40px;
  margin-bottom: 10px;
}
.mapContainerInfo_text {
  font-weight: 400;
}
.js-infobox-hide .mapContainerInfo {
  display: none;
}

.mapSearchBox {
  position: absolute;
  z-index: 100;
  width: 360px;
  margin: 0 auto;
  top: 5%;
  left: 0;
  right: 0;
  margin: auto;
}
.mapSearchBox_text {
  border-radius: 35px;
  border: 1px solid #9cc813;
  background: #feffd6;
  box-shadow: 0 1px 6.7px 0 rgba(0, 0, 0, 0.25) inset;
  display: flex;
  padding: 10px;
}
.mapSearchBox_text input {
  width: 100%;
  border: none;
  background: none;
  padding: 0 10px;
}
.mapSearchBox_text button {
  background: none;
  padding: 0;
  border: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .mapSearchBox_text button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.mapSearchBox_text button:active, .desktop .mapSearchBox_text button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .mapSearchBox_text button:active, .desktop .mapSearchBox_text button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.mapSearchBox_text button img {
  width: 34px;
}
.mapSearchBox .js-map-search-reset {
  display: none;
}
.mapSearchBox_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.mapSearchBox_list li button {
  padding: 0;
  background: #fff;
  border: 1px solid #dad8d8;
  border-radius: 100px;
  font-size: 1.5rem;
  color: #027041;
  font-weight: 700;
  padding: 0 5px;
  transition: all 0.2s ease-in-out;
}
.mapSearchBox_list li button:active, .desktop .mapSearchBox_list li button:hover {
  background: #dceeb8;
}
.mapSearchBox_list li label {
  padding: 0;
  background: #fff;
  border: 1px solid #dad8d8;
  border-radius: 100px;
  font-size: 1.5rem;
  color: #027041;
  font-weight: 700;
  padding: 0 5px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.mapSearchBox_list li label input {
  position: absolute;
  top: -100%;
}
.mapSearchBox_list li label:active, .desktop .mapSearchBox_list li label:hover {
  background: #dceeb8;
}
.mapSearchBox_list li label:has(input:checked) {
  background: #dceeb8;
}

.mapItemInfoBox {
  position: absolute;
  z-index: 100;
  width: 340px;
  height: 96%;
  top: 0;
  left: -340px;
  opacity: 0;
  bottom: 0;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #b8b8b8;
  background: #fff;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
  padding-top: 55px;
}
.js-itembox-show .mapItemInfoBox {
  left: 1.5%;
  opacity: 1;
}
.mapItemInfoBox_inner {
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mapItemInfoBox_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
}
.mapItemInfoBox_close button {
  padding: 0;
  background: none;
  border: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .mapItemInfoBox_close button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.mapItemInfoBox_close button:active, .desktop .mapItemInfoBox_close button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .mapItemInfoBox_close button:active, .desktop .mapItemInfoBox_close button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.mapItemInfoBoxSearchCondition {
  padding: 15px 20px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
.mapItemInfoBoxSearchCondition_text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #027041;
}

.mapItemInfoBoxMain_item {
  border-bottom: 2px solid #e0e0e0;
  padding: 20px 15px 20px 30px;
  margin-bottom: 10px;
}
.mapItemInfoBoxMain_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.mapItemInfoBoxMain_title {
  position: relative;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.5;
}
.mapItemInfoBoxMain_title:before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-image: url("../img/icon/icon_mappin.svg");
  background-size: 22px auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: -24px;
}
.mapItemInfoBoxMain_address {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 5px;
  color: #858585;
}
.mapItemInfoBoxMain_text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #858585;
}
.mapItemInfoBoxMain_more {
  text-align: center;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.mapItemInfoBoxMain_more a {
  display: inline-flex;
  padding: 0 15px;
  align-items: center;
  justify-content: center;
  height: 35px;
  border: 1px solid #dad8d8;
  font-size: 1.2rem;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  color: #027041;
}
.mapItemInfoBoxMain_more a:active, .desktop .mapItemInfoBoxMain_more a:hover {
  text-decoration: none;
  background: #dceeb8;
}
.mapItemInfoBoxMain_more img {
  width: 20px;
  margin-right: 5px;
}
.mapItemInfoBoxMain_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.mapItemInfoBoxMain_categoryTag {
  display: inline-block;
  padding: 4px 12px;
  background: #fff;
  border: 1px solid #dad8d8;
  border-radius: 100px;
  font-size: 1.2rem;
  color: #027041;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.mapItemInfoBoxMain_categoryTag:active, .desktop .mapItemInfoBoxMain_categoryTag:hover {
  background: #dceeb8;
  border-color: #027041;
}

.mapItemInfoBoxMore {
  text-align: center;
  padding: 20px 15px;
}
.mapItemInfoBoxMore button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 35px;
  background: #fff;
  border: 1px solid #dad8d8;
  border-radius: 10px;
  font-size: 1.2rem;
  color: #027041;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.mapItemInfoBoxMore button:active, .desktop .mapItemInfoBoxMore button:hover {
  background: #dceeb8;
  border-color: #027041;
}

.mapItemInfoBoxMinimize {
  position: absolute;
  z-index: 100;
  left: 1.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.mapItemInfoBoxMinimize button {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mapItemInfoBoxMinimize button img {
  width: 24px;
  height: 24px;
}
.mapItemInfoBoxMinimize_badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #ff4444;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1;
}
.mapItemInfoBoxMinimize:active, .desktop .mapItemInfoBoxMinimize:hover {
  background: #f0f0f0;
}
.js-itembox-show ~ .mapItemInfoBoxMinimize {
  display: none !important;
}

.mapCategoryBox {
  position: absolute;
  top: 0;
  height: 96%;
  bottom: 0;
  margin: auto;
  z-index: 100;
  width: 275px;
  right: -275px;
  transition: right 0.3s ease-in-out;
}
.categoryBoxOn .mapCategoryBox {
  right: 0;
}
.mapCategoryBox_title {
  position: absolute;
  top: 0;
  left: -42px;
  width: 42px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.mapCategoryBox_title button {
  background: #9cc811;
  border: none;
  padding: 0;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 10px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .mapCategoryBox_title button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.mapCategoryBox_title button:active, .desktop .mapCategoryBox_title button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .mapCategoryBox_title button:active, .desktop .mapCategoryBox_title button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.mapCategoryBox_title button span {
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  color: #fff;
}
.mapCategoryBox_title button span:after {
  content: "";
  display: inline-block;
  background: #ffffff;
  height: 12.124355653px;
  width: 10px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.categoryBoxOn .mapCategoryBox_title button span:after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.mapCategoryBox_main {
  background: #9cc811;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 30px 30px;
}

.mapCategoryBoxList {
  border-radius: 14px;
  background: #fff;
  padding: 0 15px 30px !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: auto;
}
.mapCategoryBoxList li:last-child .mapCategoryBoxList_list {
  margin-bottom: 0;
}
.mapCategoryBoxList_more {
  position: relative;
  display: block;
  font-size: 1.3rem;
  padding: 10px 0;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px dashed #cecccc;
  cursor: pointer;
  color: #027041;
  font-weight: 700;
}
.mapCategoryBoxList_more:after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  margin: auto;
  border: solid #9cc813;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.mapCategoryBoxList_more.is-active:after {
  background: #000;
  width: 10px;
  height: 2px;
  border: none;
  transform: initial;
}
.mapCategoryBoxList_list {
  background: #feffed;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0;
  margin-bottom: 0;
}
li.is-open .mapCategoryBoxList_list {
  max-height: 1000px;
}
.mapCategoryBoxList_list button {
  position: relative;
  display: block;
  font-size: 1.3rem;
  padding: 10px 0 10px 18px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px dashed #cecccc;
  color: #027041;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.mapCategoryBoxList_list button:after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  margin: auto;
  border: solid #9cc813;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
}
.mapCategoryBoxList_list button:active, .desktop .mapCategoryBoxList_list button:hover {
  background: #dceeb8;
}
.mapCategoryBoxList_list button.active {
  background: #dceeb8;
}

@media only screen and (max-width: 990px) {
  .noscroll {
    overflow: hidden;
  }
  .mapContainer {
    position: relative;
    overflow: hidden;
  }
  .mapContainer_map {
    position: relative;
    width: 100%;
    padding-top: calc(var(--page-height) - 130px);
  }
  .mapContainerInfo {
    width: 80%;
    padding: 20px;
    margin-top: -40px;
    display: none;
  }
  .mapSearchBox {
    position: absolute;
    z-index: 100;
    width: 70%;
    margin: 0 auto;
    top: 2%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .mapSearchBox_text {
    border-radius: 100px;
    border: 1px solid #9cc813;
    background: #fff;
    box-shadow: none;
    padding: 5px 10px;
  }
  .mapSearchBox_text input {
    padding: 0 5px;
  }
  .mapSearchBox_text button img {
    width: 28px;
  }
  .mapSearchBox .js-map-search-reset {
    display: none;
  }
  .mapSearchBox_list {
    display: flex;
    flex-wrap: initial;
    margin-right: -100px;
    gap: 5px;
    margin-top: 5px;
  }
  .mapSearchBox_list li button {
    font-size: 1.4rem;
    padding: 0 5px;
    transition: all 0.2s ease-in-out;
  }
  .mapSearchBox_list li button:active, .desktop .mapSearchBox_list li button:hover {
    background: #dceeb8;
  }
  .mapSearchBox_list li label {
    font-size: 1.4rem;
    padding: 0 5px;
    transition: all 0.2s ease-in-out;
  }
  .mapItemInfoBox {
    width: 100%;
    height: 45%;
    top: initial;
    left: initial;
    bottom: -250px;
    margin: auto;
    border-radius: 0;
    border: 1px solid #b8b8b8;
    background: #fff;
    box-shadow: none;
    padding-top: 20px;
    transition: bottom 0.5s ease-in-out;
  }
  .js-itembox-show .mapItemInfoBox {
    left: 0;
    bottom: 0;
  }
  .mapItemInfoBox_inner {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mapItemInfoBox_close {
    position: absolute;
    top: 0px;
    right: initial;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .mapItemInfoBox_close:before {
    background: #9b9b9b;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 10px;
    width: 65px;
    z-index: 10;
  }
  .mapItemInfoBox_close button {
    display: none;
  }
  .mapItemInfoBoxSearchCondition {
    padding: 15px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
  }
  .mapItemInfoBoxSearchCondition_text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #027041;
  }
  .mapItemInfoBoxMain_item {
    border-bottom: 2px solid #e0e0e0;
    padding: 20px 15px 20px 30px;
    margin-bottom: 10px;
  }
  .mapItemInfoBoxMain_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .mapItemInfoBoxMain_title {
    position: relative;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.5;
  }
  .mapItemInfoBoxMain_title:before {
    content: "";
    width: 22px;
    height: 22px;
    display: inline-block;
    background-image: url("../img/icon/icon_mappin.svg");
    background-size: 22px auto;
    background-repeat: no-repeat;
    position: absolute;
    top: 2px;
    left: -24px;
  }
  .mapItemInfoBoxMain_address {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #858585;
  }
  .mapItemInfoBoxMain_text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #858585;
  }
  .mapItemInfoBoxMain_more {
    text-align: center;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .mapItemInfoBoxMain_more a {
    display: inline-flex;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
    height: 35px;
    border: 1px solid #dad8d8;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    color: #027041;
  }
  .mapItemInfoBoxMain_more a:active, .desktop .mapItemInfoBoxMain_more a:hover {
    text-decoration: none;
    background: #dceeb8;
  }
  .mapItemInfoBoxMain_more img {
    width: 20px;
    margin-right: 5px;
  }
  .mapItemInfoBoxMain_categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .mapItemInfoBoxMain_categoryTag {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    border: 1px solid #dad8d8;
    border-radius: 100px;
    font-size: 1.2rem;
    color: #027041;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .mapItemInfoBoxMain_categoryTag:active, .desktop .mapItemInfoBoxMain_categoryTag:hover {
    background: #dceeb8;
    border-color: #027041;
  }
  .mapItemInfoBoxMore {
    text-align: center;
    padding: 20px 15px;
  }
  .mapItemInfoBoxMore button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 35px;
    background: #fff;
    border: 1px solid #dad8d8;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #027041;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  .mapItemInfoBoxMore button:active, .desktop .mapItemInfoBoxMore button:hover {
    background: #dceeb8;
    border-color: #027041;
  }
  .mapItemInfoBoxMinimize {
    position: fixed;
    z-index: 100;
    left: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #b8b8b8;
    border-radius: 10px;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .mapItemInfoBoxMinimize button {
    position: relative;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mapItemInfoBoxMinimize button img {
    width: 24px;
    height: 24px;
  }
  .mapItemInfoBoxMinimize_badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ff4444;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
  }
  .mapItemInfoBoxMinimize:active, .desktop .mapItemInfoBoxMinimize:hover {
    background: #f0f0f0;
  }
  .js-itembox-show ~ .mapItemInfoBoxMinimize {
    display: none !important;
  }
  .mapCategoryBox {
    position: absolute;
    top: initial;
    height: calc(100% - 110px);
    bottom: 15px;
    margin: auto;
    z-index: 100;
    width: 275px;
    right: -275px;
    transition: right 0.3s ease-in-out;
  }
  .categoryBoxOn .mapCategoryBox {
    right: 0;
  }
  .mapCategoryBox_title {
    position: absolute;
    top: 0;
    left: -36px;
    width: 36px;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    border: solid #fff;
    border-width: 1px 0 1px 1px;
  }
  .mapCategoryBox_title button {
    background: #9cc811;
    padding: 0;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 10px;
    font-size: 1.3rem;
  }
  .mapCategoryBox_title button span {
    letter-spacing: 0.3em;
    color: #fff;
  }
  .mapCategoryBox_title button span:after {
    content: "";
    display: inline-block;
    background: #ffffff;
    height: 8.6602540378px;
    width: 8px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
  }
  .categoryBoxOn .mapCategoryBox_title button span:after {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .mapCategoryBox_main {
    background: #9cc811;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 30px 30px;
  }
  .mapCategoryBox_list li {
    margin-top: 10px;
  }
  .mapCategoryBox_list li button {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 10px;
    color: #027041;
    font-size: 1.5rem;
    padding: 3px;
    transition: all 0.2s ease-in-out;
  }
  .mapCategoryBox_list li button:active, .desktop .mapCategoryBox_list li button:hover {
    text-decoration: none;
    background: #dceeb8;
  }
  .mapCategoryBox_list li button.active {
    background: #dceeb8;
  }
  .mapCategoryBox_search {
    margin-top: auto;
  }
  .mapCategoryBox_search button {
    width: 100%;
    background: #d9d9d9;
    border: none;
    border-radius: 10px;
    padding: 5px;
    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) {
  .mapCategoryBox_search button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .mapCategoryBox_search button:active, .desktop .mapCategoryBox_search button:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .mapCategoryBox_search button:active, .desktop .mapCategoryBox_search button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.keywordContainer {
  max-width: 890px;
  margin: 0 auto 60px;
}

.keywardSearchPage .header .headerSearch {
  display: none;
}

.keywordHead {
  text-align: center;
  margin-bottom: 30px;
}
.keywordHead .keywordSearchBox {
  margin-bottom: 30px;
}

.keywordSetting {
  text-align: center;
  font-weight: 400;
}
.keywordSetting strong {
  font-size: 2rem;
  font-weight: 600;
}

.keywordSearchBox {
  border-radius: 35px;
  border: 1px solid #9cc813;
  background: #feffd6;
  box-shadow: 0 1px 6.7px 0 rgba(0, 0, 0, 0.25) inset;
  padding: 10px;
  display: inline-flex;
}
.keywordSearchBox input {
  width: 100%;
  border: none;
  background: none;
  padding: 0 10px;
}
.keywordSearchBox button {
  background: none;
  padding: 0;
  border: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .keywordSearchBox button {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.keywordSearchBox button:active, .desktop .keywordSearchBox button:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .keywordSearchBox button:active, .desktop .keywordSearchBox button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.keywordSearchBox img {
  width: 30px;
}
.keywordSearchBox .js-keywordSearchBox-reset {
  display: none;
}

.keywordList_item {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 30px;
}
.keywordList_category a {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  font-size: 1.4rem;
  position: relative;
  padding-right: 20px;
}
.keywordList_category a:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid #91b912;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}
.keywordList_category img {
  width: 30px;
}
.keywordList_title {
  margin-bottom: 10px;
}
.keywordList_title a {
  font-size: 2rem;
  font-weight: 400;
  color: #027041;
  width: 100%;
}
.keywordList_text {
  font-size: 1.2rem;
  font-weight: 400;
}

.pagenationKeyword {
  text-align: center;
}
.pagenationKeyword_inner {
  display: inline-flex;
  border-radius: 100px;
  border: 1px solid #ebebeb;
  background: #f9f9f9;
  gap: 0 5px;
  padding: 5px 15px;
  align-items: center;
}
.pagenationKeyword_prev {
  margin-right: 10px;
}
.pagenationKeyword_next {
  margin-left: 10px;
}
.pagenationKeyword_prev, .pagenationKeyword_next {
  width: 2rem;
  display: inline-flex;
  align-items: center;
  color: #027041;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media only screen and (max-width: 990px) {
  .pagenationKeyword_prev, .pagenationKeyword_next {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.pagenationKeyword_prev:active, .desktop .pagenationKeyword_prev:hover, .pagenationKeyword_next:active, .desktop .pagenationKeyword_next:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media only screen and (max-width: 990px) {
  .pagenationKeyword_prev:active, .desktop .pagenationKeyword_prev:hover, .pagenationKeyword_next:active, .desktop .pagenationKeyword_next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.pagenationKeyword .current {
  width: 1.4rem;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #9cc813;
  color: #fff;
  border-radius: 100px;
}
.pagenationKeyword_num {
  width: 1.4rem;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: #027041;
  transition: background 0.2s ease-in-out;
}
.pagenationKeyword_num:active, .desktop .pagenationKeyword_num:hover {
  text-decoration: none;
  background: #9cc813;
  color: #fff;
}

.keywordListDataNone.noShow {
  display: none;
}
.keywordListDataNone_info {
  text-align: center;
  margin: 80px 0 160px;
  font-size: 2rem;
}

@media only screen and (max-width: 990px) {
  .keywordContainer {
    margin: 0 -20px 30px;
  }
  .keywordHead {
    margin-bottom: 20px;
    padding: 0 25px;
  }
  .keywordHead .keywordSearchBox {
    margin-bottom: 30px;
  }
  .keywordSetting {
    text-align: left;
  }
  .keywordSetting strong {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .keywordSearchBox {
    position: relative;
  }
  .keywordSearchBox img {
    width: 28px;
  }
  .keywordList {
    border: solid #dadada;
    border-width: 3px 0;
  }
  .keywordList_item {
    padding: 15px;
    border: none;
    margin-bottom: 0;
    border-bottom: 3px solid #dadada;
    border-radius: 0;
  }
  .keywordList_item:last-of-type {
    border: none;
  }
  .keywordList_category a {
    gap: 0 10px;
    font-size: 1.2rem;
    padding-right: 15px;
  }
  .keywordList_category a:after {
    content: "";
    width: 8px;
    height: 8px;
  }
  .keywordList_category img {
    width: 26px;
  }
  .keywordList_title {
    margin-bottom: 5px;
  }
  .keywordList_title a {
    font-size: 1.6rem;
  }
  .keywordList_text {
    font-size: 1.2rem;
  }
  .pagenationKeyword {
    text-align: center;
  }
  .pagenationKeyword_inner {
    display: inline-flex;
    border-radius: 100px;
    border: 1px solid #ebebeb;
    background: #f9f9f9;
    gap: 0 5px;
    padding: 5px 15px;
    align-items: center;
  }
  .pagenationKeyword_prev, .pagenationKeyword_next {
    width: 1.4rem;
    display: inline-flex;
    align-items: center;
    color: #027041;
    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) {
  .pagenationKeyword_prev, .pagenationKeyword_next {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .pagenationKeyword_prev:active, .desktop .pagenationKeyword_prev:hover, .pagenationKeyword_next:active, .desktop .pagenationKeyword_next:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .pagenationKeyword_prev:active, .desktop .pagenationKeyword_prev:hover, .pagenationKeyword_next:active, .desktop .pagenationKeyword_next:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media only screen and (max-width: 990px) {
  .pagenationKeyword .current {
    width: 1.4rem;
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    background: #9cc813;
    color: #fff;
    border-radius: 100px;
  }
  .pagenationKeyword_num {
    width: 1.4rem;
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #027041;
    transition: background 0.2s ease-in-out;
  }
  .pagenationKeyword_num:active, .desktop .pagenationKeyword_num:hover {
    text-decoration: none;
    background: #9cc813;
    color: #fff;
  }
  .keywordListDataNone {
    padding: 0 20px;
  }
  .keywordListDataNone_inner {
    margin: 0 -20px 30px;
    border: solid #dadada;
    border-width: 3px 0;
  }
  .keywordListDataNone_info {
    margin: 40px 0;
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
