﻿@charset "UTF-8";

/*==============================================================================================
 セール商品一覧
==============================================================================================*/

.productlist__headarea--sale {
	display: block;
	padding-bottom: 0;
	border-bottom: none;
}

.productlist__heading--sale img {
	width: 100%;
	height: auto;
}

.productlist__heading--sale .countdown {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	margin: 1em 0;
	text-align: center;
	font-weight: bold;
}

.productlist__heading--sale .countdown_txt {
	width: fit-content;
	font-size: 100%;
	line-height: 1.2;
}

.productlist__heading--sale .countdown_box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3em;
	width: fit-content;
	font-size: 100%;
}

.productlist__heading--sale .countdown_box span {
	display: block;
	padding: 0.5em;
	background-color: #242424;
	border-radius: 6px;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
	color: #E8C88B;
	font-size: 140%;
	line-height: 1;
}

@media screen and (min-width: 768px) {
	.productlist__heading--sale .countdown_txt {
		font-size: 180%;
	}
	.productlist__heading--sale .countdown_box {
		font-size: 180%;
	}

	.productlist__heading--sale .countdown_box span {
		font-size: 160%;
	}
}

.productlist__heading--sale .countdown .countdown-days {}
.productlist__heading--sale .countdown .countdown-hours {}
.productlist__heading--sale .countdown .countdown-minutes {}
.productlist__heading--sale .countdown .countdown-seconds {}

.campaign-lead {
	width: 600px;
	margin: 1em auto;
}
.campaign-lead p {
	line-height: 1.8;
	font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
	.campaign-lead {
		width: 100%;
		padding: 0 1rem;
	}
	.campaign-lead p {
		font-size: 1.2rem;
	}
}

.product__sale-login {
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid #707070;
}

.product__sale-login--txt {
	font-weight: bold;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.product__sale-login--txt {
		font-size: 130%;
	}
}

@media screen and (min-width: 768px) {
	.product__container--sale {
		display: block;
	}
	.product__container--sale .productlist__heading {
		padding-bottom: 2rem;
		margin-bottom: 2rem;
		border-bottom: 1px solid #707070;
	}
	.product__container--sale .product__item {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.product__container--sale .product__item + .product__item {
		margin-top: 2em;
	}

	.product__container--sale .product__item--name {
		width: 100%;
		padding-left: 10%;
	}
	.product__container--sale .product__item--info {
		width: 40%;
	}
	.product__container--sale .product__item--info .home-section__button {
		max-width: 100%;
	}
}
.product__container--sale .product__item--cartinfo {
	width: 100%;
}

.product__container--sale .product__item--cartinfo details .product__item--cartinfo-summary {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2em;
	margin: 2em 0 0 0;
	padding: 1em 0;
	background-color: var(--color-primary);
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: .12em;
}
.product__container--sale .product__item--cartinfo details .product__item--cartinfo-summary:hover {
	opacity: 0.8;
}
.product__container--sale .product__item--cartinfo details .product__item--cartinfo-summary::after {
	content: "";
	display: inline-block;
	width: 1.6em;
	height: 1.6em;
	border: 1px solid #ffffff;
	border-radius: 999px;
	aspect-ratio: 1 / 1;

	/* 2本の線を linear-gradient で重ねる（横線, 縦線） */
	background-image:
	linear-gradient(#ffffff, #ffffff), /* 横線 */
	linear-gradient(#ffffff, #ffffff); /* 縦線 */
	background-repeat: no-repeat;
	background-position: center center, center center;
	background-size:
	60% 2px,  /* 横線: 幅60% 高さ2px */
    2px 60%;  /* 縦線: 幅2px  高さ60% */
}

.product__container--sale .product__item--cartinfo details[open] .product__item--cartinfo-summary::after {
	background-size:
    60% 2px,   /* 横線そのまま */
    0 60%;     /* 縦線を消す */
}

.product__container--sale .product__item--cartinfo .product__item--cartinfo-text {
	background-color: var(--color-secondary);
	padding: 3rem 1.5rem;
	font-size: 1.5rem;
    letter-spacing: .05em;
    line-height: calc(30 / 15);
}
@media screen and (min-width: 768px) {
	.product__container--sale .product__item--cartinfo .product__item--cartinfo-text {
		padding: 5rem 7rem;
	}
}

@media screen and (min-width: 768px) {
  .productlist__listarea .product__item--grid {
    width: 420px;
  }
}