@charset "UTF-8";

html,
html * {
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #FFF;
	color: #323232;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	scrollbar-width: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
}

a {
	cursor: pointer;
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	opacity: .5;
}

picture {
	display: block;
}

@media screen and (max-width: 780px) {
	body {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 320px) {
	html {
		font-size: 50%;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  レイアウト その他
* --------------------------------------------------------------------------------------------------*/


/* デバイスによる表示非表示 */
@media screen and (min-width: 768px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

/* デバイスによる改行設定 */
@media screen and (min-width: 430px) {
	.br--sp {
		display: none;
	}
}
@media screen and (max-width: 429px) {
	.br--sp {
		display: block;
	}
}