@charset "UTF-8";
/*ブレークポイント*/
:root {
  --color-blue: #005aaa;
  --color-green: #20ad67;
  --color-white: #ffffff;
  --color-red: #e5004f;
  --color-red-hover: #970035;
  --color-list: #fff096;
  --background-color: #c3d842;
  --background-color-rgb: 195, 216, 66;
  --background-color-hover: #8ea016;
  --footer-color: #20ad67;
  --btn-color: #00aaaa;
  --btn-hover-color: #007a7a;
  --btn2-color: #b0c625;
  --anchor-color: #f2fae0;
}

html {
  height: 100%;
  width: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  font-family: "Noto Sans JP", -apple-system, "BlinkMacSystemFont", HiraginoSans, "Hiragino Sans", "NotoSansJP", "Noto Sans CJK JP", NotoSansCJKjp-Light, "Noto Sans CJK JP Light", "游ゴシック", "Yu Gothic", "Meiryo", monospace, sans-serif;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  line-height: 1.6;
  word-wrap: break-word;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background-color: var(--background-color);
}

::selection {
  background-color: rgba(0, 90, 170, 0.1);
}

.contents_wrap {
  overflow-x: clip;
}

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

svg {
  width: 100%;
  height: auto;
  line-height: 1;
  fill: currentColor;
}
svg use {
  width: 100%;
  height: 100%;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a.hov {
  display: block;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
a.hov:hover {
  opacity: 0.7;
}

*:focus {
  outline: none;
}

[class*=line-break] {
  display: inline-block;
}

.notes {
  font-size: clamp(1.12rem, 0.968rem + 0.39vw, 1.4rem);
}

.indent1em {
  padding-left: 1em;
  text-indent: -1em;
}

[data-timer] {
  display: none;
}

.comingSoon {
  opacity: 0.5;
  pointer-events: none;
}

.btn1 {
  container-type: inline-size;
}
.btn1 a {
  display: block;
  position: relative;
  margin: 0;
  padding: 1em 0;
  border: solid 4px currentColor;
  border-radius: calc(infinity * 1px);
  font-size: 6cqw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-color: var(--btn-color);
  color: white;
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
.btn1 a svg {
  position: absolute;
  inset: 0;
  margin: auto;
  margin-right: 0.7em;
  display: block;
  height: 0.5em;
  width: 1em;
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
.btn1 a:hover {
  color: var(--btn-color);
  background-color: var(--color-white);
}
.btn1 a:hover svg {
  transform: translate3d(0, 8px, 0);
}
.btn1.yoko a svg {
  transform: rotate(-90deg);
}
.btn1.yoko a:hover svg {
  transform: rotate(-90deg) translateY(5px);
}
.btn1.tsuiki a {
  padding: 0.7em 0 0.6em;
  border-radius: calc(1.9em + 3px);
}
.btn1.tsuiki a span {
  display: block;
  margin-top: 0.5em;
  font-size: 3.8cqw;
}
.btn1.toHome {
  margin: 0 auto;
  width: 240px;
}
.btn1.toHome a {
  font-size: 7cqw;
}
#page_home .btn1.toHome {
  display: none;
}

.btn1.end a {
  padding: 0.1em 0;
  line-height: 3;
  background-color: var(--btn-color);
  pointer-events: none;
  color: yellow;
  border: none;
}
.btn1.end a::after {
  display: none;
}

h2 {
  margin: 0 auto;
  font-size: clamp(2.88rem, 2.488rem + 1.01vw, 3.6rem);
  font-weight: bold;
  text-align: center;
}
h2 span {
  display: inline-block;
  word-break: keep-all;
}

.pagetop_wrap {
  position: relative;
}
.pagetop_wrap .pagetop {
  z-index: 9999;
  position: sticky;
  bottom: 50px;
  left: 100%;
  width: fit-content;
  transform: translate3d(-25%, 50%, 0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
  pointer-events: none;
}
.pagetop_wrap .pagetop a {
  display: block;
  border-radius: calc(infinity * 1px);
  width: 60px;
  aspect-ratio: 1;
  font-size: 0;
  background: var(--btn-hover-color) url(/assets/img/pagetop.svg) no-repeat center center/contain;
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
.pagetop_wrap .pagetop a:hover {
  transform: scale(1.1);
}
.pagetop_wrap .pagetop.view {
  opacity: 1;
  pointer-events: all;
}

main {
  position: relative;
}
main #content {
  padding: clamp(35px, 27.248px + 2.07vw, 50px) 0;
  background-color: white;
}
main #content h2 {
  padding-bottom: 0.25em;
  border-bottom: dotted 2px black;
}
main #content .content_lead {
  padding: clamp(21px, 16.352px + 1.24vw, 30px) 0;
}
main #content P {
  font-size: 1.8rem;
  font-weight: bold;
}
main #content P + p {
  margin-top: 0.5em;
}
main #content P.content_time {
  color: var(--color-red);
}
main #content P.content_time span {
  font-size: clamp(2.4rem, 2.074rem + 0.84vw, 3rem);
}
main #content P .midashi {
  font-size: clamp(1.76rem, 1.521rem + 0.62vw, 2.2rem);
}
main #content .content_list {
  position: relative;
  margin: 0 auto;
  padding: clamp(14px, 10.896px + 0.83vw, 20px) clamp(21px, 16.352px + 1.24vw, 30px) clamp(35px, 27.248px + 2.07vw, 50px) clamp(35px, 27.248px + 2.07vw, 50px);
  border: solid 2px black;
  border-left: none;
  width: min(95%, 1200px);
  background: transparent url(/assets/img/looseleaf.svg) repeat-y top left/15px;
}
main #content .content_list::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  left: auto;
  height: 100%;
  width: calc(100% - 15px);
  background-color: white;
  z-index: -1;
}
main #content .content_list h2::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  left: auto;
  width: 120px;
  height: max-content;
  aspect-ratio: 5/4;
  background: rgba(0, 90, 170, 0) url(/assets/img/tape1.png) no-repeat center center/contain;
  transform: translate3d(30%, -20%, 0);
}
main #content .content_list > p {
  margin: clamp(21px, 16.352px + 1.24vw, 30px) 0;
  font-size: 1.8rem;
  font-weight: bold;
}
main #content .content_list > p span {
  font-size: 2.2rem;
}
main #content .content_list ul {
  margin-top: clamp(6px, 3.936px + 0.55vw, 10px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: clamp(14px, 10.896px + 0.83vw, 20px);
}
main #content .content_list ul li {
  position: relative;
  container-type: inline-size;
  padding: clamp(14px, 10.896px + 0.83vw, 20px) 0;
  text-align: left;
}
main #content .content_list ul li:nth-child(-n+11) {
  padding: clamp(14px, 10.896px + 0.83vw, 20px);
  background-color: var(--color-list);
}
main #content .content_list ul li:nth-child(-n+11) p {
  font-size: 1.6rem;
  line-height: 1.4;
}
main #content .content_list ul li:nth-child(-n+11) p:first-of-type {
  font-size: min(12cqw, 26px);
  font-weight: bold;
  line-height: 1.2;
}
main #content .content_list ul li:nth-child(-n+11) figure {
  display: block;
  margin: clamp(14px, 10.896px + 0.83vw, 20px) auto 0;
  width: 100%;
  overflow: hidden;
  line-height: 1;
}
main #content .content_list ul li:nth-child(-n+11) figure img {
  transition: transform 0.3s ease-out;
}
main #content .content_list ul li:nth-child(-n+11) a {
  display: block;
}
main #content .content_list ul li:nth-child(-n+11) a:hover figure img {
  transform: scale3d(1.1, 1.1, 1);
}
main #content .content_voice {
  position: relative;
  margin: clamp(35px, 27.248px + 2.07vw, 50px) auto 0;
  padding: clamp(35px, 27.248px + 2.07vw, 50px);
  padding-top: clamp(14px, 10.896px + 0.83vw, 20px);
  width: min(95%, 1200px);
  background-color: var(--anchor-color);
}
main #content .content_voice h2 img {
  width: 300px;
}
main #content .content_voice h2::before {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  right: auto;
  width: 80px;
  height: max-content;
  aspect-ratio: 5/4;
  background: rgba(0, 90, 170, 0) url(/assets/img/clip1.png) no-repeat center center/contain;
  transform: translate3d(-30%, -10%, 0);
}
main #content .content_voice h2::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  left: auto;
  width: 120px;
  height: max-content;
  aspect-ratio: 5/4;
  background: rgba(0, 90, 170, 0) url(/assets/img/tape1.png) no-repeat center center/contain;
  transform: translate3d(50%, -20%, 0);
}
main #content .content_voice > p {
  background-color: white;
  margin-top: clamp(28px, 21.12px + 1.66vw, 40px);
  padding: 0.25em 1em;
  border-left: solid 20px var(--color-green);
  width: fit-content;
  font-size: clamp(1.92rem, 1.659rem + 0.67vw, 2.4rem);
  font-weight: bold;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
}
main #content .content_voice > p span {
  font-size: 80%;
}
main #content .content_voice > ul {
  padding-left: 1.5em;
}
main #content .content_voice > ul li {
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
  margin-top: 0.5em;
  padding: 0.5em 0;
  list-style-type: disc;
}
main #content .content_voice > ul li + li {
  border-top: solid 1px var(--color-green);
}
main ul.date {
  margin: 0 auto;
}
main ul.date li {
  position: relative;
  padding: 0 clamp(3.5px, 2.72px + 0.21vw, 5px);
  text-align: center;
  container-type: inline-size;
}
main ul.date li a {
  display: block;
}
main ul.date li a .schedule {
  position: absolute;
  left: 0;
  top: 6.5%;
  width: 100%;
  font-size: 12cqw;
  font-weight: bold;
  line-height: 1;
  color: white;
}
main ul.date li a .schedule span.tsuki {
  font-size: 60%;
}
main ul.date li a .schedule span.kaisai {
  font-size: 80%;
}
main ul.date li a .btn {
  position: absolute;
  bottom: 11%;
  left: 12%;
  padding: 0.6em 0;
  border-radius: calc(1.5em + 3px);
  width: 73%;
  font-size: 6cqw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-color: #e63c28;
  color: white;
  transition: background-color 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
main ul.date li a .btn::after {
  position: absolute;
  inset: 0;
  margin: auto;
  margin-right: 1em;
  display: block;
  height: 0.4em;
  content: "";
  aspect-ratio: 23.6/14.3;
  background: url(/assets/img/arrow_white.svg) no-repeat center center/cover;
  transform: rotate(-90deg);
  transition: all 0.2s ease-out;
}
main ul.date li a:hover .btn {
  background-color: #ff8d22;
}
main ul.date li a:hover .btn::after {
  transform: rotate(-90deg) translateY(5px);
}
main ul.date li.end a {
  pointer-events: none;
  opacity: 0.5;
}
main ul.date li.end::after {
  content: "終了しました";
  display: block;
  position: absolute;
  bottom: 11%;
  left: 12%;
  padding: 0.6em 0;
  border-radius: calc(1.5em + 3px);
  width: 73%;
  font-size: 6cqw;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-color: #7facd4;
  color: white;
}
main #entry {
  margin: 0 auto;
  padding: clamp(35px, 27.248px + 2.07vw, 50px) 0;
  width: min(95%, 1200px);
  text-align: center;
}
main #entry h2 + p {
  margin-top: 1.5em;
  word-break: keep-all;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
  font-weight: bold;
}
main #entry ul.btn {
  margin: clamp(6px, 3.936px + 0.55vw, 10px) auto 0;
  padding: 1px 0;
}
main #entry ul.btn li {
  margin: clamp(21px, 16.352px + 1.24vw, 30px) auto 0;
  width: min(100%, 600px);
}
main #entry ul.btn li p {
  margin-top: 0.25em;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
  font-weight: bold;
}
main #entry ul.btn li p:first-of-type {
  font-size: 26px;
  font-weight: bold;
}
main #entry ul.btn li .btn1 + p {
  margin-top: 0.75em;
}
main #entry ul.btn li .btn1.tsuiki a span {
  font-size: 3.5cqw;
}
main #entry ul.kome {
  margin: clamp(35px, 27.248px + 2.07vw, 50px) auto 0;
  text-align: left;
  width: fit-content;
}
main #entry ul.kome li {
  margin-top: 0.25em;
  padding-left: 1em;
  text-indent: -0.5em;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
  font-weight: bold;
}
main #entry ul.kome li::before {
  content: "※";
  display: inline-block;
}
main #entry .otoiawase {
  margin: clamp(35px, 27.248px + 2.07vw, 50px) auto;
}
main #entry .otoiawase p {
  margin-top: 0.75em;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
  font-weight: bold;
}
main #entry .otoiawase p:first-of-type {
  font-size: clamp(1.76rem, 1.521rem + 0.62vw, 2.2rem);
  font-weight: bold;
}
main #entry .otoiawase p:first-of-type span {
  font-size: clamp(2.72rem, 2.35rem + 0.95vw, 3.4rem);
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 768px) {
  main #content .content_list {
    background-size: 20px;
  }
  main #content .content_list::after {
    width: calc(100% - 20px);
  }
  main #content .content_list h2::after {
    width: 200px;
    transform: translate3d(20%, -15%, 0);
  }
  main #content .content_list ul {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: clamp(14px, 10.896px + 0.83vw, 20px);
  }
  main #content .content_list ul li:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
  main #content .content_list ul li:nth-of-type(2) {
    grid-area: 1/3/2/5;
  }
  main #content .content_list ul li:nth-of-type(3) {
    grid-area: 1/5/2/7;
  }
  main #content .content_list ul li:nth-of-type(4) {
    grid-area: 2/1/3/4;
  }
  main #content .content_list ul li:nth-of-type(5) {
    grid-area: 2/4/3/7;
  }
  main #content .content_list ul li:nth-of-type(6) {
    grid-area: 3/1/4/4;
  }
  main #content .content_list ul li:nth-of-type(7) {
    grid-area: 3/4/4/7;
  }
  main #content .content_list ul li:nth-of-type(8) {
    grid-area: 4/1/5/4;
  }
  main #content .content_list ul li:nth-of-type(9) {
    grid-area: 4/4/5/7;
  }
  main #content .content_list ul li:nth-of-type(10) {
    grid-area: 5/1/6/4;
  }
  main #content .content_list ul li:nth-of-type(11) {
    grid-area: 5/4/6/7;
  }
  main #content .content_list ul li:nth-of-type(12) {
    grid-area: 7/1/8/4;
    padding-block: 0;
    padding-right: 10px;
  }
  main #content .content_list ul li:nth-of-type(12)::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    margin-left: auto;
    transform: translateX(clamp(6px, 3.936px + 0.55vw, 10px));
    height: 100%;
    width: 1px;
    background-color: black;
  }
  main #content .content_list ul li:nth-of-type(13) {
    grid-area: 7/4/8/7;
    padding-block: 0;
    padding-left: 10px;
  }
  main #content .content_list ul::before, main #content .content_list ul::after {
    z-index: 100;
  }
  main #content .content_list ul::before {
    pointer-events: none;
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    left: auto;
    margin: auto 0;
    width: 200px;
    height: max-content;
    aspect-ratio: 5/3;
    background: rgba(0, 90, 170, 0) url(/assets/img/tape2.png) no-repeat center center/contain;
    transform: translate3d(85%, -300%, 0);
  }
  main #content .content_list ul::after {
    pointer-events: none;
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    right: auto;
    margin: auto 0;
    width: 200px;
    height: max-content;
    aspect-ratio: 5/4;
    background: rgba(0, 90, 170, 0) url(/assets/img/tape3.png) no-repeat center center/contain;
    transform: translate3d(-75%, 100%, 0);
  }
  main #content .content_voice h2::before {
    width: 150px;
    transform: translate3d(-25%, -5%, 0);
  }
  main #content .content_voice h2::after {
    width: 200px;
    transform: translate3d(20%, -15%, 0);
  }
  main ul.date li {
    padding: 0 clamp(6px, 3.936px + 0.55vw, 10px);
  }
  main #entry {
    padding: clamp(35px, 27.248px + 2.07vw, 50px) 0 clamp(56px, 43.584px + 3.31vw, 80px);
  }
  main #entry ul.btn {
    margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  main #entry ul.btn li {
    margin: 0 auto;
    width: 49%;
  }
  main #entry ul.btn li p {
    margin-top: 0.25em;
  }
  main #entry ul.btn li .btn1 a {
    font-size: 5cqw;
  }
  main #entry ul.btn li .btn1 + p {
    margin-top: 0.75em;
  }
}
@media print, screen and (min-width: 900px) {
  main #content .content_list ul li:last-of-type > div:first-of-type {
    bottom: -38%;
    right: -16%;
  }
}
@media print, screen and (min-width: 1200px) {
  main #content .content_list ul li:last-of-type > div:first-of-type {
    bottom: -50%;
    right: -13%;
  }
}

