@charset "UTF-8";

/*--------------------------------------
	スマホ
---------------------------------------*/

@media screen and (min-width: 320px) and (max-width: 959px) {
    #pc_header {
        display: none;
    }

    #sp_header {
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        -webkit-justify-content: center;
        position: fixed;
        z-index: 100;
        width: 100%;
    }

    #container {
        padding-top: 60px;
    }
}


/*--------------------------------------
	PC
---------------------------------------*/

@media screen and (min-width: 960px) {
    #sp_header {
        display: none;
    }
}