section.panel {
	display: grid;
	> figure {
		grid-area: 1/1/2/2;
		> img {
			max-width: 100%;
		}
	}
	> div {
		grid-area: 1/1/2/2;
		max-height: 95vh;
		background-image: url(../common/image/scroll.svg);
		background-repeat: no-repeat;
		background-position: 95% 100%;
		margin-bottom: 30px;
		animation-name: panelarrow;
		animation-duration: 4s;
		pointer-events: none;
		@media (width < 700px) {
			display: none;
		}
	}
}
@keyframes panelarrow {
	0% {
		transform: translateY(0);
	}
	16.6% {
		transform: translateY(-20px);
	}
	33.3% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
	66.6% {
		transform: translateY(0);
	}
	83.3% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0);
	}
}
section.title {
	margin-top: 60px;
	> h1 {
		text-align: center;
		> div {
			font-size: 3rem;
			line-height: 1.3;
			color: #000;
			font-weight: 600;
		}
		> p {
			margin-top: 2px;
			font-size: 1.1rem;
			line-height: 1.3;
			color: var(--color-accent);
			font-weight: 500;
		}
	}
}
section.content {
	padding-top: 80px;
	margin-inline: min(50px,5vw);
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: min(50px,3vw);
	row-gap: min(60px,6vw);
	@media (width < 450px) {
		grid-template-columns: 1fr;
	}
	> a {
		display: block;
		text-decoration: none;
		> figure {
			overflow: hidden;
			aspect-ratio: 1/1;
			&:hover > img {
				transform: scale(1.05);
			}
			> img {
				transition: transform 0.5s;
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}
		> figcaption {
			margin-top: 8px;
			display: flex;
			justify-content: space-between;
			column-gap: 10px;
			> p {
				font-size: 1.1rem;
				line-height: 1.3;
				color: #000;
				@media (width < 800px) {
					font-size: min(0.9rem,5vw);
				}
			}
			> div {
				font-size: 1rem;
				line-height: 1.3;
				color: #333;
				white-space: nowrap;
				@media (width < 800px) {
					font-size: min(0.8rem,4.5vw);
				}
			}
		}
	}
}
section.link {
	padding: 100px 5% 100px 5%;
	text-align: center;
	> a {
		text-decoration: none;
		padding: 10px 50px;
		text-align: center;
		display: inline-block;
		background-color: #4b6428;
		border-radius: 30px;
		background-image: url(../common/image/mark_external_fff.svg);
		background-position: right 15px top 50%;
		background-repeat: no-repeat;
		font-size: 1.1rem;
		line-height: 1.3;
		color: #fff;
		font-weight: 500;
		&:hover {
			opacity: 0.7;
		}
	}
}
