.marqueen_pc{
    height: clamp(0px, 50px, 50px);
    z-index: 3;
    display: flex;
    align-items: center;
    flex-direction: row;
    left: 0;
    width: 80%;
    margin-left: 10%;
    position: relative;
    margin-top: 115px;
    padding: 3px 0;
    background-image: linear-gradient(to bottom, #ffffff, #e8e8ee);
    box-shadow: 0 4px 3px #d8d8d84a, 0px 1px 20px 1px #5a5a5a42;
    border: 2px solid #fff;
    border-radius: 26px;
    margin-bottom:30px;
}

.marqueen{
    display:none;
}
.marqueeimg{
    height: 30px;
    display: flex;
    align-content: center;
    align-items: center;
    margin-left:2px;
}
.marqueeimg_pc{
    height: 50px;
    display: flex;
    align-content: center;
    align-items: center;
    margin-left: 15px;
}
.marqueeimg_pc img{
    height: 35px;
}
.marqueeimg img{
    height:20px;
}
.marqueen .marquee-div{
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: left;
    mask-image: linear-gradient(
        var(--mask-direction, to right),
        hsl(0 0% 0% / 0),
        hsl(0 0% 0% / 1) 20%,
        hsl(0 0% 0% / 1) 80%,
        hsl(0 0% 0% / 0)
    );
}

.marqueen_pc .marquee-div{
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: left;
    mask-image: linear-gradient(
        var(--mask-direction, to right),
        hsl(0 0% 0% / 0),
        hsl(0 0% 0% / 1) 20%,
        hsl(0 0% 0% / 1) 80%,
        hsl(0 0% 0% / 0)
    );
}

.text-marquee{
    font-size:12px;
    color:#404966;
}

.marqueen .marquee{
    align-self: center;
    animation: marquee 10s linear infinite;
    display: inline-block;
}

@keyframes marquee {
    0% {
    transform: translateX(100vw);
    }
    100% {
    transform: translateX(-100vw);
    }
}

.maq-spacing{
    height: clamp(0px, 5.56vw, 23px);
    width: 100%;
}

@media only screen and (max-width: 1025px) {
    .marqueen_pc{
        display:none;
    }
    .marqueen{
        height: clamp(0px, 30px, 30px);
        z-index: 3;
        display: flex;
        align-items: center;
        flex-direction: row;
        left: 0;
        width: 95%;
        margin-left: 2.5%;
        position: relative;
        margin-top: 55px;
        padding: 3px 0;
        background-image: linear-gradient(to bottom, #ffffff, #e8e8ee);
        box-shadow: 0 4px 3px #d8d8d84a, 0px 1px 20px 1px #5a5a5a42;
        border: 2px solid #fff;
        border-radius: 26px;
    }
}