@charset "UTF-8";
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100vw;
  margin: auto;
  text-align: center;
  color: #2a2a2a;
  max-width: 1000px;
  border-radius: 0px;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 30px;
  top: 15px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  opacity: 1;
  width: 70px;
  height: 50px;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 480px) {
  .modaal-close {
    width: 60px;
    height: 60px;
  }
}
.modaal-close span {
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  font-size: 12px;
  color: #00984e;
  line-height: 7.5;
  font-weight: bold;
}

.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 10px;
  left: 33px;
  width: 4px;
  height: 30px;
  border-radius: 4px;
  background: #00984e;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

@media not screen and (min-width: 480px) {
  .modaal-close:before, .modaal-close:after {
    left: 28px;
  }
}
.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: rgb(255, 255, 255);
  right: 23px;
  top: 16px;
}

@media screen and (max-width: 480px) {
  .modaal-fullscreen .modaal-close {
    right: 10px;
    top: 10px;
  }
}
.modaal-content-container {
  padding: 10vh 5vw;
  width: 95vw;
  margin: 0 auto;
}

@media screen and (max-width: 650px) {
  .modaal-content-container {
    padding: 10vh 0;
  }
}
.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: rgb(255, 255, 255);
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 0px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

html > * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.116);
}

.bd {
  border: 1px solid #252525;
}

.bd0 {
  border: none;
}

.h-100vh {
  height: 100vh;
}

.w-100p {
  width: 100% !important;
}

.mg-0a {
  margin: 0 auto !important;
}

.mgt-10 {
  margin-top: 10px;
}

.mgt-50 {
  margin-top: 50px;
}

.mgt-100 {
  margin-top: 100px;
}

.mgt-150 {
  margin-top: 150px;
}

.mgb-150 {
  margin-bottom: 150px;
}

.mgr-10 {
  margin-right: 10px;
}

.mgb-0 {
  margin-bottom: 0 !important;
}

.mgb-30 {
  margin-bottom: 30px;
}

.mgb-50 {
  margin-bottom: 50px;
}

.mgb-100 {
  margin-bottom: 100px;
}

.pd-0 {
  padding: 0 !important;
}

.pd-10 {
  padding: 10px;
}

.pdb-50 {
  padding-bottom: 50px;
}

.pdb-100 {
  padding-bottom: 100px;
}

.pdt-50 {
  padding-top: 50px;
}

.pdt-100 {
  padding-top: 100px;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center !important;
}

.ls-1 {
  letter-spacing: 1px;
}

.bgc-base {
  background-color: #fffef4;
}

.bgc-blue {
  background-color: #2E35BC;
  background: -webkit-gradient(linear, left top, left bottom, from(#454bbb), color-stop(20%, #2E35BC));
  background: linear-gradient(#454bbb 0%, #2E35BC 20%);
}

.bgc-green {
  background-color: #0aac5e;
}

.bgc-orange {
  background-color: #f75427;
}

.clr-white {
  color: #fff;
}

.clr-gray {
  color: #707070;
}

.color-109b58 {
  color: #109b58 !important;
}

.clr-green {
  color: #0aac5e;
}

.clr-orange {
  color: #f75427;
}

.clr-blue {
  color: #2E35BC;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-25 {
  font-size: 25px;
}

.fs-30 {
  font-size: 30px;
}

.fs-40 {
  font-size: 40px;
}

.wt800 {
  max-width: 800px;
}

.fc-r {
  color: red;
}

.highlight-y {
  text-decoration: underline;
  text-underline-offset: -0.2em;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
          animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.repeat-1 {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
          animation-iteration-count: var(--animate-repeat);
}

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce), print {
  .animated {
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 1ms !important;
            transition-duration: 1ms !important;
  }
  .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);
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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);
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
            transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.heartBeat {
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
          animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
}

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
            transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
            transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
            transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  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 fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  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 fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.animated.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);
  }
}
.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);
  }
}
.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);
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  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);
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
          animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
          animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
          animation-name: hinge;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

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

