@charset "utf-8";

.cover {
	max-height: 400px;
}

/*---------------------------------------------------------------------- .article_detail --*/

.article_detail {
	display: flex;
	flex-wrap: wrap;
	border-radius: var(--border_radius);
	box-shadow: 1px 1px 1px #eee;
	background: #fff;
}

@media (768px <= width) {
	#article_detail {
		padding-top: 0;
		margin-top: -50px;
	}
}

@media (768px <= width <= 1600px) {
	#article_detail > .frame {
		padding: 0 var(--margin);
	}
}

@media (width <= 767px) {
	#article_detail {
		padding: 0;
	}
	
	#article_detail > .frame {
		width: 100%;
	}
}

.article_detail .title {
	width: 100%;
	margin-top: -0.15em;
	margin-bottom: 15px;
	font-size: var(--font_title);
	font-family: YuGo-B;
}

.article_detail .title:after {
	width: 100px;
	display: none;
}

.article_detail .title {
	padding-right: 0;
}

.article_detail .body {
	width: 100%;
	margin-top: 40px;
}

.article_detail .category {
	font-size: 16px;
}

.article_detail .date {
	font-size: 18px;
}



@media (width <= 767px) {
	.article_detail .category {
		min-width: 100px;
		font-size: 12px;
	}

	.article_detail .date {
		font-size: 13px;
	}

	.article .body {
		margin-top: 25px;
	}
}

/*---------------------------------------------------------------------- .gallary --*/

.gallary {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.gallary a {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.gallary a::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
}

@media (768px <= width) {
	.gallary {
		justify-content: center;
		margin-top: 2rem;
		padding: 15px;
		background: rgba(235, 235, 255, 0.5);
		border-radius: var(--border_radius);
		box-shadow: 3px 3px 3px #eee;		
	}

	.gallary a {
		width: calc((100% - 5px) / 6);
		margin-right: 1px;
		aspect-ratio: 16 / 9;
	}

	.gallary a:nth-of-type(6n) {
		margin-right: 0;
	}
}

@media (width <= 767px) {
	.gallary {
		margin-top: 2rem;
	}
	
	.gallary.smart_center {
		justify-content: center;
	}
	
	.gallary a {
		width: calc((100% - 2px) / 3);
		margin-right: 1px;
		aspect-ratio: 1 / 1;
	}

	.gallary a:nth-of-type(3n) {
		margin-right: 0;
	}

	.gallary a:nth-of-type(n + 4) {
		margin-top: 1px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.gallary a:hover::before {
		opacity: 0.25;
	}
}

/*---------------------------------------------------------------------- .article_navi --*/

.article_navi {
	display: flex;
	display: none;
	justify-content: space-between;
}

.article_navi a {
	width: 175px;

	font-size: 14px;
	font-weight: bold;
	line-height: 40px;
	letter-spacing: 2px;
	text-align: center;
}

.prev, .prev_disabled {
	background: url(/asset/image/footer/arrow_left_000.png?m=20000101) no-repeat center left / 40px;
}

.next, .next_disabled {
	background: url(/asset/image/footer/arrow_right_000.png?m=20000101) no-repeat center right / 40px;
}

.prev_disabled, .next_disabled {
	opacity: 0.5;
}

@media (hover: hover) and (pointer: fine) {
	.prev, .next {
		transition: 0.2s;
	}

	.prev:hover, .next:hover {
		text-decoration: underline;
	}
}

/*---------------------------------------------------------------------- .back --*/
/*
.back {
	display: flex;
	position: relative;
	background: url(/asset/image/general/logo_global_fff_o2.png?m=20000101) no-repeat center / auto 50%, var(--hover);
	justify-content: center;
	font-weight: bold;
	color: #fff;
}

.back_en div {
	font-family: 'Montserrat', sans-serif;
	font-weight: 200;
	letter-spacing: 0;
	font-style: italic;
	font-size: 30px;
	letter-spacing: 0.05em;
	color: #FFF;
}

@media (min-width: 769px) {
	.back {
		line-height: 100px;
		font-size: 30px;
		letter-spacing: 3px;
	}
}

@media (width <= 768px) {
	.back {
		line-height: 100px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.back {
		transition: 0.2s;
	}

	.back:hover {
		background: url(/asset/image/general/logo_global_fff_o2.png?m=20000101) no-repeat center / auto 60%, var(--theme);
	}
}
*/