
.btn_search_clip.disabled {
	pointer-events: none;
  	cursor: default;
}
.btn_search_clip {
	color: #000;
}
.btn_search_clip.disabled,
.btn_search_clip.not {
	color: #CCC;
}
/* メッセージ要素
********************************************************************************/
#clipMessage {
	position: fixed;
	top: 80px;
	left: 50%;
	display: none;
	width: 280px;
	margin-left: -140px;
	height: 100px;
	text-align: center;
	z-index: 9999;
	background-color: #42C0A6;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}
#clipMessage p {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	color: #FFF;
	font-size: 14px;
}
#clipMessage p.clip_mes:before {
	content:"\f0c6";
	font-family: "FontAwesome";
	margin-right: 8px;
	font-size: 18px;
}
#clipMessage p.search_clip_mes:before {
	content:"\f004";
	font-family: "FontAwesome";
	margin-right: 8px;
	font-size: 18px;
}
#clipMessage.fadeIn {
	display: table;
	opacity: 1;
	-webkit-animation: sclip_in 0.3s linear;
	-moz-animation: sclip_in 0.3s linear;
	animation: sclip_in 0.3s linear;
}
#clipMessage.fadeOut {
	display: table;
	opacity: 0;
	-webkit-animation: sclip_out 0.3s linear;
	-moz-animation: sclip_out 0.3s linear;
	animation: sclip_out 0.3s linear;
}
@-webkit-keyframes sclip_in {
	0% {-webkit-transform: display: none; opacity: 0;}
	1% {-webkit-transform: display: table; opacity: 0; margin-top: -40px;}
	100% {-webkit-transform: display: table; opacity: 1; margin-top: 0;}
}
@-moz-keyframes sclip_in {
	0% {-moz-transform: display: none; opacity: 0;}
	1% {-moz-transform: display: table; opacity: 0; margin-top: -40px;}
	100% {-moz-transform: display: table; opacity: 1; margin-top: 0;}
}
@keyframes sclip_in {
	0% {transform: display: none; opacity: 0;}
	1% {transform: display: table; opacity: 0; margin-top: -40px;}
	100% {transform: display: table; opacity: 1; margin-top: 0;}
}

@-webkit-keyframes sclip_out {
	0% {opacity: 1; margin-top: 0;}
	100% {opacity: 0; margin-top: 40px;}
}
@-moz-keyframes sclip_out {
	0% {opacity: 1; margin-top: 0;}
	100% {opacity: 0; margin-top: 40px}
}
@keyframes sclip_out {
	0% {opacity: 1; margin-top: 0;}
	100% {opacity: 0; margin-top: 40px}
}
/* ログインを促す要素
*****************************************************************************/
#noneMessage {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 140%;
	text-align: center;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.9);
}
#noneMessage > div {
	position: absolute;
	display: table;
	text-align: center;
	top: 20%;
	left: 50%;
	width: 400px;
	height: 200px;
	margin-left: -200px;
	background-color: #42C0A6;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}
#noneMessage > div > div {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	color: #FFF;
	font-size: 14px;
}
#noneMessage > div > div h3 {
	margin-bottom: 20px;
	font-size: 18px;
}
#noneMessage > div > div p {
	line-height: 18px;
	margin-bottom: 20px;
}
#noneMessage.fadeIn {
	display: table;
	opacity: 1;
	-webkit-animation: none_in 0.3s linear;
	-moz-animation: none_in 0.3s linear;
	animation: none_in 0.3s linear;
}
#noneMessage.fadeOut {
	display: table;
	opacity: 0;
	-webkit-animation: none_out 0.3s linear;
	-moz-animation: none_out 0.3s linear;
	animation: none_out 0.3s linear;
}
@media screen and (max-width:480px) {
	#noneMessage > div {
		top: 20%;
		left: 4%;
		width: 92%;
		height: 200px;
		margin: 0;
	}
}
@-webkit-keyframes none_in {
	0% {-webkit-transform: display: none; opacity: 0;}
	1% {-webkit-transform: display: block; opacity: 0;}
	100% {-webkit-transform: display: block; opacity: 1;}
}
@-moz-keyframes none_in {
	0% {-moz-transform: display: none; opacity: 0;}
	1% {-moz-transform: display: block; opacity: 0;}
	100% {-moz-transform: display: block; opacity: 1;}
}
@keyframes none_in {
	0% {transform: display: none; opacity: 0;}
	1% {transform: display: block; opacity: 0;}
	100% {transform: display: block; opacity: 1;}
}

@-webkit-keyframes none_out {
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@-moz-keyframes none_out {
	0% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes none_out {
	0% {opacity: 1;}
	100% {opacity: 0;}
}