@charset "utf-8";

@import url("aos.css");
@import url("../font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");
@import url("car-camp.css");

@view-transition {
  navigation: auto;
}
.vtn-carcamp {
  view-transition-name: carcamp;
}
.vtn-krk {
  view-transition-name: krk;
}
.vtn-tet {
  view-transition-name: tet;
}
.vtn-pdk {
  view-transition-name: pdk;
}
.vtn-forstd {
  view-transition-name: forstd;
}
.vtn-payment {
  view-transition-name: payment;
}
.vtn-recrt {
  view-transition-name: recrt;
}
.vtn-enrl {
  view-transition-name: enrl;
}

/* グローバル */
:root {
  --mds-gry-color: rgb(149, 151, 139);
  --mds-lgry-color: rgb(183, 184, 175);
  --mds-dgry-color: rgb(126, 128, 119);
  --mds-pink-color: rgb(255, 25, 117);
  --mds-lpink-color: rgb(255, 172, 205);
  --mds-y-color: rgb(221, 221, 94);
  --mds-dark-color: rgb(77, 119, 128, 0.5);
}

.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-bold {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: var(--mds-lpink-color);
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-break: strict;
}
.mds-bg-gry {
  background-color: var(--mds-gry-color) !important;
}
.mds-bg-grygrad {
  animation: bg-gradient 8s linear infinite reverse;
  background: linear-gradient(60deg, var(--mds-dgry-color) 10%, var(--mds-gry-color), var(--mds-lgry-color), var(--mds-gry-color), var(--mds-dgry-color) 90%) 0 / 200% 100%;
}
@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.mds-cl-pink {
  color: var(--mds-pink-color) !important;
}
.mds-bg-pink {
  background-color: var(--mds-pink-color) !important;
}
.mds-bg-lpink {
  background-color: var(--mds-lpink-color) !important;
}
.div-cc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.h-bg {
  font-weight: 700;
  color: white;
  background-color: var(--mds-gry-color);
  border-radius: 3px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}
