@charset "utf-8";
/* -------------------------------- *\
    common
\* -------------------------------- */
.header__logo {
	max-width: 60%;
	padding: 20px 20px 30px;
}
.footer {
	background: #000;
	color: #fff;
}
.footer .copyright {
	padding: 0.5em;
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: center;
}

.wrapper {
	position: relative;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding-right: 14px;
	padding-left: 14px;
}
.wrapper--wide {
	max-width: 1040px;
}
.font-bold {
	font-weight: bold;
}
@media (width > 45em) {
	.header__logo {
		width: 50%;
	}
}
@media (width > 45em) {
	.header__logo {
		width: 40%;
		padding-bottom: 50px;
	}
	.wrapper {
		padding-right: 20px;
		padding-left: 20px;
	}
}
@media (width > 60em) {
	.header__logo {
		width: 30%;
	}
}

/* -------------------------------- *\
    Text
\* -------------------------------- */
/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
@media (width > 35em) {
	.text-left-sm { text-align: left; }
	.text-center-sm { text-align: center; }
	.text-right-sm { text-align: right; }
}
@media (width > 45em) {
	.text-left-md { text-align: left; }
	.text-center-md { text-align: center; }
	.text-right-md { text-align: right; }
}
@media (width > 60em) {
	.text-left-lg { text-align: left; }
	.text-center-lg { text-align: center; }
	.text-right-lg { text-align: right; }
}

/* -------------------------------- *\
    Spaces
\* -------------------------------- */
/* Margin bottom */
.mb-0 { margin-bottom: 0 !important; }

/* -------------------------------- *\
    Display
\* -------------------------------- */
/*
 * 要素の表示/非表示を制御する汎用クラス
 */
.d-none {
	display: none !important;
}
.d-block {
	display: block !important;
}
.d-inline {
	display: inline !important;
}
.d-inline-block {
	display: inline-block !important;
}

@media (width > 35em) {
	.d-none-sm {
		display: none !important;
	}
	.d-block-sm {
		display: block !important;
	}
	.d-inline-sm {
		display: inline !important;
	}
	.d-inline-block-sm {
		display: inline-block !important;
	}
}
@media (width > 45em) {
	.d-none-md {
		display: none !important;
	}
	.d-block-md {
		display: block !important;
	}
	.d-inline-md {
		display: inline !important;
	}
	.d-inline-block-md {
		display: inline-block !important;
	}
}
@media (width > 60em) {
	.d-none-lg {
		display: none !important;
	}
	.d-block-lg {
		display: block !important;
	}
	.d-inline-lg {
		display: inline !important;
	}
	.d-inline-block-lg {
		display: inline-block !important;
	}
}
@media print {
	.d-none-print {
		display: none !important;
	}
	.d-block-print {
		display: block !important;
	}
	.d-inline-print {
		display: inline !important;
	}
	.d-inline-block-print {
		display: inline-block !important;
	}
}

/* スクリーンリーダー用 */
.visually-hidden,
.sr-only,
.sr-only-focusable:not(:focus) {
	clip: rect(0, 0, 0, 0);
	position: absolute;
	bottom: 0;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
}
