@charset "UTF-8";

/* ヒーローエリア */
.hero {
	background-image: url(../img/hero-pro.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: 763x;
	width: 100%;
	height: auto;
}

/* PRODUCT */
.product {
	padding: 60px 30px;
}

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

.product h2,
.product p.catch {
	text-align: center;
}

.product h2 {
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 20px;
}

.product p.catch {
	margin-bottom: 60px;
}

.product h3 {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 20px;
}

/* 仮作成 */
.product ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.product ul:last-child {
	margin-bottom: 0px;
}

.product ul li {
	flex: 0 0 100%;
	padding: 5px;
}

.product ul li img {
	display: block;
	width: 100%;
	height: auto;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	.product ul li {
	flex: 0 0 25%;
	}
}