@charset "UTF-8";
/* --------------------
		setting
-------------------- */
@import url(https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css);
@import url(modaal.css);
:root {
  --c-txt: #fff;
  --a-txt: #e30229;
  --condensd: "nimbus-sans-condensed", sans-serif;
  --plus_width: 19px;
  --plus_margin: 5px;
}

@media screen and (min-width: 821px) {
  :root {
    --plus_width: 35px;
    --plus_margin: 10px;
  }
}
@media screen and (max-width: 820px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .sp-only {
    display: none !important;
  }
}

a {
  transition: all 0.25s ease-in-out;
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値)　*/
/* --------------------
		base
-------------------- */
html {
  font-size: 10px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 821px) {
  html {
    font-size: 11px;
  }
}

body {
  font-feature-settings: "palt" 1;
  font-family: YakuHanJP, "nimbus-sans", "Helvetica Neue", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrapper {
  background-color: #000;
}

p, li, dt, dd {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

li + li {
  margin-top: 1.5em;
}

small {
  font-size: 0.75em;
}

/* --------------------
		header
-------------------- */
header {
  position: relative;
  width: 100vw;
  height: 100svh;
}
header .intro {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
header h1 {
  line-height: 0;
  width: 50%;
  height: auto;
}
@media screen and (min-width: 821px) {
  header h1 {
    width: 33.333%;
  }
}

.mainvisual {
  width: 100vw;
  height: 100svh;
  background-image: url(../img/main_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: -9999px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 821px) {
  .mainvisual {
    background-image: url(../img/main_pc.jpg);
  }
}

/* --------------------
		content
-------------------- */
#content {
  background-color: #000;
  overflow: hidden;
  position: relative;
  line-height: 1;
  color: var(--c-txt);
}
#content img {
  width: 100%;
  height: auto;
}
#content a {
  color: var(--c-txt);
  text-decoration: none;
}
#content a:hover, #content a:active {
  color: var(--a-txt);
}
@media screen and (min-width: 821px) {
  #content a.inline {
    pointer-events: none;
  }
}
#content h1 {
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 7.5vw;
  text-align: center;
  margin-bottom: 20vw;
}
@media screen and (min-width: 821px) {
  #content h1 {
    font-size: 44px;
    margin-bottom: 15%;
  }
}
#content h2 {
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 20vw;
}
@media screen and (min-width: 821px) {
  #content h2 {
    font-size: 30px;
    margin-bottom: 15%;
  }
}
#content section {
  box-sizing: border-box;
}
#content section.visuals {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30%;
}
@media screen and (min-width: 821px) {
  #content section.visuals {
    padding-top: 25%;
    flex-direction: row;
  }
}
#content section.visuals > div {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.75s;
  transition-duration: 2s;
  transform: translateX(-100px);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#content section.visuals > div.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#content section.visuals > div:nth-child(2n) {
  transition-delay: 1s;
}
#content section.overview {
  padding: 30% 7.5% 0;
}
@media screen and (min-width: 821px) {
  #content section.overview {
    padding: 20% 0 0;
    margin: 0 auto;
    width: 600px;
  }
}
#content section.overview .fadein {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
#content section.overview .fadein.show {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#content section.overview p {
  line-height: 1.75;
  margin-top: 2rem;
}
#content section.overview p + p {
  margin-top: 15%;
}
#content section.overview p em {
  display: block;
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.25;
  font-size: 1.7rem;
  font-style: normal;
  text-align: center;
}
#content section.overview p em a {
  color: var(--a-txt);
  display: inline-block;
  position: relative;
  padding-bottom: 1px;
}
#content section.overview p em a::after {
  background-color: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  width: 100%;
}
#content section.overview p em a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
#content section#stores ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#content section#stores ul li {
  font-size: 1.5rem;
  width: auto;
}
@media screen and (min-width: 821px) {
  #content section#stores ul {
    max-width: 300px;
    margin: 0 auto;
  }
}
#content section#staffs p {
  font-size: 1.2rem;
  text-align: center;
  margin: -10% 0 0;
}
#content section:first-of-type {
  padding: 0;
}
#content section:last-of-type {
  padding-bottom: 30%;
}
@media screen and (min-width: 821px) {
  #content section:last-of-type {
    padding-bottom: 20%;
  }
}

.visual {
  position: relative;
}
.visual.center {
  width: 70%;
  margin: 0 auto;
}
.visual .inline {
  position: relative;
  display: block;
}
.visual .inline::before, .visual .inline::after {
  background-color: var(--c-txt);
  content: "";
  display: block;
  width: var(--plus_width);
  height: 1px;
  position: absolute;
  bottom: calc(var(--plus_width) / 2 + var(--plus_margin));
  right: var(--plus_margin);
  z-index: 3;
  transition: all 0.25s ease-in-out;
}
.visual .inline::after {
  width: 1px;
  height: var(--plus_width);
  right: calc(var(--plus_width) / 2 + var(--plus_margin));
  bottom: var(--plus_margin);
}
.visual:hover .inline::before, .visual:hover .inline::after {
  transform: rotate(45deg);
  background-color: transparent;
}
.visual:hover .mask {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  transition-delay: 1s;
}

