@charset "UTF-8";
/* Scss Document */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern";
  font-kerning: normal;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 2;
  color: #070203;
  background-color: #ffffff;
}

a {
  color: #070203;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.button {
  cursor: pointer;
}

@keyframes loading {
  0% {
    letter-spacing: 0.4em;
  }
  50% {
    letter-spacing: 0.45em;
  }
  100% {
    letter-spacing: 0.4em;
  }
}
#home::before {
  position: absolute;
  content: "LOADDING";
  display: inline-block;
  width: 300px;
  top: 50%;
  top: 50vh;
  left: 50%;
  left: 50vw;
  margin-top: -2em;
  margin-left: -150px;
  text-align: center;
  color: #525252;
  letter-spacing: 0.2em;
  animation: loading 2s ease-in-out 0s;
  animation-iteration-count: infinite;
  z-index: 2;
}
#home.ok1.ok2.ok3::before {
  display: none;
}

.page-wrap {
  opacity: 0;
  padding: 1.5rem;
}

.ok1.ok2.ok3 .page-wrap {
  animation: fadein 1.5s ease-out 1.25s forwards;
}

.nav {
  display: flex;
}

.nav-list a {
  font-size: 0.875rem;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.profile-wrap {
  margin-bottom: 4rem;
  font-size: 1rem;
}

.name {
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.profile {
  display: none;
  margin-bottom: 1.5rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  transition: all 0.25s ease-out 0s;
}
.profile.is-active {
  display: block;
  animation: fadein 0.5s ease-out 0s;
}

.profile-txt {
  font-feature-settings: "pkna";
  letter-spacing: 0.05em;
}
.profile-txt.en {
  font-size: 1rem;
  font-family: "EB Garamond", serif;
  line-height: 1.5;
}

.change-lang {
  display: inline-block;
  padding: 0.25em 1em;
  border: 1px solid #070203;
  border-radius: 1em;
  font-size: 14px;
  background-color: #ffffff;
  line-height: 1.3;
  text-decoration: none;
}
.change-lang.is-active {
  background-color: #070203;
  color: #ffffff;
}

.artbook {
  padding: 3rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin: 6rem 0 0 auto;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.artbook img {
  padding-bottom: 1rem;
}

.artbook-name {
  font-size: 1rem;
}

.copyright {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  line-height: 1.75;
}

.ig-list-ttl {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.ig-list {
  display: flex;
  flex: none;
}
.ig-list li {
  flex: none;
  line-height: 0;
}
.ig-list a {
  display: block;
}
.ig-list.is-selected {
  display: flex;
  flex-flow: row wrap;
  justify-items: flex-start;
  width: 100%;
  border: none;
  animation: fadein 0.5s ease-out 0s;
}
.ig-list.is-selected li {
  width: 33.3333%;
  width: 33.3333333333%;
  padding: 0 0.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.ig-list.is-hidden {
  visibility: hidden;
  width: 0;
  padding: 0;
  border: none;
}

@media screen and (max-width: 768px) {
  .header {
    display: none;
  }
  .main {
    margin-top: 4rem;
  }
  .ig-grp {
    margin-right: -1.5rem;
  }
  .ig-list {
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1.5rem;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .ig-list:last-child {
    border-bottom: none;
  }
  .ig-list li {
    height: 64px;
    max-width: 96px;
    margin-right: 0.75rem;
    overflow: hidden;
  }
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 1088px), print {
  .nav {
    margin-bottom: 8rem;
  }
  .nav-list {
    display: flex;
    margin-left: auto;
    margin-right: -1.25rem;
  }
  .nav-list li {
    padding: 0 1.25rem;
  }
  .nav-list a {
    position: relative;
  }
  .nav-list a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #070203;
    transform: scaleX(0);
    transform-origin: left center;
    transition: all 0.25s ease-out 0s;
  }
  .nav-list a:hover::before {
    transform: scaleX(1);
  }
  .nav-list a.is-active {
    font-weight: 600;
  }
  .nav-list a.is-active::before {
    transform: scaleX(1);
  }
  .nav-list img {
    transition: all 0.25s ease-out 0s;
  }
  .page-wrap {
    position: relative;
    min-height: 100vh;
    padding: 4rem;
  }
  .profile-wrap {
    text-align: right;
  }
  .profile-txt {
    margin-right: -0.75em;
  }
  .profile-txt.en {
    margin-right: 0;
  }
  .change-lang {
    transition: all 0.25s ease-out 0s;
  }
  .change-lang:hover {
    background-color: #070203;
    color: #ffffff;
  }
  .artbook {
    margin-top: 8rem;
    width: 528px;
  }
  .copyright {
    margin-top: 3rem;
  }
  .ig-grp {
    display: flex;
    flex-flow: row nowrap;
    justify-items: flex-start;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .ig-grp:hover a:not(:hover)::before {
    background-color: rgba(0, 0, 0, 0.75);
  }
  .ig-list-ttl {
    display: none;
  }
  .ig-list {
    flex-flow: column-reverse nowrap;
    width: auto;
    padding: 0 calc(4rem / 2);
    border-right: 1px solid #f0f0f0;
  }
  .ig-list:last-child {
    border: none;
  }
  .ig-list li {
    width: 72px;
    margin-top: 1.25rem;
  }
  .ig-list li:first-child {
    margin-top: 1.25rem;
  }
  .ig-list a {
    position: relative;
  }
  .ig-list a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.25s ease-out 0s;
  }
  .ig-list.is-selected {
    flex: none;
    flex-flow: wrap column-reverse;
    width: 272px;
    width: calc(13rem + 4rem);
  }
  .ig-list.is-selected li {
    width: 13rem;
    padding: 0;
    margin-top: 1rem;
  }
}
.modal-wrap {
  display: none;
}

.modal-wrap.is-open {
  display: block;
}

.modal-content-wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 10000;
}

.modal-content {
  position: absolute;
  max-width: 800px;
  width: calc(100% - 4rem / 2);
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.modal-content img {
  max-height: 80vh;
}

.modal-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 0.5em 0;
  color: white;
  line-height: 1;
  letter-spacing: 0.1em;
  z-index: 20000;
}
.modal-close::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.modal-link {
  position: absolute;
  display: inline-block;
  bottom: -3.5rem;
  right: 0;
  padding: 1em 3.5em 1em 1.5em;
  background-color: #fff;
  font-size: 12px;
  color: #121212;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.modal-link::before {
  position: absolute;
  content: "";
  display: block;
  right: 1.25em;
  top: 50%;
  margin-top: -4px;
  width: 16px;
  height: 6px;
  border-bottom: 1px solid #121212;
  border-right: 1px solid #121212;
  transform: skew(45deg);
}

@media (orientation: portrait) and (max-width: 559px) {
  .modal-content {
    top: 2rem;
    transform: translateX(-50%);
  }
  .modal-close {
    top: auto;
    right: auto;
    left: 1rem;
    bottom: 2rem;
  }
}
@media screen and (min-width: 1088px), print {
  .modal-link {
    bottom: -1rem;
    right: -1rem;
  }
}
.modal-wrap[aria-hidden=false] .modal-content-wrap {
  animation: fadein 0.3s ease-out;
}

.modal-wrap[aria-hidden=false] .modal-content {
  animation: fadein 0.3s ease-out;
}

.modal-wrap[aria-hidden=true] .modal-content-wrap {
  animation: fadeout 0.3s ease-out;
}

.modal-wrap[aria-hidden=true] .modal-content {
  animation: fadeout 0.3s ease-out;
}

.pp {
  padding-block: 2rem;
  margin-inline: auto;
  width: 89.3333333333vw;
  max-width: 800px;
}

.pp-pagettl {
  font-size: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e4e4e4;
}

.pp-item {
  margin-top: 1.5rem;
}

.pp-ttl {
  font-size: 0.875rem;
}

.pp-desc {
  font-size: 0.8125rem;
}

.back-home {
  padding-top: 2.5rem;
  border-top: 1px solid #e4e4e4;
  margin-top: 2.5rem;
  font-size: 0.875rem;
}

.pp-copyright {
  font-size: 0.625rem;
  margin-top: 1rem;
}/*# sourceMappingURL=site.css.map */