@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
}
#container {
  width: 100%;
  height: 100vh;
  background-image: url(../images/img_01.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
  position: relative;
}
#container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: hsla(0, 0%, 0%, 0.3);
  z-index: 2;
}

#container .logo {
  width: 100%;
  text-align: center;
  z-index: 3;
}

#container .logo img {
  width: 500px;
  max-width: 70%;
  height: auto;
}

#container p {
  /*font-weight: bold;*/
  color: #FFFFFF;
  z-index: 3;
}
#container .tell {
  width: 100%;
  text-align: center;
  font-size: 137.5%;
}

#container .tell span {
  font-size: 1rem;
}

/*@media screen and (max-width: 768px) {
  #container img {
    max-width: 80%;
  }
}*/

#copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 12px;
  color: #FFFFFF;
}