@font-face
{
	font-family: "Bahnschrift";
	src: url("https://global.ecdn.ltd/ync/fonts/bahnschrift.ttf");
}

body
{
	background: #FFFFFF;
	font-family: "Bahnschrift";
	overflow-x: hidden;
	height: 100%;
	color: #333;
}

html, body
{
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.contents
{
	flex: 1; /* Footer will not float even with sufficient contents */
	margin: 0 20rem;
	padding-bottom: 1rem;
}

.contents_top
{
	flex: 1; /* Footer will not float even with sufficient contents */
	margin: 0 20rem;
	padding-bottom: 1rem;
	margin-top: 5.8rem;
}

#text_theme_color
{
	display: inline;
	color: #609CD4;
}

.section_title
{
	position: relative;
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	padding: 0.8rem 1rem;
	color: white;
	z-index: 1;
}

/* Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/::before */
.section_title::before
{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -22rem;
	right: -0.5rem;
	background: #609CD4;
	transform: skew(-20deg);
	z-index: -1;
}

.products_layout
{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* While: < 1600 */
@media (max-width: 1600px)
{
	.contents,
	.contents_top
	{
		margin: 0 15rem;
	}
	
	.contents_top
	{
		margin-top: 5.8rem;
	}
}

/* While: < 1300 */
@media (max-width: 1300px)
{
	.contents,
	.contents_top
	{
		margin: 0 5rem;
	}
	
	.contents_top
	{
		margin-top: 5.8rem;
	}
}

/* While: < 1080 */
@media (max-width: 1080px)
{
	.contents,
	.contents_top
	{
		margin: 0 2rem;
	}
	
	.contents_top
	{
		margin-top: 5.8rem;
	}
}
