
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Noto+Sans+JP:wght@100..900&display=swap');


body {
	margin:0px;
	padding:0px;
    font-family: "Noto Sans JP", sans-serif;
}

img {
    max-width: 100%;
}

p{
	width: 100%;
	margin:0px;
	padding:0px;
	text-align:center;
}
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}
@media screen and (max-width:750px){
	p img {
		width: 100%;
	}
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}
}

.shop_wrap {
    background: url("images/shop_back.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    max-width: 720px;
    margin: 0px auto;
    padding: 50px 15px 100px;
}

.shop_ttl {
    color: #cb1d28;
    font-size: 40px;
    font-weight: bold;
}

.shop_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    margin: 30px auto;
    padding: 0px;
}

.shop_list li {
    width: 50%;
    box-sizing: border-box;
    list-style: none;
}

.map {
    width: 90%;
    margin: 0px auto;
    padding: 30px 0px 0px;
}

@media screen and (max-width:750px){
    .shop_ttl {
        font-size: 20px;
    }
}



