@charset "utf-8";
/* CSS Document */

/* Base */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
.m-box-relative {
	position: relative;
	margin: 50px auto 0;
	width: 100%;
	height: 100%;
}
.m-box-absolute-first {
	position: absolute;
	width: 45%;
	top: 50%;
	left: 28%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.m-box-absolute-second {
	position: absolute;
	width: 40%;
	top: 50%;
	left: 76%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: right;
	color: #fff;
}
.m-box-absolute-second a{
	color: #fff;
	display: inline-block;
	-webkit-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
	filter: alpha(opacity=100);
	opacity: 1;
}