*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html,
body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
}
body {
	background-color: #121212;
}
img {
	display: block;
	width: 100%;
}
#main {
	min-height: 100dvh;
}
#big-logo{
    display: block;
    width: 150px;
    margin: 32px auto;
    /* margin-bottom: 32px; */
}
#big-logo img{
    position: relative;
}
#big-logo img::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: solid 1px #121212 ;
    transform: scale(.98);
    /* display: none; */
}
#big-logo .description-mobile{
    color: #fff;
    font-size: 1.8em;
    font-weight: 500;
    text-align: center;
}
.locations-grid{
    display: flex;
    flex-direction: row;
    place-content: center;
    column-gap: 36px;
}
.location{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    border: 3px solid #fafafa;
    text-decoration: none;
    transition: all .1s cubic-bezier(0.055, 0.65, 0.755, 0.76);
}
.location:hover{
    transform: translateY(-15%) scale(1.2);
}
.location .description{
    padding: 18px;
    color: #fff;
    font-size: 1.75em;
    text-align: center;
    background: #121212;
}
.location-img{
    display: flex;
    height: 180px;
}
.location-img img{
    object-fit: cover;
}

@media screen and (max-width: 768px){
    .locations-grid{
        flex-direction: column;
        row-gap: 30px;
    }
    .location{
        margin: 0 auto;
    }
}