@charset "UTF-8";
/* Theme Name: maido2023
 * Author: masanori ikawa
 * Author URI: https://azure-ad.jp/
 *
 *
 * CSS Document
 *
 * ------------------------------
 * - Index -
 *
 * 0.0 - Reset
 * 1.0 - Base
 * 2.0 - Layout
 *   2.1 - Header
 *   2.2 - Footer
 *   2.3 - Navigation, Menu
 *   2.4 - Main
 * 3.0 - Component
 *   3.1 - Common
 *   3.2 - Unique
 *   3.3 - Library
 *   3.4 - Animation
 * 4.0 - Utility
 *
 * ------------------------------
 *
 *
 * ========================================
 * 0.0 - Reset
 * ===================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 0.1rem dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 0.1rem solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ========================================
 * 1.0 - Base
 * ===================================== */
html, :root {
  --color-text-lighter: #ccc;
  --color-text-base: #000;
  --color-text-darker: #666;
  --color-text-white: #fff;
  --font-family-sans-serif: Noto Sans JP, sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, :root {
  overflow-y: scroll;
  font-size: 1vw;
}
@media (min-width: 1001px) {
  html, :root {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  html, :root {
    font-size: 10px;
  }
}
html.__fz-small__, :root.__fz-small__ {
  font-size: 0.8vw;
}
html.__fz-large__, :root.__fz-large__ {
  font-size: 1.2vw;
}

body {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  text-align: left;
  font-family: var(--font-family-sans-serif, Noto Sans JP, sans-serif);
  font-weight: 400;
  color: var(--color-text-white, #fff);
  background: var(--color-text-base, #000);
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  -webkit-print-color-adjust: exact;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (max-width: 640px) {
  body.__spmenu-open__:before {
    content: "";
    position: fixed;
    top: -50vw;
    left: -50vh;
    width: 250vw;
    height: 250vh;
    background: rgba(0, 0, 0, 0.5);
  }
}

.is-strength {
  --color-text-lighter: #dde;
  --color-text-base: #223;
  --color-text-darker: #887;
  --color-text-white: #ddd;
}

.is-works {
  --color-text-lighter: #eee;
  --color-text-base: #444;
  --color-text-darker: #ddd;
  --color-text-white: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
}

p {
  margin: 0;
  -webkit-font-feature-settings: initial;
  font-feature-settings: initial;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  mix-blend-mode: difference;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul, ol, dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

li, dd, dt {
  margin: 0;
  padding: 0;
}

input:not([type=radio]):not([type=checkbox]), textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 0.1rem solid #ccc;
  padding: 0.5rem;
  font-size: inherit;
  color: inherit;
  font-size: 1.6rem;
}

input[type=radio] {
  vertical-align: baseline;
}

::-webkit-input-placeholder {
  color: #bbb;
}

::-moz-placeholder {
  color: #bbb;
}

:-ms-input-placeholder {
  color: #bbb;
}

::-ms-input-placeholder {
  color: #bbb;
}

::placeholder {
  color: #bbb;
}

/* ========================================
 * 2.0 - Layout
 * ===================================== */
/* ------------------------------
 * 2.1 - Header
 * --------------------------- */
#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 0;
  height: 140px;
}
@media (max-width: 640px) {
  #header {
    height: 70px;
  }
}

#header-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #header-container {
    max-width: 1000px;
  }
}

#site-logo {
  -ms-flex-item-align: center;
  align-self: center;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 999;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
}
@media (max-width: 640px) {
  #site-logo {
    top: 20px;
    left: 20px;
    width: 100px;
  }
}

#gnav {
  width: 100%;
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  padding-top: 7rem;
  width: 100%;
  height: 100vh;
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
  background: var(--color-text-base, #000);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  display: none;
}
#gnav .list-item {
  width: 90%;
  margin-left: 10%;
  margin-bottom: 3rem;
}
.__spmenu-open__ #gnav {
  opacity: 1;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  -webkit-filter: blur(0);
  filter: blur(0);
  display: block;
}
#gnav .copyrights {
  text-align: left;
  font-size: 1.4rem;
  color: var(--color-text-darker, #666);
  position: absolute;
  left: 10%;
  bottom: 5rem;
}
@media (max-width: 640px) {
  #gnav .copyrights {
    bottom: 2rem;
  }
}

