/* main */

.index {
  display: flex;
  position:relative;
  flex-direction: column;
  background: url("/i/hl24\ back.jpg") no-repeat center center/cover;
  width: 100%;
  height: 92vh;
  z-index: 10;
}

.index #information {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  padding: 80px 20px;
  z-index: 10;
}

.index #information h1 {
  font-size: 36px;
  color: #eee;
  margin-bottom: 12px;
  padding: 20px 0;
}

.index #information p {
  font-size: 18px;
  color: #eee;
  margin-bottom: 20px;
  line-height: 1.8rem;
}

.index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5 );
}