* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #f5f6f8;
  color: #1f2933;
  font-family: 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}
/* 安全側の非表示（古いブラウザ/リセットCSS対策） */
[hidden] {
  display: none !important;
}
a {
  color: inherit;
}
/* ヘッダーとメニューボタン高さの同期用変数 */
:root {
  --ui-header-height: 60px;
}
.ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  min-height: var(--ui-header-height);
  padding: 0 1.5rem;
  background: linear-gradient(135deg, #3a7bd5, #00d2ff);
  color: #000000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.ui-header__title {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.ui-header__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.ui-header__brand-link:hover {
  opacity: 0.92;
}
.ui-header__brand-logo {
  width: 34px;
  height: auto;
  display: block;
}
.ui-header__brand-text {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}
.ui-header__nav {
  display: flex;
  gap: 0.75rem;
}
.ui-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.ui-nav-link:hover {
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.25);
}
.ui-nav-link.is-active {
  background-color: #ffffff;
  color: #1f2933;
  border-color: rgba(15, 23, 42, 0.12);
}
.ui-header__greeting {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.header_greeting {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2663eb;
  text-align: center;
}
.header_greeting::before {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 6px;
}
.ui-main {
  padding: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.ui-panel {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.ui-panel__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.ui-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ui-panel__header .ui-button {
  flex: 0 1 auto;
  max-width: none;
  max-width: 12rem;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.ui-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}
.ui-form__field {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}
.ui-form__label {
  /* font-size: 1.2rem; */
  margin-bottom: 0.5rem;
  color: #223047;
  font-weight: 600;
}
.ui-form--vertical {
  flex-direction: column;
  align-items: stretch;
}
.ui-form__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.ui-form__hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}
.ui-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.ui-checkbox-row input[type='checkbox'] {
  margin: 0.2rem 0 0;
}
.ui-checkbox-row__text {
  font-size: 1rem;
  color: #344155;
  line-height: 1.6;
}
.ui-form input[type='date'],
.ui-form input[type='email'],
.ui-form input[type='password'],
.ui-input,
.ui-select {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 1.05rem;
}
.ui-form input:focus {
  border-color: #3a7bd5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}
.ui-select {
  appearance: none;
  background-color: #ffffff;
}
.ui-textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
  resize: vertical;
  min-height: 120px;
}
.ui-textarea:focus {
  border-color: #3a7bd5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}
.ui-textarea--table {
  width: 100%;
  min-height: 80px;
  font-size: 0.85rem;
}
.ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ui-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.35);
}
.ui-button--primary {
  background: linear-gradient(135deg, #3a7bd5, #3ed8ff);
  color: #ffffff;
}
.ui-button--primary:hover {
  transform: translateY(-1px);
}
.ui-button--secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.ui-button--secondary:hover {
  transform: translateY(-1px);
}
.ui-button--ghost {
  background-color: transparent;
  color: #1f2933;
  border: 1px solid rgba(59, 130, 246, 0.35);
}
.ui-button--danger {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #ffffff;
}
.ui-button--inline {
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
}
.ui-table-container {
  max-height: 520px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #ffffff;
}
.ui-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}
.ui-table th,
.ui-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-table th {
  background-color: #f1f5f9;
  color: #1e293b;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 1;
}
.ui-table__placeholder td {
  text-align: center;
  color: #64748b;
}
.ui-table__spacer td {
  padding: 0;
  border: none;
  height: 0;
  line-height: 0;
}
.ui-table td:nth-child(4) {
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
.ui-table td:not(:nth-child(4)) {
  white-space: nowrap;
}
.ui-approval-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}
.ui-table__row--pending {
  opacity: 0.6;
}
.ui-status {
  margin-bottom: 0.75rem;
  /* font-size: 0.9rem; */
  color: #1e293b;
}
.ui-status--error {
  color: #dc2626;
}
.ui-status--success {
  color: #16a34a;
}
.ui-result {
  transition: opacity 0.2s ease;
}
.ui-result.is-hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.ui-definition {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
}
.ui-definition dt {
  font-weight: 600;
  color: #475569;
}
.ui-definition dd {
  margin: 0;
  word-break: break-all;
}
.ui-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}
.ui-login__panel {
  width: 100%;
  max-width: 460px;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
}
.ui-login__title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}
.ui-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.ui-logout__panel {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  text-align: center;
}
.ui-logout__title {
  margin: 0 0 0.5rem;
}
@media (max-width: 640px) {
  .ui-form {
    flex-direction: column;
    align-items: stretch;
  }
  .ui-form__field {
    width: 100%;
  }
  .ui-button {
    width: 100%;
  }
  .ui-header {
    flex-direction: column;
    gap: 1rem;
  }
  .ui-panel__header {
    flex-direction: column;
    align-items: stretch;
  }
  .ui-approval-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ui-nav-link {
    width: 100%;
    justify-content: center;
  }
}

@charset "UTF-8";
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}
a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
ins {
  text-decoration: none;
}
ins,
mark {
  background-color: #ff9;
  color: #000;
}
mark {
  font-style: italic;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}