.ratio2-3 {
  aspect-ratio: 2/3;
}

.ratio3-2 {
  aspect-ratio: 3/2;
}

.ratio4-3 {
  aspect-ratio: 4/3;
}

.ratio3-4 {
  aspect-ratio: 3/4;
}

.w50 {
  width: 50%;
}

.w75 {
  width: 75%;
}

.right {
  margin-left: auto;
}

@media screen and (max-width: 820px) {
  #sec01 > div:nth-child(2) {
    margin-bottom: 20vw;
  }
  #sec01 > div:nth-child(3) {
    margin-right: 50%;
  }
  #sec01 > div:nth-child(4) {
    margin-left: 50%;
  }
}
@media screen and (min-width: 821px) {
  #sec01 > div {
    width: 50%;
  }
  #sec01 > div:nth-child(1) {
    order: 2;
  }
  #sec01 > div:nth-child(2) {
    order: 1;
  }
  #sec01 > div:nth-child(3) {
    order: 3;
  }
  #sec01 > div:nth-child(4) {
    order: 4;
  }
}

@media screen and (max-width: 820px) {
  #sec02 {
    padding-top: 20vw !important;
  }
}
#sec10 {
  justify-content: space-evenly;
}
#sec10 .w50 {
  width: 42.5%;
}
@media screen and (min-width: 821px) {
  #sec10 .w50 {
    width: 37.5%;
  }
}

#sec12 .w50 {
  margin-left: 25%;
  margin-right: 25%;
}
@media screen and (max-width: 820px) {
  #sec12 .w50 {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
  }
}
#sec12 .w50 + .w50 {
  margin-top: 10px;
}

@media screen and (max-width: 820px) {
  #sec05 > div {
    width: 80%;
    margin: 0 auto;
  }
  #sec05 > div + div {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 820px) {
  .mask {
    display: none;
  }
}
@media screen and (min-width: 821px) {
  .mask {
    background-color: rgba(0, 0, 0, 0.85);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 2;
  }
}

.credit li {
  line-height: 1.5;
  position: relative;
}
.credit li.p2, .credit li.p3 {
  margin-top: 6rem;
}
.credit li.p1::before, .credit li.p2::before, .credit li.p3::before {
  color: #777;
  font-size: 0.75em;
  line-height: 2.5;
  display: block;
  background-color: currentColor;
  width: 30px;
  height: 1px;
  position: absolute;
  top: -3rem;
}
.credit li.p1::before {
  content: "LEFT";
}
.credit li.p2::before {
  content: "RIGHT";
}
.credit li.p3::before {
  content: "CENTER";
}
.credit li span {
  display: block;
}
.credit li .no {
  display: none;
}
.credit li .name {
  width: calc(100% - 100px);
}
.credit li .buy, .credit li .coming {
  box-sizing: border-box;
  border: 1px solid var(--a-txt);
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  line-height: 24px;
  text-align: center;
  width: 100px;
  position: absolute;
  right: 0;
  top: 0;
}
.credit li .coming {
  border: 1px solid #707070;
  color: #707070;
  font-size: 1.2rem;
}
.credit li a {
  display: block;
  width: 100%;
}
.credit li a .buy {
  background-color: var(--a-txt);
}
.credit li a:hover .buy {
  background-color: transparent;
}
@media screen and (min-width: 821px) {
  .credit {
    width: 400px;
  }
}

@media screen and (min-width: 821px) {
  #look03-03 li {
    font-size: 1.2rem;
  }
  #look03-03 li.p2, #look03-03 li.p3 {
    margin-top: 4rem;
  }
  #look03-03 li.p1::before, #look03-03 li.p2::before, #look03-03 li.p3::before {
    top: -2rem;
  }
}
.modaal-container {
  background-color: transparent;
  box-shadow: none;
  color: var(--c-txt);
}

.modaal-content-container {
  padding: 0;
}

.modaal-inner-wrapper {
  padding: 0 7.5vw;
}

.modaal-wrapper .modaal-close:hover {
  background: none;
}

.modaal-close {
  top: auto;
  bottom: 0;
  right: 0;
}

.modaal-close:before,
.modaal-close:after {
  width: 1px;
  border-radius: 0;
}

/* --------------------
		footer
-------------------- */
.footer {
  background-color: #111;
  padding: 10% 0 5%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 821px) {
  .footer {
    padding: 5% 0 2.5%;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 34.6666666667vw;
  max-width: 150px;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 821px) {
  .footer__logo {
    width: 10.15625vw;
    margin: 0 auto 1.25vw;
  }
}
.footer__logo a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 821px) {
  .footer__logo a {
    width: 10.15625vw;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 821px) {
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: var(--c-txt);
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */