@charset "UTF-8";
img {
  transition: 0.2s ease-out;
}

html {
  background-color: #010101;
}

header#inc_header {
  position: relative;
  width: 100%;
  display: block;
}
header#inc_header .HeadMenu {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  color: #fefefe;
  gap: 0 2rem;
  cursor: pointer;
  z-index: 10;
  mix-blend-mode: difference;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .HeadMenu {
    top: 5vw;
    left: 5vw;
    flex-direction: column;
    gap: 2vw 0;
    align-items: flex-start;
  }
}
header#inc_header .HeadMenu .en {
  font-size: min(1.2vw, 1.2rem);
  text-transform: uppercase;
  opacity: 1;
  transition: all 1s ease-out;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .HeadMenu .en {
    font-size: 3vw;
    margin-top: unset;
  }
}
header#inc_header .HeadMenu .border {
  position: relative;
  width: 8rem;
  aspect-ratio: 4;
  transform: translate(0, 0);
  transition: all 0.5s ease-out;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .HeadMenu .border {
    width: 9vw;
  }
}
header#inc_header .HeadMenu .border i {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background-color: #fefefe;
  transition: 0.5s ease-out;
}
header#inc_header .HeadMenu .border i:nth-of-type(1) {
  width: 100%;
  transform: translate(-50%, calc(-50% - 5px));
}
header#inc_header .HeadMenu .border i:nth-of-type(2) {
  width: 100%;
  transform: translate(-50%, calc(-50% + 5px));
  -webkit-clip-path: inset(0 30% 0 0);
          clip-path: inset(0 30% 0 0);
}
header#inc_header .HeadMenu.open .en {
  opacity: 0;
  transition: all 1s ease-out 0.3s;
  filter: blur(0.5rem);
}
header#inc_header .HeadMenu.open .border {
  transform: translateX(-7rem);
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .HeadMenu.open .border {
    transform: translate(0, -1rem);
  }
}
header#inc_header .HeadMenu.open .border i {
  width: 100%;
  left: 50%;
  top: 50%;
  transition: 0.6s ease-out;
}
header#inc_header .HeadMenu.open .border i:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-clip-path: inset(0 25% 0 25%);
          clip-path: inset(0 25% 0 25%);
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .HeadMenu.open .border i:nth-of-type(1) {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
header#inc_header .HeadMenu.open .border i:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(135deg);
  -webkit-clip-path: inset(0 25% 0 25%);
          clip-path: inset(0 25% 0 25%);
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .HeadMenu.open .border i:nth-of-type(2) {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
header#inc_header .SlideMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: min(1.2vw, 1.2rem);
  padding: 8em 0 0 5em;
  z-index: 9;
  transition: all 0.5s ease-out;
  -webkit-animation-name: SlideMenuOpenClose;
          animation-name: SlideMenuOpenClose;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu {
    height: auto;
    padding: 20vw 0 0 15vw;
    font-size: 3vw;
  }
}
header#inc_header .SlideMenu.open {
  opacity: 1;
  z-index: 9;
  -webkit-animation-name: SlideMenuOpen;
          animation-name: SlideMenuOpen;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  transform: translate(0, 0);
}
header#inc_header .SlideMenu.open::before {
  opacity: 1;
  transition: all 0.8s ease-out 0.3s;
  height: 100vh;
}
header#inc_header .SlideMenu.open .SlideMenu__inner a {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  transition: all 0.5s ease-out;
  filter: blur(0);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(1) {
  transition-delay: calc(0.07 * 1s);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(2) {
  transition-delay: calc(0.07 * 2s);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(3) {
  transition-delay: calc(0.07 * 3s);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(4) {
  transition-delay: calc(0.07 * 4s);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(5) {
  transition-delay: calc(0.07 * 5s);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(6) {
  transition-delay: calc(0.07 * 6s);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(7) {
  transition-delay: calc(0.07 * 7s);
}
header#inc_header .SlideMenu.open .SlideMenu__inner a:nth-of-type(8) {
  transition-delay: calc(0.07 * 8s);
}
header#inc_header .SlideMenu.open .sns-box a {
  display: block;
  min-width: 48px;
  opacity: 1;
  transition: all 0.5s ease-out;
}
header#inc_header .SlideMenu.open .sns-box a:nth-of-type(1) {
  transition-delay: calc(0.7s + (0.07 * 1s));
}
header#inc_header .SlideMenu.open .sns-box a:nth-of-type(2) {
  transition-delay: calc(0.7s + (0.07 * 2s));
}
header#inc_header .SlideMenu.open .sns-box a:nth-of-type(3) {
  transition-delay: calc(0.7s + (0.07 * 3s));
}
header#inc_header .SlideMenu.open .sns-box a:nth-of-type(4) {
  transition-delay: calc(0.7s + (0.07 * 4s));
}
header#inc_header .SlideMenu.open .sub-link {
  opacity: 1;
  transition: 0.5s ease-in-out 1s;
}
header#inc_header .SlideMenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(1, 1, 1, 0.8);
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-out;
}
header#inc_header .SlideMenu__inner {
  font-size: 1em;
  display: flex;
  flex-direction: column;
  height: 30em;
  gap: 1em 0;
  flex-wrap: wrap;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu__inner {
    height: auto;
    gap: 0.5em 0;
  }
}
header#inc_header .SlideMenu__inner a {
  font-size: 1em;
  display: inline-block;
  -webkit-clip-path: inset(50% 0 50% 0);
          clip-path: inset(50% 0 50% 0);
  filter: blur(1rem);
  transition: all 0.3s ease-out;
  padding: 0.5em 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header#inc_header .SlideMenu__inner a:hover {
  -webkit-animation-name: SlideLinkHover;
          animation-name: SlideLinkHover;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header#inc_header .SlideMenu__inner a p {
  display: inline-flex;
  font-size: 1.3em;
  flex-direction: column;
  letter-spacing: 0.08em;
  font-family: "Noto Serif Jp", serif;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu__inner a p {
    font-size: 1.1em;
  }
}
header#inc_header .SlideMenu__inner a p span {
  font-family: aw-conqueror-didot, serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(3rem, 3.6em, 6rem);
  font-weight: 300;
  margin-bottom: -0.1em;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu__inner a p span {
    font-size: 2.2em;
    margin-bottom: unset;
  }
}
header#inc_header .SlideMenu__inner a p span.tel {
  text-transform: lowercase;
}
@-webkit-keyframes SlideLinkHover {
  50% {
    filter: blur(0.5rem);
    transform: scale(1, 1.1);
    opacity: 0.8;
  }
}
@keyframes SlideLinkHover {
  50% {
    filter: blur(0.5rem);
    transform: scale(1, 1.1);
    opacity: 0.8;
  }
}
header#inc_header .SlideMenu__inner a.tel {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu__inner a.tel {
    pointer-events: auto;
  }
}
header#inc_header .SlideMenu .sns-box {
  font-size: 1em;
  display: flex;
  gap: 0 2em;
  margin-top: 2.5em;
}
header#inc_header .SlideMenu .sns-box a {
  width: 5em;
  height: 5em;
  filter: invert(100%) sepia(100%) saturate(9%) hue-rotate(261deg) brightness(104%) contrast(99%);
  opacity: 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu .sns-box a {
    display: block;
    min-width: 48px;
    min-height: 48px;
  }
}
header#inc_header .SlideMenu .sns-box a.facebook {
  background: url(../img/icon/sns_facebook.svg) no-repeat center center/contain;
  margin-right: -1em;
}
header#inc_header .SlideMenu .sns-box a.insta {
  background: url(../img/icon/sns_insta.svg) no-repeat center center/contain;
}
header#inc_header .SlideMenu .sns-box a.twitter {
  background: url(../img/icon/sns_x.svg) no-repeat center center/contain;
}
header#inc_header .SlideMenu .sns-box a.line {
  background: url(../img/icon/sns_line.svg) no-repeat center center/contain;
}
header#inc_header .SlideMenu .sub-link {
  position: absolute;
  bottom: 0;
  left: 50vw;
  font-size: min(1.2rem, 1.2vw);
  display: flex;
  gap: 0 1em;
  opacity: 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu .sub-link {
    font-size: 3vw;
    left: 15vw;
    bottom: -18vw;
  }
}
header#inc_header .SlideMenu .sub-link a {
  font-size: 1em;
  color: rgba(254, 254, 254, 0.6);
  transition: 0.5s;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#inc_header .SlideMenu .sub-link a {
    padding-bottom: 36px;
  }
}
header#inc_header .SlideMenu .sub-link a:hover {
  color: rgba(254, 254, 254, 0.9);
  transition: 0.3s;
}
@-webkit-keyframes SlideMenuOpen {
  0% {
    transform: translate(0, -100vh);
    opacity: 0;
  }
  1% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
  }
}
@keyframes SlideMenuOpen {
  0% {
    transform: translate(0, -100vh);
    opacity: 0;
  }
  1% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes SlideMenuOpenClose {
  0% {
    opacity: 1;
  }
  99% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, -100vh);
  }
}
@keyframes SlideMenuOpenClose {
  0% {
    opacity: 1;
  }
  99% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, -100vh);
  }
}

body {
  width: 100%;
}

.fire-box {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
}
.fire-box.await {
  opacity: 0;
  transition: all 0.8s ease-out 1s;
}
.fire-box.await.show {
  opacity: 0.3;
}
@media (max-width: 767px) and (orientation: portrait) {
  .fire-box {
    display: none;
  }
}
.fire-box__inner {
  position: relative;
}
.fire-box__inner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20vw;
  background-image: linear-gradient(#010101, #010101, 50%, rgba(1, 1, 1, 0) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.fire-box__inner .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#afSite-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fefefe;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  z-index: 1;
  scroll-behavior: smooth;
  width: 100%;
}
#afSite-page #inc_footer {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) and (orientation: portrait) {
  #afSite-page #inc_footer {
    height: 80%;
  }
}
#afSite-page #inc_footer .FooterBlock {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fefefe;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) and (orientation: portrait) {
  #afSite-page #inc_footer .FooterBlock {
    background-color: transparent;
  }
  #afSite-page #inc_footer .FooterBlock::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 8vw);
    top: 8vw;
    left: 0;
    background-color: #fefefe;
  }
}
#afSite-page #inc_footer .FooterBlock .logo-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  position: relative;
  transform: translateY(-4vw);
  font-size: min(12vw, 16rem);
}
@media (max-width: 767px) and (orientation: portrait) {
  #afSite-page #inc_footer .FooterBlock .logo-box {
    font-size: 20vw;
    transform: translateY(-1vw);
  }
}
#afSite-page #inc_footer .FooterBlock .logo-box::before {
  content: "© 2017 MOREWORKS. All rights reserved.";
  color: #010101;
  position: absolute;
  left: 50%;
  font-weight: 300;
  font-size: min(1.2vw, 1.2rem);
  transform: translateX(-50%);
  bottom: 5vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) and (orientation: portrait) {
  #afSite-page #inc_footer .FooterBlock .logo-box::before {
    font-size: 3vw;
  }
}
#afSite-page #inc_footer .FooterBlock .logo-box::after {
  content: "";
  position: absolute;
  width: 0.36em;
  height: 0.617em;
  right: 0;
  bottom: 0.1em;
  background: url(../img/logo.webp) no-repeat center top/contain;
  filter: invert(18%) sepia(33%) saturate(4685%) hue-rotate(270deg) brightness(91%) contrast(109%);
}
#afSite-page #inc_footer .FooterBlock .logo-box h4 {
  font-size: 1em;
  display: block;
  font-family: aw-conqueror-didot, serif;
  font-weight: 400;
  font-style: normal;
  color: #ececec;
  text-align: center;
  letter-spacing: -0.06em;
  line-height: 0.75em;
  z-index: 1;
}
#afSite-page #inc_footer .FooterBlock .logo-box h4 span {
  display: block;
  font-size: 0.83em;
}
/*# sourceMappingURL=common.css.map */