main {
	width: 100%;
	min-height: calc(100vh - 6rem);
	display: flex;
	padding: 14.5rem 3rem 3rem;
}

main section {
	flex: 3;
	max-width: 75%;
	height: 43vw;
}

main .swiper {
	height: 100%;
}

main .swiper-slide {
	overflow: hidden;
}

main .swiper-slide > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	-webkit-object-fit: contain;
}

main .controller {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 0.5rem 1rem;
	z-index: 100;
}

main .swiper-btn {
	width: 3rem;
	height: 3rem;
	border-radius: 0;
	border: none;
	outline: none;
	background: var(--text-color);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: cover;
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: cover;
}

main .swiper-btn.prev {
	mask-image: url('../../image/ico_left.svg');
	-webkit-mask-image: url('../../image/ico_left.svg');
	margin-right: 1rem;
	margin-left: 3rem;
}

main .swiper-btn.next {
	mask-image: url('../../image/ico_right.svg');
	-webkit-mask-image: url('../../image/ico_right.svg');
}

main .pagination {
	width: 5rem;
	bottom: 0;
	font-size: 1.6rem;
	text-align: center;
	line-height: 3rem;
}

aside {
	flex: 1;
	height: 43vw;
	padding: 3rem;
	border-left: 1px solid var(--text-color);
	font-size: 1.6rem;
	overflow-x: hidden;
	overflow-y: overlay;
	margin-left: 3rem;
}

aside img.cover-img {
	width: 100%;
	height: 26vw;
	object-fit: contain;
	-webkit-object-fit: contain;
	object-position: top left;
	-webkit-object-position: top left;
	margin-bottom: 3rem;
}

aside h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 2rem auto;
}

@media screen and (max-width: 768px) {
	main {
		padding: 10rem 2rem;
		flex-direction: column;
	}

	main section {
		order: 2;
		width: 100%;
		height: 58vw;
		max-height: 58vw;
	}

	main .swiper-btn {
		width: 2.4rem;
		height: 2.4rem;
	}

	main .swiper-btn.prev {
		margin-left: 2rem;
	}

	main .pagination {
		font-size: 1.2rem;
		line-height: 2.4rem;
	}

	aside {
		order: 1;
		height: auto;
		padding: 0;
		margin-left: 0;
		margin-bottom: 3rem;
		border-left: none;
		font-size: 1.2rem;
		text-align: center;
	}

	aside img.cover-img {
		width: 60%;
		height: 70vw;
		margin-bottom: 2rem;
		object-position: center center;
	}

	aside p {
		text-align: left;
	}
}
