@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*.noto-sans-jp {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;	100〜900の間で100ずつ
	font-style: normal;
}*/

/*----------------------------
	common
------------------------------*/
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 1000px) {
	html {
		font-size: 1vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.3333vw;
	}
}
body {
	font-size: 3.2rem;
	line-height: 1.5;
	color: #231815;
}
main {
	overflow-wrap: anywhere;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: "palt";
}
button, input, select, textarea {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
button {
	cursor: pointer;
}
textarea {
	resize: vertical;
}
a {
	color: #231815;
	text-decoration: none;
}
a,
button {
	transition: opacity 0.3s ease-out;
}
a:hover,
button:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}
/* スクリーンリーダー用 */
.srOnly {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* for safari */
/* @supports (-webkit-hyphens: none) {
	[tabindex="-1"]:focus-visible {
		outline: none !important;
	}
} */
.wrapper {
	margin: 0 auto;
	max-width: 100rem;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}

.txtRed {
	color: #E60012;
}

/* header */
header {
	max-width: 100rem;
	width: 100%;
	padding: 5rem 4.8rem 3rem;
	margin: 0 auto;
}
header .logo {
	width: 25rem;
}
header .logo a {
	display: block;
}
@media (max-width: 768px) {
	header {
		padding: 3.6rem 3.6rem 6rem;
	}
}

/* pagetop */
main .pagetop {
	margin-top: 4.5rem;
	text-align: center;
}
main .pagetop a {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 2.5rem 1rem 0;
	background: url(/common/img/arrow_t1.svg) no-repeat center top;
	background-size: 2.4rem;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
}

/* footer */
footer {
	padding: 2rem 0 5rem;
	font-family: "Noto Sans JP", sans-serif;
}
footer .copy {
	font-size: 1.2rem;
	text-align: center;
}
