@charset "utf-8";


/*
########################################################
	Basic Style
########################################################
*/
html {
	overflow-y: scroll;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
q:before, q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
h2 {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img,figure {
	margin: 0;
	padding: 0;
	vertical-align: top;
}
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
img.alignright, img.alignleft {
	padding: 0;
	margin: 0;
	display: inline;
}
ul {
	margin: 0px;
	padding: 0px;
}
ul li {
	list-style: none outside none;
}
ol {
	list-style-position: outside;
	margin-top: 0;
	margin-left: 15px;
	padding-left: 8px;
}
ol li {
	margin: 8px 0;
}
hr {
	border-color: -moz-use-text-color;
	border-right: 0 none;
	border-color: #e1e8ee;
	border-style: solid none none;
	border-width: 1px 0 0;
	height: 0;
	margin: 10px 0;
}
input, button, select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
.center {
	text-align: center;
}
.alignleft {
	float: left;
	display: inline;
}
.alignright {
	float: right;
	display: inline;
}
.hidden {
	display: none;
}
.clearfix:after {
	display: block;
	clear: both;
	content: "";
}




/*
########################################################
	Font Style
########################################################
*/
body {
	font: 14px/1.9 "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	background-color: #FFF;
	color: #313131;
	font-size: 75%;
	line-height: 180%;
	z-index: 0;
	letter-spacing: 0.05em;
	width: 100%;
	min-width: 1200px;
}
html>/**/body {
	font-size: 14px;
}
* + html body {
	font-family: 'Noto Sans JP', sans-serif;
}



/*
########################################################
	A Style
########################################################
*/
a:link {
	text-decoration: none;
	color: #313131;
}
a:visited {
	text-decoration: none;
	color: #313131;
}
a:hover {
  opacity: 1;
  -webkit-animation: flash 1s;
  animation: flash 1s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
a:active {
	text-decoration: none;
	color: #348fca;
}