@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------
リセットスタイル
------------------------------------------------------------*/

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}


h1, h2, h3, h4, h5 {
	font-weight: normal;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

body {
	font-size: 1.4em;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color:#666;
	background:#FFF;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: 0;
	vertical-align: bottom;
}

address {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

q:before, q:after {
	content:'';
}

/* ボタンクリック時の点線を消去(Firefox)*/
input[type="submit"]::-moz-focus-inner,input[type="button"]::-moz-focus-inner,input[type="reset"]::-moz-focus-inner {
	border: 0;
}

/* スクロールバーを常に表示させる */
html {
	overflow-y: scroll;
}

/* リンク設定 */
a {
	transition: all 0.2s;
	color:#333;
	text-decoration: none;
}

a:link, a:visited {
}

a:hover {
}

a:focus {
	outline: none;
}


h1, h2, h3, h4, h5, h6 {
	display:block;
}