@charset "UTF-8";
/*------------------
　　 CONTACTページ
------------------*/

.contact_title{
	position: relative;
	margin-bottom: 100px;
}

.contact_title::after{
	content: "";
	display: block;
	width: 173px;
  height: 3px;
	background: url(/images/beige-border.svg) no-repeat left top;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 173px / 2);
}

.contact-form{
	font-weight: 400;
	line-height: 1.25;
	max-width: 520px;
	margin: 0 auto;
}
.contact-form form > * + *{
	margin-top: 20px;
}

.req{
 color: #FF8027;
}

input,
select,
textarea{
	background-color: #fff;
	border: 1.5px solid #534741;
	border-radius: 4px;
	width: 100%;
	padding: 8px;
	margin-top: 4px;
}

.selectbox{
	width: 15em;
	max-width: 100%;
	position: relative;
}

.selectbox::after {
	content: '';
	display: block;
	width: 10px;
	height: 6px;
	background-color: #534741;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
	position: absolute;
	top: 20px;
	right: 13px;
}



textarea{
	width: 100%;
	height: auto;
	min-height: 10em;
	resize: vertical;
}
.contact-form form .submit{
	text-align: center;
	margin-top: 60px;
}
button{
	width: 100%;
	padding: 20px 0;
	background-color: #988075;
	border-radius: 4px;
	color: #fff;
	font-weight: 700;
}
button:hover,
button:active{
	background-color: #ff8027;
}


input:focus,
select:focus,
textarea:focus{
	outline: none;
}

@media screen and (min-width: 768px) {
	button{
		max-width: 16em;
	}
}
