@charset "UTF-8";
/* CSS Document */
#ColumnIndex ul li a.Disabled {
	position: relative;
	pointer-events: none;
}

#ColumnIndex ul li a.Disabled::after {
	content: "";
	display: block;
	width: auto;
	height: 10vw;
	max-height: 120px;
	aspect-ratio: 1/1;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../images/News/bnr_disabled_expansion.png") no-repeat center left;
	background-size: contain;
}

h2 {
	font-size: 170%;
	margin-bottom: 20px;
}


#ColumnIndex {
	display: block;
	width: 90%;
	min-height: 100vh;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
#ColumnIndex ul {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-flow: wrap;
	gap: 2em;
	list-style: none;
	width: 100%;
	margin: 0 auto 1em;
}
#ColumnIndex ul li {
	width: calc( 50% - 1em);
	max-width: calc( 50% - 1em);
}
#ColumnIndex ul li a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1em;
	color: #4d4d4d;
	text-decoration: none;
}
#ColumnIndex ul li a img {
	height: 10vw;
	max-height: 120px;
	width: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
}
#ColumnIndex ul li a div {
	display: flex;
	flex-flow: column;
}
#ColumnArea {
	display: block;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
#ColumnArea #MV {
	width: 100%;
}
#ColumnArea #MV img {
	width: 100%;
	height: auto;
}
#ColumnArea #ContentsBlock {
	width: 80%;
	margin: 0 auto;
	overflow: hidden;
}
#ColumnArea #ContentsBlock ol.Contents {
	display: block;
	width: 100%;
	margin: 1em auto;
	list-style: none;
	border: solid 1px #0071ce;
	position: relative;
	counter-reset: ContentsNum;
	padding: 2em 0.5em 0.5em 0.5em;
}
#ColumnArea #ContentsBlock ol.Contents::after {
	position: absolute;
	top: 0.5em;
	left: 0.5em;
	content: "目次";
	color: #0071ce;
}
#ColumnArea #ContentsBlock ol.Contents li {
	position: relative;
	margin: 0.5em 0 0.5em 2em;
	padding: 0;
}
#ColumnArea #ContentsBlock ol.Contents li a{
	color: #4d4d4d;
	text-decoration: none;
}
#ColumnArea #ContentsBlock ol.Contents > li::before {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	font-weight: bold;
	counter-increment: ContentsNum;
	content: counter(ContentsNum) "";
	left: -2em;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	border-radius: 50%;
	background: #0071ce;
}
#ColumnArea #ContentsBlock h2 {
	margin: 2em 0 1em;
	position: relative;
}
#ColumnArea #ContentsBlock h2 span{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #0071ce;
	color: #ffffff;
	line-height: 100%;
	width: 1.5em;
	height: 1.5em;
	border-radius: 0.75em;
	margin-right: 0.5em;
}
/*#ColumnArea #ContentsBlock h2 span::after{
	content: "";
	position: absolute;
	top:0;
	right:-0.5em;
	display: block;
	height: 100%;
	width: 0.5em;
	background: linear-gradient(to bottom left, transparent 50% , #0071ce 50%) no-repeat top left / 100% 50%,
    linear-gradient(to top left,transparent 50%, #0071ce 50%) no-repeat bottom left/100% 50%;
}*/
#ColumnArea #ContentsBlock p{
	margin-bottom: 1em;
}
#ColumnArea #ContentsBlock p#Lead {
	color: #0071ce;
}
#ColumnArea #ContentsBlock figure{
	width: 100%;
	margin-bottom: 1em;
}
#ColumnArea #ContentsBlock figure img {
	width: 100%;
	height: auto;
}
#ColumnArea #ContentsBlock  figure figcaption {
	text-align: center;
	font-size: 80%;
	line-height: 125%;
	color: #666666;
}
#ColumnArea #ContentsBlock figure.FloatLeft {
	width: 30%;
	float: left;
	clear: left;
	margin-right: 1.5em;
}
#ColumnArea #ContentsBlock figure.FloatRight {
	width: 30%;
	float: right;
	clear: right;
	margin-left: 1.5em;
}
#ColumnArea #ContentsBlock figure.FloatLeft img, #ColumnArea #ContentsBlock figure.FloatRight img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.LargeText {
	font-size: 120%;
}
.Boldtext {
	font-weight: 700;
}
/*タブレット*/
@media screen and (min-width:768px) and (max-width:1199px) {
	h2 {
		font-size: 135%;
		margin-bottom: 20px;
	}
}
/*スマホ*/
@media screen and (max-width: 767px) {
	h2 {
		font-size: 100%;
		margin-bottom: 20px;
	}
	#ColumnArea #ContentsBlock {
		width: 100%;
	}
	#ColumnIndex ul {
		flex-flow:column;
	}
	#ColumnIndex ul li {
		width: 100%;
		max-width: 100%;
	}
	#ColumnIndex ul li a img {
		height: 22vmin;
		max-height: 22vmin;
		width: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
	}
	.SmallText{
		font-size: 80%;
		line-height: 150%;
	}
	#ColumnIndex ul li a.Disabled::after {
		height: 22vmin;
		max-height: 22vmin;
	}
	/* 縦向きの場合のスタイル */
	@media screen and (max-aspect-ratio: 11/10) {
		#ColumnArea figure.FloatLeft {
			width: 100%;
			float: none;
			clear: both;
			margin-right: 0;
		}
		#ColumnArea figure.FloatRight {
			width: 100%;
			float: none;
			clear: both;
			margin-left: 0;
		}
	}
}