.gnav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.gnav-wrap .link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 80%;
  height: 70px;
  font-size: 3.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
}
.gnav-wrap .link-item img {
  margin: 0;
}
@media (max-width: 640px) {
  .gnav-wrap .link-item {
    height: 40px;
  }
  .gnav-wrap .link-item img {
    margin: 0;
    width: auto;
    height: 30px;
  }
}
.gnav-wrap .link-item:hover {
  color: var(--color-text-lighter, #ccc);
  text-decoration: none;
  border-bottom: none;
}
.gnav-wrap .link-item:hover:after {
  width: 100%;
  height: 1px;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.gnav-wrap .link-item:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-text-lighter, #ccc);
  left: 0;
  bottom: 0;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 7rem;
  height: 50%;
}
.gnav-list .list-item .active {
  opacity: 0.5;
}
@media (max-width: 640px) {
  .gnav-list {
    margin-top: 4rem;
  }
}

#mainvisual {
  position: relative;
  background: url(../img/bg1250.png) no-repeat center center/contain;
  height: 50rem;
}
@media (max-width: 1000px) {
  #mainvisual {
    background: url(../img/bg1000.png) no-repeat center center/contain;
  }
}
#mainvisual > .mv-txt {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 2;
  color: var(--color-text-lighter, #ccc);
  top: 80%;
  left: 40%;
}
@media (max-width: 640px) {
  #mainvisual > .mv-txt {
    top: 87%;
    left: 0;
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 1.5rem;
  }
  #mainvisual > .mv-txt br {
    display: none;
  }
}

#spmenu-button {
  position: fixed;
  right: 0;
  top: 0;
  display: block;
  margin: 5rem;
}
.__spmenu-open__ #spmenu-button {
  background: var(--color-text-base, #000);
}
@media (max-width: 640px) {
  #spmenu-button {
    margin: 1.5rem 1.5rem 0 0;
  }
}

.spmenu-button {
  width: 60px;
  height: 40px;
  z-index: 999;
}
.spmenu-button > button {
  padding: 0;
}
.spmenu-button:hover {
  cursor: pointer;
}
@media (max-width: 640px) {
  .spmenu-button {
    width: 45px;
    height: 30px;
  }
}

