section.panel01 {
	background-color: #eee;
	> div {
		max-width: 1920px;
		margin-inline: auto;
		> img {
			max-width: 100%;
		}
	}
}
section.title {
	padding: 50px 5% 0 5%;
	> div {
		max-width: 1100px;
		margin-inline: auto;
		> h2 {
			font-size: 30px;
			line-height: 1.5;
			color: #222;
			text-align: center;
		}
	}
}
section.catalog {
	padding: 40px 5% 0 5%;
	> div#catalogArea {
		border-top: solid 1px #aaa;
		padding-top: 50px;
		max-width: 1100px;
		margin-inline: auto;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		column-gap: 40px;
		row-gap: 60px;
		> article {
			> figure {
				margin: 0;
				> img {
					max-width: 100%;
				}
			}
			> h3 {
				margin-top: 5px;
				text-align: center;
				font-size: 18px;
				line-height: 1.3;
				color: #111;
			}
			> p {
				margin-top: 5px;
				text-align: center;
				font-size: 14px;
				line-height: 1.3;
				color: #b00;
			}
			> div {
				margin-top: 8px;
				text-align: center;
				> a {
					text-decoration: none;
					display: inline-block;
					font-size: 14px;
					line-height: 1.3;
					color: #111;
					border-radius: 50px;
					border: solid 1px #aaa;
					padding-block: 5px;
					padding-inline: 10px;
					min-width: 15em;
					background-image: url(../common/image/icon_external_888.svg);
					background-repeat: no-repeat;
					background-position: right 10px top 50%;
					&:hover {
						opacity: 0.7;
					}
				}
			}
		}
	}
}
section.note {
	padding: 110px 5% 100px 5%;
	> div {
		max-width: 1100px;
		margin: 0 auto;
		> div {
			font-size: 13px;
			line-height: 1.4em;
			color: #111;
		}
		> p {
			margin-top: 5px;
			margin-bottom: 0;
			font-size: 13px;
			line-height: 1.6;
			color: #666;
			&.indent {
				margin-left: 1em;
				text-indent: -1em;
			}
		}
	}
}
