@charset "UTF-8";
/* CSS Document */

/* =================================
  感謝サイコロチャレンジ
================================= */


/*///////////////////////////////////////////////
背景
///////////////////////////////////////////////*/


div#wrapper_gift {
	background-color: #fae8c3;
	overflow: hidden;
}

/* セクションタイトル */
.contents__title_gift {
	margin-bottom: 46px;
	padding-block: clamp(32px, 2.2vw, 34px);
	color: #fff;
	text-align: center;
	font-size: clamp(16px, 2.2vw, 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-shadow: 0 0 8px rgb(0, 0, 0, 0.2);
	background-color: #ef8f79;
	border-radius: 20px;
}

@media screen and (max-width: 768px) {
	.contents__title_gift {
		padding-block: clamp(24px, 2.2vw, 34px);
		margin-bottom: 30px;
	}
}

p.readtxt {
	font-size: clamp(18px, 2.5vw, 24px);
	text-align: center;
	padding-bottom: clamp(20px, 2.5vw, 28px);
	font-weight: bold;
	line-height: 1.6;
}



/*//////////////////////////////////////
概要テーブル
//////////////////////////////////////*/

.info-table {
	width: min(100%, 800px);
	border-collapse: collapse;
	margin-inline: auto;
	font-size: clamp(20px, 2.8vw, 20px);
	line-height: 2;
	margin-bottom: 70px;
	border: 10px solid #f1c7be;
}


.info-table th,
.info-table td {
	padding: clamp(12px, 2vw, 20px);
	border-bottom: 1px solid #ddd;
	text-align: left;
	vertical-align: middle;
	padding: 30px;

}

.info-table th {
	width: 120px;
	font-weight: 700;
	white-space: nowrap;
}

.info-table td {
	font-weight: 500;
}

.info-table small {
	font-size: 0.85em;
}


/* ------------------------------
  SP
------------------------------ */

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

	.info-table th {
		width: 80px;
		padding-inline: 8px;

		font-size: 13px;
	}

	.info-table td {
		padding-inline: 10px;

		font-size: 14px;
	}

}



ul.coupon {
	padding: 0;
	margin: 0;
	width: min(100%, 800px);
	margin-inline: auto;
}

ul.coupon li {
	font-size: clamp(16px, 2.8vw, 18px);
	line-height: 2;
}

@media screen and (max-width: 768px) {
	ul.coupon li {
		font-size: clamp(14px, 1.8vw, 18px);
	}
}


p.cupon img {
	width: min(70%, 500px);
	margin-inline: auto;
	display: block;
	padding-block: 40px 60px;
}



span.present {
	color: #d90303;
	font-family: "Jost", sans-serif;
	font-weight: 700;
	font-size: 38px;
}



/*//////////////////////////////////////
対象外店舗
//////////////////////////////////////*/

.excluded-shop-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 40px;
	margin: 0 0 100px 0;
	padding: 0;
	list-style: none;
}

.excluded-shop-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;
	min-width: 0;
	padding: 18px 10px;

	border-bottom: 1px solid #ddd;
}

.excluded-shop-list__name {
	min-width: 0;

	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 500;
	line-height: 1.6;
}

.excluded-shop-list__floor {
	flex-shrink: 0;

	padding: 4px 12px;

	background-color: #f2f2f2;

	border-radius: 999px;

	font-size: 14px;
	font-weight: 700;

	white-space: nowrap;
}


/* ------------------------------
  SP
------------------------------ */

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

	.excluded-shop-list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.excluded-shop-list li {
		padding: 15px 5px;
	}

	.excluded-shop-list__name {
		font-size: 15px;
	}

	.excluded-shop-list__floor {
		padding: 3px 10px;

		font-size: 12px;
	}

}