@charset "UTF-8";

#formBody {
	width: auto;
	padding: 20px 0;
	margin: 10px auto 20px;
	font-size: 14px;
}

#formBody .mask {
	text-security:disc;
	-webkit-text-security:disc;
}

#formBody .inputBox {
	padding-left: 50px;
	margin-bottom: 5px;
}

#formBody .deleteCell {
	white-space:nowrap;
	width: 10%;
	text-align: center;
}

#formBody .formGroup {
	padding: 0 1vw;
}

#formBody .formBox {
	padding: 10px 20px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}

#formBody label {
	display: block;
	font-size: 15px;
	padding-bottom: 5px;
	color: #007aff;
}

#formBody .errorMark {
	color:#ff0000;
}

#formBody input[type="date"],
#formBody input[type="month"],
#formBody input[type="password"],
#formBody input[type="number"],
#formBody input[type="email"],
#formBody input[type="text"],
#formBody textarea {
    border:1px solid #888;
	width: 500px;
	padding: 2px;
	font-size: 15px;
	color: #515151;
	background: #fff;
	margin: 5px 10px;
	-webkit-appearance: none;
}

#formBody textarea{
	width: 80%;
}


#formBody input[type="date"],
#formBody input[type="month"],
#formBody input[type="password"],
#formBody input[type="number"],
#formBody input[type="email"],
#formBody input[type="text"],
#formBody textarea{
	display: inline-block;
	width: 80%;
}


#formBody select {
	border:1px solid #888;
	padding: 2px;
	color: #515151;
	background: #fff;
	margin: 5px 10px;
}

/*エラー時の入力欄背景*/
#formBody .errorInput {
  	background: #fff0f5 !important;
}

.submitBlock {
	padding: 20px 0;
	text-align: center;
}

#formBody .submit:hover{
	opacity: 0.8;
}

#formBody .submit{
	display: inline-block;
	border-radius: 5px;
	border:none;
	padding: 10px 30px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	background: #007aff;
    
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#007aff),
        to(#007aff)
        );
    -webkit-box-shadow: 0;
    -webkit-appearance: none;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #007aff,
        #007aff
        );
    -moz-box-shadow: 0;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#007aff,endColorstr=#007aff);
    zoom: 1;
    margin: 0 20px;
}

#formBody .return {
	display: inline-block;
	border-radius: 5px;
	border:none;
	padding: 10px 30px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	background: #3cb371;
	margin: 0 20px;
    
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#3cb371),
        to(#3cb371)
        );
    -webkit-box-shadow: 0;
    -webkit-appearance: none;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #3cb371,
        #3cb371
        );
    -moz-box-shadow: 0;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#3cb371,endColorstr=#3cb371);
    zoom: 1;
}

#formBody .reset {
	display: inline-block;
	border-radius: 5px;
	border:none;
	padding: 10px 30px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	background: #ff4500;
	margin: 0 20px;
    
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#ff4500),
        to(#ff4500)
        );
    -webkit-box-shadow: 0;
    -webkit-appearance: none;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #ff4500,
        #ff4500
        );
    -moz-box-shadow: 0;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ff4500,endColorstr=#ff4500);
    zoom: 1;
}

#formBody .return {
	display: inline-block;
	border-radius: 5px;
	border:none;
	padding: 10px 30px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	background: #007aff;
    

	/* Webkit */
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#61e78a),
		to(#61e78a)
		);
	-webkit-box-shadow: 1px 1px 1px #fff;
	-webkit-appearance: none;

	/* Firefox */
	background: -moz-linear-gradient(
		top,
		#61e78a,
		#61e78a
		);
	-moz-box-shadow: 1px 1px 1px #fff;

	/* IE */
	filter:progid:DXImageTransform.Microsoft.gradient
	(startColorstr=#61e78a,endColorstr=#61e78a);
	zoom: 1;
}

#formBody .delete{
	display: inline-block;
	border-radius: 5px;
	border:none;
	padding: 10px 30px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	background: #c53d43;
	/* Webkit */
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#c53d43),
		top(#c53d43)
		);
	-webkit-box-shadow: 1px 1px 1px #fff;
	-webkit-appearance: none;

	/* Firefox */
	background: -moz-linear-gradient(
		top,
		#c53d43,
		#c53d43
		);
	-moz-box-shadow: 1px 1px 1px #fff;

	/* IE */
	filter:progid:DXImageTransform.Microsoft.gradient
	(startColorstr=#c53d43,endColorstr=#c53d43);
	zoom: 1;
}

