@charset "UTF-8";

/* ヒーローエリア */
.hero {
	background-image: url(../img/hero-about.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 554px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .container {
	padding: 0px 30px;
}

.hero .container img.ttl {
	max-width: 671px;
	width: 100%;
	height: auto;
}

/* ABOUT */
.about {
	padding: 60px 30px;
}

.about .container {
	display: block;
	max-width: 1200px;
	margin: 0px auto;
}

.about h2 {
	text-align: center;
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 60px;
}

.about .box {
	margin-bottom: 20px;
}

.about .photo img  {
	display: block;
	width: 100%;
	max-width: 575px;
	height: auto;
	margin-bottom: 20px;
}

.about .text h3,
.about .text p {
	font-size: 16px;
}

.about .text h3 {
	margin-bottom: 20px;
	font-weight: 500;
}

.about .text .head {
	margin-bottom: 20px;
	border-bottom: 1px solid #707070;
}

.about .text p {
	margin-bottom: 40px;
}

.about .text table th {
	text-align: left;
	font-weight: 400;
	padding-right: 20px;
	white-space: nowrap;
}

.about .text table th,
.about .text table td {
	padding-bottom: 10px;
}

/* 大きい画面用の設定 */
@media(min-width:1024px) {
	.about .box {
	display: flex;
	}
	.about .photo {
	flex: 0 0 575px;
	margin-right: 20px;
	}
	.about .text {
	flex: 1;
	}
}