@charset "UTF-8";

/**
 * Waku Wwaku Base - Contact Stylesheet
 *
 * - Contact
 * - Form
 * - Form Layout
 * - Form Field
 *
 */



/* ----------------------------
	Contact
---------------------------- */
.contact {
	margin-top: 80px;
}
.contact-body {
	text-align: center;
}
.contact-body > p {
	margin-top: 30px;
}
.contact-body > p:first-child {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.contact {
		margin-top: 40px;
	}
	.contact-body > p {
		margin-top: 15px;
	}
}


/* ----------------------------
	Form
---------------------------- */

/* Form Layout
---------------------------- */
.form {
	margin: 40px auto;
	padding: 10px 56px 52px;
	max-width: 796px;
	background: #f9ebdb;
	box-sizing: border-box;
	text-align: left;
}
.form-row {
	padding: 20px 0;
	background: url(../img/common/bg-dot.png) repeat-x top left;
	background-size: 3px auto;
}
.form-row:first-child,
#mfp_hidden + .form-row {
	background: none;
}
.form > p {

}

@media screen and (max-width: 767px) {
	.form {
		margin: 20px auto;
		padding: 10px 15px 30px;
	}
	.form-row {
		padding: 15px 0;
	}
}

/* Form Item
---------------------------- */
.form-item {
	margin-top: 12px;
	position: relative;
}
.form-item:first-child {
	margin-top: 0;
}
.form-item:after {
	content: "";
	display: block;
	clear: both;
}
.form-item-label {
	padding-right: 36px;
	width: 196px;
	box-sizing: border-box;
	float: left;
	text-align: right;
}
.form-item-label .required {
	width: 50px;
	background: #d90a1e;
	line-height: 18px;
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	color: #fff;
	position: absolute;
	top: 5px;
	right: 0;
}
.form-item-body {
	padding-left: 196px;
	padding-right: 80px;
}
.form-item-body dl {
	margin-top: 6px;
}
.form-item-body dl:first-child {
	margin-top: 0;
}
.form-item-body dl:after {
	content: "";
	display: block;
	clear: both;
}
.form-item-body dt {
	margin-right: 1em;
	width: 4em;
	float: left;
	letter-spacing: 0;
	text-align: right;
	box-sizing: border-box;
	line-height: 30px;
}
.form-item-body dd {
	padding-left: 5em;
	min-height: 30px;
}
.form-item-body .small {
	margin-top: 3px;
}

@media screen and (max-width: 767px) {
	.form-item-label {
		margin-bottom: 6px;
		padding-right: 0;
		width: 100%;
		float: none;
		text-align: left;
		font-weight: bold;
	}
	.form-item-label .required {
		display: inline-block;
		margin-left: 8px;
		position: static;
	}
	.form-item-body {
		padding-left: 0;
		padding-right: 0;
	}
	.form-item-body dt {
		margin-right: 0;
		margin-bottom: 3px;
		width: 100%;
		float: none;
		text-align: left;
		line-height: 1.75;
		font-weight: bold;
	}
	.form-item-body dd {
		padding-left: 0;
		min-height: 0;
	}
}


/* Form Field
---------------------------- */
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
	display: block;
	margin: 0;
	padding: 2px 10px;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	border: 1px solid #999;
    font-family: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "YuGothic", meiryo, sans-serif;
	font-size: 16px;
	color: #353535;
}
.form textarea {
	padding: 10px;
	width: 100% !important;
	height: 230px !important;
	resize: none;
}
.form input[type="radio"] {
	margin: 0;
	margin-right: 8px;
	position: relative;
	top: -1px;
}
.form select {
	min-height: 30px;
}

@media screen and (max-width: 767px) {
	.form textarea {
		height: 150px !important;
	}
}


/* Form Button
---------------------------- */
.form-btn {
	margin-top: 22px;
	text-align: center;
}
.form-btn li {
	display: inline-block;
	margin: 0 10px;
	vertical-align: top;
}
.form-btn button {
	display: block;
	width: 116px;
	height: 34px;
    font-family: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "YuGothic", meiryo, sans-serif;
    font-size: 16px;
	color: #fff;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.form-btn button:hover {
	opacity: 0.6;
}
.form-btn button[type="submit"] {
	background: #e0739c;
}
.form-btn button[type="button"],
.form-btn button[type="reset"] {
	background: #8f8f8f;
}

@media screen and (max-width: 767px) {
	.form-btn {
		margin-top: 15px;
	}
	.form-btn li {
		margin: 0 5px;
	}
	.form-btn button {
		width: 100px;
	}
	.form-btn button:hover {
		opacity: 1;
	}
}


/* Error
---------------------------- */
.form input[type="text"].problem,
.form input[type="email"].problem,
.form input[type="tel"].problem,
.form textarea.problem {
	border-color: #d90a1e;
	background: #f5ecec;
}
p.error {
	letter-spacing: 0;
	color: #d90a1e;
}