@charset "utf-8";

.linkBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #111;
    color: #111;
    gap: 12.9px;
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all .5s;
}

.linkBtn:hover {
    background-color: #111;
    color: #fff;
}

.productBlockBox section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
    width: 100%;
}

.productItemBox {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.productImgBx {
    position: relative;
    padding: 0 0 71.88%;
    background: #EEEEEE;
    margin-bottom: 15px;
}

.productImgBx img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}

.newsImgControl {
    width: 100%;
    position: relative;
    padding: 0 0 66.5%;
    text-align: center;
    overflow: hidden;
    margin: auto;
}

.newsImgControl > img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.productImgBx > span >img {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    max-height: 100%;
    height: auto;
    max-width: 100%;
    width: auto;
    bottom: 0;
    left: 0;
    margin: auto;
}
  
.productImgBx > img+span{
    display: none;
}

.productItemCate {
    font-size: 13px;
    display: inline-block;
    font-weight: 400;
    padding: 4px 10px;
    text-align: center;
    line-height: 1.267em;
    min-width: 115px;
    max-width: 150px;
    background: #8E8E8E;
    color: #fff;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.productBlockBox section article {
    width: 100%;
}

.productItemTitle {
    margin-top: 15px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.productItemMoney {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.productItemTextAria {
    margin-top: 15px;
}

.productCatTit {
    font-weight: bold;
    font-family: "Josefin Sans", sans-serif;
    line-height: 1.015em;
    font-size: 25px;
    margin-bottom: 20px;
}

.productCategoryBox section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.productCategoryBox section article {
    width: auto;
}

.sideLink {
    border: 1px solid #505050;
    display: block;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 7px 15px;
    color: #111;
    transition: all .5s;
}

.sideLink:hover {
    background-color: #505050;
    color: #fff;
}

/*===========================================================
ページャー
===========================================================*/

.webgene-pagination:nth-last-child(1) {
    grid-area: auto/auto/auto/span 2;
}

.webgene-pagination > ul{
	padding: 0;
	display: flex;
	justify-content: center;
	margin: 0;
	gap: 10px;
}

.webgene-pagination > ul > li{
	display: flex;
}

.webgene-pagination > ul > li{
	height: 35px;
	width:100%;
	max-width: 35px;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1em;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	cursor: pointer;
}

.webgene-pagination > ul > li.selected > a{
	color: #111111;
	background: #E6E6E6;
	border: solid 1px #E6E6E6;
	cursor: inherit;
}

.webgene-pagination > ul > li.selected > a:hover {
	color: #111111;
	background-color: #E6E6E6;
}

.webgene-pagination > ul > li > a{
	width: 100%;
	height: 35px;
	width: 35px;
  	font-size: 14px;
	font-family: "Josefin Sans", sans-serif;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #111111;
	border: solid 1px #111111;
  	transition: all .3s;
}

.webgene-pagination > ul > li > a:hover{
	color: #111111;
	background: #E6E6E6;
	border: solid 1px #E6E6E6;
	text-decoration: none;
  	transition: all .3s;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 40px;
	width: 40px;
	border: 0;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
	color: #decfb3;
	background-color: initial;
}


.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
	content: "";
	display: block;
	transition: all .3s;
}

/* 「前へ」「次へ」のテキストを視覚的に隠す */
.webgene-pagination > ul > .prev > a,
.webgene-pagination > ul > .next > a {
	font-size: 0;           /* aタグの文字を見えなくする */
	color: var(--secondary);
	text-indent: -9999px;   /* 念のためさらに画面外に押し出す */
	position: relative;
}

/* 「<」を挿入 */
.webgene-pagination > ul > .prev > a::after {
	content: "<";
	font-size: 16px;
	font-weight: 400;
	font-family: "Josefin Sans", sans-serif;
	line-height: 1;
	text-indent: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

/* 「>」を挿入 */
.webgene-pagination > ul > .next > a::after {
	content: ">";
	font-size: 16px;
	font-weight: 400;
	font-family: "Josefin Sans", sans-serif;
	line-height: 1;
	text-indent: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

/* ホバー時の色も揃える（数字と同じ動きにしたい場合）*/
.webgene-pagination > ul > .prev > a:hover::after,
.webgene-pagination > ul > .next > a:hover::after {
	color: #111111;
}

.webgene-pagination > ul > .prev > a:hover,
.webgene-pagination > ul > .next > a:hover {
	color: #111111;
	background-color: #E6E6E6;
	width: 35px;
	height: 35px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:375px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 375px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:414px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

  



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 414px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:544px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


    
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 544px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:768px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.productCategoryBox section {
    gap: 15px;
}

.productCategoryBox section article {
    width: 100%;
}
    
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:992px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.productBlockBox section {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 20px;
}

.webgene-pagination:nth-last-child(1) {
    grid-area: auto/auto/auto/span 3;
}

.productItemTitle {
    margin-top: 15px;
    font-size: 18px;
}

.productItemMoney {
    font-size: 18px;
}

.productItemCate {
    font-size: 15px;
}

.sideLink {
    font-size: 18px;
    padding: 17px 25px;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 992px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:1024px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

    
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1024px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:1200px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.productItemTitle {
    font-size: 20px;
}

.productItemMoney {
    font-size: 20px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1200px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:1400px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1400px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:1500px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1500px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */