@charset "UTF-8";
/* CSS Document */
.cstmz input,
.cstmz textarea{
    font-size:14px;
    border: 1px solid #999;
    border-radius:5px;
    padding:3px 5px;
}
 
.cstmz input{
    width:95.5%;
}
.cstmz textarea{
    width:95.5%;
}
.cstmz input[type=text]:focus,
.cstmz textarea:focus {
	border-color:#999;
	outline:none;
	background-color:#d6e4d6;
	background-image:none;
}
.cstmz-simple input,
.cstmz-simple textarea{
    font-size:14px;
    border: 1px solid #999;
    border-radius:5px;
    padding:3px 5px;
}

.cstmz-simple input{
    width:90%;
}
.cstmz-simple textarea{
    width:95.5%;
}
.cstmz-simple input[type=text]:focus,
.cstmz-simple textarea:focus {
        border-color:#999;
        outline:none;
        background-color:#d6e4d6;
        background-image:none;
}

/*checkbox*/
.checkA {
    display: inline-block;
    position: relative;
    margin-right: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    vertical-align: middle;
	background:url(../img/ops/common/check.png) no-repeat 0 0;
	border:none;
	-webkit-background-size:20px 20px;
	-moz-background-size:20px 20px;
	-o-background-size:20px 20px;
	background-size:20px 20px;
}

.checkA:checked::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
	width: 20px;
    height: 20px;
	background:url(../img/ops/common/checked.png) no-repeat 0 0;
	border:none;
	-webkit-background-size:20px 20px;
	-moz-background-size:20px 20px;
	-o-background-size:20px 20px;
	background-size:20px 20px;
}

/*radiobutton*/
.radioA {
    display: inline-block;
    position: relative;
    margin-right: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    vertical-align: middle;
	background:url(../img/ops/common/radio.png) no-repeat 0 0;
	border:none;
	-webkit-background-size:20px 20px;
	-moz-background-size:20px 20px;
	-o-background-size:20px 20px;
	background-size:20px 20px;
}

.radioA:checked::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
	width: 20px;
    height: 20px;
	background:url(../img/ops/common/radioed.png) no-repeat 0 0;
	border:none;
	-webkit-background-size:20px 20px;
	-moz-background-size:20px 20px;
	-o-background-size:20px 20px;
	background-size:20px 20px;
}

.w100p{ width:100%; }
