@charset "utf-8";

@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}
@media only screen and (max-width:375px) {} /* iPhoneSE 375px / iPhone12mini 360px */

/*************************************************

 product-title01

*************************************************/


.product-title01 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: #E1251B solid 2px;
}

.product-title01__text {
	color: #E1251B;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
}

@media only screen and (max-width:767px) {
	.product-title01 {
		margin-bottom: 10px;
	}
}




/*************************************************

 product-sort__btn

*************************************************/
.product-sort {
	position: relative;
	padding-top: 5px;
	margin-left: auto;
	z-index: 5;
}

.product-sort__btn {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	width: 134px;
	height: 36px;
	padding-left: 15px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	background-color: #E1251B;
	border: #E1251B solid 1px;
	border-radius: 3px;
	appearance: none;
	box-shadow: none;
	cursor: pointer;
	transition: color 0.3s,background-color 0.3s;
}

.product-sort__btn::before {
	position: absolute;
	top: 50%;
	right: 12px;
	display: block;
	content: '';
	margin-top: -2px;
	border-top: #fff solid 6px;
	border-left: transparent solid 4px;
	border-right: transparent solid 4px;
	transition: border-color 0.3s;
}

.product-sort__list {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	padding-top: 5px;
	transition: opacity 0.4s, visibility 0.4s;
}

.product-sort__list__btn {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	width: 134px;
	height: 36px;
	padding-left: 15px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	background-color: #E1251B;
	border: #E1251B solid 1px;
	border-radius: 0;
	appearance: none;
	box-shadow: none;
	cursor: pointer;
}

.product-sort__list__li:first-child .product-sort__list__btn {
	border-radius: 3px 3px 0 0;
}

.product-sort__list__li:last-child .product-sort__list__btn {
	border-radius: 0 0 3px 3px;
}


@media only screen and (min-width:768px) {
	.product-sort:hover .product-sort__list {
		opacity: 1;
		visibility: visible;
	}

	.product-sort:hover .product-sort__btn {
		color: #1F2128;
		background-color: #fff;
	}
	
	.product-sort:hover .product-sort__btn::before {
		border-top-color: #1F2128;
	}
}

@media only screen and (max-width:767px) {
	.product-sort.is-open .product-sort__list {
		opacity: 1;
		visibility: visible;
	}

	.product-sort.is-open .product-sort__btn {
		color: #1F2128;
		background-color: #fff;
	}
	
	.product-sort.is-open .product-sort__btn::before {
		border-top-color: #1F2128;
	}
}



/*************************************************

 product-list

*************************************************/

.product-list {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -20px 0;
}

.product-list__li {
	box-sizing: border-box;
	display: flex;
	width: calc(100% / 3);
	padding: 20px 20px 0;
}

.product-list__anchor {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #1F2128;
	text-decoration: none;
}

.product-list__anchor__top {
	width: 100%;
}

.product-list__img {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin-bottom: 10px;
	border-radius: 10px;
	background-color: #fff;
}

.product-list__img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-list__code {
	font-size: 14px;
	line-height: 1.6;
}

.product-list__title {
	line-height: 1.7;
}

.product-list__price {
	width: 100%;
	margin-top: 3px;
	color: #E1251B;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.545;
}

.product-list__price small {
	font-size: 16px;
}

@media only screen and (max-width:991px) {
	.product-list__li {
		width: 50%;
	}
}

@media only screen and (max-width:767px) {
	.product-list {
		justify-content: space-between;
		margin: -20px 0 0;
	}

	.product-list__li {
		width: calc(50% - 7px);
		padding: 20px 0 0;
	}

	.product-list__code {
		font-size: 12px;
	}

	.product-list__price {
		font-size: 20px;
	}

	.product-list__price small {
		font-size: 14px;
	}
}




/*************************************************

 product-detail-top

*************************************************/

.product-detail-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

@media only screen and (max-width:767px) {
	.product-detail-top {
		display: block;
	}
}




/* product-detail-top__slide
------------------------------------------*/
.product-detail-top__slide {
	position: relative;
	overflow: hidden;
	width: 48.936%;
}

@media only screen and (max-width:767px) {
	.product-detail-top__slide {
		width: auto;
		margin-bottom: 35px;
	}
}

.product-detail-top__slide .target-slider {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.product-detail-top__slide .swiper-slide figure {
	width: 100%;
	aspect-ratio: 1 / 1;
}

.product-detail-top__slide .swiper-slide figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-detail-top__slide .swiper-button-next,
.product-detail-top__slide .swiper-button-prev {
	all: unset;
	position: absolute;
	top: 50%;
	width: 14px;
	height: 24px;
	transform: translateY(-50%);
	cursor: pointer;
	/* background: url(../images/common/icon_arw01.svg) no-repeat center center / 100% auto; */
	z-index: 10;
}

.product-detail-top__slide .swiper-button-prev {
	left: 10px;
}

.product-detail-top__slide .swiper-button-next {
	right: 10px;
	transform: translateY(-50%) scale(-1, 1);
}

.product-detail-top__slide .swiper-my-pagination {
	display: flex;
	flex-wrap: wrap;
	width: auto;
	margin: 0 -7px;
	line-height: 0;
}

.product-detail-top .product-detail-top__slide .swiper-pagination-bullet {
	all: unset;
	overflow: hidden;
	width: calc(100% / 5 - 14px);
	aspect-ratio: 1 / 1;
	margin: 14px 7px 0;
	border-radius: 10px;
	cursor: pointer;
}

.product-detail-top .product-detail-top__slide .swiper-pagination-bullet img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}




