input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
select::-ms-expand {
    display: none;
}
select.sp_default_select {
    height: 3.5em;
    width: 100%;
	border-radius: 0px;
    border: solid 1px #ccc;
    background: url(../images/select_btn.gif) no-repeat right 5px center;
	background-size:contain;
    padding-right: 25px;
    padding-left: 10px;
}

input::-webkit-input-placeholder {
  color: #a0a0a0;
}

input:-ms-input-placeholder {
  color: #a0a0a0;
}

input::placeholder {
  color: #a0a0a0;
}

/* IE */
input:-ms-input-placeholder {
  color: #a0a0a0;
}

/* Edge */
input::-ms-input-placeholder {
  color: #a0a0a0;
}

input.disabled_input {
    background-color: #D1D1D1 !important;
    pointer-events: none;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea {
	width:100%;
	height:42px;
	padding: 8px;
	font-size: 1.4rem;
	border: 1px solid #e4e4e4;
	border-radius: 7px;
}
textarea {
	height: auto;
    padding: 20px;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
label {
	padding-right: 10px;
}
input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px #f2f2f2 inset;
}
.gray_input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}
.gray_input {
	width:100%;
	background-color: #f7f7f7;
	height:42px;
	padding: 10px;
	font-size: 1.3rem;
}
input[type="radio"]:checked, input[type="checkbox"]:checked {
    background-color: #4398d4 !important;
}
input[type="radio"], input[type="checkbox"], input[type="check"] {
    padding: 5px;
    line-height: 1.5;
    margin-right: 0.5em;
}
input[type="radio"] {
    border-radius: 8px;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    border: solid 2px #ccc;
    margin-right: 7px;
}
input[type="checkbox"] {
    border-radius: 2px;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    border: solid 2px #ccc;
    margin: 0;
}

.select_n {
	overflow: hidden;
	width: 100%;
	position: relative;
	border: 1px solid #e4e4e4;
	border-radius: 7px;
	height: 42px;
	display: inline-block;
}
.select_n select {
	width: 100%;
	height: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.select_n select::-ms-expand {
    display: none;
}
.select_n::before {
	position: absolute;
	top: 50%;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.select_n select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}
.select_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.select_row li {
    width: 21%;
    margin-right: 1.5%;
}
.w_full {
	width: 310px !important;
}
.w_half {
	width: 180px !important;
}
.w_short {
	width: 130px !important;
}

.underline_input {
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
	border-bottom: 1px solid #000 !important;
}
.single_form {
	position: relative;
}
.single_form_btn {
	position: absolute;
	width: 15px;
	height: 15px;
    right: 5px;
	top: 50%;
	background:url('../pcimages/arrow_next.png') center center;
	background-size: cover;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}