@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;
}
.mb40{
	margin-bottom: 40px;
}

.mb100{
	margin-bottom: 100px;
}
.mt10{
	margin-top: 10px;
}

/*-------------------------------------------------------------------マージン*/
/*---------------------------------------------------------------------------*/
.fs6{
	font-size: 6px;
}
.fs12{
	font-size: 12px;
}
.fs14{
	font-size: 14px;
}
.fs16{
	font-size: 16px;
}
.fs18{
	font-size: 18px;
}
.bold{
	font-weight: bold;
}
/*-------------------------------------------------------------------アイコン*/
/*---------------------------------------------------------------------------*/

/* 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;
}

/* new */

span.icon-new{
	display: inline-block;
	width: 43px;
	height: 15px;
	margin-left: 5px;
	background-image: url(../img/icon/icon-new.png);
	background-size: 43px 15px;
	vertical-align: text-top;
}

/* link */

a.link{
	display: inline-block;
	margin: 0 10px 10px 0;
	padding: 4px 8px;
	border: 1px solid #000;
	border-radius: 8px;
	background-color: #ffb4c6;
	font-weight: bold;
}

a.link:hover{
	background-color: #ff7373;
	color: #fff;
}
/* 190520_link2 */

a.link2{
	display: inline-block;
	margin: 0 10px 10px 0;
	padding: 8px 30px;
	border: 1px solid #000;
	border-radius: 8px;
	background-color: #ffb4c6;
	font-weight: bold;
}

a.link2:hover{
	background-color: #ff7373;
	color: #fff;
}

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

.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;
	}
}