section.panel {
	> div {
		margin-inline: auto;
		max-width: 1920px;
		> figure {
			> img {
				max-width: 100%;
			}
		}
	}
}
section.title {
	padding: 30px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(3.5rem, 8.0vw);
			line-height: 1.3;
			color: #fff;
			font-weight: 600;
			letter-spacing: 2px;
			text-align: center;
			font-family: var(--font-en);
		}
		> p {
			font-size: min(1.2rem, 5.0vw);
			line-height: 1.8;
			color: #b00;
			font-weight: 600;
			text-align: center;
			padding-bottom: 40px;
		}
		> h3 {
			text-align: center;
			font-size: min(1.3rem, 6.0vw);
			line-height: 1.6;
			color: #fff;
		}
	}
}
section.columnlist {
	padding: 40px 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.column {
			margin-top: 10px;
			> a {
				text-decoration: none;
				border-bottom: dotted 1px #888;
				padding-block: 20px;
				display: flex;
				padding-right: 40px;
				background-image: url(./image/arrow.svg);
				background-repeat: no-repeat;
				background-position: right 5px top 50%;
				&[target="_blank"] {
					background-image: url(./image/external_red.svg);
				}
				&:hover {
					opacity: 0.7;
				}
				> dl {
					display: grid;
					grid-template-columns: 150px 100px 1fr;
					column-gap: 30px;
					row-gap: 5px;
					@media (width < 700px) {
						grid-template-columns: 70px 1fr;
						column-gap: 15px;
					}
					> dt {
						&:nth-of-type(1) {
							@media (width < 700px) {
								grid-row: 1/3;
								grid-column: 1/2;
							}
							> img {
								max-width: 100%;
							}
						}
						&:nth-of-type(2) {
							font-size: 1rem;
							line-height: 1.3;
							color: #aaa;
							@media (width < 700px) {
								grid-row: 1/2;
								grid-column: 2/3;
								font-size: min(0.8rem,4.5vw);
							}
						}
					}
					> dd {
						@media (width < 700px) {
							grid-row: 2/3;
							grid-column: 2/3;
							> div.body {
								font-size: min(0.8rem,4.5vw);
							}
						}
						> div.subject {
							font-size: 1rem;
							line-height: 1.3;
							color: #fff;
							font-weight: 500;
							@media (width < 700px) {
								font-size: min(0.8rem,4.5vw);
							}
						}
						> div.body {
							margin-top: 5px;
							font-size: 0.9rem;
							line-height: 1.3;
							color: #aaa;
							@media (width < 700px) {
								font-size: min(0.8rem,4.5vw);
							}
						}
					}
				}
			}
			&: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.columnnav {
	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;
			background-color: var(--color-accent);
			&:hover {
				opacity: 0.7;
			}
		}
	}
}

section.columnuni {
	padding: 100px 5% 120px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.column {
			> div.date {
				font-size: 1rem;
				line-height: 1.3;
				color: #aaa;
			}
			> div.subject {
				border-top: solid 2px var(--color-accent);
				border-bottom: solid 1px #ccc;
				margin-top: 15px;
				padding-block: 20px;
				font-size: 1rem;
				line-height: 1.3;
				color: #fff;
				font-weight: 700;
			}
			> div.body {
				margin-top: 50px;
				display: grid;
				grid-template-columns: 1fr 1fr;
				column-gap: 50px;
				row-gap: 20px;
				&.reverse {
					> div {
						order: 1;
					}
					> figure {
						order: 2;
					}
				}
				@media (width < 700px) {
					grid-template-columns: 1fr;
					&.reverse {
						> div {
							order: 2;
						}
						> figure {
							order: 1;
						}
					}
				}
				> div {
					order: 2;
					font-size: 1rem;
					line-height: 1.7;
					color: #fff;
					.divnbsp {
						line-height: 65%;
					}
					a {
						text-decoration: underline;
						color: #e88;
						&:hover {
							opacity: 0.7;
						}
					}
					img {
						max-width: 100%;
					}
				}
				> figure {
					order: 1;
					> img {
						max-width: 100%;
					}
				}
			}
		}
		> .empty {
			display: none;
			margin-top: 10px;
			font-size: 0.9rem;
			line-height: 1;
			color: #aaa;
			font-weight: 300;
			background-color: #333;
			padding: 50px;
			text-align: center;
			&.visible {
				display: block;
			}
		}
	}
}
