body {
	background-color: #bce1cc;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

h1 {
	margin-top: 0;
	
	font-family: 'Old Standard TT', serif;
	font-weight: 400;
	text-transform: uppercase;
}

img {
	max-width: 100%;
	height: auto;
}

.l-constrained {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;	
}

.content {
	padding-bottom: 50px;
	
	background: #e1f1e7;
	text-align: center;
}

.location-selector-holder {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.location-selector {
	align-items: center;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	
	max-width: 50%;
	width: 100%
}
.location-selector__title {
	margin-top: 15px;
    margin-bottom: 0;
	
	font-weight: 700;
    font-size: 1.2rem;
}
.location-selector__link {
	margin-top: 0;
}
.location-selector__link a {
	color: #000;
	text-decoration: none;
}

.social-holder img {
	max-width: 25px;
}

@media all and (max-width: 768px) {
	.l-constrained {
		position: relative;
		
		align-items: unset;
		
		max-width: none;
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media all and (max-width: 480px) {
	body {
		font-size: 14px;
	}
	
	.l-constrained {
		margin-left: 5px;
		margin-right: 5px;
	}
	
	.content {
		padding-bottom: 30px;
	}
	
	.location-selector__title {
		font-size: 14px;
	}
}