/* product-detail-top__infos
------------------------------------------*/
.product-detail-top__infos {
	width: 46.8%;
}

@media only screen and (max-width:767px) {
	.product-detail-top__infos {
		width: auto;
	}
}


/* product-detail-top__title */
.product-detail-top__title {
	margin-bottom: 15px;
	padding-bottom: 10px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
	border-bottom: #E1251B solid 2px;
}

@media only screen and (max-width:767px) {
	.product-detail-top__title {
		font-size: 18px;
	}
}


/* product-detail-top__text */
.product-detail-top__text {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #EBEBEB solid 1px;
}


/* product-detail-top__price */
.product-detail-top__price {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #EBEBEB solid 1px;
}

.product-detail-top__price__num {
	color: #E1251B;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6;
}

.product-detail-top__price__num small {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
}

@media only screen and (max-width:767px) {
	.product-detail-top__price__num {
		font-size: 24px;
	}

	.product-detail-top__price__num small {
		font-size: 12px;
	}
}


/* product-detail-top__code */
.product-detail-top__code {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #EBEBEB solid 1px;
}



/* product-detail-top__select */
.product-detail-top__select {
	margin-bottom: 20px;
}

.product-detail-top__select__label {
	margin-bottom: 5px;
}

.product-detail-top__select__box {
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	background-color: #FAFAFA;
	border: #A8A8A8 solid 1px;
}

.product-detail-top__select__box::before {
	position: absolute;
	top: 50%;
	right: 12px;
	display: block;
	content: '';
	margin-top: -2px;
	border-top: #000 solid 6px;
	border-left: transparent solid 4px;
	border-right: transparent solid 4px;
}

.product-detail-top__select__box select {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 44px;
	margin: 0;
	padding: 0 0 0 14px;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	appearance: none;
	cursor: pointer;
	z-index: 2;
}


/* product-detail-top__num */
.product-detail-top__num {
	margin-bottom: 20px;
}

.product-detail-top__num__label {
	margin-bottom: 5px;
}

.product-detail-top__num__box input {
	box-sizing: border-box;
	position: relative;
	width: 100px;
	height: 44px;
	margin: 0;
	padding: 0 0 0 14px;
	background: none;
	border: #A8A8A8 solid 1px;
	border-radius: 3px;
	outline: none;
	appearance: none;
}



/* product-detail-top__button */
.product-detail-top__button {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 62px;
	margin: 0 0 20px;
	padding: 10px;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	background: none;
	border: none;
	text-align: center;
	line-height: 1.6;
	border-radius: 0;
	outline: none;
	appearance: none;
	cursor: pointer;
}

.product-detail-top__button.is-blue {
	background-color: #0D3CBA;
}

.product-detail-top__button.is-red {
	background-color: #E1251B;
}

@media only screen and (max-width:767px) {
	.product-detail-top__button {
		font-size: 18px;
	}
}



/* product-detail-top__spec */
.product-detail-top__spec {
	padding: 16px 20px;
	font-size: 14px;
	border-radius: 10px 0 10px 0;
	line-height: 1.6;
	background-color: #F8F1E1;
}

.product-detail-top__spec__row {
	display: flex;
	margin-bottom: 7px;
}

.product-detail-top__spec__row:last-child {
	margin-bottom: 0;
}

.product-detail-top__spec__ttl {
	width: 130px;
}

.product-detail-top__spec__txt {
	width: calc(100% - 130px);
}

@media only screen and (max-width:767px) {
	.product-detail-top__spec__row {
		display: block;
		margin-bottom: 15px;
	}

	.product-detail-top__spec__ttl {
		width: auto;
		margin-bottom: 5px;
	}

	.product-detail-top__spec__txt {
		width: auto;
	}
}



/*************************************************

 product-detail-other

*************************************************/
.product-detail-other {
	margin-bottom: 60px;
}

.product-detail-other:last-child {
	margin-bottom: 0;
}

.product-detail-other__title {
	margin-bottom: 15px;
	color: #E1251B;
	font-size: 18px;
	font-weight: 700;
}

@media only screen and (max-width:767px) {
	.product-detail-other {
		margin-bottom: 50px;
	}

	.product-detail-other__title {
		font-size: 16px;
	}
}



/*************************************************

 product-detail-spscroll

*************************************************/
@media only screen and (max-width:767px) {
	.product-detail-spscroll {
		width: 100%;
		overflow-x: auto;
		padding-bottom: 12px;
	}
	.product-detail-spscroll > * {
		width: 200%;
	}
}

