@charset "utf-8";
/**
 * Countdown 99 version 3.8
 * カウントダウン99
 * (c) 2024 有限会社デジタルエイド
 * https://www.digital-aid.co.jp/tool/countdown99/
 **/
 
/*----- counter-area ----- 50%縮小 */
#da_counter-area {
	position: fixed;
	bottom: 10px;
	right: 4px;
	height: 61px;
	width: auto;
	cursor: pointer;
	font-family:"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro W3",Hiragino Kaku Gothic Pro;
	font-size: 10px;
	font-weight: bold;
	z-index: 10000;
}

/* ----- circle-block ----- */
#da_circle-block {
	background-image: url(circleBg.png);
	background-size: cover;
	color: #c30009;
	overflow: hidden;
	position: absolute;
	height: 61px;
	bottom: 0;
	right: 0;
	width: 68px;
	z-index: 10020;
}
#da_circle {
	width: 61px;
	height: 61px;
	margin: 0;
	text-align: center;
}
img {
	object-fit: cover;
}
#da_ato {
	position: absolute;
	top: 8px;
	left: 20px;
}
#da_date {
	font-size: 23px;
	position: absolute;
	top: 16px;
	text-align: center;
	width: 61px;
}
#da_nichi {
	position: absolute;
	top: 42px;
	left: 25px;
}
#da_btns {
	font-size: 9px;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 61px;
	text-align: center;
	width: 20px;
}
#da_open, #da_close {
	display: block;
	position: absolute;
	right: 3px;
	cursor: pointer;
}
#da_close{
	bottom: 1px;
}

/* ----- copy-block ----- */
#da_copy-block {
	display: flex;
	margin-right: 30px;
	overflow: hidden;
}
img#da_tip {
	height: 44px;
	margin-top: 17px;
	width: 48px;
}
#da_copy-line {
	background-image: url(dash.png);
	background-repeat: repeat-x;
	background-size: contain;
	margin-top: 17px;
	padding-left: 4px;
	position: relative;
	text-align: left;
	text-wrap: nowrap;
	height: 44px;
	width: auto;
}
a#da_copy {
	color: #c30009;
	display: block;
	font-size: 12px;
	position: absolute;
	top: 17px;
}
.da_hide {		/* #da_copy-line a.da_hide */ 
	display: none;
}
.da_invisible {
	visibility: hidden;
}

#da_counter-area.emerge {
	animation: emerge 1s ease-in forwards;
}
@keyframes emerge {
	0% {
		opacity: 0;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* banner の開閉 */
#da_counter-area.da_open {
	animation: opening 1s ease-in forwards; 
}
@keyframes opening {
	0% {
		left: calc(100% - 120px);
	}
	100% {
		left: 0px;
	}
}
#da_counter-area.da_close {
	animation: closing 1s ease-in forwards;
}
@keyframes closing {
	0% {
		left: 0px;
	}
	100% {
		left: calc(100% - 120px);
	}
}

/* ====== 中型ディスプレイ ====== 569px以上 */
@media only screen and (min-width: 569px) {
	/*----- counter-area ----- */
	#da_counter-area {
		font-size: 13px;
		height: 122px;
	}

	/* ----- circle-block ----- */
	#da_circle-block {
		background-image: url(circleBg.png);
		background-repeat: no-repeat;
		height: 122px;
		width: 136px;
	}
	#da_circle {
		width: 122px;
		height: 122px;
	}
	#da_ato {
		top: 20px;
		left: 49px;
	}
	#da_date {
		font-size: 56px;
		margin: 10px auto;
		text-align: center;
		width: 120px;
	}
	#da_nichi {
		top: 86px;
		left: 55px;
	}
	#da_btns {
		font-size: 13px;
		position: absolute;
		height: 122px;
		width: 40px;
	}
	#da_open, #da_close {
		right: 10px;
	}
	#da_open {
		top: 6px;
	}
	#da_close {
		bottom: 6px;
	}

	/* ----- copy-block ----- */
	#da_copy-block {
		margin-right: 61px;
	}
	img#da_tip {
		height: 88px;
		margin-top: 34px;
		width: 96px;
	}
	#da_copy-line {
		background-image: url(dash.png);
		background-repeat: repeat-x;
		margin-top: 34px;
		padding-left: 4px;
		height: 88px;
 	}
	a#da_copy {
		font-size: 16px;
		position: absolute;
		top: 44px;
		text-align: center;
	}
	#da_counter-area.da_open {
		animation: opening 1s ease-in forwards; 
	}
	@keyframes opening {
		0% {
			left: calc(100% - 232px);
		}
		100% {
			left: calc(100% - 568px);
		}
	}
	#da_counter-area.da_close {
		animation: closing 1s ease-in forwards;
	}
	@keyframes closing {
		0% {
			left: calc(100% - 568px);
		}
		100% {
			left: calc(100% - 232px);
		}
	}
}