.animated.delay-100ms {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animated.delay-200ms {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.animated.delay-500ms {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.o-animations-control__popover:not(.is-mobile).is-bottom {
  z-index: 9999999;
}

.o-animations-control__popover .components-popover__content {
  overflow-y: hidden;
}

.o-animations-control__popover .components-menu-group {
  padding: 7px;
}

.o-animations-control__popover .components-popover__items {
  max-height: 300px;
  overflow-y: auto;
}

.o-animations-control__popover .components-popover__items button.is-selected {
  background: #f8f9f9;
}

.o-animations-control__popover .components-popover__items button i {
  margin-right: 5px;
}

.o-animations-control__popover .components-popover__items .o-animations-control__category {
  font-weight: 700;
}

.o-animations-control .components-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.o-animations-control .components-button.is-secondary {
  margin-top: 24px;
}

.o-animations-control .o-animations-control__button {
  background: transparent;
  border: 1px solid #8d96a0;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 0 transparent;
          box-shadow: 0 0 0 transparent;
  height: auto;
  line-height: 28px;
  padding: 0 12px 2px;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.1s linear;
  transition: -webkit-box-shadow 0.1s linear;
  transition: box-shadow 0.1s linear;
  transition: box-shadow 0.1s linear, -webkit-box-shadow 0.1s linear;
  width: 100%;
}

.o-animations-control .o-animations-control__button.is-button {
  background: transparent;
}

.o-animations-control .o-animations-control__button:hover {
  background: #fafafa;
  border-color: #999;
  -webkit-box-shadow: inset 0 -1px 0 #999;
          box-shadow: inset 0 -1px 0 #999;
  color: #23282d;
  text-decoration: none;
}

.o-animations-control .o-animations-control__button:focus {
  border: 1px solid #000;
}

.o-animations-control .o-animations-control__button:after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid;
  content: "";
  display: block;
  height: 0;
  margin-left: 4px;
  margin-right: 2px;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 12px;
  width: 0;
}

.o-animations-control > .components-unit-control-wrapper {
  margin-top: 10px;
}

.otter-animations-count-image {
  width: 100%;
}

.o-animation-popover .components-popover__content {
  min-width: 240px;
  padding: 20px;
}

.o-animation-popover .components-popover__content .components-heading {
  margin-bottom: 12px;
}

@media screen {
  .hidden-animated {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    visibility: hidden;
  }
  .animated .wp-block-navigation, .animated.wp-block-navigation {
    -webkit-animation-fill-mode: none;
            animation-fill-mode: none;
  }
}
@media (max-width: 782px) {
  .o-animations-control .o-animations-control__button {
    padding: 5px 24px 5px 8px;
  }
  .o-animations-control .o-animations-control__button:after {
    top: 16px;
  }
}
.block-editor .animated, .block-editor-block-list__layout .animated {
  -webkit-animation-play-state: running;
          animation-play-state: running;
  visibility: initial;
}

.customize-control-sidebar_block_editor .animated {
  -webkit-animation: none;
          animation: none;
}

.o-control-panel-control {
  padding: 10px 0;
}

.o-control-panel-control .components-base-control__title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.o-control-panel-control .components-base-control__title label {
  padding: 5px 0;
}

.o-control-panel-control .components-base-control__title .floating-controls .components-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.o-control-panel-control .components-base-control__title .floating-controls .components-dropdown button.is-tertiary {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #1e1e1e;
}

.o-control-panel-control .components-base-control__title .floating-controls .components-dropdown button.is-active, .o-control-panel-control .components-base-control__title .floating-controls .components-dropdown button.is-tertiary:hover {
  color: var(--wp-admin-theme-color);
}

.o-control-panel-control .components-base-control__title .floating-controls .components-dropdown button .dashicon {
  margin: 2px;
}

.otter-popover-settings {
  min-width: 300px;
  overflow: hidden;
  padding: 10px;
}

.otter-popover-settings .components-button-group:not(.o-toggle-group-control) {
  padding-bottom: 10px;
}

.contents_wrap {
  padding: 0 2.5%;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
          animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

.animated.delay-500ms {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

html {
  scroll-behavior: smooth;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

#yui3-css-stamp.cssreset {
  display: none;
}

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

strong {
  font-weight: bold;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

.section {
  scroll-margin-top: 86px;
}

.section.is-black {
  background-color: #000;
}

.section_inner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 10px;
}

.section_header {
  position: relative;
  padding-bottom: 20px;
}

.section .section_header .section_headerBtn {
  position: absolute;
  top: 36px;
  right: 0;
}

.section .section_desc {
  padding-bottom: 30px;
}

.section .section_desc p {
  font-weight: bold;
  font-size: 16px;
}

.section .page_body .section_pic {
  padding: 30px 0;
}

.section .page_body .section_text p {
  line-height: 3;
  font-size: 16px;
}

.section.section-concept .section_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section.section-concept .section_inner .section_headerWrapper {
  width: 50%;
}

.section.section-concept .section_inner .section_pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding-top: 0px;
}

.section.section-concept .section_inner .section_pic > div {
  width: 33.3333333333%;
  padding: 0 10px;
  text-align: center;
}

.section.section-concept .section_inner .section_pic > div img {
  height: auto;
  max-width: 100%;
}

.section.section-concept .section_inner .page_body {
  width: 50%;
  padding-left: 30px;
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section.section-concept .section_inner .section_body p {
  line-height: 2;
}

.section.section-concept .section_inner .section_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}

.section.section-info .section_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section.section-info .section_content {
  width: calc(50% - 10px);
  margin-right: 20px;
}

.section.section-info .section_pic {
  width: calc(50% - 10px);
  margin-right: 0;
}

.section.section-info .section_pic img {
  height: auto;
  max-width: 100%;
}

.section.section-access .section_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.section.section-access .section_inner .section_pic {
  margin-bottom: 20px;
}

.section.section-access .section_inner .section_pic img {
  height: auto;
  max-width: 100%;
}

.section.section-access .section_inner .section_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.section.section-access .section_inner .section_content .section_header {
  width: 15%;
}

.section.section-access .section_inner .section_content .section_body {
  width: 85%;
  padding: 0 20px;
}

.section.section-access .section_inner .section_content .section_btn {
  width: 100%;
  max-width: 350px;
  margin: 15px 0;
}

@media only screen and (max-width: 767px) {
  .section.section-concept .section_inner {
    padding: 0 15px;
  }
  .section.section-concept .section_content {
    width: 100%;
    margin: 0 auto;
  }
  .section.section-concept .section_header {
    padding-bottom: 15px;
  }
  .section.section-concept .section_text {
    font-size: 14px;
  }
  .section.section-info .section_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section.section-info .section_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section.section-info .section_content {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.is-full .section .section_inner {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.is-full .section_header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.heading {
  font-weight: bold;
  line-height: 1.2;
}

.heading > span {
  display: block;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3px 15px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background-color: #000;
}

a.label:hover {
  background-color: black;
  font-weight: bold;
  color: #fff;
}

.label-lg {
  padding: 5px 50px 5px 30px;
  font-size: 15px;
}

.label-radius {
  border-radius: 5px;
}

.label-rounded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  width: 75px;
  height: 75px;
}

.content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.content p:last-child {
  margin-bottom: 0;
}

.content a:hover {
  text-decoration: none;
}

.content em {
  font-weight: bold;
  font-style: italic;
}

.content iframe {
  width: 100%;
  margin-bottom: 30px;
}

.content table {
  margin: 15px auto;
  border-collapse: collapse;
  width: 95%;
}

.content table td,
.content table th {
  padding: 0.5em;
}

@media screen and (max-width: 480px) {
  .content table td,
  .content table th {
    font-size: 14px;
  }
}
.content .is-style-stripes table tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}

.content > * {
  margin-right: auto;
  margin-left: auto;
}

.content > :not(.alignfull),
.content > :not(.alignwide) {
  max-width: var(--wp--style--global--content-size);
}

.content > .alignwide {
  max-width: var(--wp--style--global--wide-size);
}

.content > .alignfull {
  max-width: none;
}

.infoList {
  margin-left: 20px;
  padding: 0;
}

.infoList .infoList_item {
  position: relative;
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.infoList .infoList_item:before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
  left: 0;
  top: 25px;
}

.infoList .infoList_item:first-child:before {
  content: "\f017";
}

.infoList .infoList_item:nth-child(2):before {
  content: "\f3cf";
}

.infoList .infoList_item:last-child:before {
  content: "\f0e0";
}

.infoList .infoList_item .infoList_prepend {
  display: block;
  font-size: 14px;
}

.infoList .infoList_item .infoList_append {
  display: block;
  font-size: 14px;
}

.infoList .infoList_item .infoList_num {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
}

.infoList .infoList_item .infoList_time {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
}

.infoList .infoList_item .infoList_btn {
  margin: 15px 0;
  width: 100%;
  max-width: 285px;
}

.section__msg {
  background-color: #fff;
  padding: 20px 0;
  width: 95vw;
  margin: auto;
  border-top: 2px solid #109b58;
  border-bottom: 2px solid #109b58;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.post_bg {
  background-color: #fffef4;
  padding: 60px 10px;
}

.post_heading time {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #ffffff;
  background-color: #109b58;
  padding-left: 5px;
}

.post_category {
  width: 100%;
  text-align: right;
}

.post_title {
  font-size: 30px;
  line-height: 2;
  border-bottom: 2px solid #109b58;
  color: #109b58;
}

@media screen and (max-width: 480px) {
  .post_bg {
    padding: 80px 10px 30px;
  }
  .post_title {
    font-size: 18px;
    line-height: 2;
  }
  .post_heading time {
    font-size: 12px;
  }
}
.wp-block-latest-posts__post-title {
  font-weight: 800;
  display: block;
  font-size: 16px;
  font-weight: 800;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 15px 15px;
  margin-bottom: 10px;
  color: #fff;
  background-color: #109b58;
}
.wp-block-latest-posts__post-title::after {
  content: "詳細▶︎";
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
  color: #109b58;
  font-size: 12px;
  position: absolute;
  right: 5px;
  padding: 2px 3px 2px 5px;

}



@media screen and (max-width: 480px) {
  .wp-block-latest-posts__post-title {
    padding: 15px 15px;
  }
}
.news_summary_container {
  padding: 10px 20px;
  max-width: 800px;
}

.post-list {
  margin: 20px auto;
  max-width: 1000px;
}

.news_summary_container li {
  background-color: #fff;
  border-radius: 15px;
  padding-bottom: 20px;
  margin: 40px 20px;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.news_summary_container li time::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f073";
  margin-right: 5px;
}

.wp-block-latest-posts__list li:hover {
  opacity: 0.7;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

@media screen and (max-width: 480px) {
  .news_summary_container li {
    padding: 0px 0px;
    height: 220px;
    margin: 20px 0;
  }
  .news_summary_container li a {
    font-size: 14px;
  }
  .news_summary_container li div {
    font-size: 13px;
  }
}
.wp-block-latest-posts__post-date {
  margin-left: 1.5rem;
}

.wp-block-latest-posts__post-date::after {
  display: block;
  content: "";
  width: 90%;
  height: 1px;
  background-color: #109b58;
}

.div.pdfemb-viewer {
  border: none !important;
}

.pdfemb-viewer {
  border: none !important;
  background-color: #ffffff00;
}

.pdfemb-viewer .pdfemb-pagescontainer {
  border: none !important;
  background-color: #ffffff00;
}

.wp-block-latest-posts__post-excerpt {
  font-size: 14px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.post .post_content {
  padding: 30px 0;
}

.post_heading time::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f073";
  margin-right: 5px;
}

.post .post_content .content img {
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.post .post_content .content p {
  margin: 0 auto;
  line-height: 20px;
  margin-bottom: 1.3rem;
}
.post .post_content .content strong {
  font-weight: bold;
  background-color: #fcff00a3;
}

.post .post_content h2 {
  font-size: 20px;
  color: #109b58;
  border-bottom: 1px dotted #109b58;
  margin: 20px 0;
}
@media screen and (max-width: 480px) {
  .post .post_content h2{
    font-size: 16px;
  }
}

.post-table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
}

.post .post_related {
  padding: 70px 0 0;
  margin-top: 70px;
  border-top: 1px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .post .post_content {
    padding: 15px 0 30px;
  }
  .post .post_content .content p {
    line-height: 24px;
    letter-spacing: 0.02em;
    font-size: 14px;
  }
  .post .post_prevNext {
    padding-top: 20px;
  }
  .post .post_prevNext .post_prevNext_item a {
    font-size: 12px;
  }
  .post .post_prevNext .post_prevNext_item a i {
    font-size: 18px;
  }
}
.go_info_top, .go_page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
  margin-bottom: 20px;
  width: 150px;
  padding: 3px 10px;
  border-radius: 9999px;
  background-color: #109b58;
  color: #252525;
  border: 1px solid #252525;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.go_info_top:hover, .go_page-top:hover {
  opacity: 0.7;
}

.go_info_top a, .go_page-top a {
  margin: auto;
  line-height: 2.5;
}

.is-full .post .post_content time {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.is-full .post .post_footer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

main .archive {
  padding: 0px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main .archive_title {
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  color: #000;
  margin-bottom: 10px;
}

main .archive_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -10px;
}

main .archive_list li {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
}

main .archive_list li a {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  padding: 10px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #707070;
  color: #000;
  font-size: 14px;
}

main .archive_list li a:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

main .archive_list li a[aria-current] {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

main .archive_list li.current-cat a {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

@media only screen and (max-width: 767px) {
  main .archive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .archive_yealy {
    padding-top: 20px;
  }
  main .archive_list li a {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.prevNext {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.prevNext .prevNext_item {
  width: 50%;
}

.prevNext .prevNext_item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .prevNext {
    padding: 20px 0;
  }
}
.prevNext .prevNext_item a i {
  color: #45C6E5;
  font-size: 28px;
}

.prevNext .prevNext_item a span {
  display: inline-block;
  padding: 0 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.prevNext .prevNext_item a:hover span {
  text-decoration: underline;
  color: #109b58;
}

.prevNext .prevNext_item-prev {
  border-right: 1px solid #224163;
  margin-right: auto;
}

.prevNext .prevNext_item-next {
  text-align: right;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .prevNext {
    padding-top: 20px;
    margin: 20px auto;
  }
  .prevNext .prevNext_item a {
    font-size: 12px;
  }
  .prevNext .prevNext_item a i {
    font-size: 18px;
  }
}
.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px 0;
  margin: 0 auto;
}

.pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination .wp-pagenavi span,
.pagination .wp-pagenavi > a {
  min-width: 42px;
  height: 38px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px 5px 5px 5px;
  border: 1px solid #999999;
  color: #000;
  text-decoration: none;
  margin: 0 5px;
}

.pagination .wp-pagenavi span.pages,
.pagination .wp-pagenavi > a.pages {
  border: none;
}

.pagination .wp-pagenavi span.nextpostslink,
.pagination .wp-pagenavi span.previouspostslink,
.pagination .wp-pagenavi > a.nextpostslink,
.pagination .wp-pagenavi > a.previouspostslink {
  position: relative;
}

.pagination .wp-pagenavi > a:hover {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

.pagination .wp-pagenavi > a:hover.nextpostslink:before,
.pagination .wp-pagenavi > a:hover.previouspostslink:before {
  color: #fff;
}

.pagination .wp-pagenavi > span.current {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .pagination .wp-pagenavi span,
  .pagination .wp-pagenavi > a {
    width: 33px;
    height: 30px;
  }
}
.form {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.form_group {
  padding: 30px 0;
  border-bottom: 1px dotted #ccc;
}

.form_group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.form_group label {
  font-weight: bold;
  font-size: 16px;
}

.form_group label span {
  font-size: 12px;
  font-weight: bold;
  color: #D93B00;
}

.form_group > div input,
.form_group > div textarea {
  padding: 10px;
  font-size: 16px;
  width: 100%;
}

.form_btn {
  margin: auto;
  max-width: 80%;
}

.form_btn input {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.form_btn-back {
  margin: auto;
  max-width: 80%;
  padding-top: 30px;
}

.form_btn-back input {
  color: #000;
  background-color: #fff;
  border-color: #ccc;
}

.latest {
  border-top: 1px solid #666;
  margin-top: 50px;
  padding-top: 50px;
}

.latest_header {
  padding-bottom: 20px;
}

.is-full .latest {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.comments {
  border-top: 1px solid #ddd;
  padding-top: 50px;
  margin-top: 50px;
  font-size: 14px;
}

.comments a {
  color: #000;
}

.comments a:hover {
  text-decoration: none;
}

.comments .comment-respond .comment-reply-title {
  font-size: 18px;
}

.comments .comment-respond + p {
  border-top: 1px dotted #eee;
  border-bottom: 1px dotted #eee;
  text-align: right;
}

.comments .comment-form .comment-notes {
  font-size: 12px;
}

.comments .comment-form .logged-in-as {
  text-align: right;
  font-size: 14px;
}

.comments .comment-form .comment-form-comment label {
  display: block;
}

.comments .comment-form .comment-form-comment textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
}

.comments .comment-form .comment-form-author,
.comments .comment-form .comment-form-email,
.comments .comment-form .comment-form-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments .comment-form .comment-form-author label,
.comments .comment-form .comment-form-email label,
.comments .comment-form .comment-form-url label {
  width: 180px;
  white-space: nowrap;
}

.comments .comment-form .comment-form-author input,
.comments .comment-form .comment-form-email input,
.comments .comment-form .comment-form-url input {
  width: calc(100% - 180px);
  padding: 10px;
}

.comments .comment-form .comment-form-cookies-consent {
  font-size: 12px;
}

.comments .comment-form .form-submit {
  text-align: center;
}

.comments .comment-form .form-submit .submit {
  display: inline-block;
  padding: 15px 25px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 10px 10px 10px 10px;
  border: none;
  background-color: #eee;
  position: relative;
}

.comments .comment-form .form-submit .submit:hover {
  opacity: 0.8;
}

.comments .commentlist .comment {
  padding: 15px 0;
  border-bottom: 1px dotted #ddd;
}

.comments .commentlist .comment:last-child {
  border-bottom: none;
}

.comments .commentlist .comment .children {
  padding-left: 30px;
  margin-left: 30px;
  border-left: 2px solid #eee;
}

.comments .commentlist .comment .comment-body .comment-awaiting-moderation {
  text-align: center;
  display: block;
  padding-top: 15px;
}

.comments .commentlist .comment .comment-body .comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments .commentlist .comment .comment-body .comment-author cite {
  margin-left: 10px;
}

.comments .commentlist .comment .comment-body .comment-meta {
  text-align: right;
  font-size: 12px;
}

.comments .commentlist .comment .comment-body p {
  font-size: 16px;
}

.comments .commentlist .comment .comment-body .reply {
  text-align: center;
}

.comments .commentlist .comment .comment-body .reply .comment-reply-link {
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 10px 10px 10px 10px;
  border: none;
  background-color: #eee;
}

@media only screen and (max-width: 767px) {
  .comments {
    padding-top: 30px;
    margin-top: 30px;
  }
  .comments .comment-respond .comment-reply-title {
    font-size: 14px;
  }
  .comments .comment-form .logged-in-as {
    font-size: 12px;
  }
  .comments .comment-form .comment-form-comment textarea {
    height: 100px;
  }
  .comments .comment-form .comment-form-author,
  .comments .comment-form .comment-form-email,
  .comments .comment-form .comment-form-url {
    display: block;
  }
  .comments .comment-form .comment-form-author label,
  .comments .comment-form .comment-form-email label,
  .comments .comment-form .comment-form-url label {
    display: block;
    width: 100%;
  }
  .comments .comment-form .comment-form-author input,
  .comments .comment-form .comment-form-email input,
  .comments .comment-form .comment-form-url input {
    width: 100%;
  }
  .comments .comment-form .comment-form-cookies-consent {
    font-size: 12px;
  }
  .comments .comment-form .form-submit .submit {
    font-size: 14px;
  }
  .comments .commentlist .comment .children {
    padding-left: 15px;
    margin-left: 15px;
  }
  .comments .commentlist .comment .comment-body p {
    font-size: 14px;
  }
}
.is-full .comments {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pageNav {
  scroll-margin-top: 86px;
  padding: 70px 0 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pageNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pageNav ul li {
  border-left: 1px solid #000;
  margin-bottom: 0;
  line-height: 1;
}

.pageNav ul li:last-child {
  border-right: 1px solid #000;
}

.pageNav ul li a,
.pageNav ul li span {
  color: #000;
  padding: 5px 15px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
}

.pageNav ul li a:hover,
.pageNav ul li span:hover {
  opacity: 0.7;
}

.post-password-form {
  text-align: center;
}

.post-password-form label {
  font-weight: bold;
  font-size: 14px;
  padding-right: 10px;
}

.post-password-form input[type=password] {
  line-height: 1;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 0;
  border: 1px solid #000;
}

.post-password-form input[type=submit] {
  position: relative;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  padding: 10px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  font-size: 14px;
}

.post-password-form input[type=submit]:hover {
  opacity: 0.8;
}

/*==================================================
共通
===================================*/
body {
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.7;
  color: #252525;
  font-family: "Montserrat", "Kosugi Maru", sans-serif;
  background: #fffdf2;
  margin: 0 auto;
  -webkit-margin-before: 0px;
  margin-block-start: 0px;
  -webkit-margin-after: 0px;
  margin-block-end: 0px;
}

@media screen and (max-width: 480px) {
  body {
    line-height: 1.5 !important;
    letter-spacing: 0.5px !important;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.primary__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 1200px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page__main {
  background-color: #fffdf2;
  padding: 80px 0 0;
}

@media screen and (min-width: 481px) and (max-width: 1250px) {
  .page__main {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .page__main {
    padding: 85px 0 0;
  }
}
@media not screen and (min-width: 480px) {
  .wp-block-cover, .wp-block-cover-image {
    min-height: 180px !important;
  }
}
.letter-nml {
  line-height: 1.5;
  letter-spacing: 2px;
}

.align-middle {
  vertical-align: middle;
}

.sp-br {
  display: block;
}

@media screen and (min-width: 1100px) {
  .sp-br {
    display: none;
  }
}
@media screen and (min-width: 650px) and (max-width: 1099px) {
  .sp-br {
    display: none;
  }
}
@media not screen and (min-width: 649px) {
  .hidden-sp {
    display: none !important;
  }
}
@media screen and (min-width: 650px) and (max-width: 1099px) {
  .hidden-tab {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .hidden-pc {
    display: none;
  }
}
.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.heading {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.heading__en {
  font-size: 38px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
}

@media screen and (min-width: 1100px) {
  .heading__en {
    font-size: 50px;
    letter-spacing: 5px;
  }
}
.txt_jp {
  font-family: "Kosugi Maru", sans-serif;
}

.heading__ja {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.1px;
  margin-top: 14px;
}

@media screen and (min-width: 1100px) {
  .heading__ja {
    font-size: 16px;
    letter-spacing: 1.2px;
  }
}
.contents__wrap {
  width: 95vw;
  max-width: 980px;
  margin: 0px auto;
}

.contents__wrapper {
  margin: 0 auto;
}

@media not screen and (min-width: 649px) {
  .contents__wrapper {
    padding: 0;
  }
}
.section__wrap {
  background-color: #fff;
  border: 1px solid #252525;
  border-radius: 10px;
  margin-top: 10px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 10px;
  position: relative;
}

.attention__title {
  border-radius: 20px;
  width: 400px;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media not screen and (min-width: 649px) {
  .attention__title {
    top: -20px;
  }
}
.attention__title h2 {
  color: #fff !important;
  font-size: 20px !important;
}

.contents__img {
  position: relative;
}

.section__title {
  text-align: center;
  margin: 30px auto;
  letter-spacing: 0.1em;
  max-width: 800px;
  /* box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, .2); */
  border-radius: 20px;
}

@media not screen and (min-width: 649px) {
  .section__title {
    padding: 20px 0px 20px;
    margin: 0 auto;
  }
}
.section__title-or {
  background: #FF6D45;
  text-align: center;
  margin: 30px auto;
  letter-spacing: 0.1em;
  max-width: 800px;
  -webkit-box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 35px;
}

@media not screen and (min-width: 649px) {
  .section__title-or {
    padding: 5px 0px 5px;
    margin: 0 auto;
    max-width: 300px;
  }
}
@media not screen and (min-width: 649px) {
  .section__title-or h2 {
    font-size: 18px !important;
    color: #fff !important;
  }
}
.section__title-bl {
  background: #2E35BC;
  color: #fff !important;
  text-align: center;
  margin: 30px auto;
  letter-spacing: 0.1em;
  max-width: 800px;
  -webkit-box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.3);
  border-radius: 35px;
}

@media not screen and (min-width: 649px) {
  .section__title-bl {
    padding: 5px 0px 5px;
    margin: 0 auto;
    max-width: 300px;
  }
}
@media not screen and (min-width: 649px) {
  .section__title-bl h2 {
    font-size: 18px !important;
    color: #fff !important;
  }
}
.section__title span:first-child {
  font-size: 30px;
  font-weight: 900;
  padding: 0px 0px 10px;
  border-bottom: 1px solid #fefbe8;
  color: #3e2209;
  text-shadow: 0 1px 0 #fefbe8, 1px 0 0 #fefbe8, 0 -1px 0 #fefbe8, -1px 0 0 #fefbe8, -1px -1px 0 #fefbe8, 1px -1px 0 #fefbe8, -1px 1px 0 #fefbe8, 1px 1px 0 #fefbe8;
}

.section__title span:last-child {
  display: block;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 900;
  color: #fefbe8;
}

.section__title-02 h2,
.section__title-03 span {
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.3em;
}

.section__title-02 h2 span:first-child,
.section__title-03 span:first-child {
  display: block;
  width: fit-content;
  letter-spacing: normal;
  font-size: 30px;
  font-weight: 900;
  padding: 0px 0px 10px;
  margin: auto;
  border-bottom: 1px solid #3e2209;
  color: #3e2209;
  text-shadow: 0 1px 0 #fefbe8, 1px 0 0 #fefbe8, 0 -1px 0 #fefbe8, -1px 0 0 #fefbe8, -1px -1px 0 #fefbe8, 1px -1px 0 #fefbe8, -1px 1px 0 #fefbe8, 1px 1px 0 #fefbe8;
}

.section__title-02 h2 span:last-child,
.section__title-03 span:last-child {
  display: block;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 900;
  color: #3e2209;
}

@media screen and (max-width: 480px) {
  .section__title h2 {
    margin-bottom: 20px;
  }
  .section__title h2 span:first-child {
    font-size: 45px;
    font-weight: 900;
     padding: 0px 0px 6px;
     line-height: 1;
  }
  .section__title h2 span:last-child {
    display: block;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 900;
  }
  .section__title-02 h2,
  .section__title-03 span {
    margin-bottom: 20px;
  }
  .section__title-02 h2 span:first-child,
  .section__title-03 span:first-child {
    font-size: 45px;
    font-weight: 900;
     padding: 0px 0px 6px;
     line-height: 1;
  }
  .section__title-02 h2 span:last-child,
  .section__title-03 span:last-child {
    display: block;
    padding-top: 10px;
    font-size: 15px;
    font-weight: 900;
  }
}
.title__wrap {
  padding: 50px auto;
}

.page__header-event {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.page__header-event .page__header__img {
  position: absolute;
  width: 100%;
  height: auto;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.page__header-event .page__title {
  position: absolute;
}

.page__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 300px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 480px) {
  .page__title {
    height: 150px;
  }
}
.page__title h1 span:first-child {
  font-size: 50px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(70, 70, 70, 0.7);
}

@media screen and (max-width: 480px) {
  .page__title h1 span:first-child {
    font-size: 30px;
  }
}
.page__title h1 span:last-child {
  font-size: 30px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(70, 70, 70, 0.7);
}

@media screen and (max-width: 480px) {
  .page__title h1 span:last-child {
    font-size: 20px;
  }
}
.page__title-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 300px;
  color: #fff;
}

.page__title-white h1 {
  font-size: 30px;
}

.page__title__icon {
  margin: 0 auto;
  width: 25vw;
}

/*==================================================
header
===================================*/
header {
  width: 100vw;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
}

.header__wrap {
  position: fixed;
  top: 0;
}

@media not screen and (min-width: 480px) {
  .header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 85px;
    text-align: center;
    padding: 0 10px;
    z-index: 10;
  }
}
@media screen and (min-width: 481px) and (max-width: 1099px) {
  .header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 90px;
    text-align: center;
    padding: 0 15px;
    z-index: 10;
  }
}
@media screen and (min-width: 1100px) {
  .header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 95px;
    text-align: center;
    padding: 0px 10px 0px;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.header__top__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5px;
}

.header__wrap__page {
  background-color: rgba(255, 255, 255, 0.6);
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__wrap h1 {
  font-size: 12px;
  color: #fff;
  text-align: right;
}

.header__logo a img {
  width: 70px;
  display: block;
  margin-top: 10px;
}

@media screen and (min-width: 650px) and (max-width: 1099px) {
  .header__logo a img {
    width: 85px;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1100px) {
  .header__logo a img {
    width: 80px;
    margin-bottom: 3px;
  }
}
.header__nav__wrap {
  width: 100vw;
}

@media not screen and (min-width: 649px) {
  .header__nav__wrap {
    display: none;
  }
}
@media screen and (min-width: 650px) and (max-width: 1099px) {
  .header__nav__wrap {
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 30px 0px 70px;
    margin: 5px 0px 0px 10px;
    gap: 5px;
  }
}
@media screen and (min-width: 1100px) {
  .header__nav__wrap {
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 30px 0px 150px;
    margin: 5px 0px 0px 0px;
    gap: 5px;
  }
}
.header__nav__wrap__sp, .header__nav__wrap__sp-page {
  position: fixed;
  bottom: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  padding: 0px 5px;
  z-index: 10;
  text-align: center;
}

@media screen and (min-width: 650px) and (max-width: 1099px) {
  .header__nav__wrap__sp, .header__nav__wrap__sp-page {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .header__nav__wrap__sp, .header__nav__wrap__sp-page {
    display: none;
  }
}
.header__nav__wrap__sp div, .header__nav__wrap__sp-page div {
  width: 31.5vw;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 15px 0px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: none;
}

.header__nav__wrap__sp {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.5s ease;
  transition: transform 0.8s ease, opacity 0.5s ease, -webkit-transform 0.8s ease;
}

.header__nav__wrap__sp.slide-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btm_tel {
  background-color: #109b58;
}

.btm_time {
  background-color: #f75427;
}

.btm_rsv {
  background-color: #2E35BC;
}

.header__nav__wrap__sp div a {
  font-size: 15px;
  line-height: 1.7;
  display: block;
}

.fa-solid {
  margin-right: 2px;
}

.change-color {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.current {
  background-color: rgba(255, 255, 255, 0.7);
}

.current a {
  color: #252525;
}

.header__nav {
  margin-top: 10px;
}

.header__nav a {
  display: block;
}

.header__button {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fv__logo {
  width: 80%;
}

.scrolldown4 {
  position: absolute;
  bottom: 1%;
  right: 50%;
  -webkit-animation: arrowmove 1.2s ease-in-out infinite;
  animation: arrowmove 1.2s ease-in-out infinite;
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
.scrolldown4 span {
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown4:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 2px;
  height: 20px;
  background: #fff;
  -webkit-transform: skewX(-31deg);
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 50px;
  background: #fff;
}

@media not screen and (min-width: 680px) {
  .scrolldown4:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #fff;
    -webkit-transform: skewX(-31deg);
    transform: skewX(-31deg);
  }
  .scrolldown4:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 50px;
    background: #fff;
  }
}
/*========= モーダルナビゲーション ===============*/
.column {
  text-align: left;
}

@media not screen and (min-width: 649px) {
  .column {
    -ms-flex-preferred-size: content;
    flex-basis: content;
  }
}
@media screen and (min-width: 1100px) {
  .column {
    -ms-flex-preferred-size: 26.6666666667vw;
    flex-basis: 26.6666666667vw;
    max-width: 26.6666666667vw;
  }
}
/*モーダル内カテゴリタイトル*/
.column__title {
  display: inline-block;
  background-color: #fff;
  color: #37AB1F;
  padding: 4px 5px;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 651px) and (max-width: 900px) {
  .column__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 649px) {
  .column__title {
    display: block;
    text-align: left;
    padding-left: 20%;
    background: linear-gradient(267deg, rgb(71, 192, 134) 0%, rgb(16, 155, 88) 100%);
    color: #fff;
    border-radius: 20px;
  }
}
/*icon*/
@media screen and (max-width: 480px) {
  .vk_icon {
    margin-bottom: 0 !important;
  }
}
/*メニューテキスト*/
.menu__text {
  color: rgb(50, 50, 50);
  font-size: 15px;
  text-decoration: none;
  padding: 1px 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
}

@media screen and (min-width: 651px) and (max-width: 990px) {
  .menu__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 649px) {
  .menu__text {
    border-bottom: 1px solid rgba(16, 155, 88, 0.5);
    position: relative;
  }
}
@media screen and (max-width: 649px) {
  .menu__text a::after {
    position: absolute;
    right: 20px;
    top: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-top: 2px solid #109b58;
    border-right: 2px solid #109b58;
    content: "";
  }
}
@media screen and (max-width: 650px) {
  .menu__text:last-child {
    border-bottom: none;
  }
}
.column__item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.column__item:hover {
  opacity: 0.6;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.column__item a {
  display: block;
  height: 35px;
  letter-spacing: 0.3px;
}

@media screen and (min-width: 651px) and (max-width: 900px) {
  .column__item a {
    display: block;
    height: 25px;
    font-size: 11px;
  }
}
@media screen and (max-width: 649px) {
  .column__item a {
    text-align: left;
    padding-left: 10%;
    padding-top: 6px;
  }
  .column__item {
    width: 80%;
    margin: auto;
  }
}
.tel-img {
  display: block;
  max-width: 240px;
}

@media screen and (max-width: 649px) {
  .banners {
    margin-top: 20px;
  }
}
@media screen and (max-width: 649px) {
  .banners a {
    margin: 10px auto !important;
    padding: 10px 5px;
  }
}
/*モーダル*/
.gnav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-box-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (max-width: 649px) {
  .gnav__wrap {
    display: block;
  }
}
/*モーダルのカラムコンテナ*/
.column__items {
  background: rgb(255, 255, 255);
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  text-align: left;
}

@media screen and (max-width: 6px) {
  .column__items:last-child {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  .column__items a {
    margin: 6px auto;
    font-size: 15px;
  }
}
/*モーダル内ボタン*/
.nav__btn {
  display: block;
  width: 240px;
  padding: 10px;
  margin: 20px 0;
  color: #fff;
  background-color: #2E35BC;
  border: 3px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

@media screen and (min-width: 481px) and (max-width: 990px) {
  .nav__btn {
    width: 150px;
    padding: 5px;
    margin: auto;
    font-size: 16px;
  }
}
.nav__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background-color: #484ec3;
  color: #fff;
}

.nav__btn__sns {
  display: block;
  width: 160px;
  padding-left: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nav__btn__sns:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.nav__btn .icon_tennis {
  width: 50px;
  margin-bottom: 3px;
}

.nav__btn .icon_mapimg {
  width: 42px;
  margin-bottom: 3px;
}

.nav__btn span {
  font-size: 11px;
}

/*========= モーダルmenu ===============*/
.menu {
  position: absolute;
  right: 30px;
  top: 15px;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 1;
  width: 60px;
  height: 60px;
  background: #109b58;
  border-radius: 10px;
  -ms-flex-line-pack: center;
  align-content: center;
  z-index: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media not screen and (min-width: 649px) {
  .menu {
    width: 52px;
    height: 52px;
  }
}
.menu span {
  display: inline-block;
  position: absolute;
  left: 16px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

@media not screen and (min-width: 649px) {
  .menu span {
    left: 14px;
  }
}
.menu span:nth-of-type(1) {
  top: 15px;
}

@media not screen and (min-width: 649px) {
  .menu span:nth-of-type(1) {
    top: 14px;
  }
}
.menu span:nth-of-type(2) {
  top: 22px;
}

@media not screen and (min-width: 649px) {
  .menu span:nth-of-type(2) {
    top: 21px;
  }
}
.menu span:nth-of-type(3) {
  top: 30px;
}

@media not screen and (min-width: 649px) {
  .menu span:nth-of-type(3) {
    top: 28px;
  }
}
@media not screen and (min-width: 649px) {
  .menu {
    right: 9px;
    top: 19px;
  }
}
.menu a {
  display: block;
  padding: 16px 5px;
  font-size: 10px;
  letter-spacing: 0.05rem;
  line-height: 1.8;
  font-weight: bold;
  border-radius: 10px;
}

@media not screen and (min-width: 649px) {
  .menu a {
    padding: 16px 5px;
    font-size: 9px;
    letter-spacing: 0.05rem;
    line-height: 1.7;
    border-radius: 10px;
  }
}
.menu .modal {
  height: 60px;
  border-radius: 10px;
}

@media not screen and (min-width: 649px) {
  .menu .modal {
    height: 53px;
  }
}
@media screen and (min-width: 1100px) {
  .menu:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
/*==== FVアニメーション ====*/
.fv-wrap {
  position: relative;
}

.fv__logo__wrap {
  position: absolute;
  bottom: 0vh;
  left: 5vw;
  margin-top: 20vh;
}

.fv__logo__wrap img {
  width: 25vw;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slider {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
}

.slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
}

.slider ul li {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  width: 100%;
  height: 100%;
}

.slider ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

.slider ul li:nth-child(1) {
  -webkit-animation-name: slider-zoomin;
  animation-name: slider-zoomin;
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
}

.slider ul li:nth-child(2) {
  -webkit-animation-name: slider-zoomout;
  animation-name: slider-zoomout;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  opacity: 0;
}

.slider ul li:nth-child(3) {
  -webkit-animation-name: slider-zoomin;
  animation-name: slider-zoomin;
  -webkit-animation-delay: 13s;
  animation-delay: 13s;
  opacity: 0;
}

@-webkit-keyframes slider-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes slider-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@-webkit-keyframes slider-zoomout {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes slider-zoomout {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*====（終わり）FVアニメーションのためのcss ====*/
.fv_menu_wrap {
  position: absolute;
  bottom: 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 650px) {
  .fv_menu_wrap {
    bottom: 125px;
  }
}
.fv_menu {
  text-align: center;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.6);
  width: 50vw;
  padding: 15px;
}

@media not screen and (min-width: 650px) {
  .fv_menu {
    text-align: center;
    padding: 6px;
  }
}
.fv_menu:first-child {
  border-right: 1px solid #000000;
}

.fv_school2, .fv_member2 {
  font-size: 14px;
}

@media not screen and (min-width: 650px) {
  .fv_school2, .fv_member2 {
    font-size: 12px;
  }
}
.fv_school, .fv_member {
  text-align: center;
  font-family: sans-serif;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px solid #000000;
  font-size: 14px;
}

@media screen and (min-width: 1100px) {
  .fv_school, .fv_member {
    font-size: 16px;
  }
}
.js-scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

.js-scroll_up.on {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.js-scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.js-scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.js-scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.logosvg {
  width: 50vw;
  z-index: 9999;
}

/*=================================================
TOPページ
===============================================*/
.section__main {
  background-color: #f9db76;
  padding: 30px 0px;
}

.main__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 50px;
  max-width: 100vw;
}

@media screen and (max-width: 480px) {
  .main__img {
    margin-bottom: 0px;
  }
}
.main__img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 50px;
}

@media not screen and (min-width: 649px) {
  .main__img ul {
    gap: 1vw;
  }
}
.main__img ul li {
  width: 5vw;
}

@media not screen and (min-width: 649px) {
  .main__img ul li {
    width: 13vw;
  }
}
.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}

.box img {
  max-width: 100%;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.main__msg {
  text-align: center;
}

article {
  overflow: hidden;
}

/*------ 流れる文字ループ -----*/
.loop_wrap_right-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 70px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .loop_wrap_right-left {
    height: 60px;
  }
}
.loop_wrap_right-left div {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 30px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .loop_wrap_right-left div {
    font-size: 25px;
  }
}
.loop__text {
  color: rgba(130, 130, 130, 0.2);
  font-family: Montserrat;
  font-weight: 800;
}

.loop_wrap_right-left div:nth-child(odd) {
  -webkit-animation: loop_right-left 100s -50s linear infinite;
  animation: loop_right-left 100s -50s linear infinite;
}

.loop_wrap_right-left div:nth-child(even) {
  -webkit-animation: loop2_right-left 100s linear infinite;
  animation: loop2_right-left 100s linear infinite;
}

@-webkit-keyframes loop_right-left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop_right-left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2_right-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2_right-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
.loop_wrap_left-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 70px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .loop_wrap_left-right {
    height: 60px;
  }
}
.loop_wrap_left-right div {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 30px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .loop_wrap_left-right div {
    font-size: 25px;
  }
}
.loop_wrap_left-right div:nth-child(odd) {
  -webkit-animation: loop_left-right 100s -50s linear infinite;
  animation: loop_left-right 100s -50s linear infinite;
}

.loop_wrap_left-right div:nth-child(even) {
  -webkit-animation: loop2_left-right 100s linear infinite;
  animation: loop2_left-right 100s linear infinite;
}

@-webkit-keyframes loop_left-right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes loop_left-right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes loop2_left-right {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes loop2_left-right {
  0% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.title_rsn {
  position: relative;
  margin-top: 30px;
}

.title_rsn .img01 {
  position: absolute;
  width: 10vw;
  max-width: 130px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  left: 20%;
  bottom: 10%;
}

@media screen and (min-width: 650px) and (max-width: 1099px) {
  .title_rsn .img01 {
    position: absolute;
    width: 10vw;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    left: 10%;
    bottom: 10%;
  }
}
@media not screen and (min-width: 649px) {
  .title_rsn .img01 {
    position: absolute;
    width: 15vw;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    left: 5%;
    bottom: 5%;
  }
}
.title_rsn .img02 {
  position: absolute;
  width: 13vw;
  max-width: 80px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  right: 25%;
  bottom: 0%;
}

@media screen and (min-width: 650px) and (max-width: 1099px) {
  .title_rsn .img02 {
    position: absolute;
    width: 6vw;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
    right: 8%;
    bottom: 10%;
  }
}
@media not screen and (min-width: 649px) {
  .title_rsn .img02 {
    position: absolute;
    width: 10vw;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
    right: 5%;
    bottom: 0%;
  }
}
.main__msg {
  margin: 0 auto;
}

.main__msg01 {
  margin: 20px auto;
  padding: 20px 5px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
}

.main__msg01 h2 {
  font-size: 30px;
  line-height: 1.7;
}

@media screen and (max-width: 480px) {
  .main__msg01 h2 {
    font-size: 16px;
    line-height: 1.7;
  }
}
.main__msg01 p {
  line-height: 3;
  letter-spacing: 0.15em;
}

.main__msg01 p span {
  font-size: 20px;
}

.poyooon {
  -webkit-animation: poyooon 0.9s linear 0s 1;
  animation: poyooon 0.9s linear 0s 1;
}

@-webkit-keyframes poyooon {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
@keyframes poyooon {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
.poyooon1 {
  -webkit-animation: poyooon1 0.9s linear 0s 1;
  animation: poyooon1 0.9s linear 0s 1;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes poyooon1 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
@keyframes poyooon1 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
.poyooon2 {
  -webkit-animation: poyooon2 0.9s linear 0s 1;
  animation: poyooon2 0.9s linear 0s 1;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes poyooon2 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
@keyframes poyooon2 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
.poyooon3 {
  -webkit-animation: poyooon3 0.9s linear 0s 1;
  animation: poyooon3 0.9s linear 0s 1;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes poyooon3 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
@keyframes poyooon3 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
.poyooon4 {
  -webkit-animation: poyooon4 0.9s linear 0s 1;
  animation: poyooon4 0.9s linear 0s 1;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes poyooon4 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
@keyframes poyooon4 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
.poyooon5 {
  -webkit-animation: poyooon5 1s linear 0s 1;
  animation: poyooon5 1s linear 0s 1;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes poyooon5 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
@keyframes poyooon5 {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
  75% {
    -webkit-transform: translate(0%, -30%);
    transform: translate(0%, -30%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}
/* fadeUp */
.fadeUplr {
  -webkit-animation-name: fadeUpAnime-lr;
  animation-name: fadeUpAnime-lr;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime-lr {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes fadeUpAnime-lr {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.main__msg02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 215px 0 0;
}

@media not screen and (min-width: 649px) {
  .main__msg02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 150px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .main__msg02 {
    margin: 140px 0 0;
  }
}
.main__msg02 h3 {
  font-size: 14px;
}

.icon__about {
  background-color: #fefbe8;
  border-radius: 15px;
  padding: 5px;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
}

.icon__about img {
  width: 12vw;
  max-width: 150px;
}

@media screen and (max-width: 480px) {
  .icon__about img {
    width: 28vw;
  }
}
.msg__item {
  width: calc(33% - 13px);
  margin-right: 20px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: rgba(128, 128, 128, 0.2) 0px 8px 24px;
  box-shadow: rgba(128, 128, 128, 0.2) 0px 8px 24px;
  padding: 15px;
}

@media not screen and (min-width: 649px) {
  .msg__item {
    width: 100%;
    margin: 0;
  }
}
.msg__item img {
  margin-bottom: 20px;
  /* border-bottom: 1px solid #252525; */
}

.msg__item p {
  font-size: 14px;
  text-align: left;
  letter-spacing: 0.03em;
  line-height: 2;
}

@media screen and (max-width: 480px) {
  .msg__item p {
    line-height: 1.8;
    margin-bottom: 10px;
  }
}
.rsn01, .rsn02, .rsn03 {
  position: relative;
  padding: 10px;
  border: 1px solid #252525;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
}

.rsn01 div, .rsn02 div, .rsn03 div {
  position: absolute;
  top: -170px;
  left: 10%;
  width: 20vw;
}

@media screen and (min-width: 481px) and (max-width: 650px) {
  .rsn01 div, .rsn02 div, .rsn03 div {
    top: -120px;
    left: 23%;
    width: 50vw;
  }
}
@media screen and (max-width: 480px) {
  .rsn01 div, .rsn02 div, .rsn03 div {
    top: -100px;
    left: 22%;
    width: 50vw;
  }
}
.rsn01 div img, .rsn02 div img, .rsn03 div img {
  width: 220px;
}

@media screen and (min-width: 481px) and (max-width: 650px) {
  .rsn01 div img, .rsn02 div img, .rsn03 div img {
    width: 180px;
  }
}
@media screen and (max-width: 480px) {
  .rsn01 div img, .rsn02 div img, .rsn03 div img {
    width: 200px;
  }
}
@media not screen and (min-width: 649px) {
  .rsn01, .rsn02 {
    margin-bottom: 120px;
  }
}
.items__wrap {
  background-color: #fffef5;
  padding: 10px 10px;
  border: 1px solid #252525;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 480px) {
  .items__wrap {
    padding: 10px 10px 0;
  }
}
.items__wrap p {
  text-align: left;
}

.items__wrap-tac {
  background-color: #fffef5;
  padding: 30px 10px;
  border: 1px solid #252525;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
}

.items__wrap-tac p {
  text-align: center;
}

/*==================================================
 TOP main
===================================*/
@media screen and (max-width: 480px) {
  .frontpage_inner {
    font-size: 15px;
    letter-spacing:0.4px;
  }
}
.main__wrap {
  width: 100%;
  margin-bottom: 50px;
}

/*================
TOP NEWS 新着情報
===================*/
.section__news {
  background-color: rgba(82, 153, 255, 0.8705882353);
  padding: 30px 0;
}

@media screen and (max-width: 480px) {
  .section__news {
    padding: 0px 0px 30px;
  }
}
.news_title {
  color: #109b58;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.news_list {
  margin: 20px 0;
}

.news_list ul {
  margin: 30px;
}

.news_list ul li {
  padding: 10px 5px;
  border-bottom: 1px dashed #0aac5e;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_list ul li:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .news_list ul li {
    padding: 8px 5px;
  }
  .news_list ul {
    margin: 5px;
  }
}
.news_list_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

span.news_category {
  display: inline-block;
  background-color: #FDFBE8;
  border: 1px solid #252525;
  border-radius: 5px;
  padding: 2px 5px;
  min-width: 70px;
  font-size: 11px;
  text-align: center;
  margin-right: 5px;
}

.news_list p {
  text-align: center;
}

.news_list a {
  display: block;
}

.date {
  font-size: 16px;
  margin-right: 10px;
  color: #252525;
}

@media not screen and (min-width: 480px) {
  .date {
    font-size: 12px;
  }
}
.category {
  display: inline-block;
  color: #fff;
  width: 120px;
  font-size: 14px;
  text-align: center;
  margin-right: 10px;
  padding: 2px 10px;
  background-color: #109b58;
  border-radius: 5px;
}

@media not screen and (min-width: 649px) {
  .category {
    width: 30vw;
    font-size: 12px;
  }
}
.news_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: wrap;
  white-space: normal;
}

@media not screen and (min-width: 480px) {
  .news_text {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  .news_text-event {
    font-size: 13px;
  }
}
.news_text a {
  color: #252525;
}

.news_btn {
  display: block;
  text-align: center;
  margin: 20px auto;
  max-width: 500px;
}

@media not screen and (min-width: 649px) {
  .news_btn {
    margin: 20px auto;
    width: 50vw;
  }
}
.news_btn a {
  color: #0aac5e;
  border: 1px solid #0aac5e;
  border-radius: 10px;
  background-color: #fff;
}

.btn {
  color: #0aac5e;
  padding: 10px 50px;
  background: #fff;
  border: 2px solid #0aac5e;
  border-radius: 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 1100px) {
  .btn:hover {
    color: #fff;
    background: #0aac5e;
  }
}
.btn:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  padding-left: 10px;
}

@media screen and (max-width: 649px) {
  .news_container {
    width: 100%;
    padding: 0 20px;
  }
  .news_text a,
  .news_text-event a {
    display: block;
    margin-top: 0px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.news__img01 {
  position: absolute;
  top: -5%;
  left: 30%;
}

.news__img01 img {
  width: 75px;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

.news__img02 {
  position: absolute;
  top: 0%;
  right: 30%;
}

.news__img02 img {
  width: 80px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

@media screen and (min-width: 650px) and (max-width: 1099px) {
  .news__img01 {
    left: 25%;
  }
  .news__img02 {
    top: 4%;
    right: 25%;
  }
}
@media not screen and (min-width: 649px) {
  .news__img01 {
    top: -4%;
    left: 10%;
  }
  .news__img01 img {
    width: 60px;
  }
  .news__img02 {
    top: 4%;
    right: 15%;
  }
  .news__img02 img {
    width: 60px;
  }
}
.fuwafuwa {
  -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
          animation: fuwafuwa 3s ease-in-out infinite alternate;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
}

.fuwafuwa2 {
  -webkit-animation: fuwafuwa2 3s ease-in-out infinite alternate;
          animation: fuwafuwa2 3s ease-in-out infinite alternate;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
@-webkit-keyframes fuwafuwa2 {
  0% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
  50% {
    -webkit-transform: translate(0, 7px) rotate(0deg);
            transform: translate(0, 7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
}
@keyframes fuwafuwa2 {
  0% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
  50% {
    -webkit-transform: translate(0, 7px) rotate(0deg);
            transform: translate(0, 7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
}
.campaign {
  background-color: #fff;
  background: url(https://ydtc.jp/wp-content/themes/ydtc/img/bg_gold.webp);
  background-size: cover;
  padding: 100px 0;
}

.campaign picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.campaign p {
  text-align: center;
}

.listing-item {
  position: relative;
}

.category-display {
  position: absolute;
  top: 0;
  right: 0;
}

/*=================================
TOP slider
==================================*/
.slider1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px calc(50% - 50vw);
  width: 100vw;
  height: 300px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .slider1 {
    height: 200px;
  }
}
.slider1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}

.slider1 li {
  width: 300px;
  list-style: none;
}

.slider1 ul:first-child {
  -webkit-animation: slide1 150s -75s linear infinite;
          animation: slide1 150s -75s linear infinite;
}

.slider1 ul:last-child {
  -webkit-animation: slide2 150s linear infinite;
          animation: slide2 150s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
/*=================================
TOP スクール
==================================*/
.section__school, .section__juniorteam, .section__clubmember, .section__rental {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section__school {
  position: relative;
  text-align: center;
  background-color: rgba(91, 194, 144, 0.8588235294);
}

.school_slider {
  background-color: rgba(255, 255, 255, 0);
}

@media screen and (max-width: 480px) {
  .school_swiper_wrap {
    width: 90vw;
    margin: 0 auto;
  }
}
.school__items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin: 50px 0px 0px;
}

@media screen and (max-width: 480px) {
  .school__items {
    display: block;
    margin: 20px 0px 30px;
  }
}
.school__items div {
  width: 40%;
}

.school__items div img {
  border: 1px solid #252525;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 15px;
}

@media screen and (max-width: 480px) {
  .school__items div {
    width: 100%;
  }
  .school__items div img {
    padding: 2px;
  }
}
.school__items div p:first-child {
  display: block;
  font-size: 18px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 10px;
}

.school__items div .otn {
  background-color: #fabe00;
  color: #fff;
  line-height: 2.5;
  border-radius: 5px;
}

.school__items div .kdm {
  background-color: #f75427;
  color: #fff;
  line-height: 2.5;
  border-radius: 5px;
}

.tkn {
  background: -webkit-gradient(linear, left top, right top, from(rgba(7, 98, 182, 0.98)), color-stop(46%, rgb(60, 172, 253)), to(rgb(15, 210, 238)));
  background: linear-gradient(90deg, rgba(7, 98, 182, 0.98), rgb(60, 172, 253) 46%, rgb(15, 210, 238));
  color: #fff;
  line-height: 2.5;
  border-radius: 5px;
}

.school__img01 {
  position: absolute;
  top: 5%;
  left: 0;
}

@media screen and (max-width: 480px) {
  .school__img01 {
    top: 0px;
    left: 0px;
  }
}
@media screen and (min-width: 1100px) {
  .school__img01 {
    top: 0px;
    left: 0px;
  }
}
.school__img01 img {
  width: 13vw;
  max-width: 160px;
}

@media screen and (max-width: 480px) {
  .school__img01 img {
    width: 100px;
  }
}
.school__img02 {
  position: absolute;
  right: 0px;
  bottom: 5%;
}

@media screen and (max-width: 480px) {
  .school__img02 {
    right: 0px;
    top: 30px;
  }
}
.school__img02 img {
  width: 10vw;
}

@media not screen and (min-width: 649px) {
  .school__img02 img {
    width: 20vw;
  }
}
.school__img03 {
  position: absolute;
  right: 0px;
  top: 260px;
}

@media screen and (min-width: 649px) {
  .school__img03 {
    right: 0px;
    top: 20%;
  }
}
@media not screen and (min-width: 480px) {
  .school__img03 {
    top: 20%;
  }
}
.school__img03 img {
  width: 200px;
}

@media screen and (min-width: 649px) {
  .school__img03 img {
    width: 15vw;
    max-width: 180px;
  }
}
@media not screen and (min-width: 480px) {
  .school__img03 img {
    width: 18vw;
  }
}
.school__img04 {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

@media not screen and (min-width: 649px) {
  .school__img04 {
    left: 5%;
    bottom: 10%;
  }
}
@media screen and (max-width: 480px) {
  .school__img04 {
    left: 3%;
    bottom: 3%;
  }
}
.school__img04 img {
  width: 70px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

@media screen and (min-width: 649px) {
  .school__img04 img {
    width: 7vw;
    max-width: 130px;
  }
}
@media not screen and (min-width: 480px) {
  .school__img04 img {
    width: 12vw;
  }
}
.school__img05 {
  position: absolute;
  right: 120px;
  top: 130px;
}

@media screen and (max-width: 1000px) {
  .school__img05 {
    left: 0px;
    top: 70px;
  }
}
.school__img05 img {
  width: 150px;
}

@media screen and (max-width: 1000px) {
  .school__img05 img {
    width: 85px;
  }
}
.school__img06 {
  position: absolute;
  right: 0px;
  top: 10%;
}

@media screen and (max-width: 480px) {
  .school__img06 {
    right: 17px;
    top: 74px;
  }
}
.school__img06 img {
  width: 8vw;
}

@media screen and (max-width: 480px) {
  .school__img06 img {
    width: 47px;
  }
}
.school__img08 {
  position: absolute;
  left: 5%;
  top: 0px;
}

@media screen and (max-width: 480px) {
  .school__img08 {
    left: 0px;
    top: 18%;
  }
}
.school__img08 img {
  width: 150px;
}

@media screen and (min-width: 480px) and (max-width: 1099px) {
  .school__img08 img {
    width: 16vw;
  }
}
@media screen and (max-width: 479px) {
  .school__img08 img {
    width: 16vw;
  }
}
.school__img09 {
  position: absolute;
  right: 50px;
  top: 0%;
}

@media screen and (min-width: 480px) and (max-width: 1099px) {
  .school__img09 {
    right: 10px;
  }
}
@media screen and (max-width: 479px) {
  .school__img09 {
    right: 0px;
    top: 17%;
  }
}
.school__img09 img {
  width: 15vw;
  max-width: 200px;
}

@media screen and (min-width: 480px) and (max-width: 1099px) {
  .school__img09 img {
    width: 13vw;
  }
}
@media screen and (max-width: 479px) {
  .school__img09 img {
    width: 18vw;
  }
}
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  max-width: 250px;
  margin: 20px auto;
  padding: 0 20px;
  border: 2px solid #109b58;
  border-radius: 100px;
  background-color: #fff;
  color: #109b58;
  font-size: 1em;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1100px) {
  .button:hover {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
  }
}
.button::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #109b58;
  border-right: 2px solid #109b58;
  content: "";
}

.button a {
  padding: 0.5em 1.5em;
}

.button-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 200px;
  margin: 20px auto;
  border-radius: 5px;
  background-color: #0aac5e;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 1100px) {
  .button-02:hover {
    background-color: #109b58;
  }
}
.button-02 a {
  display: block;
  padding: 0.9em 2em;
}

.button-03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 200px;
  margin: 20px auto;
  padding: 0.9em 1em;
  border: 1px solid #252525;
  border-radius: 25px;
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #333;
  font-size: 1em;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.button-03:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
}

.button-04 {
  width: 250px;
  margin: 20px auto;
  padding: 0.9em 1em;
  border: none;
  border-radius: 25px;
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: #333;
  font-size: 1em;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.button-04:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
  background-color: #0aac5e;
  color: #fff;
}
.button-05 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 340px;
  height: 90px;
  margin: 0 auto;
  border: none;
  border-radius: 100px;
  background: #109b58;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s;
  box-shadow:#085530 0px 6px 0px;;

  span {
    font-size: 0.5em;
  }
}

@media not screen and (min-width: 649px) {
  .button-05 {
    width: 90%;
    height: 80px;
    font-size: 1.3em;
  }
}
.button-05:hover {
  background-color: #109b58;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.button-05:hover a {
  transform: scale(1.03);
}
.button-05:hover + .bnr_copy {
  transform: scale(1.03);
}

.button-05 a {
  display: block;
  line-height: 1.3;
  transition: all 0.3s;
  padding: 30px 0 10px;
}
.b-shadow {
  border: 1px solid #252525;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 0 3px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 3px;
  /* margin: 0px 7px; */
}

.bnr_copy {
    border-radius: 20px;
    padding: 5px 10px;
    width: fit-content;
    margin: auto;
    line-height: 1.2;
    background-color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    z-index: 1;
    transition: all .3s;

}



/*=================================
スクールページ
 ==================================*/

.cta {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;

  .bnr_copy {
    position: absolute;
    top: 28px;
  }
}

/*=================================
TOP 育成チーム
==================================*/
.section__juniorteam {
  background-image: url(https://ydtc.jp/wp-content/themes/ydtc/img/bg_junior.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
}

@media not screen and (min-width: 650px) {
  .section__juniorteam {
    background-image: url(https://ydtc.jp/wp-content/themes/ydtc/img/bg_junior-sm.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
  }
}
.junior__items {
  margin: 50px 0 -6px;
}

@media screen and (max-width: 480px) {
  .junior__items {
    margin: 20px 0;
  }
}
.eachTextAnime {
  margin-top: 20px;
  line-height: 2;
}

.eachTextAnime span {
  font-size: 15px;
  opacity: 0;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*=================================
TOP クラブ会員
==================================*/
.section__clubmember {
  background: url(https://ydtc.jp/wp-content/themes/ydtc/img/bg_dot.png);
  background-size: 10%;
}

.clubmember__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 20px 0px;
  padding: 0 50px;
}

@media not screen and (min-width: 649px) {
  .clubmember__items {
    margin: 30px 0;
    padding: 0;
    display: block;
    position: relative;
  }
}
.clubmember__items div {
  width: 40%;
}

.clubmember__items span {
  display: block;
  font-size: 12px;
  color: #109b58;
  background-color: #fff;
  border: 1px solid #109b58;
  text-align: center;
  position: absolute;
  left: 26%;
  top: -18%;
  letter-spacing: 1.5px;
  border-radius: 20px;
  padding: 1px 20px;
}

.clubimgs {
  max-width: 1200px;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 680px) {
  .clubimgs {
    display: block;
    margin-top: 10px;
  }
}
.clubimgs img {
  width: 25vw;
  max-width: 380px;
  padding: 5px;
  margin: 5px;
  border-radius: 80px 15px;
  border: 1px solid #252525;
  background-color: #fff;
}

.clubimg1 {
  width: 25vw;
  height: 185px;
  max-width: 380px;
  padding: 5px;
  margin: 5px;
  border-radius: 80px 15px;
  border: 1px solid #252525;
  background: url(https://ydtc.jp/wp-content/themes/ydtc/img/IMG_0615.webp) no-repeat center;
  background-size: cover;
}

.clubimg2 {
  width: 25vw;
  height: 185px;
  max-width: 380px;
  padding: 5px;
  margin: 5px;
  border-radius: 80px 15px;
  border: 1px solid #252525;
  background: url(https://ydtc.jp/wp-content/themes/ydtc/img/IMG_06132.webp) no-repeat center;
  background-size: cover;
}

.clubimg3 {
  width: 25vw;
  height: 185px;
  max-width: 380px;
  padding: 5px;
  margin: 5px;
  border-radius: 80px 15px;
  border: 1px solid #252525;
  background: url(https://ydtc.jp/wp-content/themes/ydtc/img/IMG_0758.webp) no-repeat center;
  background-size: cover;
}

@media screen and (min-width: 681px) and (max-width: 990px) {
  .clubimg1 {
    width: 28vw;
    border-radius: 65px 15px;
  }
  .clubimg2 {
    width: 28vw;
    border-radius: 65px 15px;
  }
  .clubimg3 {
    width: 28vw;
    border-radius: 65px 15px;
  }
}
@media screen and (max-width: 680px) {
  .clubimg1 {
    width: 95%;
    max-width: 350px;
    padding: 2px;
    margin: 16px auto;
    border-radius: 60px 15px;
  }
  .clubimg2 {
    width: 95%;
    max-width: 350px;
    padding: 2px;
    margin: 16px auto;
    border-radius: 60px 15px;
  }
  .clubimg3 {
    width: 95%;
    max-width: 350px;
    padding: 2px;
    margin: 16px auto;
    border-radius: 60px 15px;
  }
}
@media screen and (min-width: 650px) and (max-width: 990px) {
  .clubimgs img {
    width: 23vw;
    padding: 4px;
    border-radius: 65px 15px;
  }
}
@media screen and (max-width: 649px) {
  .clubimgs img {
    width: 95%;
    max-width: 350px;
    padding: 2px;
    border-radius: 60px 15px;
  }
}
/*=================================
TOP レンタル
==================================*/
.section__rental {
  background-color: rgba(250, 190, 0, 0.7490196078);
}

.rental_wrap {
  position: relative;
}

/*==================================================
Map
===================================*/
.section__map {
  background-color: #fefbe8;
  padding: 50px 0;
}

.map {
  text-align: center;
  margin: 0 auto;
}

.map .items__wrap {
  width: 80%;
  margin: 0 auto;
  border: none;
}

.map iframe {
  width: 90vw;
  height: 40vh;
}

@media screen and (min-width: 650px) and (max-width: 1099px) {
  .map iframe {
    min-width: 630px;
  }
}
@media screen and (min-width: 1100px) {
  .map iframe {
    max-width: 1200px;
  }
}
.map__text {
  padding: 20px 0px;
  margin-inline: auto;
}

@media not screen and (min-width: 649px) {
  .map__text {
    padding: 0 5px;
  }
}
.map__item {
  display: block;
  font-size: 18px;
  text-align: left;
  margin-top: 10px;
}

@media not screen and (min-width: 849px) {
  .map__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
    font-size: 15px;
    color: #109b58;
  }
}
.map__table__wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

@media not screen and (max-width: 480px) {
  .map__table__wrap {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #252525;
  }
}
.map__table {
  background-color: #ffffff;
  border-radius: 20px;
  margin: 0 auto;
  border: 0;
}

@media screen and (min-width: 481px) and (max-width: 1099px) {
  .map__table {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .map__table {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .map__table td {
    font-size: 12px;
    border: 0;
  }
}
.map__table td {
  display: block;
  text-align: left;
  border: 0;
  width: 100%;
}

.map__table th {
    display: block;
    border: 0;
    width: 100%;
    border-bottom: 2px solid #0aac5e;
}

.map__table tr {
  display: block;
  background-color: #ffffff;
  padding: 0.35em;
  border: 0;
}

@media screen and (max-width: 480px) {
  .map__table tr {
    width: 100%;
    /* display: flex; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.map__table tr:nth-child(even) {
  background-color: #ffffff;
}

.fa-bus, .fa-car-side, .fa-train-subway {
  color: #0aac5e;
}

/*==================================================
Class スクール
===================================*/
.school_btn {
  border: 1px solid #252525;
  border-radius: 100px;
}

.class__menu {
  margin: 50px auto;
}

@media screen and (max-width: 480px) {
  .class__menu {
    margin: 20px 3px;
  }
}
.class__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.class__menu ul li {
  display: block;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  font-size: 16px;
  color: #fff;
}

.class__menu ul li + li {
  margin-left: 1px;
}

.class__menu ul li .menu__arrow {
  margin-right: 2px;
}

.class__menu ul li a {
  display: block;
  padding: 25px 10px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .class__menu ul li a {
    padding: 15px 3px;
    font-size: 12px;
    line-height: 1.4;
  }
}
.class__menu ul .class__menu__adult {
  background-color: #12a65f;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.class__menu ul .class__menu__adult:hover {
  background-color: #4d9b75;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.class__menu ul .class__menu__kidsjunior {
  background-color: #ff6d45;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.class__menu ul .class__menu__kidsjunior:hover {
  background-color: #f8805e;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.class__menu ul .class__menu__staff {
  background-color: #0762b6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.class__menu ul .class__menu__staff:hover {
  background-color: #327cc2;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.class__menu ul .class__menu__tuitionfee {
  background-color: #12a65f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.class__menu ul .class__menu__tuitionfee:hover {
  background-color: #4d9b75;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.class__menu ul .class__menu__timetable {
  background-color: #ff6d45;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.class__menu ul .class__menu__timetable:hover {
  background-color: #f8805e;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.class__menu__ex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.class__menu__ex .button-04 {
  margin-right: 30px;
  border: 2px solid #109b58;
  color: #109b58;
}

.class__menu__ex .button-04:hover {
  color: #fff;
}

.adult, .staff {
  background-color: #cfe7db;
}

.table_comment {
  margin-left: 5%;
}

.table_comment2 {
  font-size: 13px;
  margin-left: 3%;
}

.class__item {
  border: 1px solid #636363;
  -webkit-box-shadow: 0 5px 0 #636363;
  box-shadow: 0 5px 0 #636363;
  border-radius: 5px;
  background-color: #fff;
  padding: 1rem;
}

@media screen and (max-width: 480px) {
  .class__item {
    margin: 3px !important;
    letter-spacing: 1px !important;
  }
}
.class__item h4 {
  font-size: 22px;
  font-weight: 800;
  color: #109b58;
  margin-top: 10px;
}

.class__item h5 {
  font-size: 16px;
  font-weight: 800;
  color: #109b58;
  margin-top: 10px;
  text-align: left;
}

.class__item p {
  letter-spacing: 1px;
}

.class__txt__wrap {
  background-color: #f2f2f2;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: justify;
}

.class__txt {
  font-size: 20px;
  font-weight: 700;
  color: #109b58;
}

@media not screen and (min-width: 480px) {
  .class__txt {
    font-size: 16px;
  }
  .h3.has-background {
    padding: 1.25em 1.375em !important;
  }
}
.class__items .center {
  margin: 50px auto;
}

.class__intro {
  position: relative;
  padding: 50px;
}

@media not screen and (min-width: 480px) {
  .class__intro {
    padding: 20px 15px 30px;
  }
}
.school_class_img1 {
  position: absolute;
  width: 15vw !important;
  max-width: 150px;
  top: 12%;
  right: 8%;
}

@media screen and (max-width: 729px) {
  .school_class_img1 {
    width: 18vw !important;
    top: 7%;
    right: 0%;
  }
}
.school_class_img2 {
  position: absolute;
  width: 8vw !important;
  max-width: 130px !important;
  -webkit-transform: rotate(140deg);
          transform: rotate(140deg);
  top: 5%;
  right: 22%;
}

@media screen and (max-width: 649px) {
  .school_class_img2 {
    width: 8vw !important;
    top: 3%;
    right: 18%;
  }
}
.school_class_img3 {
  position: absolute;
  width: 7vw !important;
  max-width: 130px !important;
  top: 5%;
  right: 11%;
}

@media screen and (max-width: 649px) {
  .school_class_img3 {
    width: 8vw !important;
    top: 1%;
    right: 6%;
  }
}
.school_class_img4 {
  position: absolute;
  width: 5vw !important;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  max-width: 130px;
  top: 24%;
  right: 7%;
}

@media screen and (max-width: 699px) {
  .school_class_img4 {
    position: absolute;
    width: 5vw !important;
    -webkit-transform: rotate(13deg);
            transform: rotate(13deg);
    top: 10%;
    right: 9%;
  }
}
.adult .adult_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #000;
  width: 80vw;
  max-width: 100%;
  height: 150px;
  margin: 20px auto;
}

.kidsjunior_txt {
  text-align: left;
  letter-spacing: 10px;
}

.kidsjunior .kidsjunior_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #000;
  width: 50vw;
  height: 150px;
  max-width: 100%;
  margin: 20px auto;
}

.kidsimg {
  height: 20vh;
}

.coach_img {
  max-width: 400px;
  margin: 0 auto;
}

.coach-name {
  padding: 15px !important;
  background-color: #fff;
}

.lessonfee {
  text-align: center;
}

.sub_title {
  color: #252525;
  font-size: 20px;
  margin-left: 5%;
}

.lessonfee table {
  margin: 30px auto;
  border: 1px solid #252525;
  border-radius: 5px;
  padding: 20px;
  letter-spacing: 1.5px;
}

.price-table {
  width: 80vw;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
  margin-bottom: 50px;
}

.price-table th, .price-table td {
  border: 1px solid #252525;
  padding: 8px;
}

.price-table th, .clubmember_fee2 th {
  background-color: #109b58;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
}

.clubmember_fee2 td {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.3;
}

figcaption {
  text-align: left;
  font-size: 13px;
  letter-spacing: 1px;
}

.price-table tr:nth-child(even) {
  background-color: #daebe3;
}

.price-table tr:nth-child(odd) {
  background-color: #ffffff;
}

.price-table tr:hover {
  background-color: #109b58;
}

.price-table td {
  text-align: center;
  vertical-align: middle;
}

.sp_menu {
  width: 95vw;
}

.accordion {
  margin: 1.5em 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  list-style: none;
}

.accordion__summary01 {
  display: block;
  background: #109b58;
  font-weight: bold;
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 10px 38px 10px 10px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.4);
}

.accordion__summary02 {
  display: block;
  background: #f75427;
  font-weight: bold;
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 10px 38px 10px 10px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.4);
}

.accordion__summary03 {
  display: block;
  background: #2E35BC;
  font-weight: bold;
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 10px 38px 10px 10px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.4);
}

.accordion__summary01::-webkit-details-marker {
  display: none;
}

.accordion__summary02::-webkit-details-marker {
  display: none;
}

.accordion__summary03::-webkit-details-marker {
  display: none;
}

.accordion__summary01::after {
  content: "+";
  font-size: 1.8em; /* 記号のサイズ */
  color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion__summary02::after {
  content: "+";
  font-size: 1.8em; /* 記号のサイズ */
  color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion__summary03::after {
  content: "+";
  font-size: 1.8em; /* 記号のサイズ */
  color: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion[open] .accordion__summary01::after {
  color: #fff;
  content: "−";
}

.accordion[open] .accordion__summary02::after {
  color: #fff;
  content: "−";
}

.accordion[open] .accordion__summary03::after {
  color: #fff;
  content: "−";
}

.accordion__detail {
  padding: 4px 10px;
  margin: 10px 0;
}

.accordion__text {
  margin: 0;
}

.accordion__summary01 h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 2;
}

.accordion__summary02 h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 2;
}

.accordion__summary03 h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 2;
}

.accordion__summary01 p {
  letter-spacing: 1px;
  color: #fff;
}

.accordion__summary02 p {
  letter-spacing: 1px;
  color: #fff;
}

.accordion__summary03 p {
  letter-spacing: 1px;
  color: #fff;
}

.class_entry h2 {
  text-align: center;
}

.class_entry div {
  padding: 50px;
}

@media screen and (max-width: 480px) {
  .class_entry div {
    padding: 10px;
  }
}
.class_entry div p {
  line-height: 2;
  letter-spacing: 1px;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .class_entry div p {
    line-height: 2;
    text-align: left;
  }
}
.class__timetable__text {
  margin: 50px 0;
}

.trial_msg {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

/*========= スクールモーダル ===============*/
.modal-2__wrap input {
  display: none;
}

.modal-2__open-label,
.modal-2__close-label {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.modal-2__open-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 18px;
  right: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 150px;
  height: 55px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: 10px 0px;
  border: 2px solid #12804b;
  border-radius: 5px;
  background-color: #f7fdfa;
  color: #12804b;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.1rem;
}

.modal-2__open-label img {
  width: 40px;
  margin-right: 10px;
}

@media not screen and (min-width: 649px) {
  .modal-2__open-label img {
    width: 36px;
    margin-right: 0px;
    margin-bottom: 1px;
  }
}
@media not screen and (min-width: 649px) {
  .modal-2__open-label {
    width: 100px;
    height: 60px;
    top: 15px;
    right: 70px;
    letter-spacing: 0.05em;
    font-size: 10px;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    justify-items: center;
  }
}
.modal-2__open-label:hover {
  border: 2px solid #109b58;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.taiken_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 18px;
  right: 260px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 150px;
  height: 55px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: 10px 0px;
  border: 2px solid #2E35BC;
  border-radius: 5px;
  background-color: #f1f1ff;
  color: #2E35BC;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media not screen and (min-width: 649px) {
  .taiken_icon {
    width: 100px;
    height: 60px;
    top: 15px;
    right: 175px;
    letter-spacing: 0.05em;
    font-size: 10px;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    justify-items: center;
  }
}
.taiken_icon img {
  width: 40px;
  margin-right: 8px;
}

@media not screen and (min-width: 649px) {
  .taiken_icon img {
    width: 32px;
    margin-right: 0px;
  }
}
.taiken_icon:hover {
  border: 2px solid #2E35BC;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.fa-circle-user {
  margin-right: 6px;
  font-size: 25px;
}

@media not screen and (min-width: 649px) {
  .fa-circle-user {
    font-size: 19px;
    margin-right: 0px;
  }
}
.modal-2 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: none;
}

.modal-2__open-input:checked + label + input + .modal-2 {
  display: block;
  -webkit-animation: modal-2-animation 0.3s;
  animation: modal-2-animation 0.3s;
}

.modal-2__content-wrap {
  position: absolute;
  left: 50%;
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  background-color: #fefbe8;
  z-index: 2;
  border: 1px solid #252525;
  border-radius: 10px;
}

@media not screen and (min-width: 649px) {
  .modal-2__content-wrap {
    width: 90vw;
  }
}
.modal-2__close-label {
  border-radius: 40px;
  width: 50px;
  height: 50px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 99999;
  font-size: 28px;
}

.round_btn {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%; /* 丸みの度合い */
  background: #0aac5e; /* ボタンの背景色 */
  border: 1px solid #fff;
  z-index: 99;
}

.round_btn::before, .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 21px;
  background: #fff; /* バツ印の色 */
  z-index: 99;
}

.round_btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  z-index: 99;
}

.round_btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 99;
}

.modal-2__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-height: 80vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

@media not screen and (min-width: 768px) {
  .modal-2__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 80vh;
  }
}
.modal-2__content div span {
  font-size: 20px;
  color: #0aac5e;
}

.modal-2__content div a {
  display: block;
  width: 180px;
}

.modal-2__content .button a {
  padding: 0.9em 1em;
}

.modal-2__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.638);
  z-index: 1;
}

@-webkit-keyframes modal-2-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes modal-2-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media not screen and (min-width: 768px) {
  .modal-2__open-label {
    display: block;
    max-width: 90%;
    padding: 0.5em;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }
  .modal-2__close-label {
    top: 50px;
    right: 10px;
  }
  .modal-2__content-wrap {
    width: 90vw;
    height: 80vh;
    padding-top: 30px;
    top: 40%;
  }
  .modal-2__content {
    padding: 33px 21px 35px;
    max-width: 100%;
  }
}
/*========= /スクールモーダル ===============*/
/*========= 体験モーダル ===============*/
.modal-3__wrap input {
  display: none;
}

.modal-3__open-label,
.modal-3__close-label {
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.modal-3__open-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: 12px;
  border: 2px solid #109b58;
  border-radius: 30px;
  background-color: #fff;
  color: #109b58;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}

.modal-3__open-label:hover {
  background-color: #0aac5e;
  color: #fff;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.modal-3 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-3__open-input:checked + label + input + .modal-3 {
  display: block;
  -webkit-animation: modal-3-animation 0.6s;
  animation: modal-3-animation 0.6s;
}

.modal-3__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 850px;
  height: 90%;
  background-color: #fefefe;
  z-index: 10;
  border-radius: 10px;
}

.modal-3__close-label, .modal-4__close-label {
  background-color: #109b58;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 120px;
  height: 40px;
  line-height: 1;
  padding: 10px;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 18px;
}

.modal-3__content, .modal-4__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-height: 85vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}

.modal-3__content div span {
  font-size: 20px;
  color: #0aac5e;
}

.modal-4__content div span {
  font-size: 20px;
  color: #0aac5e;
}

.modal-3__content div a {
  display: block;
  width: 150px;
}

.modal-4__content div a {
  display: block;
  width: 150px;
}

.modal-3__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.538);
  z-index: 1;
}

.modal-4__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.538);
  z-index: 1;
}

.modal-3__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.538);
  z-index: 1;
}

.modal-4__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.538);
  z-index: 1;
}

@-webkit-keyframes modal-3-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-3-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modal-4-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-4-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 520px) {
  .modal-3__open-label {
    max-width: 90%;
    padding: 0.94em 2.1em 0.94em 2.6em;
  }
  .modal-3__close-label {
    top: -17px;
    right: -4%;
  }
  .modal-3__content-wrap {
    width: 90vw;
  }
  .modal-3__content {
    padding: 33px 21px 35px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .modal-4__open-label {
    max-width: 90%;
    padding: 0.94em 2.1em 0.94em 2.6em;
  }
  .modal-4__close-label {
    top: -17px;
    right: -4%;
  }
  .modal-4__content-wrap {
    width: 90vw;
  }
  .modal-4__content {
    padding: 33px 21px 35px;
    max-width: 100%;
  }
}
/*========= /体験モーダル ===============*/
.modal-4__wrap input {
  display: none;
}

.modal-4__open-label,
.modal-4__close-label {
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.modal-4__open-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 250px;
  margin: 0 auto;
  padding: 12px;
  border: 2px solid #109b58;
  border-radius: 30px;
  background-color: #fff;
  color: #109b58;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}

.modal-4__open-label:hover {
  background-color: #0aac5e;
  color: #fff;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.modal-4 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-4__open-input:checked + label + input + .modal-4 {
  display: block;
  -webkit-animation: modal-4-animation 0.6s;
  animation: modal-4-animation 0.6s;
}

.modal-4__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  /* height: 60%; */
  background-color: #fefefe;
  z-index: 10;
  border-radius: 10px;
}

.price-table-sp {
  width: 100%;
  padding: 0;
  margin-top: 50px;
}

.course {
  border: 1px solid #252525;
  margin-bottom: 20px;
  padding: 30px;
  background-color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .course {
    border: none;
    margin-bottom: 0px;
    padding: 10px;
    background-color: #fff;
    text-align: center;
    border-top: none;
  }
}
.course-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.course-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 3px 25px;
  background-color: #f2f2f2;
  border-radius: 15px;
  margin: 30px 0;
}

@media not screen and (min-width: 480px) {
  .course-detail {
    margin: 10px 0;
  }
}
.detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px 10px;
}

.detail-item:last-child {
  width: 62%;
  text-align: center;
  font-size: 23px;
  margin-left: 15px;
}

.detail-item:first-child {
  border-right: 1px solid #252525;
}

@media (max-width: 600px) {
  .detail-item {
    width: 55%;
    text-align: left;
    margin-bottom: 5px;
    letter-spacing: 1px;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media screen and (min-width: 650px) {
  .sp_menu {
    display: none;
  }
}
/*==================================================
taiken
===================================*/
.wp-block-cover {
  background-size: contain;
  background-position: center center;
  max-width: 100%;
}

.taiken__maintext {
  border: 1px solid #000;
  width: 85vw;
  margin: 0 auto;
  padding: 30px;
}

.taiken__maintext .taiken__text {
  font-size: 20px;
}

.taiken__info {
  padding: 2em 0;
  /* max-width: 800px; */
  margin: auto;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.taiken__nagare {
  width: 80vw;
  margin: 0 auto;
}

.taiken__nagare span {
  display: block;
  font-size: 20px;
  color: #3e2209;
  font-weight: 900;
  margin-top: 15px;
}

.taiken__mochimono {
  text-align: left;
}

.taiken__mochimono p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1px;
}

.taiken__msk {
  border: 1px solid #000;
  width: 50vw;
  margin: 0 auto;
  padding: 50px;
}

.taiken__msk p {
  font-size: 20px;
}

.googleforms {
  border: 1px solid #000;
}

/*==================================================
junior team 育成
===================================*/
.sub__title {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 12px;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
}

@media screen and (max-width: 480px) {
  .sub__title {
    font-size: 24px;
    letter-spacing: 5px;
  }
}
.instagram_wrap {
  border-left: 5vw solid #fff;
  border-right: 5vw solid #fff;
  background-color: #fff;
  border: 1px solid #252525;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
  padding: 15px;
}

@media not screen and (min-width: 480px) {
  .instagram_wrap {
    padding: 10px;
  }
}
.bdb a {
  border-bottom: 1px solid #252525;
}

.bdb-green {
  border-bottom: 1px solid #109b58;
  padding-bottom: 5px;
}

.bdt {
  border-top: 1px solid #252525;
  padding-top: 10px;
}

.b-shadow {
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
}

.junior__items p {
  font-size: 20px;
}

.junior__items .left {
  margin: 0 auto 50px 0;
}

.junior__items .right {
  margin: 0 0 50px auto;
}

.junior__item {
  min-width: 350px;
  background-color: #fff;
  margin: 10px auto 15px auto;
  padding: 30px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

@media screen and (max-width: 480px) {
  .junior__item {
    border-radius: 10px;
    margin: 25px auto;
    padding: 10px;
  }
}
.access__items {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  border-radius: 20px;
  background-color: #fff;
  margin: 10px auto 15px auto;
  padding: 30px;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 480px) {
  .access__items {
    width: 90vw;
    border-radius: 10px;
    margin: 25px auto;
    padding: 20px;
    font-size: 13px;
  }
}
.insta_wrap {
  position: relative;
}

.juniorteam_instagram {
  font-size: 18px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, rgb(80, 178, 79)), color-stop(15%, rgb(124, 229, 123)), to(rgb(10, 211, 248)));
  background: linear-gradient(90deg, rgb(80, 178, 79) 1%, rgb(124, 229, 123) 15%, rgb(10, 211, 248));
  border-radius: 11px;
  color: #252525;
  max-width: 410px;
  position: absolute;
  top: -10px;
  z-index: 2;
  padding: 2px 10px;
}

@media screen and (max-width: 480px) {
  .juniorteam_instagram {
    font-size: 16px;
    padding: 2px 5px;
  }
}

.about__juniorteam  {
  background-color: #fff;
}

@media (min-width: 600px) {
  .about__juniorteam {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1200px;
    gap: 30px;
  }
}
.junior__item h2 {
  font-size: 30px;
  color: #0aac5e;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, rgb(80, 178, 79), rgb(10, 211, 248)) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(rgb(80, 178, 79)), to(rgb(10, 211, 248))) 1;
     border-image: linear-gradient(to right, rgb(80, 178, 79), rgb(10, 211, 248)) 1;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .junior__item h2 {
    font-size: 20px;
  }
}
.junior__item p {
  font-size: 18px;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .junior__item p {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.junior__item .shidoho {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  width: 18vw;
  right: 100px;
}

.junior__item .age {
  position: absolute;
  width: 22vw;
  border-radius: 15px;
  overflow: hidden;
}

.juniorteam__pickup table {
  border: 1px solid #252525;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.juniorteam__pickup table th {
  background-color: #109b58;
  padding: 8px;
  width: 30%;
  vertical-align: middle;
}

.juniorteam__pickup .pick_up_sum td {
  background-color: #fff;
  padding: 8px;
  width: 70%;
  vertical-align: middle;
}

.juniorteam__pickup-table {
  border: 1px solid #252525;
}

.juniorteam__pickup-table th {
  background-color: #28a745;
  text-align: left;
  padding: 8px;
  width: 20%;
  vertical-align: middle;
}

.juniorteam__pickup-table td {
  background-color: #fff;
  text-align: left;
  padding: 8px;
  vertical-align: middle;
}

.junior__item .timetable {
  position: absolute;
  width: 200px;
}

.junior__item .entry {
  position: absolute;
  width: 300px;
  bottom: 0;
  border-radius: 15px;
  overflow: hidden;
}

.junior_entry {
  letter-spacing: 2.1px !important;
  font-size: 14px !important;
}

.junior__item .fee {
  position: absolute;
  width: 200px;
  left: 0;
  bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}

.junior__item .service {
  position: absolute;
  width: 200px;
}

.junior__item-02 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 10% auto;
  padding: 30px;
}

@media screen and (max-width: 480px) {
  .junior__item-02 {
    padding: 10px !important;
    line-height: 2 !important;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .junior__item-02 td {
    font-size: 16px;
  }
}
.junior__item-02 .timetable {
  width: 70vw;
  text-align: center;
  margin: 0 auto;
}

.timetable-wrap {
  margin: 0 auto;
  max-width: 600px;
}

.coach {
  border-radius: 30px;
  background-color: #fefbe8;
}

.coach .coach02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  padding: 50px;
}

.coach .coach02 .name-02 {
  font-size: 18px;
}

.name-03 {
  font-size: 12px;
}

.coach .coach02 div {
  background-color: #fff;
  margin: 0 10px;
  border-radius: 15px;
}

.coach .coach02 div p {
  padding: 10px;
  line-height: 0.5;
}

.profile {
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 1px !important;
  width: 450px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
}

.profile span {
  border-radius: 20px;
  padding: 5px 10px;
  background-color: #109b58;
  color: #fdfdfd;
}

@media not screen and (min-width: 700px) {
  .profile {
    width: auto;
    letter-spacing: 0.5px !important;
    margin: 0px 10px;
  }
}
.coach .coach02 div img {
  border: 1px solid #000;
}

.coach-img01, .coach-img02, .coach-img03 {
  max-width: 300px;
}

@media not screen and (min-width: 700px) {
  .profile {
    width: auto;
    letter-spacing: 0.5px !important;
  }
}
.coach .coach02 div img {
  border: 1px solid #000;
}

.coach-img01, .coach-img02, .coach-img03 {
  max-width: 300px;
}

.coach_items {
  background-color: #fdfdfd;
  gap: 30px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.2);
  border: 1px solid #777777;
  border-radius: 15px;
  overflow: hidden;
  max-width: 1200px;
}
.coach_items .img-name {
  width: 100%;
  border-bottom: 1px solid #777777;
  background: -webkit-gradient(linear, left top, right top, from(#109b58), to(#1c975b));
  background: linear-gradient(to right, #109b58, #1c975b);
  color: #fff;
}
.coach_items .img-name::after {
  content: "Kazuya";
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 481px) and (max-width: 1099px) {
  .coach_items {
    gap: 30px;
    margin: 0 10%;
    padding: 20px 30px;
  }
}
@media not screen and (min-width: 480px) {
  .coach_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0%;
    padding: 10px;
  }
}
.coach__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.coach__item .coach__img {
  width: 30vw;
  margin: 5px;
}

.coach__item .coach__text {
  text-align: left;
  letter-spacing: 1px;
}

.coach__item .coach__text .name {
  font-size: 25px;
  letter-spacing: 5px;
}

@media not screen and (min-width: 480px) {
  .coach__item .coach__text .name {
    font-size: 20px;
    letter-spacing: 3px;
  }
}
.junior-car {
  /* max-width: 600px !important; */
  margin: 0 auto;
}

.junior__contact p {
  font-size: 25px;
}

.junior__contact span {
  font-size: 18px;
}

/*==================================================
クラブ会員
===================================*/
.clubmember_mainitem {
  border: 1px solid #252525;
  -webkit-box-shadow: 0 5px 0 #252525;
  box-shadow: 0 5px 0 #252525;
  border-radius: 5px;
  background-color: #fff;
  padding: 1rem;
}

.member__maintext {
  margin: 0 auto;
}

.member__maintext div {
  margin: 50px auto;
  border: 1px solid #000;
}

.member__maintext div p {
  font-size: 18px;
  letter-spacing: 2;
  line-height: 2;
}

.member__maintext div .member__text {
  font-size: 22px;
  padding-bottom: 10px;
}

.swiper-container {
  /* background-color: #8da39826;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); */
  border-radius: 15px;
}

.vk_slider_item_container {
  padding: 10px;
}

.swiper-button-next {
  border-radius: 20px !important;
}

.swiper-button-prev {
  border-radius: 20px !important;
}

.vk_slider_item .vk_slider_item-background-area {
  background-color: transparent;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
}

.shisetsu {
  margin: 30px auto;
  padding: 30px;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #fff;
  letter-spacing: 1.5px;
}

@media not screen and (min-width: 480px) {
  .shisetsu {
    margin: 20px auto;
    padding: 10px;
    letter-spacing: 0.5px;
  }
}
.shisetsu h3 {
  font-size: 18px;
}

.shisetsu p {
  padding-bottom: 10px;
  letter-spacing: 1.5px;
  text-align: left;
}

.shisetsu .photoimg {
  width: 50vw;
  height: 30vh;
  border: 1px solid #000;
  margin: 0 auto;
  padding-top: 100px;
}

.shisetsu .photoimg p {
  text-align: center;
}

.entry_wrap {
  position: relative;
}

.clubmember__entry {
  width: 100%;
}

@media screen and (min-width: 950px) {
  .shisetsu_img {
    width: 30%;
    position: absolute;
    top: 5%;
    right: 5%;
  }
}
.syubetsu {
  border: 1px solid #000;
  padding: 30px;
  font-size: 18px;
  letter-spacing: 2;
  line-height: 2.5;
}

.syubetsu p {
  letter-spacing: 2px;
}

.clubmember__entry {
  text-align: left;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 30px;
  background-color: #fff;
  text-align: center;
}

.clubmember__entry span {
  font-size: 20px !important;
  color: #3e2209;
  font-weight: 900;
  border: none !important;
}

.clubmember__table {
  width: 100%;
  margin: 0 auto;
  letter-spacing: 1px;
  font-size: 14px;
  background-color: #fff;
  border: 2px solid #252525;
  border-radius: 10px;
  overflow: hidden;
}

.clubmember__table th + th {
  border-left: 1px dashed #252525;
}

.clubmember__table tbody tr {
  border-top: 1px solid #252525;
}

.clubmember__table tbody td {
  border-left: 1px dashed #252525;
}

.clubmember__table td {
  font-size: 14px;
}

.thead-light {
  background-color: #109b58;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.kiyaku_wrap {
  padding: 10px;
  background-color: #fff;
}

.class__item h3 {
  font-size: 18px;
}

/*==================================================
スライダーのためのcss
===================================*/
/*画像の横幅を100%にしてレスポンシブ化*/
img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}

.gallery li {
  list-style: none;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc; /*矢印の色*/
  border-right: 2px solid #ccc; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  width: 33% !important;
  list-style: none;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  -webkit-transform: unset !important;
          transform: unset !important; /*画面幅サイズ変更に伴うサムネイル固定*/
}

/*==================================================
rental
===================================*/
.rental__maintext {
  border: 1px solid #000;
  width: 60vw;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  font-size: 20px;
}

.rental__items__wrap {
  border: 1px solid #000;
  width: 60vw;
  margin: 0 auto;
  padding: 30px 10px;
}

.rental__photoimg {
  border: 1px solid #000;
  height: 200px;
  margin-top: 30px;
}

.rental_fee {
  width: 100%;
  border-collapse: collapse;
  letter-spacing: 1px;
}

@media screen and (max-width: 780px) {
  .rental_fee {
    font-size: 13px;
  }
}
.calendar_wrap {
  margin: 20px auto;
  padding-bottom: 20px;
  width: 95%;
  max-width: 850px;        /* 好きな上限 */
  aspect-ratio: 4 / 3;     /* 画面に合わせて自動で高さも変わる */

  iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
}

@media (max-width: 600px) {
  .calendar_wrap { aspect-ratio: 3 / 4; }
}

.event_tennisbear_wrap {
  margin: 10px auto;
  position: relative;
  width: 90%;
  max-width: 890px;
  height: 600px;
  overflow: hidden;
}

.event_tennisbear_wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#event-list h3, .calendar_wrap h3{
  font-size: 18px;
  color: #0aac5e;
  font-weight: 700;
  margin-bottom:10px;
}

.event-section-title span{
 font-size: 12px;
  color: #0aac5e;
}

.event__schedule {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 890px;
  margin: auto;
}

#event-list {
  width: 95%;
  max-width: 890px;
  margin: 0 auto;
  padding-bottom: 20px;

  ul {
    background-color:#fff;
    padding: 15px;
    border: 1px solid #252525;
    border-radius: 8px;
    line-height: 1.3;

    li {
      padding: 10px;
      border-bottom: 1px dotted #d1d1d1;
    }
  }
}

.btn-more {
     display:block;
     margin:12px auto;
     padding:10px 16px;
    font-size: 12px;
    border: 1px solid #252525;
    color: #252525;
    border-radius: 99px;
    background: #0aac5e;
   }

  [hidden] { 
    display: none !important; 
  }


.sr-only { 
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden; 
}

  .event-date {
        font-size: 14px;
        color: #555555;
  }

@media (max-width: 600px) {
  .event-date {
        font-size: 12px;
        color: #555555;
  }
}

.event-title {
  letter-spacing: 0.001em;
}

@media (max-width: 600px) {
.event-title {
  font-size: 13px;
}
}



.rental_fee th,
.event_schedule th {
  background-color: #0aac5e;
  color: #fff;
}

.rental_fee td, .rental_fee th {
  text-align: center;
  vertical-align: middle;
}

td {
  background-color: #fff;
}

th, td {
  border: 1px solid #000;
  padding: 8px;
  width: 20%; /* 各列の幅を同じに設定 */
  height: 25%;
}

.rental_fee td:first-child, .rental_dc td:first-child {
  background-color: #d7efe3;
}

.rental-detail {
  padding: 3px 25px;
  background-color: #f2f2f2;
  border-radius: 15px;
  margin: 30px auto;
}

@media not screen and (min-width: 480px) {
  .rental-detail {
    width: 90vw;
    margin: 10px auto;
  }
}
.tennisbear {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

@media screen and (max-width: 480px) {
  .tennisbear {
    padding-bottom: 90%;
    height: 450px;
  }
}
.tennisbear iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==================================================
event
===================================*/
/* コンテナ設定 */
.event-container {
  display: grid;
  gap: 20px;
  padding: 20px;
}

/* PCでは3カラム、スマホでは1カラム */
@media (min-width: 768px) {
  .event-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .event-container {
    grid-template-columns: 1fr;
  }
}
.event-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.event-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.event-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 15px;
}

.event-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.event-card__date {
  font-size: 14px;
  color: #888;
}

.event-card__category {
  font-size: 12px;
  background: #ff6b6b;
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-block;
}

.event-card__title {
  font-size: 16px;
  font-weight: bold;
}

.event_list {
  background-color: #fff;
  padding: 20px 0;
  border: 1px solid #109b58;
  max-width: 890px;
  width: clamp(300px, 90vw, 890px);
  padding: 20px 10px;
  margin: 20px auto;
}

.event_list ul {
  margin: 50px;
}

.event_list li {
  padding: 15px 5px;
  border-bottom: 1px dashed #0aac5e;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.event_list li:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .event_list li {
    padding: 8px 5px;
  }
  .event_list ul {
    margin: 5px;
  }
}
.event_list p {
  text-align: center;
}

.event_list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*==================================================
CSR
===================================*/
.csr__inner {
  width: 80vw;
  margin: 0 auto;
}

/*==================================================
access アクセス
===================================*/
.access_text {
  letter-spacing: 0.05em;
  text-align: left;
}

.accessmap_container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.accessmap_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.accces__wrap {
  padding: 0 50px;
}

@media screen and (max-width: 480px) {
  .accces__wrap {
    padding: 0 5px;
  }
}
/*==================================================
404
===================================*/
.entry-404 {
  margin: 120px auto;
  padding-bottom: 85px;
  text-align: center;
}

.entry-404-head {
  color: #7bc085;
  font-family: sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #808080;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 24px;
}

@media not screen and (min-width: 480px) {
  .entry-404 {
    margin: 120px auto;
    padding: 0px 20px 85px;
    text-align: center;
  }
  .entry-404-head {
    color: #7bc085;
    font-family: sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 36px;
  }
  .entry-404-lead {
    color: #808080;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
  }
}
.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #808080;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn .btn {
  background: #ebebeb;
  color: #8d8d8d;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}

/*==================================================
footer
===================================*/
.footer {
  border-top: 2px solid #109b58;
  z-index: 9999;
}

.breadcrumbs__wrap {
  padding: 5px 20px;
}

.breadcrumbs__wrap p {
  font-size: 13px;
  color: #252525;
}

.footer__inner {
  text-align: center;
  background-color: #fff;
  padding: 0 50px;
}

@media screen and (max-width: 480px) {
  .footer__inner {
    padding: 0;
  }
}
.copyright {
  width: 100vw;
  background-color: #109b58;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .copyright {
    height: 15vh;
    padding-top: 2vh;
  }
}
footer .column__items {
  max-width: 240px;
}

footer .column__item a {
  height: 25px;
}

.copyright small {
  color: #fff;
}

.footer__nav {
  text-align: left;
}

.footer__logo img {
  width: 200px;
}

.footer__nav .column__items {
  padding: 20px;
}

.footer__nav .column__items img {
  max-width: 160px;
}

@media screen and (max-width: 780px) {
  .footer__nav .column__items {
    padding: 2px;
  }
}
.footer__nav dl dt {
  font-size: 0.8rem;
}

.footer__nav dl dd {
  font-size: 0.8rem;
}

.footer__text {
  padding: 5px;
}

.footer__btn {
  margin: 10px 0;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
/*==================================================
コンタクトフォーム
===================================*/
.wpcf7 {
  width: 90%;
  margin: 0 auto;
  max-width: 100vw;
  overflow: hidden;
}

.wpc7 form {
  margin: 0 auto;
}

/* 
.wpcf7-form-control-wrap {
  display: inline-block;
  width: 70%;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 480px) {
  .wpcf7-form-control-wrap {
    width: 100%;
  }
} */
/* 
.wpcf7-form-control-wrap input {
  border-radius: 5px;
  background-color: #ffffff;
  max-width:700px;
} */
@media screen and (max-width: 480px) {
  .wpcf7-form-control-wrap input {
    max-width: 330px;
    vertical-align: middle;
  }
}
.cf-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2em 0;
  border-bottom: 1px dashed #ccc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 800px;
  margin: auto;
}

@media not screen and (min-width: 480px) {
  .cf-area {
    padding: 1em 0;
  }
}
.cf-area:last-child {
  border-bottom: none;
}

.cf-area dt {
  width: 200px;
  padding-right: 15px;
  text-align: right;
  line-height: 1.5em;
}

.cf-area dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cf-area input, .cf-area textarea {
  width: 100%;
  padding: 0.8em;
  border: none;
  background-color: #e7e7e7;
  border-radius: 10px;
  font-size: 12px;
  resize: vertical;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cf-area input:focus, .cf-area textarea:focus {
  outline: none;
  background: #f2f2f2;
  border-radius: 10px;
}

.cf-required {
  background: #e21b21;
  color: #fff;
  font-size: 0.8em;
  padding: 0 5px 2px;
  border-radius: 2px;
}

.cf-required {
  background: #e21b21;
  color: #fff;
  font-size: 0.8em;
  padding: 0 5px 2px;
  border-radius: 2px;
}

.cf-optional {
  background: #109b58;
  color: #fff;
  font-size: 0.8em;
  padding: 0 5px 2px;
  border-radius: 2px;
}

.cf-send input {
  display: block;
  background-color: #109b58;
  width: 280px;
  height: 60px;
  margin: 30px auto 0;
  border: none;
  border-radius: 10px;
  color: #fff;
  -webkit-box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.3em;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cf-send input:hover {
  -webkit-filter: brightness(1.25);
          filter: brightness(1.25);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  background-color: #fce3e3;
  border: none;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cf-area {
    display: block;
    font-size: 12px;
  }
  .cf-area dt {
    width: 100%;
    margin-bottom: 5px;
    padding-right: 0;
    text-align: left;
    line-height: 1.5em;
  }
}
input[type=radio] {
  font-size: 18px;
  position: absolute;
  z-index: 5;
  opacity: 0;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

span.wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid #252525;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #109b58;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

/* Grid style */
.display-posts-listing.grid {
  display: grid;
  grid-gap: 40px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 15px;
}

.display-posts-listing.grid .title {
  display: block;
  font-size: 18px;
  color: #252525;
}

@media screen and (max-width: 480px) {
  .display-posts-listing.grid .title {
    font-size: 16px;
  }
}
.category-display-label {
  display: none;
}

.category-display {
  font-size: 15px;
  color: #fff;
  background-color: #109b58;
  padding: 0 2px;
  width: 120px;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .category-display {
    font-size: 13px;
    color: #fff;
    background-color: #109b58;
    padding: 0 2px;
    width: 90px;
  }
}
.display-posts-listing.grid img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width: 649px) {
  .display-posts-listing.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .display-posts-listing.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.school__cancel {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .school__cancel {
    width: 90%;
    margin: 0 auto;
    font-size: 12px;
  }
}
.frontpage_inner {
  width: 100vw;
}

a.anchor {
  display: block;
  padding-top: 200px;
  margin-top: -200px;
}

/* タブ切り替え */
.tab-container {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 50px auto;
  border-radius: 10px;
}

.tab-label {
  width: 33.3333333333%;
  height: 50px;
  border-bottom: 3px solid #109b58;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 15px;
  text-align: center;
  color: #636363;
  display: block;
  float: left;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tab-label:nth-of-type(1) {
  border-top-left-radius: 10px;
}

.tab-label:nth-of-type(2) {
  border-left: 2px solid #aaaaaa;
  border-right: 2px solid #aaaaaa;
}

.tab-label:nth-of-type(3) {
  border-right: 2px solid #aaaaaa;
}

.tab-label:nth-of-type(4) {
  border-top-right-radius: 10px;
}

/* ラジオボタン非表示 */
input[name=tab-group] {
  display: none;
}

.tab-panel {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

@media not screen and (min-width: 650px) {
  .tab-panel {
    padding: 20px 10px 0;
  }
}
/* 選択タブ */
.tab-container input:checked + .tab-label {
  background-color: #109b58;
  color: #fff;
}

.tab-panel-content .tab-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* 選択タブのみ表示 */
#tab-all:checked ~ #panel-all,
#tab-school:checked ~ #panel-school,
#tab-club:checked ~ #panel-club,
#tab-event:checked ~ #panel-event {
  display: block;
}

.tab-label {
  width: 25%;
}

@media not screen and (min-width: 649px) {
  .tab-container {
    padding-bottom: 20px;
    margin: 20px auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tab-label:hover {
    opacity: 0.75;
  }
}/*# sourceMappingURL=style.css.map */