@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%;
  font: inherit;
  font-weight: 500;
  vertical-align: baseline;
	box-sizing: border-box;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  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;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align:left;
}
textarea{
	vertical-align: top;
}

@font-face{font-family:'Noto Sans JP';font-weight:100;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:200;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:300;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:400;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:500;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:600;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:700;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:800;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}
@font-face{font-family:'Noto Sans JP';font-weight:900;src:url(../font/NotoSansJP-VariableFont_wght.ttf) format('truetype')}

/*--------------------------------------------------------------------------------
  body
--------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #222;
  font-size: 1.5rem;
  font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

a {
	display: block;
	color: #222;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

body, html {
	height: 100%;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

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

.oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
	
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}

