html {
    background: #fff;
    color: #282828;
    font-family: メイリオ, Meiryo, "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

body {
    background-color: #ebf4fe;
    font-size: 16px;
}

header {
    background-color: white;
    height: 7em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    gap: 2em;
}

header img {
    object-fit: contain;
    height: 100%;
}

header .edon {
    height: 70%;
}

.syoujikiya_logo {
    height: 100%;
}

.syoujikiya_logo img {
    height: 100%;
    object-fit: contain;
}

#top {
    position: relative;
}

.sitewrap {
    width: 100%;
    max-width: 1000px;
}

.main-visual {
    width: 100%;
}

.main-visual img {
    object-fit: cover;
    height: 15em;
    width: 100%;
}

#top h1 {
    font-size: 3em;
    font-weight: bold;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 0.3em black;
    white-space: nowrap;
}

#shop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em 1em 3em;
}

.shop-wrap {
    max-width: 40em;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3em;
    padding: 3em;
}

.region {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: 1em;
}

.region h2 {
    background-color: #ebf4fe;
    width: 100%;
    border-bottom: 0.15em solid #192e77;
    padding: 0.15em 0.3em 0;
    line-height: 1.2;
    font-size: 2em;
}

.store_nam {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 0.1em;
}

.region_item dl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-items: stretch;
    border-top: 0.1em solid rgb(202, 202, 202);
    border-bottom: 0.1em solid rgb(202, 202, 202);
    width: 100%;
}

.region_item dl dt {
    white-space: nowrap;
    padding: 1em;
    background-color: rgb(238, 238, 238);
    display: flex;
    align-items: center;
    justify-content: center;
}

.region_item dl dd {
    padding: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

footer{
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    padding: 1em 1em 0.5em;
}

footer .logos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 100%;
}

footer .logos img{
    object-fit: contain;
    height: 7em;
}

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

    #shop{
        padding: 2em 1em;
    }
    .shop-wrap{
        padding: 2em 1em;
    }

    header{
        font-size: 3vw;
    }

    footer .logos{
        font-size: 3vw;
    }
}