@charset "utf-8";
/* CSS Document */
select.select01{
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    background:#f8f8f8;
    border: 1px solid #dcdcdc;
}

/* -表單-------------------------------------------------------------------------------------------------------*/
.styled-input {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -10px 0px 0px 0px; padding:0; list-style:none;
}
.styled-input li {
	position: relative;
	width: 100%;
	margin: 10px 0px 0px 0px; padding:0; list-style:none;
	font-size: 14px; color: #666; background:none;
}
.styled-input li a{
	color: #bc2d41; font-weight:bold;
}
.styled-input li.half {
	width: calc(50% - 5px);
}
@media only screen and (min-width: 0px) and (max-width: 640px){
.styled-input li.half {
	width: 100%;
}
}
.styled-input li.code {
	display: flex;
}
.styled-input li.code img {
	display: block;
}
.styled-input input[type="text"],
.styled-input input[type="tel"],
.styled-input input[type="email"]{
	width:100%;
	padding: 26.5px 15px;
	height: 14px;
	font-size: 14px;
	color: #353535;
	background-color: #f6f6f6;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
			border:1px solid #dcdcdc;
}
.styled-input textarea {
	width:100%;
	padding: 19.5px 15px;
	height: 14px;
	font-size: 14px;
	color: #353535;
	background-color: #f6f6f6;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
			border:1px solid #dcdcdc;
}
.styled-input input[type="text"].active,
.styled-input input[type="tel"].active,
.styled-input input[type="email"].active,
.styled-input textarea.active {
	padding: 32px 15px 21px 15px;
}
.styled-input textarea {
	resize: none;
	height: 150px;
	display: block;
}
.styled-input label {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	font-size: 12px;
	color: #888;
	line-height: 12px;
	top: 15px;
	left: 15px;
}
.styled-input label.active {
	visibility: visible;
	opacity: 1;
	margin-top: -5px;
}
.styled-input label,
.styled-input label.active {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}
.styled-input select {
    width: 100%;
    height: 53px;
    font-size: 14px;
    line-height: 14px;
    padding: 27px 15px 12px 15px;
    text-transform: capitalize;
    color: #353535;
    outline: none; border:none;
    box-shadow: none;
    border-radius: 3px;
    background-image: url(../../images/caret_down.svg);
    background-repeat: no-repeat;
    background-position: center right 15px;
    background-size: 10px;
    background-color: #eee;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.styled-input option {
	background: #fff;
	text-transform: capitalize;
	border: none;
	outline: none;
}
.styled-input input[type="file"] {
	display: none; 
}
.styled-input ::-webkit-input-placeholder { color: #888; }
.styled-input ::-moz-placeholder { color: #888; }
.styled-input :-ms-input-placeholder { color: #888; }
.styled-input :-moz-placeholder { color: #888; }
.code img {
    width: auto;
    height: 28px;
    vertical-align: middle;
}