@charset "UTF-8";
/*=========================================
 リセットスタイルシート
===========================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

/*フォーカスとは、ブラウザの画面上でマウスをクリックし、入力状態にあるまでの動作を指します*/
:focus {
	outline: 0;
}

/*行の高さをフォントサイズと同じにしています*/
body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

/* 隣接するセルのボーダーを結合し、間隔を0に指定しています */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*captionとはテーブル(表)にキャプションをつける。キャプションとは、主に図版や写真について説明のために付け加えられた文字情報のことである。*/
caption, th, td {
	font-weight: normal;
	text-align: left;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote::before, blockquote::after,
q::before, q::after {
	content: "";
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
	quotes: "" "";
}

a img {
	border: 0;
}
img {
	vertical-align: top;
}

article, aside, figure, footer, header, hgroup, nav, section {
    display: block;
}
strong {
	font-weight:bold;
}

button,
option,
select,
textarea,
input[type="button"],
input[type="submit"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="select"],
input[type="option"],
input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	border: none;
	outline: 0;
	margin: 0;
	background: #fff;
}

/*IE標準の表示形式抑止*/
select::-ms-expand {
	display: none;
}