.btn-xxl {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .btn-xxl {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.lead {
  span {
    display: inline-block;
  }
}

.img-qr {
  width: 200px;
  height: auto;
}

/* ヘッダー */
.mds-header-top {
  background-color: var(--mds-pink-color);
  color: white;
}
.mds-header-top p {
  margin-bottom: 0;
}
.mds-header-top strong {
  font-weight: 400;
}
@media (width <= 576px) {
  .mds-header-top p {
    line-height: 1.2rem;
    padding: 0.2rem 0 0.2rem 0;
  }
}
.mds-navbar {
  background-color: var(--mds-gry-color);
  border-bottom: 2px solid var(--mds-pink-color);

  .navbar-brand {
    span {
      font-weight: 700;
      color: black;
    }
    h1 {
      transition: all 1s;

      font-weight: 700;
      color: white;
      margin-bottom: 0;
      @media (width <= 768px) {
        font-size: calc(1.5rem + 1.5vw);
      }
    }
  }
  .navbar-brand:hover {
    h1 {
      color: var(--mds-lpink-color);
    }
  }
  .nav-link {
    position: relative;
  }
  .nav-link:hover {
    color: var(--mds-lpink-color);
  }
  .nav-link.show {
    color: var(--mds-lpink-color);
  }
  .nav-link::before {
    background: var(--mds-pink-color);
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
  .nav-link:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
  }
  .dropdown-item {
    position: relative;
    z-index: 1;
  }
  .dropdown-item::after {
    background: var(--mds-dgry-color);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .dropdown-item:hover {
    color: var(--mds-lpink-color);
    background-color: transparent;
  }
  .dropdown-item:hover::after {
    transform: scale(1, 1);
  }
  .dropdown-item:active {
    background-color: var(--mds-pink-color);
  }
}
.mds-navbar a {
  color: white;
}
.mds-navbar .dropdown-menu {
  background-color: transparent;
  background-color: var(--mds-gry-color);
  border: 1px solid var(--mds-pink-color);
}
.mds-navbar li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (width <= 768px) {
  .mds-logo {
    max-width: 300px;
  }
}
.border-pink {
  border: 0 !important;
  border-bottom: 1px solid var(--mds-pink-color) !important;
}
/* フッター */
footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--mds-gry-color);
  color: #fff;
  border-top: 2px solid var(--mds-pink-color);
}
footer p {
  font-size: 1.2rem;
  margin-bottom: 0.05rem;
}
footer p strong {
  font-size: 2rem;
}
footer p.mds-star {
  margin: 0;
}
footer a {
  color: #fffdd9;
}
footer a:hover {
  color: #fffdd9;
  background-color: rgb(255, 255, 255, 0.3);
}
.pic-shinsei {
  width: 150px;
}
footer p.offcom {
  font-size: 0.9rem;
  border-bottom: solid 1px var(--mds-pink-color);
  margin-bottom: 0.5rem;
  width: 85%;
}
@media (width <= 576px) {
  footer {
    margin: 0 auto;
    text-align: center;
  }
  footer p.mds-star {
    margin: 0 auto !important;
    text-align: center;
  }
  footer p.offcom {
    margin: 0 auto;
    margin-bottom: 0.5rem;
  }
}
.btn-go-to-top {
  display: none;
  font-size: 2rem;
  color: var(--mds-pink-color);
  background-color: rgb(149 151 139 / 0.5);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3px;
  transition: all 0.5s;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.btn-go-to-top:hover {
  color: var(--mds-lpink-color);
}

/* ローディング */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: var(--mds-lpink-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  animation: mds-loading 3s infinite ease-in-out;
}
@keyframes mds-loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

.drone-s {
  background-color: black;
  padding: 1rem 0 1rem 0;
  display: flex;
  align-items: end;
  width: 100%;
}
.drone-s video {
  width: 100%;
}

/* スライド */

.carousel-inner {
  padding: 0;
  padding-bottom: 87.5px;
  background-color: var(--mds-dgry-color);
  .w-100 {
    width: 100%;
    height: auto;
  }

  @media (width <= 576px) {
    padding-bottom: calc(10px + 16.6vw);
  }
}
.carousel-item {
  transition: transform 1.6s ease-in-out;
  picture {
    width: 100%;
    height: auto;
  }
}
.carousel-indicators {
  bottom: 10px;
  margin-bottom: 0;
  height: 67.5px;

  @media (width <= 576px) {
    margin-left: 10%;
    margin-right: 10%;
    height: calc(10px + 16.6vw);
    bottom: -10px;
  }
}
.carousel-indicators [data-bs-target] {
  border: 0;
  width: 120px;
  img {
    width: 120px;
    height: auto;
  }
}
.carousel-indicators .active {
  transform: scale(1.05);
}

.contact-s {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-s a {
  width: 50%;
  border-radius: 20px;
  background-color: rgb(32, 91, 255);
  background: linear-gradient(90deg, rgba(32, 95, 255, 1) 0%, rgba(88, 131, 247, 1) 50%, rgba(32, 95, 255, 1) 100%);
  background-size: 200% 100%;
  color: white;
  padding: 0.5rem 3rem 0.5rem 3rem;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  font-size: calc(1.5rem + 1vw);
  display: block;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  transition: all 0.5s ease-out;

  @media (width <= 576px) {
    width: 90%;
  }
}
.contact-s a:hover {
  letter-spacing: 0.1em;
  background-position: 100% 0;
}

.offday-alert {
  background-color: var(--mds-pink-color);
  text-align: center;
  padding: 3rem;
  color: rgb(251, 255, 0);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 5px;
  margin-top: 2rem;
}
@media (width <= 768px) {
  .offday-alert {
    padding: 1rem;
  }
}

.offday-info {
  background-color: var(--mds-gry-color);
  border-radius: 20px;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.offday-info h3 {
  display: inline-block;
  font-size: 2rem;
  color: rgba(255, 240, 43, 1) !important;
  background-color: var(--mds-pink-color) !important;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem !important;
}
.offday-info p.lead {
  font-weight: 600;
  margin-top: 1rem;
}
@media (width <= 768px) {
  .offday-info h3 {
    padding: 0.5rem 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .offday-info p.lead + p {
    font-size: 1.1rem !important;
  }
}

.sns-s {
  margin: 0 auto;
  background-color: var(--mds-gry-color);
  text-align: center;
  width: 19rem;
  border-radius: 5px;
}
.sns-s img {
  width: 5rem;
  height: auto;
}

.menu-s {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.menu-s .card2 {
  background-color: var(--mds-gry-color);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  height: 25vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-s .card {
  background-color: var(--mds-gry-color);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease-in;
  overflow: hidden;
  container-type: inline-size;
}
.menu-s .card:hover {
  background-color: var(--mds-lgry-color);
  box-shadow: 3px 4px 7px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--mds-pink-color);
  .card-title {
    color: var(--mds-y-color);
  }
  .card-img {
    transform: scale(1.05);
  }
}
.card-img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in;
}
.menu-s .card .card-img-overlay {
  padding-left: 0;
  padding-right: 0;
}
.menu-s .card .card-title-wrap {
  background-color: rgb(149 151 139 / 0.3);
  backdrop-filter: blur(2px);
  width: 100%;
  height: 20cqw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-s .card .card-title {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  color: white;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease-in;
  font-size: clamp(2.2rem, -0.595rem + 4.6vw, 4.5rem);
  font-size: 14.2cqw;
  margin: 0;
}
.menu-s .card .card-title-sm1 {
  font-size: clamp(1.55rem, -0.759rem + 3.85vw, 3.45rem);
  font-size: 11.1cqw;
}
.menu-s .card .card-title-sm2 {
  font-size: clamp(1rem, -0.137rem + 2.1vw, 2.1rem);
  font-size: 7.7cqw;
}
@media (width <= 768px) {
  .menu-s .card .card-title {
    font-size: 14.2cqw;
  }
  .menu-s .card .card-title-sm1 {
    font-size: 12.5cqw;
  }
  .menu-s .card .card-title-sm2 {
    font-size: 7.7cqw;
  }
}
.closedday-s {
  background: var(--mds-pink-color);
  background: linear-gradient(210deg, rgb(255, 125, 175) 0%, rgb(252, 236, 242) 100%);
}

.spikes {
  position: relative;
  background: var(--mds-lpink-color);
  height: 2rem;
}

.spikes::after {
  content: "";
  position: absolute;
  right: 0;
  left: -0%;
  top: 100%;
  z-index: 10;
  display: block;
  height: 50px;
  background-size: 50px 100%;
  background-image: linear-gradient(135deg, var(--mds-lpink-color) 25%, transparent 25%), linear-gradient(225deg, var(--mds-lpink-color) 25%, transparent 25%);
  background-position: 0 0;
}

.diagonal {
  height: 5vh;
  background-color: white;
  clip-path: polygon(0 100%, 100% 0, 100% 101%, 0% 101%);
}

.access-s {
  background: var(--mds-lpink-color);
  background: linear-gradient(0deg, var(--mds-lpink-color) 50%, rgba(255, 255, 255, 1) 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.access-s a {
  background-color: var(--mds-pink-color);
  color: white;
  padding: 0.3rem;
  font-weight: 700;
  transition: all 0.5s;
  border-radius: 3px;
}
.access-s a:hover {
  color: var(--mds-y-color);
}

/* コンタクト */
.mds-contact {
  max-width: 40rem;
  padding: 0 1rem 0 1rem;

  label {
    margin-top: 1rem;
  }
}

/* アイキャッチセクション */
section.eyecatch div {
  background-color: var(--mds-gry-color);
  background-image: linear-gradient(-60deg, var(--mds-dgry-color), var(--mds-gry-color) 50%, var(--mds-lgry-color));
  width: 100%;
  margin: 0;
  border-top: 2px solid var(--mds-pink-color);
  border-bottom: 2px solid var(--mds-pink-color);
  padding-top: 3rem;
  padding-bottom: 3rem;
  animation: bg-gradient 8s linear infinite reverse;
  background: linear-gradient(60deg, var(--mds-dgry-color) 10%, var(--mds-gry-color), var(--mds-lgry-color), var(--mds-gry-color), var(--mds-dgry-color) 90%) 0 / 200% 100%;
}
@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
section.eyecatch h2 {
  font-weight: 700;
  color: white;
  margin: 0 auto;
  text-align: center;
  font-size: 6vw;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}
@media (width <= 992px) {
  section.eyecatch h2 {
    font-size: 9vw;
  }
}

/* メインヘッダーセクション */
section.main-header {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), var(--mds-lpink-color) 1px, transparent 0, transparent 6px);
  border-top: 1px solid var(--mds-pink-color);
  border-bottom: 1px solid var(--mds-pink-color);
}
section.main-header h2,
section.main-header h3,
section.main-header h4 {
  font-weight: 700;
  color: white;
  background-color: var(--mds-gry-color);
  border-radius: 3px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}
section.main-header p {
  margin: 0;
  font-size: 1.25rem;
}
section.main-header p.lead {
  margin: 0;
  font-size: 1.5rem;
}
section.main-header div.shortcut-link {
  display: inline-block;
  background-color: rgb(from var(--mds-gry-color) r g b / 0.3);
  border-radius: 3px;
  margin: 3rem;
  margin-bottom: 0;
  padding: 2rem 4rem;
  text-align: start;
  @media (width < 768px) {
    margin: 2rem 0.5rem 0 0.5rem;
    padding: 1rem;
  }

  a {
    display: block;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-in;
    @media (width < 576px) {
      font-size: 1rem;
    }
  }
  a:hover {
    color: var(--mds-pink-color);
    text-decoration: underline;
  }
}

.telme {
  background-color: var(--mds-pink-color);
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  transition: all 0.5s ease-in;
}
.telme:hover {
  text-decoration: none;
  font-size: 2.52rem;
  background-color: rgb(255, 25, 117, 0.7);
  color: rgba(255, 255, 0, 1);
  transform: scale(1.1);
  border-radius: 15px;
}
@media (width <= 576px) {
  .telme {
    font-size: 8vw;
  }
  .telme:hover {
    font-size: 8.2vw;
  }
}
div.warning {
  display: inline-block;
  background-color: var(--mds-y-color);
  padding: 0.5rem;
  border-radius: 3px;
  font-size: 1.2rem;
}

/* サブセクション */
section.article {
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(45deg, rgb(245, 245, 245), #fff 3px, transparent 0, transparent 6px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--mds-gry-color);
  font-size: 1.25rem;
}
section.article span {
  display: inline-block;
}
section.article h3,
section.article h4 {
  font-weight: 700;
  color: white;
  background-color: var(--mds-pink-color);
  border-radius: 3px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}
section.article p.lead {
  font-size: 1.5rem;
}
section.article table.tet-table {
  margin-top: 3rem;
  td {
    border: 1px solid black !important;
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  p {
    margin: 0rem 0 0rem 0;
    font-size: 1.5rem;
    text-wrap: nowrap;
  }
  table {
    width: 70%;
    margin: 0 auto;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    td {
      font-size: 1rem;
      padding: 0.5rem;
    }
  }
}
section.article .card {
  margin: 0.25rem;
  h3 {
    margin-bottom: 1rem;
  }
  h4 {
    text-align: center;
    margin-bottom: 0rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: calc(1.525rem + 0.9vw);
  }
  @media (width < 768px) {
    h4 {
      font-size: calc(1.525rem + 5vw);
    }
  }
}
section.article {
  @media (width < 768px) {
    .row:has(.card) {
      margin-left: 0.1rem;
      margin-right: 0.1rem;
    }
  }
}

.bus-trans {
  margin-top: 1rem;
  margin-bottom: 1rem;

  a {
    display: block;
    text-decoration: none;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 1rem;
  }
  a:hover {
    opacity: 0.8;
    color: var(--mds-y-color);
    filter: contrast(150%);
  }
  h3 {
    background-color: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
}
.bus-trans-d {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 5px;

  h3 {
    margin-top: 1rem;
    margin-bottom: 1rem !important;
    padding: 1rem;
  }
  th,
  td {
    min-width: 35px;
    vertical-align: middle;
    text-align: center;
  }
  tbody:hover th,
  tbody:hover td {
    background-color: rgb(255, 248, 239);
  }
  table {
    margin-bottom: 0;
  }
  table caption {
    padding-bottom: 0;
  }
}

.article.recrt-section {
  .card {
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.25);
    h4 {
      font-size: 2rem;
      font-weight: 700;
      color: white;
      background-color: var(--mds-gry-color);
      border-radius: 3px;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      margin-top: 0;
      margin-bottom: 0.5rem;
      box-shadow: none;
      text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
    }
  }
}
.box-s1 {
  position: relative;
  margin: 2em 0;
  margin-bottom: 1rem;
  padding: 0.5em 1em;
  border: solid 3px #ff1975;
}
.box-s1 .box-title {
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #ff1975;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

/* アニメーション */
[data-aos="animate-poyo"].aos-animate {
  animation: poyoyon 2.5s forwards 2;
  opacity: 1;
}
@keyframes poyoyon {
  0%,
  40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(1deg, 1deg);
  }
  10% {
    transform: skew(-1deg, -1deg);
  }
  15% {
    transform: skew(1deg, 1deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
.animate-popup {
  animation: popup 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
[data-aos="animate-popup"].aos-animate {
  animation: popup 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%,
  100% {
    opacity: 1;
  }
}
.fadeInLeft {
  opacity: 0;
  transform: translateX(-6vw);
  animation-name: fadeIn;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
[data-aos="animate-fadeInLeft"] {
  opacity: 0;
}

[data-aos="animate-fadeInLeft"].aos-animate {
  opacity: 0;
  transform: translateX(-6vw);
  animation-name: fadeIn;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.fadeInUp {
  opacity: 0;
  transform: translateY(1rem);
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
[data-aos="animate-fadeInUp"] {
  opacity: 0;
}
[data-aos="animate-fadeInUp"].aos-animate {
  transform: translateY(1rem);
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.hover-blur:hover {
  animation: text-blur 0.5s;
}
@keyframes text-blur {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(2px);
  }
  100% {
    filter: blur(0);
  }
}

.animate-fwfw {
  animation: fwfw 3s infinite linear;
}
@keyframes fwfw {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
