.wrap-grobal-nav {
  z-index: 9999;
  position: fixed;
  background-color: var(--color-main);
  top: 0;
  left: 0;
  width: 6rem;
  height: 100vh;
  min-height: 24rem;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: left 0.25s;
}
@media screen and (max-width: 425px) {
  .wrap-grobal-nav {
    left: -6rem;
  }
}

.list-grobal-nav__item {
  width: 6rem;
  height: 6rem;
}
.list-grobal-nav__item:hover .list-page-link {
  visibility: visible;
}
.list-grobal-nav__item:hover .link-pc-nav {
  opacity: 1;
  background-color: var(--color-sub);
}
@media screen and (min-width: 1025px) {
  .list-grobal-nav:not(:hover) .list-grobal-nav__item.current-page .link-pc-nav {
    opacity: 1;
    background-color: var(--color-sub);
  }
  .list-grobal-nav:not(:hover) .list-grobal-nav__item.current-page .list-page-link {
    visibility: visible;
  }
}

.link-pc-nav {
  width: 6rem;
  height: 6rem;
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s;
}
.list-grobal-nav .link-pc-nav {
  opacity: 0.7;
}

.list-page-link {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 6rem;
  width: 12rem;
  height: 100vh;
  min-height: 24rem;
  font-size: 16px;
  background-color: #fff;
  border-right: 1px solid lightgray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.list-page-link__item {
  width: 100%;
  height: clamp(2em, 8.3333333333vh, 3em);
}

#contents-area {
  position: relative;
  z-index: 1;
  margin-left: 18rem;
}
@media screen and (max-width: 1024px) {
  #contents-area {
    margin-left: 6rem;
  }
}
@media screen and (max-width: 425px) {
  #contents-area {
    margin-left: 0;
  }
}/*# sourceMappingURL=style_isNotMobile.css.map */