/*------ 主としてinput関係のcss　最後に読ませること ------------------------------*/

/* input, select
------------------------------------------------------------*/

/* inputbox */
input.inputbox {
	margin: 0px;
	padding: 8px 12px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #8899bb;
	border-radius: 4px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 100%;
	text-align: left;
	line-height: 1;
	color: #313131;
}
input.inputbox:focus {
	border: 1px solid orange;
}
input.inputbox::placeholder {
	color: #b0b0b0;
}

textarea.textbox {
	margin: 0px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #8899bb;
	border-radius: 4px;
	font-size: 100%;
	text-align: left;
	line-height: 1.6;
	color: #313131;
}
textarea.textbox:focus {
	border: 1px solid orange;
}

select.selorder {
	margin: 0px 0 3px;
	padding: 10px 20px 8px 10px;
	border: 1px solid #8899bb;
	border-radius: 4px;
	text-align: left;
	font-size: 100%;
	line-height: 1;
	color: #313131;
	background-image: url(images/select_icon_arrow1.png);
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: right 5px center;
	background-color: #fff
}
/* 見出し */
div.framebox p.inpheadl {
	margin: 40px 0 10px;
	padding: 0;
	font-weight: bold;
	line-height: 1.2;
	border-bottom: 1px solid #ccc;
}
div.framebox p.inpheadl span {
	font-weight: normal;
	font-size: 80%;
	color: #999;
}

div.framebox p.inlabel {
	padding: 0;
	margin: 10px 0 3px;
	line-height: 1;
}
p.error {
	padding: 0;
	margin: 0;
	line-height: 1.5;
	color: crimson;
}
/* 必須 */
span.required {
	display: inline-block;
	margin: 0 8px;
	padding: 2px 3px;
	font-size: 60%;
	line-height: 1.1;
	vertical-align: text-top;
	color: #fff;
	background: tomato;
	border-radius: 3px;
}

/*-------- 枠 ------------*/
.frame {
	padding: 6px 10px 2px 15px;
	margin: 0 0 5px;
	text-align: left;
	border: 1px solid #bed3ca;
}
.bframe {
	display: inline-block;
	padding: 2px 10px 1px;
	margin: 0;
	font-size: 11pt;
	text-align: center;
	border: 1px solid #bed3ca;
}

/*-------- Button 横長小さめ------------*/
a.widesmall {
	margin-left: 5px;
	text-decoration: none;
}
a.widesmall span {
	display: inline-block;
	margin: 0 1px;
	padding: 2px 20px 1px;
	background-color: #f4f4f4;
	border: 1px solid #e8e8e6;
	border-radius: 2px;
	text-align: center;
	text-decoration: none;
	font-size: 10pt;
	font-weight: normal;
}
a.widesmall:hover span {
	display: inline-block;
	background-color: #e8e8e6;
	border: 1px solid #e4e4e2;
	cursor: pointer;
}
a.widesmall img {
	margin: 0;
	padding: 0;
	opacity: 1.0;
}
a.button_flat_s:hover img {
	opacity: 0.6;
}
/*-------- Button 一番小 右寄せ------------*/
a.verysmall {
	margin: 0;
	padding: 0;
	text-decoration: none;
}
a.verysmall span {
	display: inline-block;
	float: right;
	margin: 0;
	padding: 4px 8px;
	background-color: #f4f4f4;
	border: 1px solid #e8e8e6;
	border-radius: 2px;
	text-align: center;
	text-decoration: none;
	font-size: 9pt;
	line-height: 110%;
	font-weight: normal;
}
a.verysmall:hover span {
	background-color: #e8e8e6;
	border: 1px solid #e4e4e2;
	cursor: pointer;
}

/*-------- input Button ------------*/
input[type="submit"] {
	-webkit-appearance: none;
	display: inline-block;
	margin: 0 1px;
	padding: 12px 10px 12px 20px;
	background-color: #e1e1e1;
	border: 1px solid #ddd;
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	font-size: 100%;
	font-weight: normal;
	color: #616161;
	letter-spacing: 0.5em;
}
input[type="submit"]:hover {
	display: inline-block;
	background-color: #19448e;
	transition: all 0.4s;
	border: 1px solid #19448e;
	cursor: pointer;
	color: #fff;
}

/*-------- 行間調整、font-weight ------------*/
p.lowheight {
	margin: 0;
	padding: 0;
	line-height: 160%;
}
p.bold_lg {
	padding: 10px 0 5px;
	line-height: 170%;
	font-weight: bold;
	font-size: 11pt;
}
