/* CSS Document */


/* UTILITIES */
a,
a:link,
a:visited {
	text-decoration: none;
}
a:active,
a:hover {
	color: #e23e26;
}

.clr {
	clear: both;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.f_left {
	float: left;
}
.f_right {
	float: right;
}

.a_left {
	text-align: left;
}
.a_right {
	text-align: right;
}

.pc {
	opacity: 1;
	display: block;
}
.sp {
	opacity: 0;
	display: none;
	height: 0;
}



@media (max-width: 767px) {
	.pc {
		opacity: 0;
		display: none;
		height: 0;
	}
	.sp {
		opacity: 1;
		display: block;
	}
	
}