@charset "UTF-8";
@import "/include/css/common.pc.css";

/* ---------------------------------------------------------
	CSS Document contact
--------------------------------------------------------- */

#contact {
	padding: 90px 0;
	background: #f9f9f9;
}

#contact.effected {
	animation: effect 1.6s 0s forwards ease-out;
}

@keyframes effect {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

#contact[data-delay="500"].effected {
	animation-delay: 0.5s;
}

#contact[data-delay="1000"].effected {
	animation-delay: 1.0s;
}

#contact .em,
#contact em {
	color: #ec3b04;
}

#contact p {
	margin-bottom: 60px;
}

#contact #form {
	width: 840px;
	margin: 0 auto;
}

#contact dl {
	margin-top: 40px;
	text-align: left;
}

#contact dt {
	margin-bottom: 5px;
	font-weight: 500;
}

#contact dt em {
	margin-left: 0.5em;
	padding: 0 0.2em;
	background: #ec3b04;
	font-size: 11px;
	color: #fff;
}

#contact .complete {
	margin-bottom: 70px;
}

/* ---------------------------------------------------------
	CSS Document input
--------------------------------------------------------- */

#contact input[type='tel'],
#contact input[type='email'],
#contact input[type='text'],
#contact select,
#contact textarea {
	padding: 0 0.8em;
	border-radius: 5px;
	border: solid 1px #e0e0e0;
	background: #fff;
	box-shadow: 1px 1px 0 0 rgba(200, 200, 200, 0.1) inset;
	letter-spacing: 0.05em;
}

#contact select,
#contact input[type='tel'],
#contact input[type='email'],
#contact input[type='text']{
	height: 64px;
}

#contact textarea {
	vertical-align: top;
	width: 100%;
	padding: 1em;
}

#contact select {
	padding: 0 0 0 0.5em;
}

#contact .w580 {
	width: 580px;
}

#contact .err {
	box-shadow: 0 0 3px 0 #f00 !important;
}

.submit {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.submit .send {
	margin-left: 50px;
}

.submit button {
	vertical-align: top;
	width: 240px;
	height: 60px;
	border-radius: 60px;
	background: #65472e;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.05em;
	color: #fff;
	position: relative;
	cursor: pointer;
	transition: .4s;
}

.submit .back button {
	background: rgb(196, 179, 162);
}

.submit button:hover {
	opacity: 0.6;
}

.submit button:after {
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -6px;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
}

.submit .send button:after {
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	right: 20px;
}

.submit .back button:after {
	border-left: solid 2px #fff;
	border-bottom: solid 2px #fff;
	left: 20px;
}

/* ---------------------------------------------------------
	CSS Document confirm
--------------------------------------------------------- */

#confirm {
	padding: 90px 0;
	background: #f9f9f9;
}

#confirm.effected {
	animation: effect 1.6s 0s forwards ease-out;
}

#confirm[data-delay="500"].effected {
	animation-delay: 0.5s;
}

#confirm[data-delay="1000"].effected {
	animation-delay: 1.0s;
}

#confirm .em,
#confirm em {
	color: #ec3b04;
}

#confirm p {
	margin-bottom: 60px;
}

#confirm .table {
	display: table;
	width: 840px;
	margin: 0 auto 60px;
	border-top: solid 1px #ccc;
	text-align: left;
	font-size: 15px;
	position: relative;
}

#confirm dl {
	display: table-row;
	border-bottom: solid 1px #ccc;
}

#confirm dt {
	display: table-cell;
	vertical-align: top;
	width: 210px;
	padding: 20px 0;
	line-height: 44px;
	position: relative;
}

#confirm dt em {
	margin-left: 0.5em;
	padding: 0 0.2em;
	background: #ec3b04;
	font-size: 11px;
	color: #fff;
}

#confirm dd {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 0;
}

/* ---------------------------------------------------------
	CSS Document complete
--------------------------------------------------------- */

#complete {
	padding: 90px 0;
	background: #f9f9f9;
}

#complete.effected {
	animation: effect 1.6s 0s forwards ease-out;
}

#complete[data-delay="500"].effected {
	animation-delay: 0.5s;
}

#complete[data-delay="1000"].effected {
	animation-delay: 1.0s;
}

#complete p {
	margin-bottom: 2em;
}

#complete em {
	color: #db370c;
}

#complete .more {
	margin-top: 60px;
}

#complete .more li a {
	display: inline-block;
	vertical-align: top;
	width: 240px;
	height: 60px;
	border-radius: 60px;
	background: #65472e;
	text-decoration: none;
	line-height: 60px;
	color: #fff;
	position: relative;
}

#complete .more li a:after {
	content: '';
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-left: solid 2px #fff;
	border-bottom: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 20px;
}

