*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
	vertical-align: top;
    font-size: 14px;
    line-height: 1.5; 
    outline: none;
}

body{
    text-align: center;
}

ul, ol{
    list-style: none;
    font-size: 0px;
}

ul li, ol li{
    display: inline-block;
}

a{
    display: inline-block;
    text-decoration: none;
    color: black;
}

.wrap{
    display: inline-block;
    width: 1200px;
}

.pc{
    display: inline-block;
}

.mobile{
    display: none;
}

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}


#car{

    animation: car 2s linear 0s infinite;
}

@keyframes car{
    0%{
        transform: translateX(-50%);
    }
    
    100%{
        transform: translateX(100%);
    }
}

@media only screen and (min-width: 100px) and (max-width:1200px){
    .wrap{
        width: 100%;
        padding: 0px 15px;
    }
    
    .pc{
        display: none;
    }
    
    .mobile{
        display: inherit;
    }
    
}

@media only screen and (min-width: 100px) and (max-width:550px){
	header #mlogo h1 {
    line-height: 50px;
    height: 50px;
    font-size: 17px;
    color: #fff;
}
	
}

	
	

	
	
	
	







