/* font */
body{
	background: #000;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	font-size: 1.2vw;
}
.number {
	font-family: "Momo Trust Display", sans-serif;
	font-weight: 400;
	font-style: normal;
}

a{
	color: #fff;
}

/* form */
form{
	position: absolute;
	left: 2em;
	top: 2em;
	z-index: 10;
}

/* wrap */
.wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	position: absolute;
	height: 110%;
	width: 100%;
}

/* clock */
.clock{
	background: rgba(0,0,0,0.3);
	border-radius: 2vw;
	line-height: 0.8;
	margin-top: 10vw;
	padding: 1vw;
	text-align: center;
}
.clock_time{
	font-size: 31vw;
}
.clock_date{
	font-size: 5vw;
	margin-top: 0.4em;
}
.clock_day{
	font-size: 3.5vw;
	font-weight: 900;
	position: relative;
	left: -0.2em;
	top: -0.1em;
}

/* weather */
.weatherForecast{
	background: rgba(0,0,0,0.3);
	border-radius: 2vw;
	display: flex;
	margin: 2em auto 1em;
	padding: 0.5vw;
	line-height: 1.5;
	overflow: auto;
	scrollbar-width: none;
	white-space: nowrap;
	width: 80vw;
}
.weatherForecast .weather{
	display: flex;
	align-items: center;
	margin: 0 1vw;
}
.weatherForecast .weatherImg{
	margin-right: 1vw;
	width: 6.5vw;
}
#location{
	font-size: 1vw;
}

/* bg */
.bg,
.bg div,
.bg ul,
.bg li{
	height: 100%;
}
.bg{
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100vw;
	z-index: -1;
}
.bg .slick-track{
	padding: 0;
}
.bg ul{
	margin: 0;
	padding: 0;
}
.bg li{
	position: absolute !important;
	top: 0;
	left: 0;
	overflow: hidden;
	height: 100%;
	width: 100vw;
}
.bg img,
.bg video{
	object-fit: cover;
	height: 100%;
	width: 100vw;
}