@charset "UTF-8";
/* ====================
 Google Fonts
==================== */
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Kosugi+Maru&display=swap");
.radio-2025spring_body {
  font-family: "BIZ UDPGothic", sans-serif;
  background-color: #FFDEE9;
  background-image: linear-gradient(-45deg, #FFDEE9 50%, #B5FFFC 100%);
  font-size: 15px;
}

.radio-2025spring_body .center {
  text-align: center;
}

.radio-2025spring_body img {
  vertical-align: middle;
}

/*===== ▼▼▼ 花びらアニメーション ▼▼▼ =====*/
.sakura {
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.sakura li {
  width: 18px;
  position: absolute;
  list-style: none;
  /* top: -50px; */
  top: 0;
  animation: fall 4s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

@keyframes fall {
  to {
    top: 120%;
  }
}
@keyframes rotate1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-80deg) rotateX(180deg);
  }
}
@keyframes rotate2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
.sakura li:nth-child(1) {
  left: 0;
  animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(2) {
  left: 5vw;
  animation: fall 15s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.sakura li:nth-child(3) {
  left: 15vw;
  animation: fall 9s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(4) {
  left: 30vw;
  animation: fall 8s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(5) {
  left: 40vw;
  animation: fall 10s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(6) {
  left: 55vw;
  animation: fall 11s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(7) {
  left: 65vw;
  animation: fall 7s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(8) {
  left: 50vw;
  animation: fall 7s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

/*===== ▲▲▲ 花びらアニメーション ▲▲▲ =====*/
.radio-2025spring_body #hdv {
  background: url(/radio/information/images/bg_upper.png) no-repeat;
  width: 100%;
}

.radio-2025spring_body #hd_ttl {
  text-align: center;
  margin: 0 0 2em;
}

.radio-2025spring_body .kv {
  position: relative;
  height: 750px;
  width: 1080px;
  margin: 0 auto;
}

.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
}

.bg p {
  width: 100%;
  height: 100%;
}

.bg p:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  animation-name: bganime;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  background: url(/radio/information/images/kv_bg.png) no-repeat;
  bottom: 0;
}

@keyframes bganime {
  0% {
    height: 0;
    width: 100%;
  }
  100% {
    height: 100%;
  }
}
.kv_img {
  position: relative;
  height: 100%;
  width: 100%;
}

.kv_img img {
  position: absolute;
}

.kv_img img#msg {
  top: 75px;
  left: 140px;
}

.kv_img img#fm {
  top: 35px;
  left: 360px;
}

.kv_img img#chara1 {
  top: 315px;
  left: -80px;
  z-index: 100;
}

.kv_img img#chara2 {
  top: 248px;
  left: 224px;
  z-index: 300;
}

.kv_img img#chara3 {
  top: 294px;
  right: -48px;
  z-index: 100;
}

.greet {
  font-family: "Kosugi Maru", sans-serif;
  position: relative;
  width: 1080px;
  background: #FFFFFF;
  text-align: center;
  border: 5px solid #f393af;
  color: #eb4e7c;
  font-size: 30px;
  font-weight: bold;
  border-radius: 100vh;
  -webkit-border-radius: 100vh;
  -moz-border-radius: 100vh;
  margin: 2em auto;
  padding: 1em;
  box-sizing: border-box;
}

.greet:after,
.greet:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
}

.greet:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 15px;
  border-right-width: 15px;
  margin-left: -15px;
  border-bottom-color: #FFFFFF;
}

.greet:before {
  border-color: rgba(0, 0, 255, 0);
  border-top-width: 26px;
  border-bottom-width: 26px;
  border-left-width: 20px;
  border-right-width: 20px;
  margin-left: -20px;
  margin-bottom: 5px;
  border-bottom-color: #f393af;
}

.greet span {
  font-style: italic;
}

.greet-no {
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
  color: #eb4e7c;
  font-size: 30px;
  font-weight: bold;
  border-radius: 100vh;
  -webkit-border-radius: 100vh;
  -moz-border-radius: 100vh;
  margin: 2em auto;
}

.radio-2025spring_body section {
  width: 1080px;
  margin: 0 auto 2em;
  padding: 2em 0 0;
}

.radio-2025spring_body section#nav {
  margin: 2em 0 4em;
  width: 100%;
}

