@charset "utf-8";

html {
	font-size: 62.5%; /* 1rem = 10px */
/*	font-feature-settings: 'palt'; -- Yaku Han JP 使うので不要 -- */
}

/* スクロールバー消す(PCでスマホビューを開発しやすい) */
@media screen and (max-width:750px) {
	html {
		overflow: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	html::-webkit-scrollbar {
		display:none;
	}
}

/* PC/SP切り替え用 */
@media screen and (min-width: 751px) {
	.pc_none,
	.sp {
		display: none!important;
	}
	.sp_none,
	.pc {
		display: block!important;
	}
	.br_pc_none,
	.br_pcnone {
		display: none!important;
	}
	.br_sp_none,
	.br_spnone {
		display: inline-block!important;
	}
	.pc_none_flex {
		display: none!important;
	}
	.sp_none_flex {
		display: flex!important;
	}
}
@media screen and (max-width: 750px) {
	.pc_none,
	.sp {
		display: block!important;
	}
	.sp_none,
	.pc {
		display: none!important;
	}
	.br_pc_none,
	.br_pcnone {
		display: inline-block!important;
	}
	.br_sp_none,
	.br_spnone {
		display: none!important;
	}
	.pc_none_flex {
		display: flex!important;
	}
	.sp_none_flex {
		display: none!important;
	}
}
