@charset "utf-8";
:root {
	--contents-color: var(--goods-color);
}
#contentstitle h1 {
	background-color: var(--contents-color);
}
#main h2 {
	color: var(--contents-color);
	border-left: 1em solid var(--contents-color);
}
#main #contentsmenu {
	justify-content: center!important;
}
#main #contentsmenu li a {
	border-color: var(--contents-color);
	color: var(--contents-color)!important;
}
#main #contentsmenu li a:hover {
	border-color: var(--contents-color);
	background-color: var(--contents-color)!important;
}
.followbtn.news {
	background-color: var(--contents-color);
	border-color: var(--contents-color);
	margin-bottom: 30px;
}

.oldnews_link .followbtn {
	background-color: var(--contents-color);
	border-color: var(--contents-color);
}



#main .imgbox {
	text-align: center;
}



.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: 80%;
	padding: 1em;
	font-weight: 600;
	color: #444;
}
.listbox li a:hover .title {
	opacity: .8;
}

/*.listbox {
}
.listbox li {
	margin-bottom: 20px;
}
.listbox li:last-child {
}
.listbox li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px;
	transition: .5s;
	color: var(--base-color);
	border: 1px solid #FFF;
	background-color: #FFF;
	border-radius: .3em;
	-webkit-box-shadow: 0px 0px 10px rgba(255,121,27,0.50);
	box-shadow: 0px 0px 10px rgba(255,121,27,0.50);
}
.listbox li a:hover {
	border: 1px solid var(--contents-color);
	color: var(--contents-color);
	text-decoration: none;
}
.listbox li a img {
	float: left;
	margin-right: 2em;
	width: 240px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}
@media screen and (max-width:480px) {
	.listbox li a img {
		width: 100%;
		margin-bottom: 1em;
		margin-right: 0;
		float: none;
	}
}
.listbox li a::after {
	content: '';
	display: block;
	width: 100%;
	clear: both;
}
.listbox .category {
	border: solid 1px;
	display: inline-block;
	background: #FFF;
	font-size: 80%;
	float: right;
	width: 12em;
	padding: .5em;
	text-align: center;
	border-radius: .3em;
}
@media screen and (max-width:480px) {
	.listbox .category {
		margin-bottom: -.9em;
	}
}
.listbox .date {
	clear: right;
	font-size: .9em;
	font-weight: bold;
	margin-bottom: .5em;
}*/




.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%;
}
@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;
	}
}
.navi ul.single li a {
	display: block;
	text-align: center;
}
.navi ul li span {
	color: #CCC;
}
@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 1em;
		border-radius: .3em;
	}
}



/*main article > div.category_title h2 {
	border: none;
}
.category_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 1em 0 2em;
}
.category_list li {
	width: calc(97% / 4);
	margin-bottom: 1%;
}
.category_list li.single {
	width: 100%;
}
.category_list li a {
	border: solid 1px;
	display: block;
	background: #FFF;
	padding: .5em;
	text-align: center;
	border-radius: .3em;
	transition: .5s;
}
@media screen and (max-width:480px) {
	.category_list li {
		width: calc(98% / 2);
		margin-bottom: 2%;
	}
	.category_list li.single {
		width: calc(100% / 1);
		margin-bottom: 2%;
	}
	.category_list li a {
		padding: .8em 0
	}
}
.category_list li a:hover {
	background-color: rgba(243,246,34,0.50);
	text-decoration: none;
}*/











/*.newsbox {
	background-color: #FFF;
	border-radius: .3em;
	padding: 30px 20px 20px;
	margin-bottom: 20px;
	-webkit-box-shadow: 0px 0px 10px rgba(255,121,27,0.50);
	box-shadow: 0px 0px 10px rgba(255,121,27,0.50);
	position: relative;
}
@media screen and (max-width:480px) {
	.newsbox {
		padding: 30px 15px 15px;
	}
}*/
.newsbox {
	padding: 30px 20px 20px;
	margin-bottom: 20px;
	position: relative;
}
@media screen and (max-width:480px) {
	.newsbox {
		padding: 30px 15px 15px;
	}
}
/*.newsbox > .title {
	text-align: left;
	border-left: .8em solid var(--contents-color);
	letter-spacing: -.01em;
	padding: .5em 1em;
	margin-bottom: 30px;
	line-height: 1.2;
}*/
.newsbox > .title {
	text-align: left;
	letter-spacing: -.01em;
	padding-bottom: 30px;
	margin-bottom: 30px;
	line-height: 1.2;
	border-bottom: 1px solid #ccc;
}

/*.newsbox .cat {
	position: absolute;
	right: 20px;
	top:20px;
}
.newsbox .cat a {
	border: solid 1px;
	display: inline-block;
	background: #FFF;
	font-size: 10px;
	float: right;
	width: 12em;
	padding: .5em;
	text-align: center;
	border-radius: .3em;
}*/
/*.newsbox > .title > h5 {
	font-size: 140%;
	line-height: 1.3;
}
.newsbox > .title >  h6 {
	font-weight: bold;
	font-size: 10px;
	height: 20px;
	display: flex;
	align-items: center;
}*/
.newsbox > .title > h5 {
	font-size: min(3.0rem, 4.5vw);
	line-height: 1.5;
}
.newsbox > .title >  h6 {
	font-weight: 200;
	font-size: min(1.8rem, 3.2vw);
	margin-bottom: 1em;
}
/*.newsbox > .txt {
	margin: 20px 10px 20px;
	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: 5px auto;
}
.newsbox > .txt a {
	letter-spacing: -.01em;
}
.newsbox > .txt span {
	font-size: 80%;
	letter-spacing: -.005em;
	line-height: 1.2;
}*/
.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;
}
