/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Rset Style

/////////////////////////////////////////////////////////////////////////////////////////////////*/

html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
	vertical-align: baseline;
	padding: 0; margin: 0;
	outline: 0;
	border: 0;
}
:focus {outline: 0;}
body {background: white; line-height: 1; color: black;}
ol, ul {list-style: none;}
table {border-collapse: separate; border-spacing: 0;}
caption, th, td {font-weight: normal; text-align: left;}
blockquote:before, blockquote:after, q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}

/* Form Reset */
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* box-sizing */
* {
	-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
				-o-box-sizing: border-box;
			-ms-box-sizing: border-box;
					box-sizing: border-box;
}


/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Font Layout

/////////////////////////////////////////////////////////////////////////////////////////////////*/

html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
	font-family: noto-sans-cjk-jp, sans-serif; font-weight: inherit; font-style: inherit;
	font-size: 13px; color: #2D1B04;
}

/* [SP] */
@media screen and (max-width: 767px) {
  html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td,
  del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
  dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
    font-size: 12px;
  }
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Base Layout

/////////////////////////////////////////////////////////////////////////////////////////////////*/

html, body {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-text-size-adjust:none;
}
a { text-decoration: none; color: inherit;}

/* [PC] Roll Over */
@media screen and (min-width:768px){
	*.over { transition: all 300ms;}
	*:hover.over { opacity:0.7;}
	.pc-disp { display: block;}
	.sp-disp { display: none;}
}

/* [SP] */
@media screen and (max-width: 767px) {
	.pc-disp { display: none;}
	.sp-disp { display: block;}
}


/*/////////////////////////////////////////////////////////////////////////////////////////////////

 Clerfix

/////////////////////////////////////////////////////////////////////////////////////////////////*/

.cf::after {
	content: "";
	clear: both;
	display: table;
}