@charset "UTF-8";


/*! base ============================================== */

html, body, div, span, p, img,
h1, h2, h3, h4, h5, h6, h7, h8, h9,
ul, ol, li, dl, dt, dd,
table, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	}

header, footer, main, aside, nav, menu, section, article,
hgroup, figure, figcaption, address, time, small, canvas, details, summary,
.wrap {
	display: block;
	margin: 0;
	padding: 0;
	font-style: normal;
	}

html {
	/* safari animation anti-aliasing */
	-webkit-font-smoothing: antialiased;
	}

body {
	/* safari animation anti-aliasing（Default） */
	-webkit-font-smoothing: subpixel-antialiased;
	line-height: 1;
	}

* {
  box-sizing: border-box;
	}

::before,
::after {
	box-sizing: border-box;
	text-decoration: inherit;
	vertical-align: inherit;
	}


/*! background ============================================== */

html, body {
	background-color: #000;
	}

* {
  background-repeat: no-repeat;
	}

/* fade in */
body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
	}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
	}


/*! font ============================================== */

* {
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Verdana, Meiryo, sans-serif;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum";
	font-size: 13px;
	word-wrap: break-word;
	color: #4d4d4d;
	}

p, b, span, a, li, dt, dd {
	line-height: 1.8;
	}

h1, h2, h3, h4, h5, h6, h7 {
	line-height: 1.5;
	}

p + p {
	margin-top: 20px;
	}

p, span, b {
	font-size: inherit;
	color: inherit;
	}

b {
	font-weight: bold;
	color: #696969;
	}

/* textover */
*::selection {
	background: #737373;
	color: #ffffff;
	}
*::-moz-selection {
	background: #737373;
	color: #ffffff;
	}

/* br */
main br {
	display: block;
	}

main br.smtbr {
	display: none;
	}


/* smt（font） ━━━━━━━━━━ */
@media only screen and (max-width:767px){
	* {
		font-size: 14px;
		-webkit-text-size-adjust: none;
	}

/* br */
	main br {
		display: none;
	}

	main br.smtbr,
	main .smtbr br {
		display: block;
	}
}


/*! clear ============================================== */

.cut,
header, footer, main, aside, nav, nav ul, menu, section, article,
hgroup, figure, figcaption, address, time, small, canvas, details, summary,
.wrapper, .wrap {
	zoom: 100%;
	}

.cut::after,
header::after, footer::after, main::after, aside::after, nav::after, nav ul::after, menu::after, section::after, article::after,
hgroup::after, figure::after, figcaption::after, address::after, time::after, small::after, canvas::after, details::after, summary::after,
.wrapper::after, .wrap::after {
	content: " ";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
	}
