.page__index {
  margin: 0;
  background-image: url("../img/openning/openning-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  font-family: "Noto Sans TC", sans-serif;
  overflow: hidden;
}
.page__index * {
  box-sizing: border-box;
}
.page__index header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2.5rem 0 2.5rem 7rem;
  height: 7rem;
}
@media (max-width: 960px) {
  .page__index header {
    padding: 2.5rem 0 2.5rem 2.5rem;
  }
}
.page__index header .logo img {
  width: 192px;
}
@media (max-width: 960px) {
  .page__index header .logo img {
    width: 128px;
  }
}
.page__index main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.page__index main .enter__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}
@media (max-width: 960px) {
  .page__index main .enter__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.page__index main .enter__list .item {
  text-decoration: none;
  display: grid;
  place-items: center;
  min-height: 20rem;
  padding: 1rem;
  position: relative;
}
.page__index main .enter__list .item:hover img {
  transform: skewY(0deg);
}
.page__index main .enter__list .item:nth-child(1) .box {
  background-color: #00bcae;
}
.page__index main .enter__list .item:nth-child(2) .box {
  background-color: #0071bc;
}
.page__index main .enter__list .item:nth-child(3) .box {
  background-color: #ffbc50;
}
.page__index main .enter__list .item:nth-child(4) .box {
  background-color: #d9e021;
}
.page__index main .enter__list .item .box {
  position: absolute;
  width: 2rem;
  height: 3rem;
}
.page__index main .enter__list .item img {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  transform: skewY(-15deg);
  transition: transform 0.3s ease;
  z-index: 1;
}
.page__index main .enter__list .item h2 {
  color: black;
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  z-index: 2;
}
@media (max-width: 960px) {
  .page__index main .enter__list .item h2 {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}
.page__index main .enter__list .item h2 small {
  font-weight: 400;
}
.page__index main .enter__list .item p {
  font-size: 1rem;
  color: #757575;
  position: absolute;
  top: calc(50% + 2rem);
}
@media (max-width: 960px) {
  .page__index main .enter__list .item p {
    font-size: 0.875rem;
    top: calc(50% + 1rem);
  }
}/*# sourceMappingURL=index.css.map */