section.panel {
	> div {
		max-width: 1920px;
		margin-inline: auto;
		display: grid;
		> video {
			grid-area: 1/1/2/2;
			max-width: 100%;
		}
		> div.controls {
			user-select: none;
			grid-area: 1/1/2/2;
			justify-self: center;
			align-self: end;
			margin-bottom: 8px;
			display: flex;
			align-items: center;
			column-gap: 10px;
			background-color: rgba(0,0,0,0.5);
			padding-left: 5px;
			padding-right: 10px;
			border-radius: 8px;
			> div {
				cursor: pointer;
				opacity: 0.4;
				&:hover {
					opacity: 0.9;
				}
				> img {
					border-radius: 5px;
				}
			}
			> input[type="range"] {
				accent-color: #fff;
				cursor: pointer;
				opacity: 0.4;
				@media (width < 400px) {
					display: none;
				}
				&:hover {
					opacity: 0.9;
				}
			}
			> label, > span {
				font-size: 0.8rem;
				line-height: 1;
				color: rgba(255,255,255,0.5);
				@media (width < 400px) {
					display: none;
				}
			}
		}
	}
}
section.about {
	padding: 120px 5% 120px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		text-align: center;
		font-family: var(--font-en);
		> h2 {
			font-size: min(3.5rem, 8.0vw);
			line-height: 1.3;
			color: #fff;
			font-weight: 600;
			letter-spacing: 2px;
		}
		> h3 {
			margin-top: 15px;
			font-size: min(1.6rem, 6.0vw);
			color: #fff;
			font-weight: 600;
		}
		> p {
			padding-top: 50px;
			font-size: min(1.4rem, 5.0vw);
			line-height: 1.8;
			color: #fff;
		}
	}
}
section.inform {
	background-color: #333;
	padding: 100px 5% 100px 5%;
	> div {
		max-width: 1300px;
		margin-inline: auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 60px;
		row-gap: 120px;
		@media (width < 1200px) {
			grid-template-columns: 1fr;
		}
		> article {
			> 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;
			}
			> div.news {
				> div.content {
					> a {
						text-decoration: none;
						user-select: none;
						border-top: 1px solid #505050;
						display: grid;
						grid-template-columns: 100px auto;
						padding-block: 20px;
						padding-inline: 10px 40px;
						column-gap: 20px;
						row-gap: 10px;
						background-image: url(./image/arrow.svg);
						background-repeat: no-repeat;
						background-position: right 5px top 50%;
						@media (width < 600px) {
							padding-inline: 0px 40px;
						}
						&:hover {
							opacity: 0.8;
						}
						> div.date {
							margin-top: 3px;
							@media (width < 600px) {
								grid-row: 1/2;
								grid-column: 1/2;
								padding-left: 0px;
								align-self: center;
								display: flex;
								align-items: center;
								column-gap: 10px;
							}
							> p {
								font-size: min(1.0rem, 5.0vw);
								line-height: 1.0;
								color: #fff;
							}
							> ce-inform-category {
								display: block;
								margin-top: 7px;
							}
						}
						> div.subject {
							font-size: min(1.1rem, 5.0vw);
							line-height: 1.4;
							color: #fff;
							text-align: justify;
							@media (width < 600px) {
								grid-row: 2/3;
								grid-column: 1/3;
							}
						}
					}
					&:last-of-type {
						border-bottom: 1px solid #505050;
					}
				}
				> div.empty {
					font-size: 1rem;
					line-height: 1;
					color: #fff;
					padding-block: 20px;
					text-align: center;
				}
			}
			> div.instagram {
				max-width: 100%;
				display: grid;
				grid-template-columns: repeat(3,1fr);
				gap: 5px;
				> figure {
					aspect-ratio: 1;
					width: 100%;
					height: 100%;
					> img {
						width: 100%;
						height: 100%;
						object-fit: cover;
					}
				}
			}
			> div.link {
				margin-top: 30px;
				display: flex;
				justify-content: center;
				> a {
					display: inline-block;
					width: 250px;
					text-align: center;
					text-decoration: none;
					line-height: 60px;
					outline: none;
					background-color: #000;
					position: relative;
					transition: color 0.5s ease;
					&:hover {
						&::before {
							transform: scaleX(1);
							transform-origin: left;
						}
					}
					&::before {
						position: absolute;
						top: 0;
						left: 0;
						content: "";
						display: block;
						width: 100%;
						height: 100%;
						background: #a00;
						transform: scaleX(0);
						transform-origin: right;
						transition: all 0.5s ease;
						transition-property: transform;
					}
					> div {
						padding: 20px 30px;
						position: relative;
						display: flex;
						justify-content: space-between;
						align-items: center;
						> p {
							font-size: min(1.1rem, 5.0vw);
							line-height: 1.0;
							color: #fff;
						}
						> img {
							width: 12px;
						}
					}
				}
			}
		}
	}
}
section.ooworks {
	padding: 120px 5% 120px 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;
		}
		> figure {
			padding-block: 10px 30px;
			text-align: center;
			> img {
				max-width: 100%;
			}
		}
		> h3 {
			text-align: center;
			font-size: min(1.8rem, 6.0vw);
			line-height: 3.0;
			color: #fff;
		}
		> div.link {
			margin-top: 60px;
			display: flex;
			justify-content: center;
			> a {
				display: inline-block;
				width: 250px;
				text-align: center;
				text-decoration: none;
				line-height: 60px;
				outline: none;
				background-color: #323232;
				position: relative;
				transition: color 0.5s ease;
				&:hover {
					&::before {
						transform: scaleX(1);
						transform-origin: left;
					}
				}
				&::before {
					position: absolute;
					top: 0;
					left: 0;
					content: "";
					display: block;
					width: 100%;
					height: 100%;
					background: #a00;
					transform: scaleX(0);
					transform-origin: right;
					transition: all 0.5s ease;
					transition-property: transform;
				}
				> div {
					padding: 20px 30px;
					position: relative;
					display: flex;
					justify-content: space-between;
					align-items: center;
					> p {
						font-size: min(1.1rem, 5.0vw);
						line-height: 1.0;
						color: #fff;
					}
					> img {
						width: 12px;
					}
				}
			}
		}
		> div.linksitem {
			margin-top: 100px;
			max-width: 900px;
			margin-inline: auto;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			column-gap: 5%;
			row-gap: 40px;
			@media (width < 580px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> a {
				text-decoration: none;
				&:hover {
					opacity: 0.7;
				}
				> article {
					display: grid;
					> figure {
						grid-area: 1/1/2/2;
						> img {
							max-width: 100%;
						}
					}
					> div {
						grid-area: 1/1/2/2;
						align-content: end;
						padding-inline: 10px;
						> p {
							font-size: min(1.6rem, 5.0vw);
							line-height: 1.0;
							color: #fff;
							font-weight: 600;
							@media (width < 580px) {
								font-size: min(1.5rem, 6.5vw);
							}
						}
						> h2 {
							font-size: min(3.8rem, 6.5vw);
							line-height: 1.2;
							color: rgba(246, 241, 223, 0.35);
							@media (width < 580px) {
								font-size: min(3.8rem, 9vw);
							}
						}
					}
				}
			}
		}
	}
}
section.works {
	padding: 0px 5% 100px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> div.top {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			column-gap: 40px;
			@media (width < 470px) {
				grid-template-columns: repeat(1, 1fr);
				row-gap: 40px;
			}
			> div {
				align-content: center;
				@media (width < 470px) {
					text-align: center;
				}
				> h2 {
					font-size: min(3.5rem, 8.0vw);
					line-height: 1.3;
					color: #fff;
					font-weight: 600;
					letter-spacing: 2px;
					font-family: var(--font-en);
				}
				> h3 {
					font-size: min(1.2rem, 5.0vw);
					line-height: 1.8;
					color: #b00;
				}
				> p {
					padding-top: 40px;
					font-size: min(1.1rem, 5.0vw);
					line-height: 1.6;
					color: #fff;
				}
			}
			> figure {
				text-align: center;
				@media (width < 470px) {
					padding-inline: 10%;
				}
				> img {
					max-width: 100%;
				}
			}
		}
		> div.item {
			> article {
				margin-bottom: 80px;
				display: grid;
				grid-template-columns: 1fr 1.1fr;
				column-gap: 30px;
				@media (width < 680px) {
					margin-top: 80px;
					margin-bottom: 0px;
					grid-template-columns: 1fr;
					row-gap: 30px;
				}
				> figure {
					> img {
						max-width: 100%;
					}
				}
				> div {
					display: grid;
					> div {
						align-self: start;
						@media (width < 470px) {
							text-align: center;
						}
						> h2 {
							font-size: min(2.4rem, 7.0vw);
							line-height: 1.1;
							font-weight: 600;
							color: #fff;
							font-family: var(--font-en);
						}
						> h3 {
							padding-block: 10px 20px;
							font-size: min(1.1rem, 5.0vw);
							line-height: 1.4;
							color: #fff;
						}
						> p {
							padding-bottom: 10px;
							font-size: min(1.0rem, 5.0vw);
							line-height: 1.6;
							color: #fff;
							text-align: justify;
						}
					}
					> div.link {
						align-self: end;
						@media (width < 680px) {
							margin-top: 60px;
							display: flex;
							justify-content: center;
							> a {
								width: 250px;
							}
						}
						> a {
							display: inline-block;
							width: 280px;
							text-align: center;
							text-decoration: none;
							line-height: 60px;
							outline: none;
							background-color: #323232;
							position: relative;
							transition: color 0.5s ease;
							&:hover {
								&::before {
									transform: scaleX(1);
									transform-origin: left;
								}
							}
							&::before {
								position: absolute;
								top: 0;
								left: 0;
								content: "";
								display: block;
								width: 100%;
								height: 100%;
								background: #a00;
								transform: scaleX(0);
								transform-origin: right;
								transition: all 0.5s ease;
								transition-property: transform;
							}
							> div {
								padding: 20px 30px;
								position: relative;
								display: flex;
								justify-content: space-between;
								align-items: center;
								> p {
									font-size: min(1.1rem, 5.0vw);
									line-height: 1.0;
									color: #fff;
								}
								> img {
									width: 12px;
								}
							}
						}
					}
				}
			}
		}
		> h3 {
			text-align: center;
			font-size: min(1.3rem, 6.0vw);
			line-height: 3.0;
			color: #fff;
		}
	}
}
section.collection {
	padding: 0px 5% 120px 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: 3.0;
			color: #fff;
		}
		> figure {
			margin-top: 60px;
			max-width: 900px;
			margin-inline: auto;
			text-align: center;
			background-color: #666;
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-rows: 1fr 1fr;
			> div {
				> img {
					max-width: 100%;
				}
			}
		}
		> div.link {
			margin-top: 20px;
			display: flex;
			justify-content: center;
			> a {
				display: inline-block;
				width: 250px;
				text-align: center;
				text-decoration: none;
				line-height: 60px;
				outline: none;
				background-color: #323232;
				position: relative;
				transition: color 0.5s ease;
				&:hover {
					&::before {
						transform: scaleX(1);
						transform-origin: left;
					}
				}
				&::before {
					position: absolute;
					top: 0;
					left: 0;
					content: "";
					display: block;
					width: 100%;
					height: 100%;
					background: #a00;
					transform: scaleX(0);
					transform-origin: right;
					transition: all 0.5s ease;
					transition-property: transform;
				}
				> div {
					padding: 20px 30px;
					position: relative;
					display: flex;
					justify-content: space-between;
					align-items: center;
					> p {
						font-size: min(1.1rem, 5.0vw);
						line-height: 1.0;
						color: #fff;
					}
					> img {
						width: 12px;
					}
				}
			}
		}
		/*
		> div.spec {
			max-width: 600px;
			margin-inline: auto;
			display: grid;
			> figure {
				grid-area: 1/1/2/2;
				> img {
					width: 110px;
				}
			}
			> div {
				grid-area: 1/1/2/2;
				background-color: #e0dcd3;
				padding: 10px;
				> div {
					height: 100%;
					background-color: #e0dcd3;
					border: 1px solid #231815;
					> figure {
						padding-block: 20px 10px;
						text-align: center;
						> img {
							max-width: 100%;
						}
					}
					> div.item {
						display: flex;
						justify-content: center;
						> p {
							padding: 5px 20px;
							background-color: #000;
							font-size: min(1.1rem, 5.0vw);
							line-height: 1.0;
							color: #fff;
						}
					}
					> div.specdata {
						padding: 20px 30px;
						display: grid;
						grid-template-columns: 1fr 1.2fr;
						column-gap: 40px;
						@media (width < 620px) {
							grid-template-columns: 1fr;
							padding: 20px;
						}
						> article {
							> div {
								border-bottom: 1px solid #000;
								display: grid;
								align-content: end;
								> div:nth-of-type(1) {
									background-color: #fff;
									padding: 30px 10px 10px 10px;
									> p {
										font-size: min(1.1rem, 5vw);
										line-height: 1.0;
									}
									@media (width < 620px) {
										min-width: 140px;
									}
								}
								> div:nth-of-type(2) {
									padding: 10px 0px 10px 10px;
									display: grid;
									grid-template-columns: 1fr 25px;
									align-content: end;
									justify-items: end;
									column-gap: 10px;
									> p {
										font-size: min(1.7rem, 6vw);
										line-height: 1.0;
										font-family: var(--font-en);
										> small {
											font-size: min(1.0rem, 4.5vw);
										}
									}
								}
							}
							&:nth-of-type(1) {
								> div {
									grid-template-columns: 90px 1fr;
									@media (width < 620px) {
										grid-template-columns: auto 1fr;
									}
								}
							}
							&:nth-of-type(2) {
								> div {
									grid-template-columns: 140px 1fr;
									@media (width < 620px) {
										grid-template-columns: auto 1fr;
									}
								}
							}
						}
					}
				}
			}
		}
		*/
	}
}
section.link {
	background-image: url(./image/linkbg.webp);
	padding: 100px 5% 100px 5%;
	background-repeat: no-repeat;
	background-position: 100% 0%;
	background-size: cover;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(3.5rem, 8.0vw);
			line-height: 1.4;
			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: 2.0;
			color: #fff;
		}
		> div.link {
			margin-top: 60px;
			display: flex;
			justify-content: center;
			> a {
				display: inline-block;
				width: 270px;
				text-align: center;
				text-decoration: none;
				line-height: 60px;
				outline: none;
				background-color: #000;
				position: relative;
				transition: color 0.5s ease;
				&:hover {
					&::before {
						transform: scaleX(1);
						transform-origin: left;
					}
				}
				&::before {
					position: absolute;
					top: 0;
					left: 0;
					content: "";
					display: block;
					width: 100%;
					height: 100%;
					background: #a00;
					transform: scaleX(0);
					transform-origin: right;
					transition: all 0.5s ease;
					transition-property: transform;
				}
				> div {
					padding: 20px 30px;
					position: relative;
					display: flex;
					justify-content: space-between;
					align-items: center;
					> p {
						font-size: min(1.1rem, 5.0vw);
						line-height: 1.0;
						color: #fff;
					}
					> img {
						width: 12px;
					}
				}
			}
		}
	}
}
section.column {
	padding: 100px 5% 100px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h2 {
			font-size: min(3.5rem, 8.0vw);
			line-height: 1.4;
			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.3;
			color: #b00;
			font-weight: 600;
			text-align: center;
			padding-bottom: 40px;
		}
		> div.item {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			column-gap: 30px;
			row-gap: 50px;
			@media (width < 670px) {
				grid-template-columns: repeat(2, 1fr);
			}
			@media (width < 470px) {
				grid-template-columns: repeat(1, 1fr);
			}
			> a {
				text-decoration: none;
				&:hover {
					> figure > img {
						transform: scale(1.1);
					}
				}
				> figure {
					overflow: hidden;
					> img {
						transition: transform 0.5s;
						max-width: 100%;
					}
				}
				> p {
					font-size: min(1rem, 5.0vw);
					line-height: 1.4;
					color: #fff;
					&:nth-of-type(1) {
						padding-block: 10px;
					}
					&:nth-of-type(2) {
						text-align: justify;
					}
					> small {
						color: #999;
					}
				}
			}
		}
		> div.link {
			margin-top: 60px;
			display: flex;
			justify-content: center;
			> a {
				display: inline-block;
				width: 250px;
				text-align: center;
				text-decoration: none;
				line-height: 60px;
				outline: none;
				background-color: #323232;
				position: relative;
				transition: color 0.5s ease;
				&:hover {
					&::before {
						transform: scaleX(1);
						transform-origin: left;
					}
				}
				&::before {
					position: absolute;
					top: 0;
					left: 0;
					content: "";
					display: block;
					width: 100%;
					height: 100%;
					background: #a00;
					transform: scaleX(0);
					transform-origin: right;
					transition: all 0.5s ease;
					transition-property: transform;
				}
				> div {
					padding: 20px 30px;
					position: relative;
					display: flex;
					justify-content: space-between;
					align-items: center;
					> p {
						font-size: min(1.1rem, 5.0vw);
						line-height: 1.0;
						color: #fff;
					}
					> img {
						width: 12px;
					}
				}
			}
		}
	}
}
