/* CSS Document */

/* input styel -----------------------*/

input[type="text"],
input[type="email"],
input[type="tel"]{
	width: 100%;
	height: 33px;
	font-size: 14px;
	border: #ccc 1px solid;
	text-indent: 10px;
	padding: 0;
}
button:focus,
textarea:focus,
input:focus,
input[type]:focus,
select:focus{
  outline: 0;
  box-shadow: none;
    border-color: #999;
}

input[type="submit"],
button{
	height: 50px;
	padding-left: 30px;
	padding-right: 30px;
	background-color: #000;
	color: #fff;
	font-size: 14px;
	display: inline-block;
	border: #000 1px solid;
}
button::before,
button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

button:hover{
	background-color: #fff;
	color: #000;
	border: #000 1px solid;
}

button,
button::before,
button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

select{
	width: 200px;
    height: 34px;
    font-size: 16px;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	border: 0;
	text-indent: 10px;
	background-color: #fff;
	
	background-image:
		linear-gradient(45deg, transparent 50%, #000 50%),
		linear-gradient(135deg, #000 50%, transparent 50%),
		linear-gradient(to right, #000, #000);
	background-position:
		calc(100% - 16px) calc(1em + 2px),
		calc(100% - 10px) calc(1em + 2px),
		calc(100% - 34px) 0.5em;
	background-size:
		6px 6px,
		6px 6px,
		1px 1.5em;
	background-repeat: no-repeat;
    border: #ccc 1px solid;
}
select:focus{
	background-image:
    linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 10px) 1em,
    calc(100% - 16px) 1em,
    calc(100% - 34px) 0.5em;
  background-size:
    6px 6px,
    6px 6px,
    1px 1.5em;
  background-repeat: no-repeat;
}
textarea{
	width: 100%;
	height: 100px;
	border: #ccc 1px solid;
	font-size: 14px;
}
.select{
	display: block;
	width: 200px;
    height: 40px;
	border: #000 1px solid;
	top: 0;
	left: 0;
	z-index: 100;
	position: relative;
	
}
.select_icon{
	position: absolute;
	display: block;
	width: 20px;
	height: 40px;
	right: 0;
	font-size: 17px;
}
.select_icon svg{
	position: relative;
}
.fa-sort-up{
	top: 11px;
}
.fa-sort-down{
	top: -5px;
}
input[type="submit"]:hover,
button:hover{
	opacity: 0.7;
}
/* placeholder color設定 */
:placeholder-shown {
    color: #D4D4D4; }

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
    color: #D4D4D4; }

/* Firefox 18- */
:-moz-placeholder {
    color: #D4D4D4; opacity: 1; }

/* Firefox 19+ */
::-moz-placeholder {
    color: #D4D4D4; opacity: 1; }

/* IE 10+ */
:-ms-input-placeholder {
    color: #D4D4D4; }



.input_30{
	width: 30% !important;
}
.input_50{
	width: 50% !important;
}
/* input styel End -------------------*/


/* form_area styel -----------------------*/

.form_area dl{
	max-width: 500px;
	margin: 0 auto;
	text-align: left;
}

.form_area dt{
	font-weight: 600;
	font-size: 14px;
	padding-top: 10px;
	padding-bottom: 5px;
}
.form_area dd{
	padding-bottom: 10px;
}
.form_area dt p{
	display: inline-block;
	font-size: 10px;
	margin-left: 10px;
}
.form_area dt span{
	background-color: #000;
	color: #fff;font-size: 10px;
	padding: 1px 4px;
	margin-left: 10px;
}
.form_area_submit{
	margin-top: 30px;
	text-align: center;
}

.form_area_privacy a{
	position: relative;
	margin: 0 10px;
}
.form_area_privacy a::after{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #000;
	position: absolute;
	left: 0;
	bottom: -5px;
}
/* form_area styel End -------------------*/


@media screen and (max-width: 767px) {
	
	/* form_area styel -----------------------*/
	.form_area {
		margin: 0 15px;
	}
	/* form_area styel End -------------------*/
	
}