/* background */
.bg-dark {
    background-color: #292929 !important;
}
.bg-dark-secondary {
    background-color: #3f3f3f !important;
}
.bg-pink {
    background-color: #fc1855 !important;
}
.bg-gradient-red {
    background: #E70808;
    background: linear-gradient(136deg, rgba(231, 8, 8, 1) 35%, rgba(79, 58, 58, 1) 100%);;
    color: white;
}

/* button */
.btn-blue {
    background-color: #3a9ce8 !important;
    color: white;
}
.btn-pink {
    background-color: #fc1855 !important;
    color: white;
}
.btn-active {
    background: #E2C697;
    background: linear-gradient(180deg, rgba(226, 198, 151, 1) 35%, rgba(177, 152, 102, 1) 100%);
}
.btn-dark {
    background-color: #292929 !important;
}
.btn-dark:hover {
    background-color: rgb(16, 15, 16) !important;
}
.btn-outline-dark {
    border: 1px solid #292929 !important;
    background: none;
}

/* text */
.text-gold {
    color: #d0b484;
}
.text-blue {
    color:#3a9ce8;
}

/* marque */
@keyframes marquee {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
.animate-marquee {
        display: inline-block;
        min-width: 100%;
        animation: marquee 15s linear infinite;
}

/* loadin logo */
@keyframes pulse {
        0%, 100% { transform: scale(.6); }
        50% { transform: scale(1.1); }
    }
    .logo-pulse {
        animation: pulse 1s infinite;
    }

/* splide slider */
  .splide__arrow {
    opacity: 0 !important;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6) !important;
    color: white !important;
    width: 40px !important;
    height: 80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .splide__arrow--prev {
    border-radius: 0px 9px 9px 0px !important;
    left: 0px !important;
  }

  .splide__arrow--next {
    border-radius: 9px 0px 0px 9px !important;
    right: 0px !important;
  }

  .splide:hover .splide__arrow {
    opacity: 1 !important;
  }

  .splide__arrow {
    background-color: black !important;
    color: white !important;
  }

  .splide__arrow svg {
    fill: currentColor !important;
    width: 20px;
    height: 20px;
  }

  /* custom font */
  .custom-font {
  font-family: "Noto Sans JP", sans-serif;
  }




