@charset "utf-8";

/* 共通 */
* {
	line-height: 1;
}
body {
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	border-top: 5px solid rgba(30, 124, 2, .5);
}
a {
	color: #333;
	text-decoration: none;
}
ul {
	list-style: none;
}
section, aside {
	padding: 100px 0;
}
.wrapper {
	margin: 0 auto;
	width: 980px;
}
.title {
	margin-bottom: 50px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

/* header */
header {
	padding: 50px 0;
}
header .wrapper {
	display: flex;
	justify-content: space-between;
}
header h1 {
	font-size: 36px;
	font-weight: bold;
}
header h1 span {
	display: block;
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: normal;
}
header nav {
	text-align: right;
}
header nav p {
	margin-bottom: 21px;
	font-size: 26px;
	font-weight: bold;
}
header nav p span {
	font-size: 18px;
	font-weight: normal;
}
header nav ul {
	display: flex;
	gap: 1em;
}

/* main-visual */
.main-visual {
	text-align: center;
}

/* コンセプト */
.concept {
	text-align: center;
}
.concept p {
	line-height: 1.5;
}

/* お知らせ */
.info {
	background: rgba(51, 51, 51, .1);
}
.info ul {
	display: flex;
	justify-content: space-between;
}
.info li {
	width: 314px;
}
.info li a {
	display: block;
}
.info li img {
	margin-bottom: 20px;
}
.info li .date {
	margin-bottom: 10px;
	font-size: 12px;
}
.info li h3 {
	margin-bottom: 20px;
	color: #1E7C02;
	font-size: 20px;
	font-weight: bold;
}
.info li .text {
	line-height: 1.5;
}

/* asied */
aside ul {
	display: flex;
	justify-content: space-between;
}

/* footer */
footer {
	padding: 50px 0;
	color: #FFF;
	text-align: center;
	background: rgba(30, 124, 2, .5);
}
footer nav {
	margin-bottom: 30px;
}
footer ul {
	display: flex;
	justify-content: center;
	gap: 1em;
}
footer a {
	color: #FFF;
}
footer .logo {
	margin-bottom: 20px;
	font-size: 30px;
}
footer .copyright small {
	font-size: 12px;
}
