<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*------------------------------------------------
over write
-------------------------------------------------*/
.btnGreen{
	background: #4CAF50;
}
.btnOrange{
	background: #ff9800;
}
.btnOrange:before{
	white-space: pre;
	content: "Pick\AUP";
	font-weight: bold;
	color: #ff0000;
	display: inline-block;
	width: 50px;
	height: 40px;
	padding-top: 10px;
	margin-right: 10px;
	background: #FFEB3B;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-o-border-radius: 50px;
	-ms-border-radius: 50px; 
	border-radius: 50px;
	line-height: 1;
}
.txtBlue{
	color:#276bb4; 
}

/*---------------------------------
 エントリーボタン
----------------------------------*/
.btnApply {
	/*background:#dd010d;*/
	color:#ffeb00;
	background: #ef0418; /* Old browsers */
	background: linear-gradient(to bottom,  #ff0515 0%,#ef0418 56%,#db0416 100%); 
	border-radius: 4px;
	/*box-shadow: 0 7px 9px rgba(0,0,0,0.3);*/
	transition: .3s;
	width: 100%;
	padding: 0.55em;
}
/*--- 光らせるエフェクト ---*/
.imgReflection {
	width:100%;
	position:relative;
	overflow:hidden;
}
.reflection {
	display:block;
	position:absolute;
	top:-180px;
	left:0;
	width:30px;
	height:100%;
	background-color: #fff;
	opacit:0;
	-webkit-transform: rotate(45deg);
	-webkit-animation: reflection 4s ease-in-out infinite;
	-moz-transform: rotate(45deg);
	-moz-animation: reflection 4s ease-in-out infinite;
	-ms-transform: rotate(45deg);
	-ms-animation: reflection 4s ease-in-out infinite;
	-o-transform: rotate(45deg);
	-o-animation: reflection 4s ease-in-out infinite;
	transform: rotate(45deg);
	animation: reflection 4s ease-in-out infinite;
}

/* animation設定 @reflection */
@-webkit-keyframes reflection {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

@-moz-keyframes reflection {
	0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}

@-ms-keyframes reflection {
	0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}

@-o-keyframes reflection {
	0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

@keyframes reflection {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

@media screen and (max-width:767px) {
.btnApply {
	width: 85%;
	padding:10px;
	line-height: 1.2;
	}
}

.btnApply:hover {
	box-shadow: 0 0 2px rgba(0,0,0,0.48);
	/*background: #e26e18;*/
	color:#ffff08;
	text-decoration:none;
}
.btnApply span:not(.linkArrow){
	color:#fff;
}
.btnApply .linkArrow:after{
	border-color:#fffe08;
}</pre></body></html>