section.title {
	padding: 50px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(2.5rem, 6.0vw);
			line-height: 1.3;
			color: #111;
			font-weight: 600;
			letter-spacing: 2px;
			text-align: center;
			font-family: var(--font-serif);
		}
		> p {
			font-size: min(1.2rem, 5.0vw);
			line-height: 1.8;
			color: #b00;
			font-weight: 600;
			text-align: center;
		}
	}
}
section.category {
	padding: 30px 5% 0 5%;
	display: flex;
	justify-content: center;
	> div {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 1px;
		row-gap: 1px;
		> button {
			border: none;
			padding-block: 10px;
			padding-inline: 30px;
			font-size: min(1rem,4vw);
			line-height: 1;
			color: #fff;
			background-color: #555;
			text-decoration: none;
			cursor: pointer;
			min-width: 100px;
			@media (width < 900px) {
				padding-inline: 3vw;
				min-width: 0px;
			}
			&.on {
				background-color: var(--color-accent);
			}
			&:hover {
				opacity: 0.8;
			}
		}
	}
}
section.inform {
	padding: 30px 5% 60px 5%;
	> div {
		max-width: 1060px;
		margin-inline: auto;
		> div.year {
			display: flex;
			flex-wrap: wrap;
			> input {
				display: none;
				&:checked + label {
					background-color: var(--color-accent);
				}
			}
			> label {
				flex-grow: 1;
				user-select: none;
				display: block;
				font-size: min(1rem,4vw);
				color: #fff;
				background-color: #555;
				padding: 5px 1px;
				text-align: center;
				cursor: pointer;
			}
		}
		> div.news {
			margin-top: 20px;
			> div.content {
				> article {
					border-left: solid 1px #ccc;
					padding-left: 20px;
					&:last-of-type > a {
						border-bottom: 1px solid #ccc;
					}
					> a {
						display: block;
						text-decoration: none;
						user-select: none;
						border-top: 1px solid #ccc;
						padding-block: 20px;
						padding-inline: 10px 40px;
						background-image: url(../image/link_about.svg);
						background-repeat: no-repeat;
						background-position: right 5px top 50%;
						&:hover {
							opacity: 0.8;
						}
						> dl {
							display: grid;
							grid-template-columns: 2px 100px 115px 1fr;
							row-gap: 5px;
							> dt:nth-of-type(1) {
								border-left: solid 3px #d00;
								margin-left: -32px;
							}
							> dt:nth-of-type(2) {
								font-size: min(1.0rem, 5.0vw);
								line-height: 1.4;
								color: #111;
							}
							> dt:nth-of-type(3) {
								> ce-inform-category {
									display: block;
								}
							}
							> dd {
								font-size: min(1rem, 5.0vw);
								line-height: 1.4;
								color: #111;
								@media (width < 800px) {
									grid-row: 2/3;
									grid-column: 2/5;
								}
							}
						}
					}
				}
			}
			> div.empty {
				background-color: #eee;
				font-size: 1rem;
				line-height: 1;
				color: #666;
				padding-block: 20px;
				text-align: center;
			}
		}
		> div.empty {
			display: none;
			margin-top: 10px;
			font-size: 0.9rem;
			line-height: 100%;
			color: #ddd;
			font-weight: 300;
			background-color: #333;
			padding: 50px;
			text-align: center;
		}
		> ul.pagination {
			user-select: none;
			margin-top: 40px;
			display: flex;
			justify-content: center;
			flex-wrap: wrap;
			> li {
				margin: 5px;
				> a {
					display: block;
					background-color: #555;
					font-size: 1rem;
					line-height: 100%;
					color: #fff;
					font-family: Arial;
					font-weight: 700;
					padding: 8px 12px;
					cursor: pointer;
					&.active {
						color: #fff;
						background-color: var(--color-accent);
					}
				}
			}
		}
	}
}

section.informnav {
	padding: 20px 5% 0 5%;
	> div {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 1px;
		row-gap: 1px;
		> a {
			display: block;
			padding-block: 10px;
			font-size: 1rem;
			line-height: 1;
			color: #fff;
			text-decoration: none;
			width: 200px;
			text-align: center;
			user-select: none;
			&:nth-of-type(1) {
				background-color: var(--color-accent);
			}
			&:nth-of-type(2) {
				background-color: #555;
			}
		}
	}
}
section.informuni {
	padding: 50px 5% 120px 5%;
	> div {
		max-width: 800px;
		margin-inline: auto;
		> div.inform {
			> div.datecategory {
				display: flex;
				flex-wrap: wrap;
				column-gap: 15px;
				> .date {
					margin-top: 1px;
					font-size: 1rem;
					line-height: 1.3;
					color: #444;
				}
				> ce-inform-category {
				}
			}
			> div.subject {
				border-top: solid 3px var(--color-accent);
				margin-top: 10px;
				padding-top: 20px;
				font-size: 1rem;
				line-height: 1.3;
				color: #000;
				font-weight: 600;
			}
			> div.body {
				border-top: solid 1px #666;
				margin-top: 20px;
				padding-top: 20px;
				font-size: 1rem;
				line-height: 1.7;
				color: #111;
				.divnbsp {
					line-height: 65%;
				}
				a {
					text-decoration: underline;
					color: #d00;
					&:hover {
						opacity: 0.7;
					}
				}
				img {
					max-width: 100%;
				}
			}
			> div.attach {
				margin-top: 20px;
				> a {
					text-decoration: none;
					display: inline-flex;
					align-items: center;
					padding: 2px 10px;
					border: solid 1px #aaa;
					border-radius: 3px;
					column-gap: 10px;
					&:hover {
						opacity: 0.7;
					}
					> div {
						font-size: 0.9rem;
						line-height: 1.7;
						color: #222;
					}
					> span {
						font-size: 0.9rem;
						line-height: 1;
						color: #fff;
						background-color: #b54b4b;
						padding: 3px 10px 5px 10px;
						border-radius: 3px;
					}
				}
			}
			> div.youtube {
				margin-top: 20px;
				> div {
					position: relative;
					width: 100%;
					height: 0px;
					padding-top: 56.25%;
					> iframe {
						position: absolute;
						left: 0;
						top: 0;
						width: 100%;
						height: 100%;
					}
				}
			}
			> figure {
				margin-top: 20px;
				> img {
					max-width: 100%;
				}
			}
		}
		> div.empty {
			display: none;
			margin-top: 10px;
			font-size: 0.9rem;
			line-height: 1;
			color: #666;
			font-weight: 300;
			background-color: #eee;
			padding: 50px;
			text-align: center;
		}
	}
}
