@charset "UTF-8";
/* CSS Document */
h2 {
	font-size: 170%;
	margin-bottom: 20px;
}

#StraightNewsIndex, #StraightNewsArea{
	display: block;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
#StraightNewsIndex 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;
}
#StraightNewsIndex ul li {
	width: calc( 50% - 1em);
	max-width: calc( 50% - 1em);
}
#StraightNewsIndex ul li a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1em;
	color: #4d4d4d;
	text-decoration: none;
}
#StraightNewsIndex ul li a img {
	height: 10vw;
	max-height: 120px;
	width: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
}
#StraightNewsIndex ul li a div {
	display: flex;
	flex-flow: column;
}
#StraightNewsArea #ContentsBlock h2 {
	margin: 2em 0 1em;
}
#StraightNewsArea #ContentsBlock {
	width: 80%;
	margin: 0 auto;
	overflow: hidden;
}
#StraightNewsArea p {
	margin-bottom: 1em;
}
#StraightNewsArea figure {
	width: 100%;
	margin: 2em auto;
	text-align: center;
}
#StraightNewsArea figure img {
	width: 100%;
	height: auto;
}
#StraightNewsArea figure figcaption {
	text-align: center;
	font-size: 75%;
	line-height: 125%;
}
/*タブレット*/
@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;
	}
	#StraightNewsArea #ContentsBlock {
		width: 100%;
	}
	#StraightNewsIndex ul {
		flex-flow:column;
	}
	#StraightNewsIndex ul li {
		width: 100%;
		max-width: 100%;
	}
	#StraightNewsIndex ul li a img {
		height: 22vmin;
		max-height: 22vmin;
		width: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
	}
	/* 縦向きの場合のスタイル */
	@media screen and (max-aspect-ratio: 11/10) {
		
	}
}