.radio-2025spring_body section#nav ul {
  display: flex;
  justify-content: center;
  background-color: #f393af;
  padding: 1em 0;
  position: relative;
  z-index: 2000;
}

.radio-2025spring_body section#nav li {
  min-width: 12em;
  border-radius: 1em;
  border: 2px solid #ffffff;
  text-align: center;
  font-size: 18px;
  padding: 0.5em 0;
  margin: 0 1em 0 0;
}

.radio-2025spring_body section#nav li:last-child {
  margin: 0;
}

.radio-2025spring_body section#nav li a {
  display: block;
  color: #ffffff;
}

.radio-2025spring_body section .ttl {
  width: 840px;
  text-align: center;
  margin: 0 auto 2em;
}

.radio-2025spring_body section .box {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 2vh 1.1vh;
  border-radius: 2em;
}

.radio-2025spring_body section .box li {
  margin: 2vh;
}

.radio-2025spring_body section .box .p-title {
  font-size: 23px;
  color: #1c050b;
  padding: 0.5em;
  font-weight: 600;
  position: relative;
  line-height: normal;
  height: 40px;
}

.radio-2025spring_body section .box .p-title span {
  font-size: 0.7em;
  font-weight: 100;
}

.radio-2025spring_body section .box .p-time {
  font-size: 19px;
  color: #eb4e7c;
  margin: 0 0 0.5em;
  padding: 0.5em 1em;
  font-weight: bold;
}

.radio-2025spring_body section .box .p-time span {
  background-color: rgb(235, 77, 125);
  padding: 10px;
  border-radius: 1em;
  color: #fff;
}

.radio-2025spring_body section .box .p-time-repeat {
  color: #eb4e7c;
  padding: 0 0 0 1.5em;
}

.radio-2025spring_body section .box li p img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.radio-2025spring_body section#new .new-box .p-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  padding: 0 0 10px 0;
}
.radio-2025spring_body section#new .new-box .p-cast-text {
  font-size: 1.5em;
  text-align: center;
}
.radio-2025spring_body section#new .new-box .p-time {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #eb4e7c;
  margin: 0 0 10px 0;
}
.radio-2025spring_body section#new .new-box .p-time span {
  background-color: #eb4e7c;
  color: #fff;
  border-radius: 1em;
  padding: 10px;
}
.radio-2025spring_body section#new .new-box .in-flex {
  display: flex;
  align-items: center;
  margin: 1em 0;
}
.radio-2025spring_body section#new .new-box .in-flex .p-img {
  text-align: center;
  width: 44%;
  margin: 0 4% 0 0;
}
.radio-2025spring_body section#new .new-box .in-flex .p-img img {
  width: 100%;
  background-color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
}
.radio-2025spring_body section#new .new-box .in-flex .p-text {
  font-size: 21px;
  line-height: 1.75em;
  width: 52%;
}
.radio-2025spring_body section#new .new-box ul.p-cast {
  display: flex;
  justify-content: space-evenly;
  margin: 2em 0;
}
.radio-2025spring_body section#new .new-box ul.p-cast li {
  text-align: center;
  font-size: 18px;
  width: 320px;
  position: relative;
  font-weight: 600;
}
.radio-2025spring_body section#new .new-box ul.p-cast li span.position {
  position: absolute;
  top: -0.5em;
  transform: rotate(-5deg);
  left: -1em;
  background: #ffff00;
  padding: 0.25em 0.5em;
  font-style: italic;
  filter: drop-shadow(3px 3px 2px black);
}
.radio-2025spring_body section#new .new-box ul.p-cast li span.small {
  font-size: 14px;
}
.radio-2025spring_body section#new .new-box .contact {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  position: relative;
  z-index: 2000;
}

.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
}

.personality {
  margin: 2em auto 0;
}

.personality .pic {
  margin: 0 auto 0.25em;
  width: 300px;
  position: relative;
}

.personality .name {
  font-size: 18px;
  text-align: center;
}

.personality .name span {
  font-size: 14px;
}

.personality .position {
  position: absolute;
  top: -0.5em;
  transform: rotate(-5deg);
  left: -1em;
  background: #ffffff;
  padding: 0.25em 0.5em;
  font-style: italic;
  filter: drop-shadow(3px 3px 2px black);
}

.p-assistant {
  position: relative;
  /* margin: 1em 0 0; */
  width: 50%;
}

.p-assistant p.a-name {
  font-size: 18px;
}

.p-assistant p.a-name span:nth-of-type(1) {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: #ff0000;
  display: inline-block;
  line-height: 2em;
  color: #fff;
  margin: 0 0.25em 0 0;
  text-align: center;
  font-size: 21px;
}

.p-assistant p.a-name span:nth-of-type(2) {
  font-size: 21px;
  font-weight: 600;
}

.p-assistant img {
  width: 210px;
}

.p-assistant p.fukidashi {
  position: absolute;
  top: 35%;
  left: 40%;
}

/*===== ページトップへ =====*/
#page_top {
  position: fixed;
  right: 30px;
  background: #f393af;
  opacity: 0.75;
  font-size: 16px;
  padding: 0.5em 1em;
  z-index: 3000;
}

#page_top a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #ffffff;
}

@media screen and (min-width: 900px) {
  .radio-2025spring_body .sp {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .radio-2025spring_body {
    font-size: 4vw;
  }
  .radio-2025spring_body .pc {
    display: none;
  }
  .sakura li {
    width: 4vw;
  }
  .radio-2025spring_body #hdv {
    width: auto;
    padding: 1em 2% 0;
    margin: 0 auto;
    overflow: hidden;
    background-size: 200%;
    background-position: top center;
  }
  .radio-2025spring_body #hd_ttl {
    margin: 0 0 1em;
  }
  .radio-2025spring_body .kv {
    height: 100%;
    width: auto;
    aspect-ratio: 1080/750;
  }
  .radio-2025spring_body section {
    width: 96%;
  }
  .bg p:after {
    background-size: contain;
  }
  .kv_img img#msg {
    top: 10%;
    left: 14%;
    width: 3%;
  }
  .kv_img img#fm {
    top: 5%;
    left: 38%;
    width: 58%;
  }
  .kv_img img#chara1 {
    left: -7%;
    top: 41%;
    width: 47%;
  }
  .kv_img img#chara2 {
    top: 35%;
    left: 22%;
    width: 62%;
  }
  .kv_img img#chara3 {
    top: 38%;
    right: -5%;
    width: 35%;
  }
  .greet {
    width: auto;
    font-size: 4.5vw;
    margin: 1.5em auto 0;
  }
  .radio-2025spring_body section#nav {
    width: 96%;
    margin: 0 auto;
  }
  .radio-2025spring_body section#nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f393af;
    padding: 1em 0.5em;
    border-radius: 1em;
  }
  .radio-2025spring_body section#nav li {
    width: 40%;
    border-radius: 10px;
    border: 2px solid #ffffff;
    text-align: center;
    padding: 0.5em;
    font-size: 3vw;
  }
  .radio-2025spring_body section#nav li:nth-of-type(1) {
    margin: 0 1em 1em 0;
  }
  .radio-2025spring_body section#nav li:nth-of-type(2) {
    margin: 0 0 1em 0;
  }
  .radio-2025spring_body section#nav li:nth-of-type(3) {
    margin: 0 1em 1em 0;
  }
  .radio-2025spring_body section#nav li:nth-of-type(4) {
    margin: 0 0 1em;
  }
  .radio-2025spring_body section#nav li a {
    display: block;
    color: #ffffff;
  }
  .radio-2025spring_body section .ttl {
    width: 96%;
    margin: 0 auto 1em;
  }
  .radio-2025spring_body section .box {
    background-color: rgba(249, 218, 215, 0.5);
    padding: 1.5em 1em;
    border-radius: 1.5em;
  }
  .radio-2025spring_body section#new .new-box .p-title {
    text-align: left;
    font-size: 5vw;
    word-break: break-all;
  }
  .radio-2025spring_body section#new .new-box .p-time {
    font-size: 4.5vw;
  }
  .radio-2025spring_body section#new .new-box .in-flex {
    display: block;
  }
  .radio-2025spring_body section#new .new-box .in-flex .p-text {
    font-size: 1em;
    width: 95%;
    margin: 0 auto;
  }
  .radio-2025spring_body section .box .in-flex {
    display: block;
  }
  .radio-2025spring_body section#new .new-box .p-img {
    width: auto;
    margin: 0 0 1em 0;
  }
  .radio-2025spring_body section#new .new-box p.p-cast-text {
    font-size: 1.2em;
    text-align: center;
  }
  .radio-2025spring_body section#new .new-box .p-text {
    width: auto;
    font-size: 4.5vw;
  }
  .radio-2025spring_body section#new .new-box ul.p-cast {
    justify-content: space-between;
    margin: 3em 0 1em;
  }
  .radio-2025spring_body section#new .new-box .p-cast li {
    font-size: 3vw;
    width: 48%;
  }
  .radio-2025spring_body section#new .new-box .p-cast li span.position {
    top: -2em;
    left: -1em;
  }
  .radio-2025spring_body section#new .new-box .p-cast li span.small {
    font-size: 2vw;
  }
  .radio-2025spring_body section#new .new-box .contact {
    display: block;
    text-align: center;
    margin: 0 0 1em;
  }
  a.btn-border {
    width: 90%;
    font-size: 4vw;
    margin: 0 auto 1em;
  }
  .radio-2025spring_body section .box .p-img.ikemen4 .radio-2025spring_body section .box .p-img.kinten {
    width: 80%;
  }
  .radio-2025spring_body section .box .items:nth-of-type(2n+1),
  .radio-2025spring_body section .box .items:nth-of-type(2n),
  .radio-2025spring_body section .box .items.ex-left,
  .radio-2025spring_body section .box .items.ex-right {
    float: none;
  }
  .radio-2025spring_body section .box {
    width: auto;
  }
  .personality .pic {
    width: 66%;
  }
  .personality .name {
    font-size: 4vw;
  }
  .personality .name span {
    font-size: 3vw;
  }
  .p-assistant {
    width: auto;
  }
  .p-assistant p.a-name {
    font-size: 4vw;
    text-align: center;
  }
  .p-assistant p.a-name span:nth-of-type(1),
  .p-assistant p.a-name span:nth-of-type(2) {
    font-size: 4.5vw;
  }
  .p-assistant .a-pic {
    margin: 0.5em 0 0;
  }
  .p-assistant img {
    width: 42%;
  }
  .p-assistant p.fukidashi {
    left: 40%;
  }
  .radio-2025spring_body section .box {
    overflow: visible;
    display: block;
    margin: 0;
    padding: 1em 0;
  }
  .radio-2025spring_body section .box .items:last-child {
    margin: 0;
  }
  .radio-2025spring_body section .box .inner:nth-of-type(2),
  .radio-2025spring_body section .box .inner:nth-of-type(3) {
    margin: 1.5em 0 0;
  }
  .radio-2025spring_body section .box li {
    margin: 0;
  }
  .radio-2025spring_body section .box li:not(:first-child) {
    border-top: 2px dotted #f393af;
  }
  .radio-2025spring_body section .box .p-title {
    font-size: 4.5vw;
    height: auto;
  }
  .radio-2025spring_body section .box .p-detail {
    padding: 0 0.5em;
  }
  .radio-2025spring_body section .box .p-time {
    /* text-align: center; */
    font-size: 4.5vw;
    color: #eb4e7c;
    margin: 0 0 0.5em;
  }
  .radio-2025spring_body section .box .p-text {
    /* text-align: center; */
    font-size: 4.5vw;
  }
  .radio-2025spring_body section .box .items.gokigen .p-text,
  .radio-2025spring_body section .box .items.kinten .p-text {
    text-align: left;
  }
  .radio-2025spring_body section .box .p-img {
    text-align: center;
    margin: 0.5em 0 0;
  }
  .radio-2025spring_body section .box .p-img img {
    background-color: #ffffff;
    padding: 0.5em;
    width: 80%;
  }
  .radio-2025spring_body section .box li p img {
    margin: 0 auto 1em;
  }
  .radio-2025spring_body section .box .thank {
    text-align: center;
    font-size: 5vw;
    margin: 1em 0 0;
    color: #eb4e7c;
  }
  /*===== ページトップへ =====*/
  #page_top {
    position: fixed;
    right: 0;
    bottom: -50px;
    background: #f393af;
    opacity: 0.75;
    font-size: 3.2vw;
    padding: 0.5em 1em;
    z-index: 3000;
    width: 6em;
    text-align: center;
  }
  #page_top a {
    position: relative;
    display: block;
    text-decoration: none;
    /* color: #656464; */
    color: #ffffff;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.delay-6s {
  animation-delay: 6s;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}

@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

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

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}/*# sourceMappingURL=spring2025.css.map */