@charset "UTF-8";
/* CSS Document */


@font-face {
  font-family: 'Roboto';
  src: url("../font/Roboto-Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
}

@keyframes fadeIn { /*animetion-nameで設定した値を書く*/

  0% {opacity: 0} /*アニメーション開始時は不透明度0%*/

  100% {opacity: 1} /*アニメーション終了時は不透明度100%*/

}
body {
  margin: 0;
  background: #1A1C1C;
  font-family: "Roboto", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Arial", "Yu Gothic", sans-serif;
  overflow: hidden;
  -ms-overflow-style: none;
  touch-action: none;
}
.wrap {
  height: 1080px;
  width: 1920px;
  position: absolute;
  transform-origin: 0% 0%;
  overflow: hidden;
  background: #FFF;
}
main {
  background: #FFF;
  height: 1080px;
  width: 1920px;
  display: block;
}
footer {
  height: 130px;
  width: 320px;
  /* background: #333333; */
  background: #FFF;
  position: absolute;
  bottom: 0;
  right: 0;
}
body.dmode .wrap, body.dmode main, body.dmode footer {
  background: #333333;
}
.footerInnner {
  display: flex;
  justify-content: center;
}
.footerLogo {
  height: 130px;
  width: 480px;
  margin: 0 30px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.userLogo {
  height: 110px;
  width: 460px;
  margin: 10px;
    /*20210302*/
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.footerInfo {
  height: 130px;
  width: 1120px;
  margin: 0;
}
.weather {
  margin: 0 130px;
  height: 130px;
  width: 880px;
  display: flex;
  text-align: center;
  color: #8F8F8F;
}
.weatherIcon {
  height: 130px;
  width: 130px;
}
.weatherInfo1 {
  height: 130px;
  width: 280px;
  margin-right: 40px;
}
.weatherInfo2 {
  height: 130px;
  width: 280px;
}
.weatherInfoInner {

}
.weatherInfoTitle {
  font-size: 21px;
  font-weight: 500;
  line-height: 1em;
  height: 21px;
  margin: 25px 0 14px;
}
.weatherInfoDegree {
  font-size: 50px;
  font-weight: 500;
  line-height: 1em;
  display: flex;
}
.weatherInfoInner div.high {
  width: 40%;
  text-align: right;
  font-size: 60px;
  color: #F47B50;
}
.weatherInfoInner div.bar {
  text-align: center;
  width: 20%;
  margin-top: 2px;
}
.weatherInfoInner div.low {
  width: 40%;
  text-align: left;
  font-size: 60px;
  color: #54BCE8;
}
.weatherInfoInner sub {
  font-size: 24px;
  vertical-align: baseline;
  position: relative;
}

.footerClock {
  height: 100px;
  margin: 0;
  padding-top: 12px;
}
.time {
  height: 75px;
  width: 200px;
  font-size: 67px;
  font-weight: 500;
  margin-top: -10px;
  color: #8F8F8F;
  text-align: center;
  display: flex;
}
.time div.hour {
  width: 45%;
  text-align: right;
}
.time div.bar {
  text-align: center;
  width: 10%;
}
.time div.min {
  width: 45%;
  text-align: left;
}
.date {
  height: 38px;
  width: 198px;
  border: 1px solid #8F8F8F;
  border-radius: 8px;
  font-size: 32px;
  font-weight: 500;
  margin-top: 3px;
  display: flex;
  align-items: center;
  color: #8F8F8F;
}
.date .month {
  text-align: right;
  width: 32%;
  height: 33px;
  line-height: 35px;
}
.date .day {
  text-align: right;
  width: 25%;
  height: 33px;
  line-height: 35px;
}
.date .week {
  width: 43%;
  height: 29px;
  margin-top: 1px;
  font-size: 28px;
  line-height: 29px;
  text-align: center;
}
.date sub {
  font-size: 16px;
}

.signage-container {
  width: 1920px;
  height: 1080px;
  position: relative;
}
 
 .signage-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signage-preload {
  position: absolute;
  top: 0;
  left: 100%;
}

#loading {
    width: 100%;
    height: 100%;
    color: white;
    background-color: black;
    font-size: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}