@charset "UTF-8";

/*************************
main
SP_layout（980px未満）
*************************/

#LP .timer {
	background-color: var(--lp-color_black);
	color: var(--lp-color_white);
	font-size: 2.4vw;
	font-weight: 700;
	user-select: none;
	width: 100%;
}

#LP .timer__body,
#LP .timer__counter,
#LP .timer__display,
#LP .timer__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
}

#LP .timer__body {
    transition: transform .4s ease;
	margin: 0 auto;
	padding: .5em 0;
	width: fit-content;
}

#LP .timer__body,
#LP .timer__counter { gap: 1em; }

#LP .timer__display { gap: .5em; }

#LP .timer__frame {
	background-color: var(--lp-color_white);
	color: var(--lp-color_red);
	font-size: 1.25em;
	gap: .25em;
	position: relative;
	width: 2.5em;
	height: 1.5em;
}

#LP .timer__unit { font-size: .9em; }

#LP .campaiginEnd { display: none; }

#LP.is_end .campaiginEnd {
	background-color: rgba(0, 0, 0, .4);
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 8;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

@keyframes loadingTextBox {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

#LP.is_end .campaiginEnd__text {
	animation: loadingTextBox .6s;
	background-color: var(--lp-color_white);
	border-radius: 10px;
	color: var(--lp-color_black);
	font-size: 4vw;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	transform: translateY(0);
	padding: 5%;
	width: 90%;
	height: auto;
}

#LP.is_end .campaiginEnd__text > span {
	font-size: .7em;
	font-weight: 400;
}

/**************************************************
main
PC_layout（980px以上）
**************************************************/

@media screen and (min-width: 980px) {
    #LP .timer { font-size: 16px; }

	#LP.is_end .campaiginEnd__text {
        font-size: 24px;
        padding: 3em;
        width: fit-content;
	}
}