@charset "UTF-8";

/* Common
--------------------------------- */
[class*="category-"] .core-contents {
	padding: 30px 0 100px;
}
.core-contents__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    list-style-type: none;
}

/* News
--------------------------------- */
.newsList {
	display: flex;
	padding: 20px 10px;
	border-bottom: dotted 1px #999;
}
.newsList__title a {
	text-decoration: none;
	color: #000;
}
.newsList__date {
	flex: 0 0 195px;
}
.newsList__date:before {
	display: inline-block;
	content: "";
	width: 15px;
	height: 15px;
	margin: 0 3px 0 0;
	background-image: url("../img/icon/icon-calendar.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -1px;
}

/* Producs
--------------------------------- */
.gotoProducts img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}

/* voice
--------------------------------- */
.category-voice .voiceList {
	flex: 0 0 calc( 33.33% - 40px );
	margin: 0 0 75px;
}
.category-voice .core-contents__inner:after {
	content: "";
	display: block;
	width: calc( 33.33% - 40px );
}
.voiceList__title {
	margin: 0 0 20px;
}
.voiceList__title a {
	display: block;
	padding: 20px 10px;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	color: #000;
}
.voiceList__sheet {
	object-fit: cover;
	aspect-ratio: 1 / 1.413;
	width: 100%;
	height: auto;
}
.voiceList .post-excerpt {
	font-size: 14px;
}

/* Faq
--------------------------------- */
.faqList__title {
	list-style-type: none;
}
.faqList__title a {
	display: block;
	padding: 20px 10px;
	border-bottom: dotted 1px #999;
	text-decoration: none;
	color: #000;
}
.faqList__title a:before {
	display: inline-block;
	content: "";
	width: 33px;
	height: 33px;
	margin: 0 10px 0 0;
	background-image: url("../img/icon/icon-q.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -10px;
}

/* blog ( blog + sekoujirei )
--------------------------------- */
.category-blog .blogList {
	flex: 0 0 calc( 50% - 40px );
	margin: 0 0 75px;
}
.category-blog .blogList a{
	text-decoration: none;
}
.blogList__title  {
    margin: 0 0 20px;
	display: flex;
	align-items: center;
	min-height: 100px;
	padding: 0 10px;
	border-top: solid 1px #999;
	border-bottom: solid 1px #999;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	color: #000;
}
.blogList__title a{
    color: #000;
}
.blogList__eyecatch {
	object-fit: cover;
	object-position: 50% 0%;
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
}
.blogList .post-excerpt {
	font-size: 14px;
    color: #000;
}

.blogList .blogList__contents .more-btn{
    display: block;
    margin: 0 0 0 auto;
    background-color: #5ec998;
    border: 1px solid #5ec998;
    color: #fff;
    width: fit-content;
    padding: 2px 20px;
}

@media screen and (min-width:768px) {
    .blogList .blogList__contents:hover .more-btn{
        background-color: #fff;
        color: #5ec998;
        transition: all .2s;
    }
}

/* End of css */