@charset "utf-8";
/*.subcontSection__main:not(:first-of-type) {
    margin-top: 30px;
}
.subcontSection__main {
	padding: 50px 60px;
}
@media screen and (max-width:767px){
	.subcontSection__main:not(:first-of-type) {
	    margin-top: 20px;
	}
	.subcontSection__main {
		padding: 30px 20px;
	}
}*/

/**
 * goodstabLists
 * 背景カラーを確定したリンク
 */
.goodstabLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.goodstabLists.is-center {
	justify-content: center;
}
.goodstabLists > li {
	width: calc((100% - 40px) / 3);
    height: 48px;
}
.goodstabLists > li:not(:nth-child(3n + 1)) {
	margin-left: 20px;
}
@media screen and (max-width:767px){
	.goodstabLists > li {
		width: calc((100% - 10px) / 2);
		height: 40px;
		margin-bottom: 10px;
	}
	.goodstabLists > li:not(:nth-child(3n + 1)) {
		margin-left: 0;
	}
	.goodstabLists > li:not(:nth-child(2n + 1)) {
		margin-left: 10px;
	}
}

/* goodstabLists__link */
.goodstabLists__link {
	background-color: rgb(var(--main-color));
	color: rgb(var(--main-color-white));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.goodstabLists__link.is-current {
	background-color: rgb(var(--main-color-gold));
}
@media screen and (max-width:767px){
	.goodstabLists__link {
		font-size: 14px;
	}
}

/* line */
.goodstabLists__link:before,
.goodstabLists__link:after {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: .4;
	pointer-events: none;
}
.goodstabLists__link:before {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	width: calc(100% - 10px);
	height: 100%;
}
.goodstabLists__link:after {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	width: 100%;
	height: calc(100% - 10px);
}

.goodstabLists__link__arrow {
	background-color: rgb(var(--main-color-white));
	display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-image: url(../img/common/arrow.svg);
    mask-image: url(../img/common/arrow.svg);
    width: 24px;
    height: 12px;
	transition: transform .3s ease;
}
.goodstabLists__link.is-current .goodstabLists__link__arrow {
	background-color: rgb(var(--main-color));
}
@media screen and (max-width:767px){
	.goodstabLists__link__arrow {
		width: 18px;
		height: 9px;
	}
}

.goodstabLists__link__arrow.is-right {
	-webkit-mask-image: url(../img/common/arrow_next.svg);
	mask-image: url(../img/common/arrow_next.svg);
	width: 12px;
	height: 24px;
}
@media screen and (max-width:767px){
	.goodstabLists__link__arrow.is-right {
		width: 9px;
    	height: 18px;
	}
}

/* text */
.goodstabLists__link__text {
	color: #fff;
}
.goodstabLists__link.is-current .goodstabLists__link__text {
	color: rgb(var(--main-color));
}


/**
 * goodsOneCont
 */
.goodsOneCont:not(:first-of-type) {
	margin-top: 60px;
}
@media screen and (max-width:767px){
	.goodsOneCont:not(:first-of-type) {
		margin-top: 40px;
	}
}

/* title */
.goodsOneCont__title {
	color: rgb(var(--main-color-gold));
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
}
.goodsOneCont__title .is-font-min {
	font-size: 70%;
}
@media screen and (max-width:767px){
	.goodsOneCont__title {
		font-size: 16px;
	}
}

/* goods2 img */
.goods2_img1 {
	width: 550px;
}
@media screen and (max-width:767px){
	.goods2_img1 {
		width: auto;
	}

	.goodsImg {
		width: auto !important;
	}
}