@charset "UTF-8";

/*
  Opening
================================================================================== */
.opening {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.9);
  box-sizing: border-box;
  display: grid;
  place-content: center;
  color: #fff;
}

.opening .inner { width: 410px; }

.opening .txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: calc(30 / 15);
  text-align: center;
  padding: 40px 0 0;
}

.opening ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'New Rocker', cursive;
  font-weight: 400;
  font-size: 20px;
  font-size: 2.0rem;
  letter-spacing: 0;
  line-height: 25px;
  padding: 30px 0 0;
}

.opening ul li {
  cursor: pointer;
  transition: all 0.3s;
}

.opening ul li+li { margin: 0 0 0 40px; }

.opening ul li .fa-solid {
  display: inline-block;
  vertical-align: baseline;
}

.opening ul li.active,
.opening ul li:hover {
  color: #FFA500;
}

@media screen and (max-width: 768px) {
  .opening .inner { width: 65vw; }
}

@media screen and (max-width: 480px) {
  .opening .txt { font-size: calc(15 / 480 * 100vw); }
  .opening ul { font-size: calc(20 / 480 * 100vw); }
}