@charset "utf-8";

/*------------------------------*/
/* 必須アイコン */
.required_button_on {
	color:#bc1e21;
	border-radius:5px;
	text-align: center;
	padding:5px;
	text-align:center;
	font-size:12px;
}

/* チェックボックス・ラジオボックス */
.checkbox_form_01 {
	width: 30px;
	height: 30px;
	background-color: #ffffff;
	box-sizing: border-box;
	padding: 5px 5px;
	border-radius: 7px;
	cursor:pointer;
	border: 1px solid #cccccc;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	transform: translateY(10px); /* 高さ調整 */
	-webkit-transform: translateY(10px); /* 高さ調整 */
}

/*------------------------------*/
/* アニメーションボタン */
.link_button_frame {
	background-color: #000000;
	border-radius:5px;
	color: #ffffff;
	font-size:16px;
	text-align:center;
	width:100%;
	height:50px;
	max-width:350px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	-webkit-user-select: none; /* Chrome or Safari */
	-webkit-touch-callout: none; /* Android and iOS*/
	-moz-user-select: none; /* FireFox */
	-ms-user-select: none; /* IE */
	-o-user-select: none; /* Opera */
	user-select: none;
	display:block;
	position:relative;
	border:none;
}
.link_button_frame:hover {
	color: #ffffff;
}

.link_button_inner {
	width:100%;
	height:100%;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%); /* Safari用 */
	transform:translate(-50%,-50%);
	transition:0.3s;
	background-color: #666666;
	position:absolute;
	border-radius:5px;
}
.link_button_frame:hover .link_button_inner {
	width:0px;
	height:0px;
	opacity: 0;
}
.link_button_text {
	position:absolute;
	top:50%;
	width:100%;
	text-align:center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
