/*
reset
*/
*,*::before,*::after {
	box-sizing: border-box;
}
a {
	outline: 0;
	transition: opacity 0.1s;
	text-decoration-skip-ink: auto;
	color: #338;
}
img {
	border: 0;
	vertical-align: bottom;
}
ul,ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p,li,figure,figcaption,blockquote,dl,dd {
	margin: 0;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 500;
}
/*
Firefoxのリンク点線を表示させない
*/
*::-moz-focus-inner {
	border-style: none;
}
/*
WebKit
*/
* {
	-webkit-touch-callout: none;	/*長押しすることで現れるコールアウト表示を制御*/
	-webkit-tap-highlight-color: rgba(0,0,0,0);		/*タッチ時の背景色抑制*/
	-webkit-text-size-adjust: 100%;		/*文字サイズ自動調整を抑制*/
}
/*
WebKitでvideoの再生ボタンを消す
*/
/*
*::-webkit-media-controls-panel {
	display: none!important;
	-webkit-appearance: none;
}
*::-webkit-media-controls-play-button {
	display: none!important;
	-webkit-appearance: none;
}
*::-webkit-media-controls-start-playback-button {
	display: none!important;
	-webkit-appearance: none;
}
*/