@charset "utf-8";

/*-------------------------------------------------------------------clearfix*/
/*---------------------------------------------------------------------------*/

.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*-------------------------------------------------------------------マージン*/
/*---------------------------------------------------------------------------*/

.mb10{
	margin-bottom: 10px;
}

.mb20{
	margin-bottom: 20px;
}

.mb30{
	margin-bottom: 30px;
}

.mb100{
	margin-bottom: 100px;
}

/*-------------------------------------------------------------------アイコン*/
/*---------------------------------------------------------------------------*/

/* blank */

a.blank{
	padding-right: 18px;
	background-image: url(../img/icon/icon-blank.png);
	background-size: 14px;
	background-position: right center;
	background-repeat: no-repeat;
}

/* link */

a.link{
	position: relative;
	display: inline-block;
	padding-left:16px;
	font-size: 12px;
	color: #fff !important;
	vertical-align: middle;
	text-decoration: none;
	background-color:#000;
}

a.link:hover{
	text-decoration: none !important;
}

a.link::before,
a.link::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

a.link::before{
	left: 4px;
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 4px solid transparent;
	border-left: 4px solid #ff3366;
}

/* link2 */

.link2{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}

a.link2::before,
a.link2::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

a.link2::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #000;
}

a.link2::after{
	left: 5px;
	box-sizing: border-box;
	width: 3px;
	height: 3px;
	border: 3px solid transparent;
	border-left: 3px solid #ff3366;
}

/*---------------------------------------------------------------------ボタン*/
/*---------------------------------------------------------------------------*/

.btn a:hover{
	opacity: 0.8;
	animation: btn 0.5s;
	-webkit-animation: btn 0.5s;
	-moz-animation: btn 0.5s;
}

@media screen and (max-width:767px) and (min-width: 1px){
	
	.btn a:hover{
		opacity: 1;
		animation: none;
		-webkit-animation: none;
		-moz-animation: none;
	}
}

@keyframes btn {
	0% { 
		opacity: 1;
	}
	10% { 
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}

@-webkit-keyframes btn {
	0% { 
		opacity: 1;
	}
	10% { 
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}
@-moz-keyframes btn {
	0% { 
		opacity: 1;
	}
	10% { 
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}