.hamburger-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 60px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
  -webkit-transition: 0.3s background-color ease-in-out;
  transition: 0.3s background-color ease-in-out;
}
@media (max-width: 640px) {
  .hamburger-button {
    width: 45px;
  }
}
.hamburger-button:hover {
  cursor: pointer;
}
.hamburger-button .hamburger-icon {
  display: block;
  margin: 20px 0;
  width: 66%;
  height: 1px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background-color: var(--color-text-lighter, #ccc);
}
@media (max-width: 640px) {
  .hamburger-button .hamburger-icon {
    width: 90%;
    margin: 1rem 0;
  }
}
.hamburger-button:before, .hamburger-button:after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--color-text-lighter, #ccc);
}
.__spmenu-open__ .hamburger-button .hamburger-icon {
  background-color: transparent;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
@media (max-width: 640px) {
  .__spmenu-open__ .hamburger-button .hamburger-icon {
    margin: 20px 0;
  }
}
.__spmenu-open__ .hamburger-button:before {
  -webkit-transform: rotate(45deg) translate(14.8492424298px, 14.8492424298px);
  transform: rotate(45deg) translate(14.8492424298px, 14.8492424298px);
}
.__spmenu-open__ .hamburger-button:after {
  -webkit-transform: rotate(-45deg) translate(14.8492424298px, -14.8492424298px);
  transform: rotate(-45deg) translate(14.8492424298px, -14.8492424298px);
}

/* ------------------------------
 * 2.2 - Footer
 * --------------------------- */
#footer {
  width: 100%;
  height: auto;
  position: absolute;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .footer-wrap {
    padding: 0 0 2rem 0;
  }
}
.footer-wrap ul {
  list-style: none;
}
@media (max-width: 640px) {
  .footer-wrap ul {
    margin-left: 1.5rem;
  }
}
.footer-wrap ul li {
  position: relative;
  margin: 0 0 3rem 5rem;
  font-size: 1.6rem;
}
.footer-wrap ul li::before {
  content: "▶";
  position: absolute;
  top: 0.1rem;
  left: -2rem;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0;
}
@media (max-width: 640px) {
  .footer-wrap ul li {
    margin: 0 0 0 1rem;
    padding: 0 0 0 1rem;
    height: 50px;
  }
  .footer-wrap ul li::before {
    left: -1rem;
    margin: 0;
  }
}
.footer-wrap ul li:hover {
  color: var(--color-text-lighter, #ccc);
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.footer-wrap .copyrights {
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-text-darker, #666);
  margin: 4rem auto;
}
@media (max-width: 640px) {
  .footer-wrap .copyrights {
    margin: 4rem auto 0.5rem auto;
  }
}

/* ------------------------------
 * 2.3 - Main
 * --------------------------- */
#main {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
@media (max-width: 640px) {
  #main {
    width: 100%;
  }
}

.container {
  max-width: 1000px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  color: var(--color-text-white, #fff);
  font-size: 1.6rem;
  line-height: 1.8;
}

.top-wrap {
  margin: 30rem auto 30rem auto;
  padding: 0 0 0 20rem;
  text-align: left;
}
.top-wrap .-title img {
  margin: 0;
}
.top-wrap p {
  padding: 6rem 0 0 2rem;
  color: var(--color-text-lighter, #ccc);
  line-height: 2.2;
}
@media (max-width: 640px) {
  .top-wrap {
    margin: 45rem auto 20rem auto;
    padding: 0 1.5rem;
  }
  .top-wrap p {
    padding: 6rem 0 0 1rem;
  }
  .top-wrap br {
    display: none;
  }
}

.contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto 30rem auto;
}
@media (max-width: 640px) {
  .contents-wrap {
    margin-bottom: 15rem;
  }
}
.contents-wrap.-works {
  padding: 0 8rem;
}
@media (max-width: 640px) {
  .contents-wrap.-works {
    padding: 0 1.5rem;
  }
}
.contents-wrap.-works .col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contents-wrap.-works .col2-wrap .-list {
  width: 48%;
  border: 1px solid var(--color-text-lighter, #ccc);
  padding: 1rem 3rem 3rem 3rem;
  margin: 0 0 3rem;
}
.contents-wrap.-works .col2-wrap .-list .-title {
  color: var(--color-text-white, #fff);
  border-bottom: 1px solid #707070;
  font-size: 1.8rem;
  line-height: 3.6;
}
.contents-wrap.-works .col2-wrap .-list .-comment {
  color: var(--color-text-lighter, #ccc);
  padding: 2rem 0 4rem 0;
}
@media (max-width: 640px) {
  .contents-wrap.-works .col2-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contents-wrap.-works .col2-wrap .-list {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  .contents-wrap.-works .col2-wrap .-comment br {
    display: none;
  }
}

/* ========================================
 * 3.0 - Component (Block) & Variant (Modifier, State)
 * ===================================== */
/* ------------------------------
 * 3.1 - Common
 * --------------------------- */
/* 3.1 - Headline
 * --------------------------- */
.contents-title {
  position: relative;
  display: inline-block;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 100;
  letter-spacing: 0.2em;
}
.contents-title.-pc {
  display: inline-block;
}
.contents-title.-sp {
  display: none;
}
@media (max-width: 640px) {
  .contents-title.-pc {
    display: none;
  }
  .contents-title.-sp {
    display: inline-block;
  }
}
.contents-title.-right {
  margin: 0 0 7rem auto;
}
.contents-title.-right img {
  text-align: right;
  margin: 0;
}
@media (max-width: 640px) {
  .contents-title.-right {
    margin: 0 2rem 4rem auto;
  }
}
.contents-title img {
  margin: 0;
}
.contents-title > .-jp {
  position: relative;
  display: inline-block;
  width: calc(100% - 2rem);
  height: 20px;
  margin: 1rem 0 0 4rem;
  padding: 5px 0 0 4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid var(--color-text-darker, #666);
  font-size: 1.6rem;
  color: #ccc;
}
.contents-title > .-jp::before, .contents-title > .-jp::after {
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
}
.contents-title > .-jp::before {
  border-bottom: solid 1px var(--color-text-darker, #666);
  width: 3rem;
  top: 9px;
  left: -1.5rem;
}
.contents-title > .-jp::after {
  border-bottom: solid 1px var(--color-text-darker, #666);
  width: 6rem;
  bottom: -2px;
  left: -3rem;
}
@media (max-width: 1000px) {
  .contents-title > .-jp::before {
    top: 7px;
  }
  .contents-title > .-jp::after {
    bottom: 0;
  }
}
@media (max-width: 640px) {
  .contents-title > .-jp {
    padding: 5px 0 0 4rem;
  }
  .contents-title > .-jp::after {
    bottom: 1px;
  }
}

/* ------------------------------
 * 3.2 - Unique
 * --------------------------- */
/* ------------------------------
 * 3.3 - Library
 * --------------------------- */
.material-icons::before {
  content: attr(data-icon-type);
}

.lg-progress {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/**
 ** Swiper 3.3.1
 ** Most modern mobile touch slider and framework with hardware accelerated transitions
 **
 ** http://www.idangero.us/swiper/
 **
 ** Copyright 2016, Vladimir Kharlampidi
 ** The iDangero.us
 ** http://www.idangero.us/
 **
 ** Licensed under MIT
 **
 ** Released on: February 7, 2016
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-container-autoheight {
  height: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/*
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
*/
.swiper-notification.swiper-button-next, .swiper-notification.swiper-button-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  color: #fff;
  z-index: 300;
  overflow: visible;
}

.swiper-container.swiper-notification.swiper-button-next {
  top: 0;
  right: 0;
  height: 100%;
  margin-top: 0;
  width: 200px;
}
@media (max-width: 767px) {
  .swiper-container.swiper-notification.swiper-button-next {
    width: 50px;
  }
}

.swiper-container.swiper-notification.swiper-button-next:before {
  content: "";
  position: absolute;
  pointer-events: auto;
  border-top: solid 2px #fff;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  width: 40px;
  height: 80px;
  right: 10px;
  left: auto;
  top: 50%;
}
@media (max-width: 767px) {
  .swiper-container.swiper-notification.swiper-button-next:before {
    right: 0;
    width: 20px;
    height: 40px;
  }
}

.swiper-container.swiper-notification.swiper-button-next:after {
  content: "";
  position: absolute;
  color: #fff;
  border-top: solid 2px #fff;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  width: 40px;
  height: 80px;
  left: auto;
  top: calc(50% - 34px);
}
@media (max-width: 767px) {
  .swiper-container.swiper-notification.swiper-button-next:after {
    width: 20px;
    height: 38px;
    top: calc(50% - 16px);
    right: 34px;
  }
}

.swiper-container.swiper-notification.swiper-button-prev {
  top: 0;
  left: 0;
  height: 100%;
  margin-top: 0;
  width: 200px;
}
@media (max-width: 767px) {
  .swiper-container.swiper-notification.swiper-button-prev {
    width: 50px;
  }
}

.swiper-container.swiper-notification.swiper-button-prev:before {
  content: "";
  position: absolute;
  pointer-events: auto;
  border-top: solid 2px #fff;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  width: 40px;
  height: 80px;
  left: 10px;
  right: auto;
  top: calc(50% - 75px);
}
@media (max-width: 767px) {
  .swiper-container.swiper-notification.swiper-button-prev:before {
    width: 20px;
    height: 40px;
    left: 0;
    right: auto;
    top: calc(50% - 37px);
  }
}

.swiper-container.swiper-notification.swiper-button-prev:after {
  content: "";
  color: #fff;
  border-top: solid 2px #fff;
  -webkit-transform: rotate(-120deg);
  transform: rotate(-120deg);
  width: 40px;
  height: 80px;
  right: auto;
}
@media (max-width: 767px) {
  .swiper-container.swiper-notification.swiper-button-prev:after {
    position: absolute;
    width: 20px;
    height: 39px;
    left: 34px;
  }
}

.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev {
  background-image: none;
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-container-rtl .swiper-button-next {
  background-image: none;
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: none;
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper-container-cube, .swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-flip .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-next {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.scroll-area {
  position: absolute;
  bottom: 3vh;
  left: 7.5vw;
  z-index: 100;
  font-size: 7.9vw;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text-white, #fff);
}

@media (max-width: 767px) {
  .scroll-area {
    bottom: 10px;
    left: 15px;
    font-size: 4rem;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-text-white, #fff);
  }
}
/* ------------------------------
 * 3.4 - Animation
 * --------------------------- */
/* animation */
._fadein-anim {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

._fadein {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

._fadein-anim._fadeinup {
  opacity: 0;
}
._fadein-anim._fadeinup.__animate__ {
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
  animation: fadeInUp 0.8s ease-out forwards;
}

._fadein-anim._fadein-fullheight {
  overflow: hidden;
  display: block;
}

._fadein-anim._fadein-fullheight figure,
._fadein-anim._fadein-fullheight img {
  background: #777;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

._fadein-anim._fadein-fullheight.__animate__ figure,
._fadein-anim._fadein-fullheight.__animate__ img {
  -webkit-animation: fadeInFullHeight 1s ease-out forwards;
  animation: fadeInFullHeight 1s ease-out forwards;
}

._fadein-anim._fadedown {
  opacity: 0;
}
._fadein-anim._fadedown.__animate__ {
  -webkit-animation: fadeDown 1s ease-out forwards;
  animation: fadeDown 1s ease-out forwards;
}

._fadein-anim._fadeinleft {
  opacity: 0;
}
._fadein-anim._fadeinleft.__animate__ {
  -webkit-animation: fadeInLeft 0.8s ease-out forwards;
  animation: fadeInLeft 0.8s ease-out forwards;
}

._fadein-anim._fadeinright {
  opacity: 0;
}
._fadein-anim._fadeinright.__animate__ {
  -webkit-animation: fadeInRight 0.8s ease-out forwards;
  animation: fadeInRight 0.8s ease-out forwards;
}

._fadein-anim._blur {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
._fadein-anim._blur.__animate__ {
  -webkit-animation: blur 0.8s ease-out forwards;
  animation: blur 0.8s ease-out forwards;
}

._fadein-anim._fadeinup._delay-time01,
._fadein-anim._fadeinright._delay-time01 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

._fadein-anim._fadeinup._delay-time03,
._fadein-anim._fadeinright._delay-time03 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

._fadein-anim._fadeinup._delay-time05,
._fadein-anim._fadeinright._delay-time05,
._fadein-anim._fadeinleft._delay-time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

._fadein-anim._fadeinup._delay-time07,
._fadein-anim._fadeinright._delay-time07 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

._fadein-anim._fadeinup._delay-time08,
._fadein-anim._fadeinright._delay-time08 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

._fadein-anim._fadeinup._delay-time09,
._fadein-anim._fadeinright._delay-time09 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

._fadein-anim._fadeinup._delay-time11,
._fadein-anim._fadeinright._delay-time11 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

._fadein-anim._fadeinup._delay-time14,
._fadein-anim._fadeinright._delay-time14 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

._fadein-anim._fadeinup._delay-time17,
._fadein-anim._fadeinright._delay-time17 {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

._fadein-anim._fadeinup._delay-time2,
._fadein-anim._fadeinright._delay-time2 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.top-info-container ._fadein-anim._fadeinup:nth-child(1) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.top-info-container ._fadein-anim._fadeinup:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.top-info-container ._fadein-anim._fadeinup:nth-child(3) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

._fadein-anim._smooth {
  -webkit-animation-name: smoothAnime;
  animation-name: smoothAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform-origin: left;
  transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInFullHeight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInFullHeight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes lineanim {
  0% {
    stroke-dashoffset: 300;
  }
  20% {
    stroke-dashoffset: 300;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes lineanim {
  0% {
    stroke-dashoffset: 300;
  }
  20% {
    stroke-dashoffset: 300;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes blur {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes blur {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes smoothAnime {
  0% {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
@keyframes smoothAnime {
  0% {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* ========================================
 * 4.0 - Utility (Helpers)
 * ===================================== */
._tdu {
  text-decoration: underline;
}

._tac {
  text-align: center;
}

._tar {
  text-align: right;
}

._tal {
  text-align: left;
}

._clear {
  clear: both;
}

._clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

._nolink {
  pointer-events: none;
}

._numbering {
  counter-increment: num 1;
}
._numbering::before {
  content: counter(num) ". ";
}
/*# sourceMappingURL=style.css.map */
