@charset "utf-8";

/* Main CSS */


/* Main Visual */
.m_visual{
    margin-top: 29rem;
}

.m_visual p{
    text-align: center;
    font-size: 2.4rem;
    font-family: 'S-CoreDream-3Light';
    padding: 4.5rem 0;
    position: relative;
    word-break: keep-all;
}

.m_visual p::before,
.m_visual p::after{
    content: '';
    position: absolute;
    left: 50%;
    width: 28px;
    height: 22px;
    margin-left: -14px;
}

.m_visual p::before{
    top: 0;
    background: url(/img/Demo/main/slogan_bgTop.png) 0 0 no-repeat;
}

.m_visual p::after{
    bottom: 0;
    background: url(/img/Demo/main/slogan_bgBot.png) 0 0 no-repeat;
}

.m_visual p span{
    font-family: 'S-CoreDream-9Black';
}

.m_visual ul{
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: space-between;
    margin: 5rem 0 10rem;
}

.m_visual ul li{
    width: calc((100% - 4.4rem) / 3);
}

/* ----------------------------------------- Media Query ----------------------------------------- */

@media only screen and (max-width: 1000px) {
    
    /* Main Visual */
    .m_visual{
        margin-top: 17rem;
    }
}

@media only screen and (max-width: 768px) {

    /* Main Visual */
    .m_visual p br{
        display: none;
    }

    .m_visual ul li{
        width: calc((100% - 2.2rem) / 2);
    }
}