<br />
<b>Deprecated</b>:  The each() function is deprecated. This message will be suppressed on further calls in <b>/home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php</b> on line <b>456</b><br />
@charset "utf-8";
/* CSS Document */


/* セレクトボックス */
.selectbox{
	z-index: 100000;
	position: relative;
	width: 100%;
	height: 30px;
	background: white;
}
.selectbox select {
	z-index: 998;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 30px;
	line-height: 30px;
	padding: 0 25px 0 10px;
	border: 1px solid #CCC;
	box-sizing: border-box;
	cursor: pointer;
}
.selectbox select:disabled {
	background: rgba(230,230,230,1.00);
}
.selectbox::before {
	z-index: 999;
	position: absolute;
	top: 12px;
	right: 8px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid black;
	pointer-events: none;
}
@media screen and (max-width: 1023px) {
	.selectbox{
		height: 40px;
	}
	.selectbox select {
		height: 40px;
		line-height: 40px;
	}
	.selectbox::before {
		top: 17px;
	}
}







label{
	vertical-align: middle;
}


/* インプット */
input{
	padding: 0 10px;
	background: white;
	border: 1px solid #CCC;
	box-sizing:border-box;
	height: 40px;
}
input:disabled {
	background: rgba(240,240,240,1.00);
	color: #666;
	opacity: 1;
}


/* チェックボックス */
input[type="checkbox"]{
	display: none;
	vertical-align: middle;
}
input[type="checkbox"] + span {
	position:relative;
	padding-left: 24px;
}
input[type="checkbox"] + span::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 17px;
	height: 17px;
	border: 1px solid #999;
	border-radius: 2px;
	background: white;
}
input[type="checkbox"]:checked + span::after{
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 6px;
	width: 5px;
	height: 11px;
	transform: rotate(40deg);
	border-bottom: 2px solid #0075C1;
	border-right: 2px solid #0075C1;
}
/* フォントサイズがSの場合 */
input[type="checkbox"] + span {
	padding-left: 22px;
}
.font-size-S input[type="checkbox"] + span::before{
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
}
.font-size-S input[type="checkbox"]:checked + span::after{
	top: 2px;
	left: 5px;
	width: 5px;
	height: 10px;
}


/* ラジオボタン */
input[type="radio"] {
	display: none;
}
input[type="radio"] + label{
	position: relative;
	padding-left: 24px;
}
input[type="radio"] + label::before{
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 17px;
	height: 17px;
	border: 1px solid #999;
	border-radius: 50%;
	background: white;
}
input[type="radio"]:checked + label{
	color: #0075C1;
}
input[type="radio"]:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 3px;
	width: 11px;
	height: 11px;
	background: #0075C1;
	border-radius: 50%;
}


/* テキストエリア */
textarea{
	padding: 5px;
	background: white;
	border: 1px solid #CCC;
	box-sizing:border-box;
	overflow: auto;
}





/* フォーカス時 */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus
{
	border: 1px solid skyblue;
	box-shadow: 0 0 6px skyblue;
}


.form-group{
	padding: 15px;
	background: white;
	border: 1px solid #CCC;
	border-radius: 5px;
}
.form-group-title{
	margin-bottom: 5px;
}
.form-group dt{
	margin: 20px 0 5px 0;
}
.form-group dt span{
	vertical-align: middle;
}
.form-group dt:first-of-type{
	margin-top: 0;
}
.form-group dd p{
	padding-bottom: 3px;
	border-bottom: 1px solid #CCC;
}


/* 必須・任意アイコン */
.badge{
	display: inline-block;
	margin-left: 10px;
	padding: 0 6px;
	background: #CCC;
	font-size: 11px;
	height: 20px;
	line-height: 20px;
	border-radius: 3px;
	text-align: center;
	font-weight: normal;
}
.badge-must{
	background: red !important;
	color: white !important;
}


.input-col-1,
.input-col-2,
.input-col-3
{
	width: 100%;
}
/* 1行に入力項目1つ */
.input-col-1 input,
.input-col-1 textarea
{
	width: 100%;
}
/* 1行に入力項目2つ */
.input-col-2 > div{
	float: left;
	line-height: 100%;
}
.input-col-2 > div:last-of-type{
	margin-right: 0;
}
.input-col-2 > div > div{
	display: table;
	width: 100%;
	padding-bottom:5px;
}
.input-col-2 > div > div label{
	display: table-cell;
	padding-right: 5px;
	width: 1em;
}
.input-col-2 > div > div input{
	display: table-cell;
	width: 100%;
}
.input-col-2 > div{
	width: 47%;
	margin-right: 6%;
}
/* 1行に入力項目3つ */
.input-col-3 > div{
	float: left;
	width: 30%;
	margin-right: 5%;
	line-height: 100%;
}
.input-col-3 > div:last-of-type{
	margin-right: 0;
}
.input-col-3 > div > div{
	width: 100%;
	margin-bottom:5px;
}


/* 表示切替のチェックボックス */
.chenger{
	text-align: right;
}
.chenger input,
.chenger label
{
	vertical-align: middle;
}


/* エラー */
.input-err{
	background:rgba(255,240,240,1.00) !important;
}
.err-msg {
	line-height: 120%;
}