@charset "utf-8";
/* reset
-------------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}
i {
	font-style: normal;
}
table {
	font-size: 100%;
	line-height: 1.5;
	border-collapse: collapse;
	border-spacing: 0;
}
th {
	font-weight: normal;
	text-align: left;
}
img {
	border: 0;
	vertical-align: bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	img {
		image-rendering: initial;
	}
}
ul li {
	list-style: none;
}
ol {
	padding-left: 18px;
}
input,
textarea {
	vertical-align: middle;
}
address,
em {
	font-style: normal;
}
/* align */
.t_left {
	text-align: left !important;
}
.t_center {
	text-align: center !important;
}
.t_right {
	text-align: right !important;
}
/* link
-------------------------------------------------------------------*/
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
label {
	cursor: pointer;
}
/* clearfix
-------------------------------------------------------------------*/
.fix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow: hidden;
}
.fix {
	min-height: 1%;
}
/* display_none */
.display_pc {
	display: block;
}
.display_pc.in {
	display: inline;
}
.display_sp,
.display_sp.in {
	display: none;
}
@media screen and (max-width:767px) {
	.display_pc,
	.display_pc.in {
		display: none;
	}
}
@media screen and (max-width:767px) {
	.display_sp {
		display: block;
	}
	.display_sp.in {
		display: inline;
	}
}
.txt_indent {
	margin-left: 1em;
	text-indent: -1em;
	font-feature-settings: normal;
}