html {
    min-height: calc(100% - 4rem);
    height: auto;
}
body {
    overflow-y: scroll;
    overflow-x: hidden;
}
.store-detail-container {
    width: 80vw;
    max-width: 1120px;
    margin: 0 auto;
    padding-top: calc(8.8rem + 3.2rem);
    padding-bottom: 25rem;
}
.store-link-wrapper {
    display: inline-block;
}
.store-link-wrapper:hover {
    opacity: 0.8;
}
.store-link {
    display: flex;
    align-items: center;
}
.store-name {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 5rem;
}
.left-arrow {
    margin-right: 1.2rem;
    width: 1.6rem;
    transform: scaleX(-1);
}
.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.photos img {
    width: 300px;
    height: auto;
    border: 5px solid #fff;
    border-radius: 2px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    vertical-align: bottom;
    margin: 10px;
}
.photos img:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}
.area-name {
    font-size: 1.8rem;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .store-detail-container {
        width: 80vw;
        padding-top: 17rem;
    }
    .store-link {
        margin-bottom: 5rem;
    }
}
