@charset "utf-8";

/*----------------------------------------------------------------------> ▼ general --*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, hr, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, select, textarea {
	box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, hr, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, select {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
}

/*----------------------------------------------------------------------> ▼ html, body --*/

html, body {
	-webkit-text-size-adjust: 100%;
	text-align: center;
}

/* スクロールバー非表示 */

body {
	-ms-overflow-style: none; /* IE, Edge 対応 */
	scrollbar-width: none; /* Firefox 対応 */
}

body::-webkit-scrollbar { /* Chrome, Safari 対応 */
	display: none;
}

/*----------------------------------------------------------------------> ▼ div --*/

div {}

/*----------------------------------------------------------------------> ▼ table --*/

table, th, td, thead, tbody, tfoot {
	border-collapse: collapse;
	border-spacing: 0;
}

/*----------------------------------------------------------------------> ▼ a --*/

a {
	text-decoration: none;
	color: inherit;
}

/*----------------------------------------------------------------------> ▼ dl, dt, dd, ul, li --*/

li {
	list-style: none;
}

/*----------------------------------------------------------------------> ▼ hr --*/

hr {
	width: 100%;
}

/*----------------------------------------------------------------------> ▼ img --*/

img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: bottom;
}

/*----------------------------------------------------------------------> ▼ input, button --*/

input, select, textarea, button {
	vertical-align: middle;
	cursor: pointer;
}

input::placeholder, select::placeholder, textarea::placeholder {
	font-size: ;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

input[type="submit"], input[type="button"], button, a.button {
	/*	display:inline-block;
	min-width:180px;
	padding:8px 0 6px;
	border:1px solid #939393;
	border-radius:1px;
	background:linear-gradient(#f7f7f7, #ddd);
	
	text-align:center;*/
}
/*
input[type="submit"]:hover, input[type="button"]:hover, button:hover, a.button:hover{
	background: linear-gradient(#f7f7f7, #cfcfcf);
}
*/
input[type="submit"]:disabled, input[type="button"]:disabled, button:disabled, a.button:disabled {
	background: #fff;
	color: #ccc;
	border-style: dashed;
	border-color: #ddd;
	cursor: auto;
}

textarea {
	width: 100%;
	resize: none;
}

input:disabled, select:disabled, select[disabled], select[disabled] > option, textarea:disabled {
	background: #f0f0f0;
	color: #000;
	cursor: auto;
}

input.dummy, select.dummy, textarea.dummy {
	position: absolute;
	top: -9999px;
	left: -9999px;
}




article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
	content: none;
}

ins {
	background: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

span {
	display: inline;
}

table {
	width: 100%;
}