@charset "utf-8";


body {
	font-family: 'Noto Sans JP', sans-serif, "メイリオ", Meiryo;
	color: #303030;
	line-height: 1.5;
}

header {
	padding: 10vw 5vw 0 5vw;
	position: relative;
}

header h1 {
	font-size: 2rem;

}

.inner {
	padding: 0 5vw;
}

.main_message {
    margin: 70px 0;
}

.list_item {
	margin: 70px 0;
}

.list_logo,
.list_shopinfo {
    margin: 30px 0;
    text-align: center;
}

.list_image img {
    margin: 30px 0 10px 0;
    position: relative;
	width: 80vw;
}

.list_item:nth-child(odd) .list_image img {
	left: 0;
	border-radius: 0 10px 10px 0;
}

.list_item:nth-child(even) .list_image img {
	left: 100%;
	transform: translateX(-100%);
	border-radius: 10px 0 0 10px;
}

.list_logo img {
	width: auto;
	height: 50px;
}


footer {
    padding: 70px 0 0 0;
    background-color: #eff9ff;
}


@media (max-width: 1024px) {

    .list_image img {
        width: 90vw;
    }

    .list_logo img {
        height: 35px;
    }

}