footer {
  padding: clamp(42px, 32.688px + 2.48vw, 60px) 2.5%;
  color: white;
  background: var(--footer-color);
}
footer > div div:first-of-type {
  text-align: center;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
  line-height: 1.8;
}
footer > div div:last-of-type {
  margin: clamp(21px, 16.352px + 1.24vw, 30px) auto 0;
  width: 12rem;
}
footer > p {
  margin: clamp(21px, 16.352px + 1.24vw, 30px) auto 0;
  font-size: clamp(1.12rem, 0.968rem + 0.39vw, 1.4rem);
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  footer > div {
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  footer > div div:first-of-type {
    flex: 1;
    text-align: left;
  }
  footer > div div:last-of-type {
    margin: 0;
    width: 15rem;
  }
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal .modal__container,
.modal .modal__overlay {
  will-change: transform;
}
.modal .modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  background: rgba(var(--background-color-rgb), 0.5);
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
}
.modal .modal__overlay .modal__container {
  position: relative;
  width: min(800px, 90%);
  background-color: white;
}
.modal .modal__overlay .modal__container .modal__close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
}
.modal .modal__overlay .modal__container .modal__close:hover img {
  transform: scale(1.1, 1.1);
}
.modal .modal__overlay .modal__container.modal__container__frail {
  padding: clamp(35px, 27.248px + 2.07vw, 50px) clamp(14px, 10.896px + 0.83vw, 20px);
}
.modal .modal__overlay .modal__container.modal__container__frail > .inner {
  position: relative;
  padding: clamp(6px, 3.936px + 0.55vw, 10px) clamp(14px, 10.896px + 0.83vw, 20px) 0;
  width: 100%;
  height: auto;
  max-height: 65vh;
  max-height: 65dvh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}
