@charset "UTF-8";

section.contact {
	padding: 60px 0;
}

section.contact h2 {
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 1em;
	text-align: center;
	margin-bottom: 45px;
}

section.contact h3 {
	border-left: 6px solid #7e97b9;
	font-size: 18px;
	font-weight: 400;
	padding-left: 10px;
	margin-bottom: 30px;
}

section.contact dl {
	margin-bottom: 30px;
}

section.contact dl dt {
	padding: 15px;
	background: #eaeaea;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.contact dl dt span {
	display: block;
}

section.contact dl dt span.req {
	background: #7e97b9;
	color: #FFF;
	padding: 3px 6px;
}

section.contact dl dd {
	padding: 15px;
	background: #f5f5f5;
	margin: 0;
}

section.contact dl.pri dt,
section.contact dl.pri dd {
	background: #eaeaea;
}

section.contact dl dd input.text,
section.contact dl dd textarea {
	font-size: 16px;
	background: #fff;
	border: 1px solid #eaeaea;
	width: 100%;
}

section.contact dl dd textarea {
	height: 100px;
}

section.contact div.privacy {
	padding: 20px;
	background: #eaeaea;
	margin-bottom: 40px;
}

section.contact div.privacy p {
	margin-bottom: 30px;
}

section.contact div.privacy p:last-child {
	margin-bottom: 0;
}

section.contact p.last {
	margin-bottom: 60px;
}

section.contact .btn {
	display: flex;
	justify-content: center;
}

section.contact input.submit-btn {
	background: #7e97b9;
	color: #FFF;
	font-size: 18px;
	border: none;
	border-radius: 6px;
	padding: 10px 60px;
	cursor: pointer;
}

/* デスクトップ用 */
@media(min-width:700px) {
	section.contact {
	padding: 100px 0;
	}
	section.contact h2 {
	font-size: 36px;
	margin-bottom: 80px;
	}
	section.contact dl {
	display: flex;
	}
	section.contact dl dt {
	flex: 0 0 300px;
	}
	section.contact dl dd {
	flex: 1;
	}
}