body,
html {
    font-family: "Inter", sans-serif;
}
.font-notosans {
    font-family: "Noto Sans JP", sans-serif;
}
.font-Inter {
    font-family: "Inter", sans-serif;
}
.font-rounded {
    font-family: "M PLUS Rounded 1c", sans-serif;
}
.font-bebas {
    font-family: "Bebas", sans-serif;
}
#preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 1s ease;
}

.loader {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    background: transparent; /* ← グラデーションを削除 */
}

.bar {
    width: 3px;
    height: 20px;
    background: linear-gradient(
        to bottom,
        #4338ca,
        #7e22ce,
        #db2777
    ); /* barにだけ色 */
    border-radius: 10px;
    animation: scale-up4 1s linear infinite;
}

.bar:nth-child(2) {
    height: 35px;
    animation-delay: 0.25s;
}

.bar:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes scale-up4 {
    0%,
    100% {
        transform: scaleY(1);
        background-color: rgba(0, 0, 0, 0.3);
    }
    20% {
        transform: scaleY(1.5);
        background-color: rgba(0, 0, 0, 0.7);
    }
    40% {
        transform: scaleY(1);
        background-color: rgba(0, 0, 0, 0.3);
    }
}

//toast
#toast {
    z-index: 10000 !important;
}
.my-toast-fade {
    opacity: 1;
    transition: opacity 3s ease !important;
}
.my-toast-fade.hide {
    opacity: 0 !important;
}

.ppi-gradient-border {
    position: relative;
    padding-bottom: 8px;
    /* ボーダーの高さを確保 */
}

.ppi-gradient-border::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    /* ボーダーの高さ */
    background-image: linear-gradient(to right, #f472b6, #9f7aea, #6366f1);
}

.font-playfair {
    font-family: "Playfair Display", serif;
}
.font-kosugi {
    font-family: "Kosugi Maru", sans-serif;
}
.pswp__button--zoom {
    display: block !important;
}
