
/* テキストインプットとテキストエリアの基本装飾
*****************************************/
input[type="text"],
textarea {
	padding: 0.4rem;
	outline: none;
	border: 1px solid #DDD;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 16px;
	transition: all .3s;

}

textarea {
	width: 246px;
	width: 98%;
	max-width:246px;
	min-width:246px;
}

/* フォーカスした時のスタイルを変更
*****************************************/
input[type="text"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #3498db;
	border: 1px solid #3498db;
}

/* フォーカス時の幅をのばす
*****************************************/
input[type="text"] {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	width: 94%;
	max-width:420px;
	min-width:246px;
}

input[type="edit"] {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	width: 94%;
	max-width:420px;
	min-width:246px;
}
/*
input[type="text"]:focus {
	width: 300px;
}
*/

/* パスワードインプットとテキストエリアの基本装飾
*****************************************/

input[type="password"],
textarea {
	padding: 0.4rem;
	outline: none;
	border: 1px solid #DDD;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 16px;
  	/*resize: none;
	resize: both;
	resize: horizontal;
	resize: vertical;*/

}
textarea {
    width: 246px;
}

/* フォーカスした時のスタイルを変更
*****************************************/
input[type="password"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #3498db;
	border: 1px solid #3498db;
}

/* フォーカスした時のスタイルを変更
*****************************************/
input[type="password"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #3498db;
	border: 1px solid #3498db;
}

/* フォーカス時の幅をのばす
*****************************************/
input[type="password"] {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	width: 246px;
}
input[type="password"]:focus {
	width: 246px;
}

/* フォーカスした時のスタイルを変更
*****************************************/
input[type="email"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #3498db;
	border: 1px solid #3498db;
}

/* フォーカスした時のスタイルを変更
*****************************************/
input[type="email"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #3498db;
	border: 1px solid #3498db;
}

/* フォーカス時の幅をのばす
*****************************************/
input[type="email"] {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	width: 246px;
}
input[type="email"]:focus {
	width: 246px;
}

/* パスワードインプットとテキストエリアの基本装飾
*****************************************/

input[type="email"],
textarea {
	padding: 0.4rem;
	outline: none;
	border: 1px solid #DDD;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 16px;
  	/*resize: none;
	resize: both;
	resize: horizontal;
	resize: vertical;*/

}

/* ボタンのスタイルを変更
*****************************************/
input.sysNextSubmit {
	border-radius: 0;	
	background: -moz-linear-gradient(top, #FFF 0%, #EEE);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
	border: 1px solid #DDD;
	color: #111;
	padding: 8px 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
input.sysNextSubmit:hover {
	background: -moz-linear-gradient(top, #EFEFEF 0%, #EEE);
	background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#EEE));
}


.sysFormLabel {
	display: inline-block; /* inline-brock でpaddingを有効にする */
	color: #13131e;
	font-style: normal;
/*	font-weight: bold;*/
	font-size: 1.4rem;
	text-align: left;
	padding: 12px 8px 4px 4px;
}


.sysFormField{
	padding: 2px 2px;
}

.sysForm{

	padding: 2px 2px;
}

/*
//===================================================================
// select 装飾 https://copypet.jp/797/
//=================================================================== */
.cp_ipselect {
	overflow: hidden;
	max-width:282px;
	min-width:246px;
/*	margin: 2em auto;*/
	text-align: left;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	font-size: 1.4rem;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
	position: relative;
	border: 1px solid #ddd;
	border-radius: 3px;
	background: #ffffff;
}
.cp_ipselect.cp_sl01::before {
	position: absolute;
	top: 0.8em;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
	padding: 6px 38px 5px 8px;
	color: #666666;
}


/*
textarea {
    	width: 300px;
	width: 94%;
	max-width:420px;
	min-width:246px;
}
*/
