@charset "UTF-8";

html {
    font-size: 16px;
}

body {
  color:#fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  letter-spacing: 0.1em;
}

a {
  color: #666;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}

/*  HEADER */
#body {
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg.jpg) ;
  background-size:cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 60px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.header-logo {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2;
  margin-right: 20px;
  margin-bottom: 2rem;
  letter-spacing: .05em;
}

.header-logo a {
  background-color: #b22222;
  color: #fff;
  padding: 10px 20px;
}

.header-logo a:hover {
  opacity: 0.8;
  transition: .3s;
}

/*  Main */
#countdown {
  height:auto;
  position: absolute;
  top: 25%;
  left: 25%;
  font-size: 2em; 
}

#countdown span {
 font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 2em;
  margin: 0 10px;
  text-shadow: 1px 2px 3px #666;
}

/*  FOOTER */
#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 0 ;
    background-color: #b22222;
}

#footer .copy-right {
  text-align: center;
  font-size: 0.8em;
}

/*  SP */
@media screen and (max-width:768px) {
#body {
    background-image: url(../img/bg-sp.jpg);
    padding: 20px;
  }
#countdown {
  left:0;
  font-size: 1em;
}


}