html {
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #000;
  font-family: Hiragino Kaku Gothic ProN, 游ゴシック体, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  word-wrap: anywhere;
  line-break: strict;
  padding-top: 75px;
  word-break: normal;
}
body.loginPage {
  padding-top: 0 !important;
}
a::selection,
dd::selection,
div::selection,
dt::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
img::selection,
li::selection,
p::selection,
span::selection,
strong::selection {
  background: rgba(255, 246, 87, 0.9);
  color: #000;
}
a::-moz-selection,
dd::-moz-selection,
div::-moz-selection,
dt::-moz-selection,
h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
img::-moz-selection,
li::-moz-selection,
p::-moz-selection,
span::-moz-selection,
strong::-moz-selection {
  background: rgba(255, 246, 87, 0.9);
  color: #000;
}
button,
input,
select,
textarea {
  color: #000;
  outline: none;
}
button {
  cursor: pointer;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
audio,
canvas,
img,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: none;
}
a {
  color: #000;
  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;
}
input[type='submit'],
label,
select {
  cursor: pointer;
}
*,
:after,
:before {
  box-sizing: border-box;
}
.desktop a:hover img.over,
a:active img.over {
  cursor: pointer;
  filter: alpha(opacity=80);
  opacity: 0.8;
}
@media only screen and (max-width: 990px) {
  .desktop a:hover img.over,
  a:active img.over {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
img[src$='.svg'] {
  width: 100%;
}
address {
  font-style: normal;
}
.largeContainer,
.largeContener {
  overflow: hidden;
}
.header {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  left: 0;
  padding: 0 2%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header_inner {
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  height: var(--ui-header-height);
}
.header h1,
.header_inner {
  -ms-flex-align: center;
  align-items: center;
}
.header h1 {
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
}
.desktop .header h1 a:hover,
.header h1 a,
.header h1 a:active {
  text-decoration: none;
}
.header h1 img {
  margin-right: 6px;
  width: 42px;
}
.header_mypage {
  margin: 0;
}
.menuWrapBox {
  background: #fff;
  border-radius: 0 0 0 10px;
  box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  position: fixed;
  right: -100%;
  top: 60px;
  top: var(--ui-header-height, 60px);
  transition: right 0.3s;
  z-index: 1000;
}
.menuOpen .menuWrapBox {
  right: 0;
}
.menuWrapBox .header_mypage {
  line-height: 1.2;
  margin-bottom: 10px;
}
.menuWrapBox .header_mypage a {
  cursor: pointer;
  display: block;
  filter: alpha(opacity=100);
  font-size: 1.6rem;
  margin-bottom: 15px;
  opacity: 1;
  padding: 5px 10px;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .menuWrapBox .header_mypage a {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.menuWrapBox .header_mypage a:active,
.menuWrapBox .header_mypage a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .menuWrapBox .header_mypage a:active,
  .menuWrapBox .header_mypage a:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.menuWrapBoxSublink {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.menuWrapBoxSublink li {
  margin-bottom: 15px;
  text-align: center;
}
.menuWrapBoxSublink li a {
  border: 1px solid #ddd;
  border-radius: 100px;
  display: block;
  font-size: 1.5rem;
  padding: 3px 10px;
}
.menuWrapBoxSublink li a:hover {
  background: #2663eb;
  color: #fff;
  text-decoration: none;
}
.menuWrapBoxSublink li.is-active {
  border: 1px solid #2663eb;
}
.menuWrapBoxSublink li.is-active a {
  background: #2663eb;
  color: #fff;
  text-decoration: none;
}
.menuWrapBoxSublink + .header_mypage,
.menuWrapBoxSublink + .header_mypage .calendarController_newbtn {
  margin-bottom: 0;
}
.adminInfo {
  background: #c70100;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 1.4rem;
  margin-left: 10px;
  padding: 3px 10px;
}
.adminInfo a {
  border-radius: 5px;
  cursor: pointer;
  display: block;
  filter: alpha(opacity=100);
  opacity: 1;
  padding: 5px 10px;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .adminInfo a {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.adminInfo a:active,
.adminInfo a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .adminInfo a:active,
  .adminInfo a:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.adminInfo.open,
.menuBtn {
  display: block;
}
.menuBtn {
  background: #005bac;
  cursor: pointer;
  height: 60px;
  height: var(--ui-header-height, 60px);
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.7s;
  transition-timing-function: cubic-bezier(0, 1.01, 0.47, 1);
  width: 60px;
  width: var(--ui-header-height, 60px);
  z-index: 800000;
}
.menuBtn_text {
  bottom: 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: absolute;
  text-align: center;
  width: 100%;
}
.menuBtn,
.menuBtn span {
  display: inline-block;
  transition: all 0.3s;
  transition-timing-function: cubic-bezier(0, 1.01, 0.47, 1);
}
.menuBtn span {
  border-radius: 100px;
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 25px;
}
.menuBtn span,
.menuOpen .menuBtn span {
  background-color: #fff;
}
.menuBtn span:first-of-type {
  top: 13px;
}
.menuOpen .menuBtn span:first-of-type {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.menuBtn span:nth-of-type(2) {
  top: 20px;
}
.menuOpen .menuBtn span:nth-of-type(2) {
  display: none;
}
.menuBtn span:nth-of-type(3) {
  bottom: 31px;
}
.menuOpen .menuBtn span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}
@media only screen and (max-width: 990px) {
  html {
    font-size: 62.5%;
  }
  body {
    font-size: 16px;
    min-height: 0;
    min-height: auto;
    min-width: 320px !important;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    padding-top: 0;
  }
  .header {
    padding: 0 0 0 10px;
    position: static;
  }
  :root {
    --ui-header-height: 50px;
  }
  .header_inner {
    display: -ms-flexbox;
    display: flex;
    height: var(--ui-header-height);
    -ms-flex-align: center;
    align-items: center;
  }
  .header h1 {
    font-size: 1.4rem;
  }
  .header h1 img {
    margin-right: 5px;
    width: 32px;
  }
  .header h1 span {
    display: none;
  }
  .header_mypage a {
    font-size: 1.4rem;
    padding: 5px 0;
    text-align: center;
    width: 100px;
  }
  .menuWrapBox {
    box-shadow: -5px 10px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    top: 50px;
  }
  .menuWrapBox .header_mypage {
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .menuWrapBox .header_mypage a {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding: 5px 0;
  }
  .menuWrapBoxSublink {
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .menuWrapBoxSublink li {
    margin-bottom: 15px;
    text-align: center;
  }
  .menuWrapBoxSublink li a {
    border-radius: 100px;
    font-size: 1.4rem;
    padding: 3px 10px;
  }
  .menuWrapBoxSublink li.is-active {
    border: 1px solid #000;
  }
  .menuWrapBoxSublink + .header_mypage {
    margin-bottom: 0;
    margin-left: 0;
    text-align: center;
  }
  .menuWrapBoxSublink + .header_mypage .calendarController_newbtn {
    margin-bottom: 0;
    margin-left: 0;
    width: 100%;
  }
  .menuBtn {
    height: 50px;
    width: 50px;
  }
  .menuBtn_text {
    bottom: 7px;
  }
  .menuBtn,
  .menuBtn span {
    display: inline-block;
  }
  .menuBtn span {
    border-radius: 100px;
    height: 2px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 25px;
  }
  .menuBtn span,
  .menuOpen .menuBtn span {
    background-color: #fff;
  }
  .menuBtn span:first-of-type {
    top: 11px;
  }
  .menuOpen .menuBtn span:first-of-type {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  .menuBtn span:nth-of-type(2) {
    top: 18px;
  }
  .menuOpen .menuBtn span:nth-of-type(2) {
    display: none;
  }
  .menuBtn span:nth-of-type(3) {
    bottom: 23px;
  }
  .menuOpen .menuBtn span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
}
/*! * animate.css - https://animate.style/ * Version - 4.1.1 * Licensed under the MIT license - https://opensource.org/licenses/MIT * * Copyright (c) 2021 Animate.css */
.animate__animated {
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -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;
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%,
  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: translateZ(0);
    transform: translateZ(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-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%,
  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: translateZ(0);
    transform: translateZ(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-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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 {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(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 {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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-name: headShake;
  animation-name: headShake;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-animation-name: swing;
  animation-name: swing;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInLeft {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInRight {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInUp {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}
@keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}
@keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}
@keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
  }
}
@keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
@-webkit-keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  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(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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,
  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(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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
    transform: translate3d(-40%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-40%, 0, 0);
    transform: translate3d(-40%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60%, 0);
    transform: translate3d(0, 60%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
  }
  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
@keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
  }
  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
.animate__animated.animate__flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    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 {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInDown {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInLeft {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInRight {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInUp {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    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 {
  0% {
    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% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
@keyframes zoomOutDown {
  40% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
.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% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
@keyframes zoomOutUp {
  40% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
.js-move-box,
.js-move-box02 {
  opacity: 0;
  visibility: hidden;
}
.spPic {
  display: none;
}
img {
  height: auto;
  max-width: 100%;
}
.loginForm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  height: 100vh;
  justify-content: center;
}
.loginForm_inner {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  padding: 20px;
  width: 100%;
}
.loginForm_item {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.loginForm_item input {
  border: 1px solid #ddd;
  border-radius: 5px;
  display: block;
  font-size: 1.6rem;
  padding: 8px;
  width: 100%;
}
.commonTitle {
  background: #005bac;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 10px;
}
.commonBtn {
  padding-top: 20px;
  text-align: center;
}
.commonBtn a,
.commonBtn button {
  background: #005bac;
  border: none;
  border-radius: 100px;
  color: #fff;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 50px;
  width: 200px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  cursor: pointer;
  filter: alpha(opacity=100);
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .commonBtn a,
  .commonBtn button {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.commonBtn a:active,
.commonBtn a:hover,
.commonBtn button:active,
.commonBtn button:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .commonBtn a:active,
  .commonBtn a:hover,
  .commonBtn button:active,
  .commonBtn button:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.backBtn {
  text-align: center;
}
.backBtn a {
  background: #20b37c;
  border: none;
  border-radius: 100px;
  color: #fff;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 50px;
  width: 200px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  cursor: pointer;
  filter: alpha(opacity=100);
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .backBtn a {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.backBtn a:active,
.backBtn a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .backBtn a:active,
  .backBtn a:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
  .spBr {
    display: block;
  }
  .pcPic {
    display: none;
  }
  .spPic {
    display: inline-block;
  }
  .loginForm {
    height: 100vh;
    padding: 0 20px;
  }
  .loginForm_inner {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    padding: 20px;
    width: 100%;
  }
  .loginForm_item {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .loginForm_item input {
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
    font-size: 1.6rem;
    padding: 8px;
    width: 100%;
  }
}
.calendarController {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding: 0 1.5vw;
  -ms-flex-align: center;
  align-items: center;
  list-style: 1px;
  -ms-flex-pack: right;
  gap: 0 15px;
  justify-content: right;
}
.calendarController_inner {
  -ms-flex: 1;
  flex: 1;
  padding-right: 60px;
  -ms-flex-pack: center;
  justify-content: center;
}
.calendarController_inner,
.calendarController_spWrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.calendarController_spWrap {
  -ms-flex: 1;
  flex: 1;
}
.calendarController_newbtn {
  -ms-flex-order: 4;
  background: #fff;
  border: 1px solid #005bac;
  border-radius: 100px;
  color: #005bac;
  margin-left: auto;
  order: 4;
  padding: 3px 10px;
}
.calendarController_newbtn:hover {
  text-decoration: none;
}
.calendarController_newbtn {
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .calendarController_newbtn {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarController_newbtn:active,
.calendarController_newbtn:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .calendarController_newbtn:active,
  .calendarController_newbtn:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarController_newbtn.red {
  border: 1px solid #c70100;
  color: #c70100;
}
.calendarController_newbtn.red:hover {
  background: #c70100;
  color: #fff;
}
.calendarController_year {
  font-size: 2rem;
  margin: 0 5px;
}
.calendarController_month {
  margin-left: 10px;
}
.calendarController_month strong {
  font-size: 3rem;
  margin-right: 4px;
}
.calendarController_next,
.calendarController_prev {
  -ms-flex-order: 2;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  cursor: pointer;
  filter: alpha(opacity=100);
  margin: 0 0 0 7px;
  opacity: 1;
  order: 2;
  padding: 3px 10px;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .calendarController_next,
  .calendarController_prev {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarController_next:active,
.calendarController_next:hover,
.calendarController_prev:active,
.calendarController_prev:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .calendarController_next:active,
  .calendarController_next:hover,
  .calendarController_prev:active,
  .calendarController_prev:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarController_thismonth {
  -ms-flex-order: 2;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  cursor: pointer;
  filter: alpha(opacity=100);
  margin: 0 0 0 15px;
  opacity: 1;
  order: 2;
  padding: 3px 10px;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .calendarController_thismonth {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarController_thismonth:active,
.calendarController_thismonth:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .calendarController_thismonth:active,
  .calendarController_thismonth:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarController_nextyear,
.calendarController_prevyear {
  background: none;
  border: none;
  color: #005bac;
  cursor: pointer;
  filter: alpha(opacity=100);
  font-size: 1.9rem;
  opacity: 1;
  padding: 0;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .calendarController_nextyear,
  .calendarController_prevyear {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarController_nextyear:active,
.calendarController_nextyear:hover,
.calendarController_prevyear:active,
.calendarController_prevyear:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .calendarController_nextyear:active,
  .calendarController_nextyear:hover,
  .calendarController_prevyear:active,
  .calendarController_prevyear:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.btnFixWrap {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 1000000;
}
.btnFixWrap .newPostBtn {
  background: #005bac;
  border: 2px solid #fff;
  border-radius: 100px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 600;
  height: 74px;
  line-height: 1.2;
  padding: 0;
  width: 74px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  filter: alpha(opacity=100);
  justify-content: center;
  margin-bottom: 15px;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .btnFixWrap .newPostBtn {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.btnFixWrap .newPostBtn:active,
.btnFixWrap .newPostBtn:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .btnFixWrap .newPostBtn:active,
  .btnFixWrap .newPostBtn:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.btnFixWrap .newPostBtn02 {
  background: #e4b601;
  border: 2px solid #fff;
  border-radius: 100px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 600;
  height: 74px;
  line-height: 1.2;
  padding: 0;
  width: 74px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  filter: alpha(opacity=100);
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .btnFixWrap .newPostBtn02 {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.btnFixWrap .newPostBtn02:active,
.btnFixWrap .newPostBtn02:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .btnFixWrap .newPostBtn02:active,
  .btnFixWrap .newPostBtn02:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.calendarMain {
  margin-bottom: 0;
  padding: 0 1.5vw;
}
.calendarMain_wrap {
  overflow: hidden;
}
.calendarMain_inner {
  height: calc(100vh - 90px);
  overflow: auto;
  padding: 1px;
  width: 97vw;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.calendarMain table {
  border-collapse: collapse;
  width: 6400px;
  table-layout: fixed;
}
.calendarMain table td,
.calendarMain table th {
  border: 1px solid #ddd;
}
.calendarMain thead tr {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  font-size: 1.3rem;
  line-height: 1.2;
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 5;
  z-index: 400;
}
.calendarMain thead td {
  background: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 0;
  text-align: center;
  vertical-align: middle;
  width: 200px;
}
.calendarMain thead td.blue {
  background: #006bdb;
  color: #fff;
}
.calendarMain thead td.red {
  background: #c70100;
  color: #fff;
}
.calendarMain thead td.today {
  background: #00793c;
  color: #fff;
}
.calendarMain thead th {
  background: #fff;
  z-index: 300;
}
.calendarMain tbody th,
.calendarMain thead th {
  left: -1px;
  position: -webkit-sticky;
  position: sticky;
  table-layout: fixed;
  vertical-align: middle;
  z-index: 2;
}
.calendarMain thead th,
.calendarMain tbody th {
  width: 120px;
  min-width: 96px;
}
.calendarMain tbody th {
  background: #fafafa;
  font-size: 1.5rem;
  padding: 3px 6px;
  text-align: center;
  z-index: 300;
}
.calendarMain tbody td {
  position: relative;
  vertical-align: top;
}
.calendarMain tbody td button {
  background: #fff;
  border: none;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0.6em 1em;
  text-align: left;
  width: 100%;
}
.calendarMain tbody td button.js-pop-btn {
  background: #006bdb;
  color: #fff;
}
.calendarMain .schedule-block {
  margin-bottom: 2px;
  position: relative;
  box-sizing: border-box;
}
.calendarMain .schedule-block * {
  box-sizing: border-box;
}
.calendarMain .schedule-block.is-pending {
  opacity: 0.95;
}
.calendarMain .schedule-pending-mask {
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  font-weight: 600;
  inset: 0;
  justify-content: center;
  letter-spacing: 0.1em;
  pointer-events: none;
  position: absolute;
  text-align: center;
  text-transform: none;
  z-index: 200;
}
.calendarMain .schedule-block.is-approved {
  position: relative;
}
.calendarMain .schedule-approved-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #16a34a;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
  z-index: 210;
}
.calendarMain .schedule-block.is-daily-reported {
  position: relative;
  border: 2px dashed #9ca3af;
}
.calendarMain .schedule-daily-report-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #6b7280;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}
.calendarMain .schedule-daily-report-badge.schedule-daily-report-badge--draft {
  background: #3b82f6;
}
.calendarMain .schedule-block.is-daily-report-draft {
  position: relative;
  border: 2px dashed #60a5fa;
}
.calendarMain .schedule-block.is-locked {
  position: relative;
  background: #d1d5db !important;
  border-color: #cbd5e1 !important;
  color: #374151 !important;
}
.calendarMain .schedule-locked-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #4b5563;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}
.calendarMain .schedule-block-inner {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 10px;
  position: relative;
  word-break: break-word;
  z-index: 100;
  border-radius: 4px;
  min-height: 85px;
}
/* オーバーレイレイヤー削除（セル内配置に戻す） */
/* .calendarMain tr[data-role-row] の position: relative は不要なので削除済み */

/* CSS変数を使った複数日スケジュールの幅制御 */
.calendarMain .schedule-block-inner--main {
  background-color: var(--schedule-bg-color, #3a7bd5);
  color: var(--schedule-text-color, #ffffff);
  border-radius: 4px;
}

.calendarMain .schedule-block-inner[style*='--schedule-span-days'] {
  width: calc(var(--schedule-span-days, 1) * 100% + (var(--schedule-span-days, 1) - 1) * 2px);
}

/* スペーサー（2日目以降の透明セル） */
.calendarMain .schedule-spacer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.calendarMain .schedule-block:last-of-type {
  margin-bottom: 0;
}
.calendarMain .schedule-block.horyuutyuu:before {
  color: #fff;
  content: '現在申請中';
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  background: rgba(0, 0, 0, 0.7);
  cursor: not-allowed;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 200;
}
.calendarMain .nippouFin {
  cursor: not-allowed;
}
.calendarMain .nippouFin:before {
  background: rgba(254, 255, 15, 0.9);
  content: '日報記入済';
  display: -ms-flexbox;
  display: flex;
  left: 10px;
  padding: 5px 10px;
  position: absolute;
  top: 10px;
  z-index: 190;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  -ms-flex-pack: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.05em;
  pointer-events: none;
}
td button.js-pop-btn02 {
  background: none;
  -ms-flex-pack: center;
  justify-content: center;
}
.modalBox {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  bottom: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  display: none;
  height: 100vh;
  left: 0;
  margin: auto;
  max-height: calc(100vh - 100px);
  max-width: 750px;
  position: fixed;
  right: 0;
  top: 0;
  width: 65vw;
  z-index: 10000;
}
.modalBox_inner {
  height: 100%;
  overflow-y: auto;
  padding: 2em;
  -webkit-overflow-scrolling: touch;
}
.modalBox h2 {
  border-bottom: 2px solid #ddd;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.modalBox h2:before {
  background: #0675c1;
  border-radius: 3px;
  content: '';
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 7px;
}
.modalBox_close {
  background: none;
  border: none;
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
  padding: 0;
  position: absolute;
  right: -16px;
  top: -16px;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .modalBox_close {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.modalBox_close:active,
.modalBox_close:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .modalBox_close:active,
  .modalBox_close:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.modalBox_close i {
  font-size: 40px;
}
.modalBoxMain {
  padding-bottom: 20px;
}
.modalBoxMain dl {
  border-bottom: 1px dotted #ddd;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.modalBoxMain dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.modalBoxMain dl dt {
  font-weight: 700;
  padding-top: 5px;
  width: 120px;
}
.modalBoxMain dl dd {
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
  padding-top: 2px;
}
.modalBoxMain dl dd input {
  font-size: 1.6rem;
}
.modalBoxMain dl dd input[type='date'],
.modalBoxMain dl dd input[type='time'] {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  min-width: 150px;
  padding: 5px;
}
.modalBoxMain dl dd input[type='text'],
.modalBoxMain dl dd textarea {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
  width: 100%;
}
.modalBoxMain dl dd textarea {
  height: 120px;
}
.modalBoxMain dl dd select {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
}
.modalBoxMain dl dd a {
  color: #005bac;
  text-decoration: underline;
}
.desktop .modalBoxMain dl dd a:hover,
.modalBoxMain dl dd a:active {
  text-decoration: none;
}
.modalBoxMain .koujiNumber {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.modalBoxMain .koujiNumber input {
  width: 150px !important;
}
.modalBoxMain #user_select_dl dd,
.modalBoxMain #user_select_dl dt {
  display: inline-block;
}
.modalBoxMain #user_select_dl dt {
  width: 120px;
}
.modalBoxMain #user_select_dl select {
  border: 1px solid #ddd;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 5px;
  min-width: 300px;
  padding: 5px;
}
.modalBoxMain #user_select_dl small {
  font-size: 1.4rem;
  font-weight: 700;
}
.modalBoxMain #user_select_dl02 dd,
.modalBoxMain #user_select_dl02 dt {
  display: inline-block;
}
.modalBoxMain #user_select_dl02 dt {
  width: 120px;
}
.modalBoxMain #user_select_dl02 select {
  border: 1px solid #ddd;
  display: block;
  font-size: 1.5rem;
  height: 150px;
  margin-bottom: 5px;
  min-width: 300px;
  padding: 5px;
}
.modalBoxMain #user_select_dl02 small {
  font-size: 1.4rem;
  font-weight: 700;
}
.modalBoxMain .colortag {
  border-radius: 3px;
  display: inline-block;
  height: 22px;
  width: 22px;
}
.modalBoxMain .mb {
  border-bottom: 1px dotted #ddd;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.modalBoxCtrl {
  border-top: 1px dashed #ddd;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  gap: 0 20px;
  justify-content: end;
  padding-top: 15px;
}
.modalBoxCtrl button {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 100px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 34px;
  padding: 0 20px;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  filter: alpha(opacity=100);
  line-height: 1;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .modalBoxCtrl button {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.modalBoxCtrl button:active,
.modalBoxCtrl button:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .modalBoxCtrl button:active,
  .modalBoxCtrl button:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.modalBoxCtrl button i {
  margin-left: 5px;
  margin-top: -3px;
}
.calendarSp {
  padding: 0 10px;
}
.calendarSp table {
  border-collapse: collapse;
  width: 100%;
}
.calendarSp table td,
.calendarSp table th {
  border: 1px solid #ddd;
  width: 14.2857142857%;
}
.calendarSp table thead th {
  background: #fafafa;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 2px 0;
  text-align: center;
}
.calendarSp table tbody td {
  line-height: 1;
  padding: 0 0 3px;
  text-align: center;
  vertical-align: middle;
}
.calendarSp table tbody td button {
  background: #e3d54a;
  border: none;
  border-radius: 100px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1px;
  height: 6px;
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 6px;
}
.calendarSp_day {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 0;
  text-align: center;
}
.calendarSp_info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  gap: 2px;
  justify-content: center;
}
.spTopBox {
  height: 40vh;
}
.spBtmBox {
  height: 50vh;
}
.spDatailSceBox {
  height: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px;
}
.spDatailSceBox_title {
  background: #fafafa;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px;
}
.spDatailSceBox_data {
  padding: 10px;
}
.spDatailSceBox_item {
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
}
.spDatailSceBox_name {
  font-weight: 700;
  width: 40px;
}
.spDatailSceBox_mine {
  -ms-flex: 1;
  flex: 1;
}
.formColorBox {
  border: 1px solid #000;
  height: 39px;
}
tr.role-header,
tr.role-header th {
  background: #fffacc;
}
tr.role-header th {
  font-size: 1.5rem;
  left: 0;
  left: -1px;
  padding: 3px 0;
  position: -webkit-sticky;
  position: sticky;
  table-layout: fixed;
  text-align: center;
  vertical-align: middle;
  width: 140px;
  z-index: 2;
  z-index: 200;
}
.calendarController_spWrap {
  margin: 0 auto;
}
.role_filter_container .filter_label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.role_filter_container .checkbox_item {
  border: 1px solid #ddd;
  border-radius: 100px;
  display: block;
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding: 5px 12px;
}
.role_filter_container .filter_apply_btn {
  background: #005bac;
  border: none;
  border-radius: 100px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  cursor: pointer;
  filter: alpha(opacity=100);
  justify-content: center;
  opacity: 1;
  padding: 5px 20px;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .role_filter_container .filter_apply_btn {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.role_filter_container .filter_apply_btn:active,
.role_filter_container .filter_apply_btn:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .role_filter_container .filter_apply_btn:active,
  .role_filter_container .filter_apply_btn:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.color-picker-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.color-picker {
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  height: 35px;
  width: 50px;
}
.color-preview {
  border: 1px solid #ccc;
  border-radius: 3px;
  display: inline-block;
  height: 20px;
  margin-left: 5px;
  width: 20px;
}
.color-label {
  color: #666;
  font-size: 14px;
}
.siteCodeBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.modalBoxController {
  margin-bottom: 25px;
}
.modalBoxController_inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 8px;
}
.modalBoxController_year {
  font-size: 2rem;
}
.modalBoxController_month strong {
  font-size: 3rem;
  margin-right: 4px;
}
.modalBoxController_day {
  margin-right: 10px;
}
.modalBoxController_day strong {
  font-size: 3rem;
  margin-right: 4px;
}
.modalBoxController_next,
.modalBoxController_prev {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
  padding: 5px 15px;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .modalBoxController_next,
  .modalBoxController_prev {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.modalBoxController_next:active,
.modalBoxController_next:hover,
.modalBoxController_prev:active,
.modalBoxController_prev:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .modalBoxController_next:active,
  .modalBoxController_next:hover,
  .modalBoxController_prev:active,
  .modalBoxController_prev:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
  .calendarController {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 3px;
    margin-bottom: 0;
    padding: 10px 15px;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .calendarController_inner {
    -ms-flex: 1;
    flex: 1;
    padding-right: 50px;
  }
  .calendarController_year {
    font-size: 1.4rem;
    margin: 0;
  }
  .calendarController_month {
    margin-left: 5px;
  }
  .calendarController_month strong {
    font-size: 2rem;
    margin-right: 3px;
  }
  .calendarController_next,
  .calendarController_prev {
    font-size: 1.1rem;
    margin: 0 0 0 6px;
    padding: 2px 8px;
  }
  .calendarController_thismonth {
    font-size: 1.2rem;
    margin-left: 10px;
    padding: 2px 6px;
  }
  .calendarController_nextyear,
  .calendarController_prevyear {
    display: none;
  }
  .calendarController_spWrap .role_filter_container {
    border-top: none;
    display: block !important;
  }
  .calendarController_spWrap .role_checkboxes {
    display: block;
    width: 100%;
  }
  .calendarController_spWrap .role_checkboxes .checkbox_item {
    display: block;
    margin-bottom: 15px;
  }
  .role_filter_container {
    -ms-flex-order: 4;
    display: -ms-flexbox;
    display: flex;
    order: 4;
    width: 100%;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px dotted #ddd;
    gap: 0 15px;
    margin-left: 0;
    padding-top: 0;
  }
  .role_filter_container .filter_label {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }
  .role_filter_container .checkbox_item {
    font-size: 1.3rem;
    padding: 5px;
  }
  .role_filter_container .filter_apply_btn {
    border: none;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.3rem;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    padding: 5px 0;
  }
  .calendarMain {
    margin-bottom: 0;
    padding: 0 15px;
  }
  .calendarMain_inner {
    height: calc(100vh - 70px);
    padding: 0;
    width: calc(100vw - 30px);
  }
  .calendarMain table {
    border-collapse: separate;
  }
  .calendarMain thead tr {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 500;
  }
  .calendarMain thead td {
    min-width: 140px;
    padding: 5px 0;
    width: 120px;
  }
  .calendarMain thead th {
    left: -1px;
    position: -webkit-sticky;
    position: sticky;
    vertical-align: middle;
    z-index: 2;
  }
  .calendarMain tbody th {
    font-size: 1.3rem;
    padding: 5px 3px;
    text-align: left;
    width: 70px;
  }
  .calendarMain tbody td {
    position: relative;
  }
  .calendarMain tbody td button {
    background: #fff;
    border: none;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 0.6em 1em;
    text-align: left;
    width: 100%;
  }
  .calendarMain tbody td button.js-pop-btn {
    background: #006bdb;
    color: #fff;
  }
  .calendarMain .schedule-block-inner {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding: 10px;
    word-break: break-word;
  }
  .calendarMain .schedule-block:last-of-type {
    margin-bottom: 0;
  }
  td button.js-pop-btn02 {
    background: none;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .modalBox {
    bottom: auto;
    display: none;
    height: 100vh;
    left: 0;
    max-height: calc(100vh - 70px);
    min-height: 0;
    min-height: auto;
    position: fixed;
    right: 0;
    top: 55px;
    width: 94vw;
  }
  .modalBox_inner {
    padding: 1.5em 1.5em 100px;
  }
  .modalBox h2 {
    font-size: 1.7rem;
    padding-left: 15px;
  }
  .modalBox h2:before {
    height: 26px;
    left: 0;
    width: 6px;
  }
  .modalBox_close {
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 12px;
  }
  .modalBox_close i {
    font-size: 35px;
  }
  .modalBoxMain {
    padding-bottom: 20px;
  }
  .modalBoxMain dl {
    border-bottom: 1px dotted #ddd;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .modalBoxMain dl:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .modalBoxMain dl dt {
    font-size: 1.5rem;
    padding-top: 5px;
    width: 100%;
  }
  .modalBoxMain dl dd {
    -ms-flex: initial;
    flex: initial;
    font-size: 1.6rem;
    padding-top: 2px;
    width: 100%;
  }
  .modalBoxMain dl dd input {
    font-size: 1.6rem;
  }
  .modalBoxMain dl dd input[type='date'],
  .modalBoxMain dl dd input[type='time'] {
    font-size: 1.6rem;
    min-width: 160px;
    text-align: left;
  }
}
@media only screen and (max-width: 990px) {
  .modalBoxMain dl dd input[type='date']::-webkit-date-and-time-value,
  .modalBoxMain dl dd input[type='time']::-webkit-date-and-time-value {
    text-align: left;
  }
  .modalBoxMain dl dd input[type='text'],
  .modalBoxMain dl dd textarea {
    border: 1px solid #ddd;
    font-size: 1.6rem;
    padding: 10px;
    width: 100%;
  }
  .modalBoxMain dl dd textarea {
    height: 120px;
  }
  .modalBoxMain dl dd select {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
    font-size: 1.4rem;
    height: auto;
    margin-bottom: 0;
    min-width: 0;
    min-width: auto;
    padding: 10px;
    width: 100%;
  }
  .modalBoxMain .koujiNumber {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .modalBoxMain .koujiNumber input {
    width: 150px !important;
  }
  .modalBoxMain #user_select_dl dd,
  .modalBoxMain #user_select_dl dt {
    display: inline-block;
  }
  .modalBoxMain #user_select_dl dt {
    width: 100%;
  }
  .modalBoxMain #user_select_dl select {
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
    font-size: 1.4rem;
    height: auto;
    margin-bottom: 0;
    min-width: 0;
    min-width: auto;
    padding: 10px;
  }
  .modalBoxMain #user_select_dl small {
    display: none;
  }
  .modalBoxMain .colortag {
    border-radius: 3px;
    display: inline-block;
    height: 22px;
    width: 22px;
  }
  .modalBoxMain .mb {
    border-bottom: 1px dotted #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .modalBoxCtrl {
    border-top: 1px dashed #ddd;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    gap: 0 20px;
    justify-content: end;
    padding-top: 15px;
  }
  .modalBoxCtrl button {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 100px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 34px;
    padding: 0 20px;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
  }
  .modalBoxCtrl button i {
    margin-left: 5px;
    margin-top: -3px;
  }
  .calendarSp {
    padding: 0 10px;
  }
  .calendarSp table {
    border-collapse: collapse;
    width: 100%;
  }
  .calendarSp table td,
  .calendarSp table th {
    border: 1px solid #ddd;
    width: 14.2857142857%;
  }
  .calendarSp table thead th {
    background: #fafafa;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 2px 0;
    text-align: center;
  }
  .calendarSp table tbody td {
    line-height: 1;
    padding: 0 0 3px;
    text-align: center;
    vertical-align: middle;
  }
  .calendarSp table tbody td button {
    background: #e3d54a;
    border: none;
    border-radius: 100px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1px;
    height: 6px;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: 6px;
  }
  .calendarSp_day {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 0;
    padding: 3px 0;
    text-align: center;
  }
  .calendarSp_info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    gap: 2px;
    justify-content: center;
  }
  .spTopBox {
    height: 40vh;
  }
  .spBtmBox {
    height: 50vh;
  }
  .spDatailSceBox {
    height: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
  }
  .spDatailSceBox_title {
    background: #fafafa;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 10px;
  }
  .spDatailSceBox_data {
    padding: 10px;
  }
  .spDatailSceBox_item {
    display: -ms-flexbox;
    display: flex;
    font-size: 1.3rem;
  }
  .spDatailSceBox_name {
    font-weight: 700;
    width: 40px;
  }
  .spDatailSceBox_mine {
    -ms-flex: 1;
    flex: 1;
  }
  .formColorBox {
    border: 1px solid #000;
    height: 39px;
  }
  .siteCodeBox div,
  .siteCodeBox input {
    width: 100%;
  }
  .btnFixWrap {
    bottom: 10px;
    right: 10px;
  }
  .btnFixWrap .newPostBtn {
    margin-bottom: 10px;
  }
  .btnFixWrap .newPostBtn,
  .btnFixWrap .newPostBtn02 {
    font-size: 1.5rem;
    height: 60px;
    width: 60px;
  }
  .modalBoxController {
    margin-bottom: 20px;
    padding-top: 20px;
  }
  .modalBoxController_inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 3px;
  }
  .modalBoxController_year {
    font-size: 1.4rem;
  }
  .modalBoxController_month strong {
    font-size: 1.6rem;
    margin-right: 3px;
  }
  .modalBoxController_day {
    margin-right: 0;
  }
  .modalBoxController_day strong {
    font-size: 1.6rem;
    margin-right: 4px;
  }
  .modalBoxController_next,
  .modalBoxController_prev {
    font-size: 1.1rem;
    margin: 0 0 0 5px;
    padding: 6px 10px;
  }
}
.ui-header {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  left: 0;
  padding: 0 2%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.ui-header_inner {
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  height: var(--ui-header-height, 60px);
}
.ui-header__title,
.ui-header_inner {
  -ms-flex-align: center;
  align-items: center;
}
.ui-header__title {
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
}
.desktop .ui-header__title a:hover,
.ui-header__title a,
.ui-header__title a:active {
  text-decoration: none;
}
.ui-header__title img {
  margin-right: 6px;
  width: 42px;
}
.ui-header .ui-header__nav {
  margin-left: auto;
}
.ui-header__brand-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
  gap: 0.65rem;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.ui-header__brand-link:hover {
  opacity: 0.92;
}
.ui-header__brand-logo {
  display: block;
  height: auto;
  width: 34px;
}
.ui-header__brand-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.ui-main {
  margin: 0 auto;
  max-width: 1100px;
  padding: 1.5rem;
}
.ui-panel {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
  padding: 25px;
}
.ui-panel__title {
  margin-bottom: 1rem;
  margin-top: 0;
}
.ui-form {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  -ms-flex-align: end;
  align-items: flex-end;
}
.ui-form,
.ui-form__field {
  display: -ms-flexbox;
  display: flex;
}
.ui-form__field {
  border-bottom: 1px dotted #ddd;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
  min-width: 200px;
  padding-bottom: 20px;
}
.ui-form__label {
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.ui-form--vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.ui-form__actions {
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5rem;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.ui-form__actions .ui-button {
  font-weight: 700;
  height: 50px;
}
.ui-form__hint {
  color: rgba(0, 0, 0, 0.7);
  display: block;
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 10px;
}
.ui-form input[type='date'],
.ui-form input[type='email'],
.ui-form input[type='password'],
.ui-form input[type='time'],
.ui-input,
.ui-select {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px;
}
.ui-form input:focus {
  border-color: #3a7bd5;
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
  outline: none;
}
.ui-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}
.ui-textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.6rem;
  line-height: 1.8;
  min-height: 250px;
  padding: 10px;
  resize: vertical;
}
.ui-textarea:focus {
  border-color: #3a7bd5;
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
  outline: none;
}
.ui-textarea--table {
  font-size: 0.85rem;
  min-height: 80px;
  width: 100%;
}
.ui-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  background: #fff;
  border: 1px solid #005bac;
  border-radius: 100px;
  color: #005bac;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  justify-content: center;
  line-height: 1;
  min-height: 35px;
  padding: 3px 10px;
  width: 100%;
}
.ui-button:focus {
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.35);
  outline: none;
}
.ui-button--primary {
  background: #005bac;
  color: #fff;
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .ui-button--primary {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.ui-button--primary:active,
.ui-button--primary:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .ui-button--primary:active,
  .ui-button--primary:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.ui-button--secondary:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.ui-button--ghost {
  background-color: transparent;
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #1f2933;
}
.ui-button--danger {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
}
.ui-button--inline {
  font-size: 0.85rem;
  padding: 0.45rem 0.8rem;
}
.ui-table-container {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  height: 100%;
  overflow-y: auto;
}
.ui-table {
  background-color: #fff;
  border-collapse: collapse;
  font-size: 1.5rem;
  width: 100%;
}
.ui-table tbody tr:nth-child(2n) {
  background: #fafafa;
}
.ui-table td,
.ui-table th {
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.4rem !important;
  padding: 15px 10px;
  text-align: left;
  vertical-align: middle;
}
.ui-table th {
  background-color: #f1f5f9;
  color: #1e293b;
  letter-spacing: 0.02em;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}
.ui-table__placeholder td {
  color: #64748b;
  text-align: center;
}
.ui-table__spacer td {
  border: none;
  line-height: 0;
}
.ui-table td:nth-child(6) {
  white-space: wrap;
  width: 100px;
}
.ui-table td:nth-child(6) button {
  display: inline;
}
.ui-table td:nth-child(6) .ui-button--ghost {
  font-size: 1.4rem;
  margin-top: 10px;
  padding: 0 10px;
}
.ui-approval-actions {
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.ui-table__row--pending {
  opacity: 0.6;
}
.ui-status {
  color: #1e293b;
  font-weight: 700;
  margin: 20px 0;
  text-align: center;
}
.ui-status--error {
  color: #dc2626;
}
.ui-status--success {
  color: #16a34a;
}
.ui-result {
  transition: opacity 0.2s ease;
}
.ui-result.is-hidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  visibility: hidden;
}
.ui-definition {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: minmax(120px, 180px) 1fr;
  margin: 0;
}
.ui-definition dt {
  color: #475569;
  font-weight: 600;
}
.ui-definition dd {
  margin: 0;
  word-break: break-all;
}
.ui-login {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}
/* .ui-login__panel {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
  max-width: 360px;
  padding: 2rem;
  width: 100%;
} */
.ui-login__title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
  text-align: center;
}
.ui-logout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
}
.ui-logout__panel {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  padding: 2rem;
  text-align: center;
}
.ui-logout__title {
  margin: 0 0 0.5rem;
}
@media (max-width: 950px) {
  .ui-panel {
    padding: 15px;
  }
  .ui-form {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .ui-button,
  .ui-form__field {
    width: 100%;
  }
  .ui-panel__header .ui-button {
    flex: 1 1 auto;
    max-width: none;
    white-space: normal;
  }
  .ui-header {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
  .ui-approval-actions,
  .ui-panel__header {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .ui-nav-link {
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 990px) {
  .ui-header {
    padding: 0 0 0 10px;
    position: static;
  }
  .ui-header_inner {
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    height: var(--ui-header-height, 50px);
  }
  .ui-header__title,
  .ui-header_inner {
    -ms-flex-align: center;
    align-items: center;
  }
  .ui-header__title {
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.6rem;
  }
  .desktop .ui-header__title a:hover,
  .ui-header__title a,
  .ui-header__title a:active {
    text-decoration: none;
  }
  .ui-header__title img {
    margin-right: 6px;
    width: 42px;
  }
  .ui-header .ui-header__nav {
    margin-left: auto;
  }
}
.adminContainer {
  padding: 0 1.5vw;
}
.adminContainer_inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px 0;
}
.adminTitle {
  background-color: #fafafa;
  border-left: 6px solid #0675c1;
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 30px;
  padding: 8px 15px 8px 14px;
}
.adminText {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 2em;
}
.adminBtn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}
.adminBtn a {
  background: #0675c1;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  filter: alpha(opacity=100);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  opacity: 1;
  padding: 10px 20px;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .adminBtn a {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.adminBtn a:active,
.adminBtn a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .adminBtn a:active,
  .adminBtn a:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.adminForm {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 60px;
  padding: 20px 30px;
}
.adminForm_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.adminForm_main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 10px;
}
.adminForm_main input[type='email'],
.adminForm_main input[type='password'],
.adminForm_main input[type='text'] {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px;
}
.adminForm_main select {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px 20px 10px 10px;
}
.adminForm_btn {
  padding: 15px 0;
  text-align: center;
  width: 100%;
}
.adminForm_btn button {
  font-size: 1.6rem;
  height: 50px;
  max-width: 300px;
  width: 100%;
}
.adminForm_calendarurl {
  width: 100%;
}
.adminMasterData_textarea {
  margin-bottom: 20px;
}
.adminMasterData_textarea textarea {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  height: 300px;
  padding: 10px;
  width: 100%;
}
.adminMasterData_btn {
  text-align: center;
}
.adminMasterData_btn button {
  background: #0675c1;
  border: none;
  border-radius: 5px;
  color: #fff;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 2rem;
  letter-spacing: 0.05em;
  max-width: 250px;
  padding: 10px;
  width: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .adminMasterData_btn button {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.adminMasterData_btn button:active,
.adminMasterData_btn button:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .adminMasterData_btn button:active,
  .adminMasterData_btn button:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.admin-shell__main {
  margin-top: calc(var(--ui-header-height, 60px) + 1rem);
  padding: 2.5rem 1.5rem 3rem;
}
.admin-shell__container {
  margin: 0 auto;
  max-width: 1080px;
}
.admin-shell__toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.admin-shell__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex: 1;
  flex: 1;
  gap: 1rem;
}
.admin-shell__nav-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  color: #52606d;
  font-size: 1.4rem;
  font-weight: 500;
  justify-content: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.admin-shell__nav-link:hover {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}
.admin-shell__nav-link--active {
  background: #2563eb;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
  color: #fff;
}
.admin-card {
  background: #fff;
  border: 1px solid rgba(82, 96, 109, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(88, 104, 141, 0.12);
  padding: 40px;
}
.admin-card__title {
  color: #111827;
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
}
.admin-card__note {
  line-height: 1.8;
  margin: 0 0 30px;
}
.admin-dashboard__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}
.admin-dashboard__tile {
  background: #f8fafc;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 1.25rem;
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.6);
  padding: 30px;
  transition: box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}
.admin-dashboard__tile:hover {
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.admin-dashboard__tile-title {
  color: #1f2933;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.admin-dashboard__tile-desc {
  color: #52606d;
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0 0 30px;
}
.admin-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  background: #2563eb;
  border-radius: 0.75rem;
  color: #fff;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.03em;
  min-width: 180px;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.admin-button:hover {
  background: #1d4fd7;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.22);
  text-decoration: none;
}
.admin-button--secondary {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: #2563eb;
}
.admin-button--secondary:hover {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}
.admin-shell__profile {
  display: none;
}
.admin-dashboard_btn {
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .adminTitle {
    background-color: #fafafa;
    border-left: 5px solid #0675c1;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .adminText {
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 2em;
  }
  .admin-shell__main {
    padding: 25px 15px 3rem;
  }
  .admin-shell__toolbar {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 5px;
    margin-bottom: 25px;
  }
  .admin-card {
    border-radius: 10px;
    padding: 20px;
  }
  .admin-card__note {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .admin-dashboard__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 20px;
  }
  .admin-button {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
}
.adminContainer input[type='password'],
.adminContainer input[type='text'] {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.5rem;
  height: 35px;
  /* margin-right: 0.6em; */
  padding: 10px;
}
.adminContainer button {
  background: #0675c1;
  border: none;
  border-radius: 5px;
  color: #fff;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.5rem;
  height: 35px;
  letter-spacing: 0.05em;
  padding: 0 20px;
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  cursor: pointer;
  filter: alpha(opacity=100);
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .adminContainer button {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.adminContainer button:active,
.adminContainer button:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .adminContainer button:active,
  .adminContainer button:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.adminContainer button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}
.adminContainer .adminTable {
  border-collapse: collapse;
  margin: 1em 0 60px;
  width: 100%;
}
.adminContainer .adminTable td,
.adminContainer .adminTable th {
  border: 1px solid #ddd;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  padding: 0.6em 15px;
  text-align: center;
}
.adminContainer .adminTable th {
  background-color: #f0f0f0;
  font-weight: 700;
}
.adminContainer .admin,
.infoBox {
  color: #c00;
  font-weight: 700;
}
.infoBox {
  border: 1px solid #ddd;
  border-radius: 100px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding: 15px 10px;
  text-align: center;
}
.nippouContainer {
  padding: 0 1.5vw;
}
.nippouContainer_inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px 0;
}
.nippouBox {
  margin: 0 auto;
  max-width: 900px;
  padding-bottom: 100px;
}
.nippouBox h2 {
  border-bottom: 2px solid #ddd;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.nippouBox h2:before {
  background: #0675c1;
  border-radius: 3px;
  content: '';
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 7px;
}
.nippouBox h3 {
  background-color: #005bac;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 25px;
  padding: 10px;
}
.nippouBoxMain_item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
  padding-bottom: 25px;
}
.nippouBoxMain_noneCheck {
  margin-bottom: 20px;
}
.nippouBoxMain_noneCheck label {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: block;
  font-weight: 700;
  padding: 15px;
}
.nippouBoxMain dl {
  border-bottom: 1px dotted #ddd;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.6rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.nippouBoxMain dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.nippouBoxMain dl dt {
  font-weight: 700;
  padding-top: 5px;
  width: 120px;
}
.nippouBoxMain dl dd {
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
  padding-top: 2px;
}
.nippouBoxMain dl dd input {
  font-size: 1.6rem;
}
.nippouBoxMain dl dd input[type='date'],
.nippouBoxMain dl dd input[type='time'] {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  min-width: 150px;
  padding: 5px;
}
.nippouBoxMain dl dd input[type='text'],
.nippouBoxMain dl dd textarea {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  height: auto;
  padding: 10px;
  width: 100%;
}
.nippouBoxMain dl dd textarea {
  height: 120px;
}
.nippouBoxMain dl dd select {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
}
.nippouBoxMain dl dd a {
  color: #005bac;
  text-decoration: underline;
}
.desktop .nippouBoxMain dl dd a:hover,
.nippouBoxMain dl dd a:active {
  text-decoration: none;
}
.nippouBoxMain .moreTimeBox {
  border-bottom: 1px dotted #ddd;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.nippouBoxBtn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  gap: 0 20px;
  justify-content: center;
  padding-top: 15px;
}
.nippouBoxBtn button {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 100px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  padding: 0 30px;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  filter: alpha(opacity=100);
  line-height: 1;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .nippouBoxBtn button {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.nippouBoxBtn button:active,
.nippouBoxBtn button:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 990px) {
  .nippouBoxBtn button:active,
  .nippouBoxBtn button:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
.nippouBoxBtn button i {
  margin-left: 5px;
  margin-top: -3px;
}
.nippouBoxTitle {
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  padding: 20px;
  -ms-flex-pack: center;
  gap: 0 20px;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.nippouBoxTitle_text {
  font-weight: 700;
}
.nippouBoxTitle_date input {
  padding: 5px;
}
@media only screen and (max-width: 990px) {
  .nippouContainer {
    padding: 0;
  }
  .nippouContainer_inner {
    padding: 30px 25px;
  }
  .nippouBox {
    margin: 0 auto;
    max-width: 900px;
    padding-bottom: 100px;
  }
  .nippouBox h2 {
    border-bottom: 2px solid #ddd;
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  .nippouBox h2:before {
    background: #0675c1;
    border-radius: 3px;
    content: '';
    height: 30px;
    left: 0;
    position: absolute;
    top: 0;
    width: 7px;
  }
  .nippouBox h3 {
    background-color: #005bac;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 25px;
    padding: 10px;
  }
  .nippouBoxMain_item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
  .nippouBoxMain_noneCheck {
    margin-bottom: 20px;
  }
  .nippouBoxMain_noneCheck label {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: block;
    font-weight: 700;
    padding: 15px;
  }
  .nippouBoxMain dl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .nippouBoxMain dl:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .nippouBoxMain dl dt {
    padding-bottom: 5px;
    padding-top: 0;
    width: 100%;
  }
  .nippouBoxMain dl dd {
    -ms-flex: initial;
    flex: initial;
    font-size: 1.6rem;
    padding-top: 0;
    width: 100%;
  }
  .nippouBoxMain dl dd input {
    font-size: 1.6rem;
  }
  .nippouBoxMain dl dd input[type='date'],
  .nippouBoxMain dl dd input[type='time'] {
    border: 1px solid #ddd;
    font-size: 1.6rem;
    min-width: 150px;
    padding: 5px;
  }
  .nippouBoxMain dl dd input[type='text'],
  .nippouBoxMain dl dd textarea {
    border: 1px solid #ddd;
    font-size: 1.6rem;
    height: auto;
    padding: 10px;
    width: 100%;
  }
  .nippouBoxMain dl dd textarea {
    height: 120px;
  }
  .nippouBoxMain dl dd select {
    border: 1px solid #ddd;
    font-size: 1.6rem;
    padding: 10px;
  }
  .nippouBoxMain dl dd a {
    color: #005bac;
    text-decoration: underline;
  }
  .desktop .nippouBoxMain dl dd a:hover,
  .nippouBoxMain dl dd a:active {
    text-decoration: none;
  }
  .nippouBoxMain .moreTimeBox {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .nippouBoxBtn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    gap: 0 20px;
    justify-content: center;
    padding-top: 15px;
  }
  .nippouBoxBtn button {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 100px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 40px;
    padding: 0 30px;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    filter: alpha(opacity=100);
    line-height: 1;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .nippouBoxBtn button {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
@media only screen and (max-width: 990px) {
  .nippouBoxBtn button:active,
  .nippouBoxBtn button:hover {
    filter: alpha(opacity=70);
    opacity: 0.7;
    text-decoration: none;
  }
}
@media only screen and (max-width: 990px) and (max-width: 990px) {
  .nippouBoxBtn button:active,
  .nippouBoxBtn button:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
@media only screen and (max-width: 990px) {
  .nippouBoxBtn button i {
    margin-left: 5px;
    margin-top: -3px;
  }
  .nippouBoxTitle {
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
    padding: 25px 10px;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .nippouBoxTitle_text {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .nippouBoxTitle_date input {
    padding: 5px;
  }
}

/* ============================================================
 * オーバーレイ方式スケジュール表示
 * ============================================================ */

/* スケジュール行オーバーレイレイヤー */
.schedule-row-layer {
  position: absolute;
  pointer-events: none;
  z-index: 100;
}

/* スケジュールブロック（絶対座標配置） */
.schedule-block {
  position: absolute;
  box-sizing: border-box;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.schedule-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 200 !important;
}

/* スケジュールブロック内部 */
.schedule-block-inner {
  padding: 0.5rem;
  border-radius: 4px;
  background-color: var(--schedule-bg-color, #007bff);
  color: var(--schedule-text-color, #ffffff);
  font-size: 0.875rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* メインブロック（複数日対応） */
.schedule-block-inner--main {
  min-height: 60px;
  white-space: normal;
}

/* スケジュール範囲テキスト */
.schedule-block-inner__range {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* 承認待ちバッジ */
.schedule-status-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.schedule-status-badge--pending {
  background-color: rgba(255, 193, 7, 0.9);
  color: #333;
}

/* カレンダーイベント */
.schedule-block-inner--calendar {
  border-left: 4px solid rgba(0, 0, 0, 0.2);
}

.schedule-block-inner__details {
  font-size: 0.7rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}

/* ユーザー名セル */
.user-name-cell {
  background: #f8f9fa;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: center;
  vertical-align: middle;
  min-width: 120px;
  position: sticky;
  left: 0;
  z-index: 200;
  border-right: 2px solid #dee2e6;
}

/* スケジュールセル */
.schedule-cell {
  min-height: 60px;
  vertical-align: top;
  position: relative;
}

/* ロールヘッダー */
.role-header {
  background-color: #e9ecef;
  font-weight: 700;
}

.role-header-cell {
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #495057;
}

.modalBoxMain .ui-form__field input[type='text'],
.modalBoxMain .ui-form__field input[type='email'],
.modalBoxMain .ui-form__field input[type='date'],
.modalBoxMain .ui-form__field input[type='time'] {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
  width: 100%;
}

.modalBoxMain .ui-form__field input[type='color'] {
  /* width: auto; */
}

.modalBoxMain .ui-form__field select {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
}

#login-form {
  width: 100%;
}

#login-form .ui-form__field {
  width: 100%;
}

#login-form .ui-form__field input[type='text'],
#login-form .ui-form__field input[type='email'],
#login-form .ui-form__field input[type='password'],
#login-form .ui-form__field input[type='time'] {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
  width: 100%;
  border-radius: 0;
}

#login-form .ui-form__label {
  font-size: 1.5rem;
}

.adminForm .formGrid_item {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}

.adminContainer .adminTable-full table {
  width: 100%;
}

.adminContainer .adminTable-full table .ui-button {
  width: 48%;
}

#daily-report-search select {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
}

#daily-report-search input[type='text'],
#daily-report-search input[type='email'],
#daily-report-search input[type='date'],
#daily-report-search input[type='time'] {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
  /* width: 100%; */
  border-radius: 0;
}

#daily-report-root input[type='text'],
#daily-report-root input[type='email'],
#daily-report-root input[type='date'],
#daily-report-root input[type='time'] {
  border: 1px solid #ddd;
  font-size: 1.6rem;
  padding: 10px;
  /* width: 100%; */
  border-radius: 0;
}

#daily-report-root .formGrid_item {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}

#approval-table-body * {
  font-size: 16px;
}

#approval-table-body .ui-approval-actions {
  flex-wrap: wrap;
}

#approval-table-body .ui-approval-actions button {
  display: block;
}

#refresh-approvals {
  width: 200px;
  margin: 0 auto;
  display: flex;
}
