@charset "utf-8";

/* --------- --------- --------- --------- initial setting --------- */

/*
"源柔ゴシック" licensed under the SIL Open Font License 1.1
http://jikasei.me/font/genjyuu/
*/

@font-face {
	font-family: 'GenJyuuGothic';
	src: url('../fonts/GenJyuuGothic-P-ExtraLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'GenJyuuGothic';
	src: url('../fonts/GenJyuuGothic-P-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'GenJyuuGothic';
	src: url('../fonts/GenJyuuGothic-P-Normal.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'GenJyuuGothic';
	src: url('../fonts/GenJyuuGothic-P-Regular.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'GenJyuuGothic';
	src: url('../fonts/GenJyuuGothic-P-Medium.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'GenJyuuGothic';
	src: url('../fonts/GenJyuuGothic-P-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'GenJyuuGothic';
	src: url('../fonts/GenJyuuGothic-P-Heavy.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

* {
	font-family: 'GenJyuuGothic', sans-serif;
	font-weight: 400;
	color: #53340a;
}
body {
	width: 100%;
}
body.fixed {
	position: fixed;
	overflow: hidden;
	z-index: -1;
	width: 100vw;
	height: 100svb;
}
html {
	font-size: 16px;
}

/* iOS button reset */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/* --------- --------- --------- --------- common style --------- */
section.common_section {
	width: 100%;
	max-width: 992px;
	padding: 0 1rem;
	margin: 0 auto;
	position: relative;
}
section.common_section:first-of-type {
	margin-top: 7rem;
}
section.common_section > h1.title {
	padding-top: 4rem;
	font-size: 1.375rem;
	font-weight: 800;
	letter-spacing: .125rem;
	text-align: center;
}

/* --------- --------- --------- --------- common style - product_list_button --------- */
section.common_section .product_list_button {
	margin-top: 5rem;
}
section.common_section .product_list_button a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 480px;
	height: 4rem;
	margin: 0 auto;
	padding-right: 1.5rem;
	text-align: center;
	background-color: #e58f16;
	border-radius: 2rem;
	transition: opacity .2s;
}
section.common_section .product_list_button a:hover {
	opacity: .75;
}
section.common_section .product_list_button a span {
	color: #ffffff;
	line-height: 4rem;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: .125rem;
	position: relative;
}
section.common_section .product_list_button a span::after {
	content: '▲';
	font-family: 'GenJyuuGothic', sans-serif;
	font-weight: 400;
	color: #ffffff;
	font-size: .875rem;
	position: absolute;
	top: calc(50% + .125rem);
	right: -1.75rem;
	transform: translateY(-50%) rotate(90deg);
}

/* --------- --------- --------- --------- common style - download_button --------- */
section.common_section .download_button {
	margin-top: 5rem;
}
section.common_section .download_button a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 480px;
	height: 4rem;
	margin: 0 auto;
	padding-right: 1.5rem;
	text-align: center;
	background-color: #6c8c9d;
	border-radius: 2rem;
	transition: opacity .2s;
}
section.common_section .download_button a:hover {
	opacity: .75;
}
section.common_section .download_button a span {
	color: #ffffff;
	line-height: 4rem;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: .125rem;
	position: relative;
}
section.common_section .download_button a span::after {
	content: '▲';
	font-family: 'GenJyuuGothic', sans-serif;
	font-weight: 400;
	color: #ffffff;
	font-size: .875rem;
	position: absolute;
	top: calc(50% + .125rem);
	right: -1.75rem;
	transform: translateY(-50%) rotate(90deg);
}
