@charset "utf-8";

/*------------------------------*/
/* 必須アイコン */
.required_button_on {
	color:#bc1e21;
	border-radius:5px;
	text-align: center;
	padding:5px;
	text-align:center;
	font-size:12px;
}

/*------------------------------*/
/* アニメーションボタン */
/* ------------------------------ */
.link_button_frame {
	background-color: #666666;
	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: #9e9e9e;
	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%);
}

/* ------------------------------ */
/* 共通部品 */
/* ------------------------------ */
/* FORM用のスタイル */
.input_form_01 {
	height: 34px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
	background-color: #ffffff;
	max-width: 100%;
	padding: 2px 5px;
	border: 1px solid #d9d9d9;
	border-radius: 7px;
	font-size: 14px;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* チェックボックス・ラジオボックス */
.checkbox_form_01 {
	transform: translateY(10px); /* 高さ調整 */
	-webkit-transform: translateY(10px); /* 高さ調整 */
	width: 30px;
	height: 30px;
	background-color: #ffffff;
	box-sizing: border-box;
	padding: 5px 5px;
	border-radius: 7px;
	font-size: 18px;
	cursor:pointer;
	border: 1px solid #cccccc;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* テキストエリア */
textarea {
	border: 1px solid #d9d9d9;
	font-size: 14px;
	padding: 10px;
	border-radius: 7px;
	line-height: 20px; /* auto_textarea */
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
