/* JSを使わず、アクセシビリティを損なわずに、アンカースクロールを実現 */
html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
	html {
		scroll-behavior: auto;
	}
}
.pc-only {
	display: block;
}
.sp-only {
	display: none;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
.section__heading.-rwd_common .jp {
	font-size: 26px;
}
.section__heading.-rwd_common .en {
	font-size: 16px;
}
.section {
	padding-top: 0;
}
.campaign_and_fair__item:has([href^="/wed/coupon"]) {
	display: none;
}

/* MV
====================================================*/
.coupon-mv {
	display: flex;
	justify-content: center;
	overflow: hidden;
}
.coupon-mv-img {
	display: block;
}
.device--pc .coupon-mv-img {
	max-width: auto;
	width: auto;
}

/* アンカーリンク
====================================================*/
.page-anchor-list {
	display: flex;
	justify-content: center;
	gap: 64px;
	padding: 47px 0;
}
.page-anchor-link {
	display: block;
	padding-right: 36px;
	background-image: url("../img/icon-arrow-bottom.png");
	background-size: 18px;
	background-position: right center;
	background-repeat: no-repeat;
	color: #7b6446;
	font-weight: bold;
}
.page-anchor-link:hover {
	opacity: 0.7;
	transition: opacity 0.3s;
}
@media (prefers-reduced-motion) {
	.page-anchor-link:hover {
		transition: none;
	}
}

/* クーポン
====================================================*/
.coupon-section {
	background-color: #f5f0e5;
	padding-bottom: 100px;
}
.coupon-item-section {
	display: flex;
	width: 1120px;
	margin: 0 auto;
	margin-top: 30px;
	--coupon-color-1: #888;
	--coupon-color-2: #888;
	--coupon-color-3: #888;
	--coupon-color-4: #888;
	--coupon-color-5: #888;
}
.coupon-item-section.海外 {
	--coupon-color-1: #ed6c57;
	--coupon-color-2: #eca89c;
	--coupon-color-3: #faf0f0;
	--coupon-color-4: #dd472f;
	--coupon-color-5: #e5725f;
}
.coupon-item-section.全方面 {
	--coupon-color-1: #82cfca;
	--coupon-color-2: #a2d2cf;
	--coupon-color-3: #e5f5f4;
	--coupon-color-4: #1c5e5a;
	--coupon-color-5: #43ada6;
}
.coupon-item-section.国内 {
	--coupon-color-1: #c8b97d;
	--coupon-color-2: #c8b997;
	--coupon-color-3: #f6f3e4;
	--coupon-color-4: #816d1d;
	--coupon-color-5: #a89238;
}
.coupon-item-section.soldout {
	pointer-events: none;
	user-select: none;
	position: relative;
}
.coupon-item-section.soldout::before {
	content: "配布終了いたしました";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-weight: bold;
	font-size: 175%;
	letter-spacing: 0.15em;
}
.coupon-item-banner {
	width: 328px;
	flex-shrink: 0;
	padding-top: 50px;
	background-color: var(--coupon-color-1);
	color: #ffffff;
	text-align: center;
	line-height: 1.3;
	font-weight: bold;
	border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.coupon-item-banner::before {
	content: url("../img/icon-diamond.png");
	display: inline-block;
	margin-bottom: 5px;
}
.coupon-banner-line-1 {
	font-size: 20px;
}
.coupon-banner-pairsnum {
	font-size: 30px;
}
.coupon-banner-line-2 {
	font-size: 30px;
}
.coupon-banner-price {
	color: #ffee91;
}
.coupon-banner-pricenum {
	font-size: 48px;
}
.coupon-item-content {
	flex-grow: 1;
	padding: 30px;
	background-color: #ffffff;
}
.coupon-item-label {
	display: inline-block;
	width: 200px;
	border-radius: 18px;
	background-color: var(--coupon-color-1);
	color: #ffffff;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.coupon-item-label::before {
	content: "";
	display: inline-block;
	width: 21px;
	height: 14px;
	margin-right: 8px;
	background-image: url("../img/icon-airplane.png");
	background-size: cover;
}
.coupon-item-title {
	margin-top: 15px;
	margin-bottom: 5px;
	font-size: 28px;
	line-height: 1.4;
}
.coupon-item-lead {
	font-size: 20px;
}
.coupon-detail-summary {
	position: relative;
	margin-top: 15px;
	padding: 5px 0;
	background-color: var(--coupon-color-2);
	color: #ffffff;
	text-align: center;
	font-weight: bold;
}
summary {
	display: block;
	user-select: none;
}
summary::-webkit-details-marker{
	display: none;
}
.coupon-detail-summary::before,
.coupon-detail-summary::after {
	content: "";
	position: absolute;
	background-color: #ffffff;
}
.coupon-detail-summary::before {
	width: 20px;
	height: 2px;
	top: 17px;
	right: 21px;
}
.coupon-detail-summary::after {
	width: 2px;
	height: 20px;
	top: 8px;
	right: 30px;
	transition: opacity 0.3s;
}
[open] > .coupon-detail-summary::after {
	opacity: 0;
}
@media (prefers-reduced-motion) {
	.coupon-detail-summary::after {
		transition: none;
	}
}
.coupon-detail-content {
	overflow: hidden;
	min-height: 1px;
}
.coupon-detail-panel-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
	padding: 20px 0;
	background-color: var(--coupon-color-3);
	color: #4b3403;
	font-weight: bold;
}
.coupon-detail-panel-title {
	position: relative;
	margin-bottom: 15px;
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	border-bottom: 1.5px solid rgb(148, 119, 51);
	font-size: 20px;
	text-align: center;
}
/* .coupon-detail-panel-title::after {
	content: "/";
	position: absolute;
	bottom: -14px;
	right: 50px;
	display: inline-block;
	line-height: 1;
	padding: 0 3px;
	background-color: var(--coupon-color-3);
	color: rgb(148, 119, 51);
	font-weight: normal;
	user-select: none;
} */
.coupon-detail-panel-list {
	width: fit-content;
	margin: 0 auto;
}
.coupon-detail-panel-item {
	font-size: 18px;
	line-height: 1.5;
}
/* .coupon-detail-panel-item::before {
	content: "";
	display: inline-block;
	margin-right: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: currentColor;
} */
.coupon-detail-panel-accent {
	font-size: 26px;
	color: var(--coupon-color-4);
}
.coupon-detail-dl {
	padding-left: 20px;
}
.coupon-detail-dt {
	position: relative;
	margin-top: 20px;
	font-weight: bold;
}
.coupon-detail-dt::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: -20px;
	top: 8px;
	width: 10px;
	height: 10px;
	background-color: var(--coupon-color-5);
}

/* クーポン利用方法
====================================================*/
.houw-to-use-section {
	background-color: #f9f1f0;
	padding-bottom: 100px;
}
.how-to-use-lead {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 80px;
}
.how-to-use-list {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 50px;
}
.how-to-use-item {
	position: relative;
}
.how-to-use-item::before {
	display: inline-block;
	position: absolute;
	left: -16px;
	top: -36px;
}
.how-to-use-item:nth-child(1):before {
	content: url("../img/icon-step-1.png");
}
.how-to-use-item:nth-child(2):before {
	content: url("../img/icon-step-2.png");
}
.how-to-use-item:nth-child(3):before {
	content: url("../img/icon-step-3.png");
}
.device--pc .how-to-use-img {
	display: inline-block;
	width: 352px;
	height: auto;
}
.how-to-use-text {
	margin-top: 8px;
	font-weight: bold;
	font-size: 18px;
}