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

/* =================================
  ●15時はダブルポイント
================================= */


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


div#wrapper_double {
	background: url(../images/bg_cp.jpg);
	background-size: cover;
	overflow: hidden;
}


p.readtxt {
	font-size: clamp(20px, 2.5vw, 32px);
	text-align: center;
	padding-bottom: clamp(20px, 2.5vw, 32px);
	font-weight: bold;

}

span.Precautions {
	font-size: clamp(15px, 2vw, 22px);
	font-weight: normal;
}

span.cenovacolor {
	color: #00A53C;
}

span.cenovatime {
	color: #e50202;
}


/*//////////////////////////////////////
参加方法
//////////////////////////////////////*/

.join-method {
	position: relative;
	width: min(100%, 1100px);
	margin-inline: auto;
	padding:
		clamp(50px, 7vw, 80px) clamp(20px, 5vw, 60px) clamp(35px, 6vw, 60px);
	border: 3px solid #d6a52b;
	border-radius: 24px;
	margin-block: clamp(40px, 7vw, 80px);
}


/* ------------------------------
  見出し
------------------------------ */

.join-method__title {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(100%, 500px);
	margin: 0;
	padding: 16px 24px;
	transform: translate(-50%, -50%);
	background-color: #eb5c3c;
	color: #fff;
	text-align: center;
	font-size: clamp(18px, 2vw, 38px);
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.3;
	border-radius: 100px;
}


/* ------------------------------
  3ステップ
------------------------------ */

.join-method__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 50px);
}

@media screen and (max-width: 768px) {
	.join-method__steps {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}


/*//////////////////////////////////////
参加ステップ
//////////////////////////////////////*/

.join-method__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(36px, 4vw, 54px);
}

/* ------------------------------
  各ステップ
------------------------------ */

.join-step {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* ------------------------------
  STEP見出し
------------------------------ */

.join-step__head {
	margin-bottom: 20px;
	padding: 8px 12px;
	background-color: #241714;
	color: #fff;
	border-radius: 6px;
	text-align: center;
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 700;

	line-height: 1.2;
}


/* ------------------------------
  説明文
------------------------------ */

.join-step__text {
	margin: 0 0 24px;
	color: #111;
	font-size: clamp(16px, 1.4vw, 22px);
	font-weight: 500;
	line-height: 1.6;
}


/* ------------------------------
  イメージ
------------------------------ */

.join-step__image {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-top: auto;
}

.join-step__image img {
	display: block;
	width: min(100%, 220px);
	height: auto;
}

/* ------------------------------
  STEP間の矢印
------------------------------ */
.join-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 75%;
	right: -30px;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 22px solid #ef5b3c;
	transform: translateY(-50%);
}


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

	.join-method__steps {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.join-step {
		align-items: center;
	}

	.join-step__head {
		width: 100%;
		margin-bottom: 16px;
		font-size: 20px;
	}

	.join-step__text {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
		font-size: 16px;
	}

	.join-step__image img {
		width: min(70%, 180px);
	}

	/* 下向き矢印に変更 */
	.join-step:not(:last-child)::after {
		top: auto;
		right: auto;
		bottom: -38px;
		left: 50%;
		border-top: 22px solid #ef5b3c;
		border-right: 16px solid transparent;
		border-bottom: 0;
		border-left: 16px solid transparent;
		transform: translateX(-50%);
	}

}


/* ------------------------------
  アプリボタン
------------------------------ */

.join-method__button {
	display: flex;
	justify-content: center;
	margin-top: clamp(30px, 5vw, 50px);
	text-align: center;
}

.app-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: min(100%, 560px);
	padding: 20px 30px;
	background-color: #a64a97;
	color: #fff;
	border-radius: 999px;
	text-decoration: none;
	font-size: clamp(15px, 2vw, 20px);
	font-weight: 700;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.app-button:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

.app-button__arrow {
	flex-shrink: 0;
	font-size: 24px;
}


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

.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;
	}

}