section.title {
	padding: 30px 7% 20px 7%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		text-align: center;
		> h1 {
			font-size: 2.5rem;
			line-height: 1.8;
			color: #333;
			font-family: var(--font-en);
			font-weight: 400;
		}
		> p {
			font-size: 1.1rem;
			line-height: 1;
			color: #333;
		}
	}
}
section.category {
	padding: 40px 7% 0 7%;
	background-color: #fff;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		display: flex;
		flex-wrap: wrap;
		column-gap: 5px;
		row-gap: 5px;
		> button {
			border: none;
			padding-block: 10px;
			padding-inline: 5px;
			font-size: min(0.9rem,4vw);
			line-height: 1;
			color: #111;
			background-color: #fff;
			text-decoration: none;
			cursor: pointer;
			min-width: 130px;
			border: solid 1px #666;
			border-radius: 4px;
			&.on {
				&[value="0"] {
					background-color: #9a626a;
					color: #fff;
				}
				&[value="1"] {
					background-color: #fecbcb;
				}
				&[value="2"] {
					background-color: #e1ecba;
				}
				&[value="3"] {
					background-color: #ccd8f8;
				}
			}
			&:hover {
				opacity: 0.8;
			}
		}
	}
}
section.informnav {
	padding: 5px 7% 0 7%;
	> 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: #111;
			text-decoration: none;
			width: 200px;
			text-align: center;
			user-select: none;
			border: solid 1px #666;
			border-radius: 4px;
			background-color: #fff;
			&:hover {
				opacity: 0.7;
			}
		}
	}
}

section.inform {
	padding: 40px 7% 60px 7%;
	background-color: #fff;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> .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: #bdc1ca;
				padding: 5px 1px;
				text-align: center;
				cursor: pointer;
			}
		}
		> .inform {
			margin-top: 20px;
			> a {
				text-decoration: none;
				display: block;
				border-bottom: dotted 1px #aaa;
				padding-block: 10px;
				padding-right: 25px;
				&:hover {
					opacity: 0.7;
				}
				> dl {
					display: grid;
					grid-template-columns: 1fr 100px 60px;
					align-items: center;
					@media (width < 600px) {
						grid-template-columns: 1fr 100px;
					}
					@media (width < 400px) {
						grid-template-columns: 1fr 50px;
					}
					> dt {
						align-self: start;
						padding-right: 20px;
						> div.categorydate {
							display: flex;
							flex-wrap: wrap;
							align-items: center;
							column-gap: 10px;
							row-gap: 5px;
							> ce-inform-category {
							}
							> div {
								font-size: 0.9rem;
								line-height: 1.3;
								color: #111;
							}
						}
						> div.subject {
							margin-top: 5px;
							font-size: min(0.9rem,5vw);
							line-height: 1.6;
							color: #000;
						}
					}
					> dd:nth-of-type(1) {
						> img {
							max-width: 100%;
						}
					}
					> dd:nth-of-type(2) {
						text-align: right;
						@media (width < 600px) {
							display: none;
						}
						> img {
							max-width: 100%;
						}
					}
				}
			}
			&:empty + .empty {
				display: block;
			}
		}
		> .empty {
			display: none;
			margin-top: 10px;
			font-size: 0.9rem;
			line-height: 100%;
			color: #666;
			font-weight: 300;
			background-color: #eee;
			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.informuni {
	padding: 50px 3% 120px 3%;
	background-color: #fff;
	> div {
		max-width: 1100px;
		margin-inline: auto;
		> .inform {
			> .date {
				font-size: min(1rem,5vw);
				line-height: 1.3;
				color: #555;
			}
			> div.content {
				margin-top: 10px;
				display: grid;
				grid-template-columns: 1fr 1fr;
				column-gap: 40px;
				row-gap: 40px;
				@media (width < 800px) {
					grid-template-columns: 1fr;
				}
				> div.text {
					> .subject {
						font-size: min(1.2rem,6vw);
						line-height: 1.3;
						color: #000;
						font-weight: 500;
					}
					> .body {
						padding-top: 20px;
						font-size: 1rem;
						line-height: 1.7;
						color: #222;
						.divnbsp {
							line-height: 65%;
						}
						a {
							text-decoration: underline;
							color: #00a;
							&:hover {
								opacity: 0.7;
							}
						}
						img {
							max-width: 100%;
						}
					}
					> .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;
							}
						}
					}
					> .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%;
							}
						}
					}
				}
				> div.image {
					> figure {
						margin-bottom: 20px;
						> img {
							max-width: 100%;
						}
					}
				}
			}
		}
		> .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;
		}
	}
}
