@charset "UTF-8";

/***reset_リセット***/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	background:transparent;
	box-sizing: border-box;
}
body {
	position: relative;
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1;
}
a {
	text-decoration: none;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}
img{
	border-style: none;
	vertical-align: bottom;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: inherit;
	line-height: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
ul,
ol,
li,
dl,
dt,
dd {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption {
	text-align: left;
}
td,
th {
	vertical-align: top;
	padding: 0;
}
th {
	text-align: left;
	font-weight: normal;
}
ul,
ol {
	list-style: none;
}
input,
textarea,
optgroup,
select,
button {
	display: inline-block;
	background: transparent;
	color: inherit;
	font: inherit;
	vertical-align: middle;
	text-align: inherit;
	text-indent: 0;
	text-transform: none;
	text-shadow: none;
	letter-spacing: normal;
	-webkit-appearance: none;
	appearance: none;
	outline: 0;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}
button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
	cursor: default;
}
[type="checkbox"],
[type="radio"] {
	padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
label[for] {
	cursor: pointer;
}
option {
	padding: 0;
}
textarea {
	overflow: auto;
}
address{
	font-style: inherit;
}
small{
	font-size: 80%;
}
embed,
object,
iframe {
	border: 0;
	vertical-align: bottom;
}
/* 以下を消すとチェックボックスが見えなくなります */
[type="checkbox"] {
-webkit-appearance: checkbox;
appearance: checkbox;
}
/* 以下を消すとラジオボタンが見えなくなります */
[type="radio"] {
-webkit-appearance: radio;
appearance: radio;
}

/*ワードプレスカスタマイズ時に追加*/
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}