#shoplist .inner{
    padding-left: 2rem;
    padding-right: 2rem;
}
.map-container{
    display: none;
    margin-top: 1.5rem;
}
.map-container iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1 ;
}
.shop-container{
    margin-bottom: 2rem;
    border-bottom: 1px solid;
}
.contact-box{
    margin-bottom: 2rem;
    border-bottom: 1px dotted;
    padding-bottom: 2rem;
}
.contact-box:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.shop-inner{
    margin-bottom: 2.5em;
}
.shop-inner .area{
    font-size: var(--font12);
    font-weight: 500;
    background: var(--colorBlk);
    width: max-content;
    color: #ffffff;
    line-height: 1;
    padding: 0.45em 0.9em;
    border-radius: 0.2em;
}
.contact-box-title{
    font-size: var(--font16);
    font-weight: 500;
    margin-bottom: 0.5em;
}
.contact-box-inner{
    font-size: var(--font12);
}
.contact-box-more{
    display: flex;
    align-items: center;
    margin-top: 0.75em;
    gap: 1rem;
}
a.map-btn{
    display: flex;
    align-items: center;
    margin-left: auto;
    cursor: pointer;
}
a.map-btn .material-symbols-outlined{
    background: var(--colorBlk);
    border-radius: 2rem;
    padding: 0.3em;
    font-size: 1.6rem;
    color: white;
    margin-right: 0.25em;
}
.store-recruit{
    border: 1px solid;
    padding: 0.25em 0.5em;
    border-radius: 0.2em;
}
.contact-box-title img{
    width: max-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media (768px <= width) {
    .shop-container{
        display: flex;
    }
    .shop-inner{
        width: 80%;
    }
    .shop-inner.area{
        width: 20%;
    }
    .map-container iframe{
        aspect-ratio: 16 / 9;
    }
}