.modal .modal__overlay .modal__container.modal__container__details {
  padding: clamp(14px, 10.896px + 0.83vw, 20px);
  background-color: var(--color-list);
}
.modal .modal__overlay .modal__container.modal__container__details p {
  padding: clamp(6px, 3.936px + 0.55vw, 10px) 0;
  margin-bottom: clamp(6px, 3.936px + 0.55vw, 10px);
  font-size: min(12cqw, 26px);
  font-weight: bold;
  line-height: 1.2;
}
.modal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=false] .modal__overlay .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__overlay .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media print, screen and (min-width: 768px) {
  .modal .modal__overlay .modal__container .modal__close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 1;
  }
  .modal .modal__overlay .modal__container.modal__container__frail {
    padding-right: clamp(35px, 27.248px + 2.07vw, 50px);
    padding-left: clamp(35px, 27.248px + 2.07vw, 50px);
  }
  .modal .modal__overlay .modal__container.modal__container__frail::before {
    left: 0;
    transform: translate(0, -30%);
  }
  .modal .modal__overlay .modal__container.modal__container__frail > .inner {
    padding-right: clamp(21px, 16.352px + 1.24vw, 30px);
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes anim_blurin {
  0% {
    filter: blur(10px) brightness(120%) saturate(120%);
    opacity: 0;
  }
  100% {
    filter: none;
    opacity: 1;
  }
}
.anim_slide_up {
  opacity: 0;
}
.anim_slide_up.show {
  animation-name: anim_slide_up;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_slide_up {
  from {
    transform: translate3d(0, 50px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_slide_right {
  opacity: 0;
}
.anim_slide_right.show {
  animation-name: anim_slide_right;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_slide_right {
  from {
    transform: translate3d(50px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_slide_left {
  opacity: 0;
}
.anim_slide_left.show {
  animation-name: anim_slide_left;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_slide_left {
  from {
    transform: translate3d(-50px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_fadein {
  opacity: 0;
}
.anim_fadein.show {
  animation-name: anim_fadein;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes anim_blurIn {
  0% {
    opacity: 0;
    filter: blur(20px) brightness(120%) saturate(120%);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
@keyframes anim_hue-rotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(200deg);
  }
}
@keyframes anim_h2_bg_noise {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 0;
  }
}
@keyframes anim_h2_bg_noise2 {
  0% {
    background: url(/assets/img/h2_bg_noise.png) repeat center center;
    background-size: 100px;
  }
  100% {
    background: url(/assets/img/h2_bg_noise.png) repeat center center;
    background-size: 110px;
  }
}
.anim_delay_05s {
  animation-delay: 0.5s !important;
}

.anim_delay_1s {
  animation-delay: 1s !important;
}

.anim_delay_15s {
  animation-delay: 1.5s !important;
}

.anim_delay_2s {
  animation-delay: 2s !important;
}

.anim_delay_3s {
  animation-delay: 3s !important;
}

.anim_delay_4s {
  animation-delay: 4s !important;
}

.anim_delay_5s {
  animation-delay: 5s !important;
}

.anim_duration_15s {
  animation-duration: 1.5s !important;
}

.anim_duration_2s {
  animation-duration: 2s !important;
}

.anim_duration_3s {
  animation-duration: 3s !important;
}

.anim_duration_4s {
  animation-duration: 4s !important;
}

.anim_duration_5s {
  animation-duration: 5s !important;
}

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