@charset 'utf-8';

aside {
	background: #fff;
	padding: 1% 0 5%;
}

/* Panel */
.Panel {
	margin-top: -60px;
	position: relative;
}
@media (min-width: 1024px) {
	.Panel {
		margin-top: -100px;
	}
}
@media (min-width: 1024px) {
	.Panel figure {
		margin-top: 0;
	}
}

/* Button */
.Panel .Prev,
.Panel .Next {
	background: transparent;
	border: none;
	color: transparent;
	cursor: pointer;
	display: none;
	height: 100px;
	left: 0;
	position: absolute;
	top: 51%;
	transform: translateY(-50%);
	width: 60px;
	z-index: 20;
}
.Panel .Next {
	left: auto;
	right: 0;
}
.Panel .Prev:hover,
.Panel .Next:hover {
	background: transparent;
}
.Panel .Prev::before,
.Panel .Next::before {
	border: 2px solid #fff;
	border-width: 2px 0 0 2px;
	content: '';
	height: 18px;
	left: 50%;
	position: absolute;
	top: 50%;
	transition: all 0.3s ease-in-out;
	transform: translate(-25%, -50%) rotate(-45deg);
	width: 18px;
}
.Panel .Next::before {
	transform: translate(-75%, -50%) rotate(135deg);
}
@media (min-width: 1024px) {
	.Panel .Prev,
	.Panel .Next {
		display: block;
	}
}

/* Indicator */
.Indicator {
	bottom: 30px;
	display: flex;
	gap: 8px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 20;
}
.Indicator span {
	border-radius: 50%;
	color: transparent;
	cursor: pointer;
	display: block;
	font-size: 0;
	height: 24px;
	position: relative;
	transition: all 0.3s ease-in-out;
	width: 24px;
	z-index: 1;
}
.Indicator span::before {
	background: #fff;
	border-radius: 50%;
	content: '';
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
	width: 2px;
	z-index: 10;
}
.Indicator span.Current::before {
	background: #fff;
	height: 16px;
	width: 16px;
}
@media (min-width: 1024px) {
	.Indicator span {
		height: 35px;
		width: 35px;
	}
	.Indicator span::before {
		height: 4px;
		width: 4px;
	}
	.Indicator span.Current::before {
		height: 20px;
		width: 20px;
	}
}

/* Blog */
.Blog {
	overflow: hidden;
	padding-bottom: 0;
	min-height: 400px;
	position: relative;
}
.Blog::before,
.Blog::after {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.Blog::before {
	background: rgba(0, 0, 0, .6);
	z-index: 1;
}
.Blog::after {
	background: url(../image/blog.jpg) no-repeat 50%;
	background-size: cover;
	z-index: 0;
}
.Blog > * {
	position: relative;
	z-index: 2;
}
.Blog h2 {
	color: #fff;
	margin: 6em 0;
}
.Blog .Tab {
	margin-top: 0 !important;
}
.Blog .Tab li a {
	color: #fff;
}
.Blog .Tab li a.Current {
	color: #333;
	transition: none;
}
.Blog .SliderWrap {
	padding: 2em 0 6%;
	position: relative;
	z-index: 1;
}
.Blog .SliderWrap::after {
	background: #fff;
	bottom: 0;
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100dvw;
	z-index: -1;
}
.Blog [class^="Grid"] > div {
	background: #f5f5f5;
	min-width: 0;
}
.Blog [class^="Grid"] h3 {
	display: -webkit-box;
	font-size: 1.1em;
	line-height: 1.6;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.Blog [class^="Grid"] p {
	display: none;
	font-size: .9em;
	line-height: 1.7;
	overflow: hidden;
	margin: 1em 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}
.Blog p.Button {
	margin-top: 3em;
}
.Blog .Date {
	font-size: .8em;
}
@media (min-width: 1024px) {
	.Blog [class^="Grid"] p {
	display: -webkit-box;
	}
}
/* Information */
.Information {
	background: #f8f8f8;
}
.Information p {
	font-size: .9em;
	line-height: 1.7;
	margin-top: 0;
}
.Information div.Figure  {
	float: right;
	max-width: 50%;
	margin-left: 2em;
}