/*radio checkboxのカスタマイズ*/
#formBody input[type="radio"],
#formBody input[type="checkbox"] {
	width: 15px;
	height: 15px;
	margin-right: 5px; 
	margin-left: 10px; 
}

#formBody .return[disabled]:hover,
#formBody .submit[disabled]:hover,
#formBody .reset[disabled]:hover,
#formBody .reset[disabled],
#formBody .return[disabled],
#formBody .submit[disabled] {
	cursor: default;
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from( #ccc),
        to( #ccc)
        );
    -webkit-box-shadow: 0;
    -webkit-appearance: none;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
         #ccc,
         #ccc
        );
    -moz-box-shadow: 0;
    opacity: 1;
}


/*radio checkboxのカスタマイズ*/
#formBody input[type="radio"],
#formBody input[type="checkbox"] {
	width: 15px;
	height: 15px;
	margin-right: 5px; 
	margin-left: 10px; 
}




/*汎用クラス*/
#formBody .inputNote {
	text-indent: -1em;
	line-height: 1.5;
	font-size: 12px;
	padding-left: 1em;
	margin-bottom: 10px;
}

#formBody .error {
	display: block;
	padding-left: 25px;
	margin-bottom: 5px;
	background: url("../img/common/errerIcon.png") left no-repeat;
	line-height: 21px;
	color: #ff006c;;
}



#formBody .short[type="date"],
#formBody .short[type="month"],
#formBody .short[type="password"],
#formBody .short[type="number"],
#formBody .short[type="mail"],
#formBody .short[type="text"] {
	width: 60%;
	min-width: auto;
}

#formBody .x-short[type="date"],
#formBody .x-short[type="month"],
#formBody .x-short[type="password"],
#formBody .x-short[type="number"],
#formBody .x-short[type="mail"],
#formBody .x-short[type="text"]{
	width: 40%;
	min-width: auto;
}

#formBody .auto[type="date"],
#formBody .auto[type="month"],
#formBody .auto[type="password"],
#formBody .auto[type="number"],
#formBody .auto[type="mail"],
#formBody .auto[type="text"]{
	width: auto;
	min-width: auto;
}

#formBody .result {
	text-indent: 30px;
	font-size: 16px;
	font-weight: bold;
}

#formBody .bt1{
	display: inline-block;
	padding: 10px 20px;
	width: 70%;
	text-align: center;
	font-size: 16px;
	color: #8a8a8a;
	cursor: pointer;
	background: none;
	border: 1px #8a8a8a solid;
	margin-bottom: 10px;
}

#formWraper {
	width: auto;
	margin: 5px auto;
	color: #3d3d3d;
	padding: 20px 0;

	border-radius: 10px; 
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px; 
}


/*エラー時の入力欄背景*/
.editForm .errorBox select,
.editForm .errorBox textarea,
.editForm .errorBox input,
#formBody .errorBox select,
#formBody .errorBox textarea,
#formBody .errorBox input {
	background: #fff0f5 !important;
	border: 2px solid #ff006c;;
}

.errorBox .dropify-wrapper{
	border: 2px solid #ff006c;;
	background: #fff0f5;
	color: #ff006c;;
}

#formBody .dropify-wrapper {
	width: auto;
}

.detailTable .box {
	-webkit-justify-content: start;
    -moz-justify-content: start;
    -ms-justify-content: start;
    -o-justify-content: start;
    justify-content: start;
}

.agreement {
	text-align: center;
	padding: 20px 0;
	font-size: 16px;
}

::-webkit-input-placeholder {
    color: #ccc;
    font-weight: 100;
}
:-moz-placeholder {
    color: #ccc;
    font-weight: 100;
    opacity: 1;
}
::-moz-placeholder {
    color: #ccc;
    font-weight: 100;
    opacity: 1;
}

.searchBox {
	-webkit-justify-content: start;
    -moz-justify-content: start;
    -ms-justify-content: start;
    -o-justify-content: start;
    justify-content: start;
}

.searchBox dl{
	margin-right: 30px;
}

.searchBox dt{
	min-width: 150px;
	margin-right: 5px;
}

.searchBox dd{
	min-width: 240px;
}

.radioColumn {
	display: inline-block;
}