:root {
	--contents-color: #006633;
}

/* .bnrlink */
/*
.bnrlink {
	display: block;
	color: #FFF!important;
	border-radius: 5px;
	text-decoration: none;
	margin: .5em 0;
	padding: .5em 2em .5em;
	position: relative;
	font-size: 90%;
	line-height: 1.2;
	transition: all .3s;
}
.bnrlink::before {
	content: '▼';
	display: block;
	position: absolute;
	left: .6em;
	top: 50%;
	transform:translateY(-50%) rotate(-90deg); 
}
.bnrlink:hover {
	opacity: .8;
	text-decoration: none;
}

.bnrlink {
	background-color: var(--contents-color);
}*/
/*
@media only screen and (min-width: 1000px) {
	body {
		background-image: url("../img/news/bg.jpg");
	}
}*/


#midashibar {
	background-color: var(--contents-color);
}

#midashibar2 {
	background-color: var(--contents-color);
}
	
img {
	max-width: 100%;
	height: auto;	
}


article {
	margin-top: 30px;
}


.listbox {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}
@media(max-width:767px) {
	.listbox li {
		width: calc((100% - 1em) / 2);
	}
}
@media(min-width:768px) {
	.listbox li {
		width: calc((100% - 2em) / 3);
	}
}


.listbox li {
	border: 1px solid #ccc;
	border-radius: .5em;
	background-color: #fff;
	overflow: hidden;
}
.listbox li a:hover,
.listbox li a:hover * {
	text-decoration: none;
}
.listbox li .img {
	width: 100%;
	aspect-ratio: 1 / 1;
	position: relative;
	background-color: #eee;
	overflow: hidden;
}
.listbox li .img img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transition: .3s all;
}
.listbox li:hover .img img {
	transform: translate(-50%, -50%) scale(1.1);
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	-ms-transform: translate(-50%, -50%) scale(1.1);
}
.listbox li .inner {
	display: flex;
	justify-content: flex-start;
	padding: 1em 1em 0;
}
.listbox li .inner p {
	display: inline-block;
	color: #ccc;
	line-height: 1;
}
.listbox li .inner p.date {
	font-size: 80%;
	padding: .1em 0;
}
.listbox li .inner p.category {
	font-size: 60%;
	padding: .3em 1em;
	border: 1px solid #ccc;
	border-radius: 3em;
}
.listbox li .title {
	font-size: min(14px, 120%);
	padding: 1em;
	font-weight: 600;
	color: #444;
}
.listbox li a:hover .title {
	opacity: .8;
}



.newsbox {
	border-top: 2px solid var(--contents-color);
	border-bottom: 2px solid var(--contents-color);
	padding: 30px 20px 20px;
	word-break: break-all;
}
/*.newsbox h5 {
	font-size: 140%;
	margin-bottom: .3em;
	line-height: 1.5;
	padding-bottom: calc(.3em / 1.4);
}
.newsbox h6 {
	font-weight: bold;
}*/
.newsbox .txt {
	margin: 2em 0 0;
	line-height: 2;
	font-weight: 200;
}
@media screen and (max-width:480px) {
	.newsbox {
		padding: 30px 15px 15px;
	}
}
.newsbox > .title {
	text-align: left;
	letter-spacing: -.01em;
	padding-bottom: 30px;
	margin-bottom: 30px;
	line-height: 1.2;
	border-bottom: 1px solid #ccc;
}
.newsbox > .title > h5 {
	font-size: min(3.0rem, 4.5vw);
	line-height: 1.5;
	line-height: 1.2;
	word-break: break-word;
}
.newsbox > .title >  h6 {
	font-weight: 200;
	font-size: min(1.8rem, 3.2vw);
	margin-bottom: 1em;
}
.newsbox > .txt {
	margin: 0 10px 30px;
	line-height: 1.8;
	font-weight: 200;
}
@media screen and (max-width:480px) {
	.newsbox > .txt {
		margin: 18px 5px 18px;
	}
}
.newsbox .txt img {
	display: block;
	margin: 0 auto;
}
.newsbox .txt div[data-type="component-photo"] {
	margin-top: 20px;
}
.newsbox > .txt a {
	letter-spacing: -.01em;
}
.newsbox > .txt span {
	font-size: 80%;
	letter-spacing: -.005em;
	line-height: 1.2;
}





/* 記事用戻りボタン */
.navi {
	padding: 4em 0;
}
.navi ul {
	display: flex;
	justify-content: space-between
}
.navi ul.single {
	display: block;
	justify-content: center;
}
.navi ul.single li {
	width: 100%;
}
.navi ul.single li a {
	display: block;
	text-align: center;
}
.navi ul li span {
	color: #CCC;
}
@media screen and (min-width:481px) {
	.navi ul li.home a::before {
		content: "[";
		display: inline-block;
		padding-right: 1em;
	}
	.navi ul li.home a::after {
		content: "]";
		display: inline-block;
		padding-left: 1em;
	}
	.navi ul li.home span::before {
		content: "[";
		display: inline-block;
		padding-right: 1em;
	}
	.navi ul li.home span::after {
		content: "]";
		display: inline-block;
		padding-left: 1em;
	}
}
@media screen and (max-width:480px) {
	.navi ul {
		margin-bottom: 1em;
	}
	.navi ul li span,
	.navi ul li a {
		font-size: 80%;
		border: 1px solid;
		padding: .8em .5em;
		border-radius: .3em;
	}
}

