@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

:root {
  --purple1: #613682;
  --purple2: #703e9b;
  --purple3: #796b87;
  --purple4: #624971;
}

body {
  font-family: Helvetica, "Noto Sans JP", sans-serif;
}

.lang-selector,
.wrapper {
  font-family: Helvetica, "Noto Sans JP", sans-serif;
}

a:hover {
  opacity: 0.7;
}

.wrapper {
  /* background: var(--purple1); */
  font-size: 14px;
}
.c-inner {
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .c-inner {
    max-width: 90vw;
  }
}
.fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100dvh;
  min-height: 500px;
  /* background: var(--purple1); */
}
.fv .c-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  color: #fff;
}
.fv .logo {
  width: 60%;
  height: auto;
}

.fv-info {
  text-align: center;
  font-size: 1em;
}

.info-schedule,
.info-place {
  font-size: calc(1em + 2px);
}
.info-place {
  margin-top: 1em;
}

.info-parco-link {
  display: block;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .info-parco-link {
    width: 400px;
  }
}

.info-qr-link {
  display: block;
  width: fit-content;
  height: fit-content;
  width: 8%;
}

.info-qr-link svg {
  fill: #fff;
  display: block;
}

.info-qr {
  width: 100%;
}

.parco-logo {
  width: 40%;
}

.about {
  padding: 100px 20px;
  /* background: #fff; */
}

.about .logo-purple {
  display: block;
  width: 60%;
  margin: 0 auto 0 0;
}

.about-text {
  font-size: calc(1em - 2px);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 2em;
}

.about-text1 {
  color: var(--purple1);
}
.about-text2 {
  color: var(--purple2);
}
.about-text3 {
  color: var(--purple3);
}
.about-text4 {
  color: var(--purple4);
}
.memories {
  padding: 100px 20px;
}
.memories .c-inner {
  width: 100%;
  @media screen and (min-width: 1000px) {
    /* max-width: 50vw; */
    max-height: 90vh;
  }
}
.memories h2 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
  text-shadow: 2px 0 10px var(--purple1);
}
.memories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  aspect-ratio: 4/3;
  @media screen and (min-width: 1000px) {
    aspect-ratio: unset;
    /* grid-template-columns: unset;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column; */
  }
}
.memories-slider-button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: filter 0.7s ease;
  &:hover {
    filter: brightness(0.5);
  }
}
.memories-slider-button:nth-child(5n - 4) { 
  grid-row: auto / span 2; 
  grid-column: auto / span 2; 
} 
.memories-slider-button:nth-child(5n - 1) { 
  grid-row: auto / span 2; 
  /* @media screen and (min-width: 1000px) {
    grid-row: unset; 
    grid-column: auto / span 2; 
  } */
} 
.memories-slider-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.memories-slider-dialog {
  max-width: 90vw;
  border: 0;
  padding: 8px;
}
.memories-slider-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.brands {
  padding: 100px 20px;
}
.brands .c-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 450px;
  gap: 5px;
}
.brands .c-inner a.fy-cs {
  display: block;
  content: url(../img/coming_soon.svg);
  width: 120px;
  height: auto;
  margin-top: 16px;
}
.brands h2 {
  display: block;
  width: 100%;
  height: fit-content;
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: center;
}
.brands a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 10px) / 3);
  transition: filter 0.7s ease;
  position: relative;
}
.brands .image-wrap {
  width: 100%;
  aspect-ratio: 1/1;
}
.brands a img {
  transition: filter 0.7s ease;
}
@media screen and (min-width: 1000px) {
  .brands a:hover {
    opacity: 1;
  }
  .brands a:hover img {
    filter: brightness(0.25);
  }
  .brands a::after {
    display: block;
    width: 80%;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .brands a:hover::after {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 999px) {
  .brands .c-inner {
    gap: 16px;
  }
  .brands a {
    flex-direction: column;
    justify-content: flex-start;
    width: calc((100% - 16px) / 2);
  }
  .brands a::after {
    display: block;
    width: 50%;
    height: fit-content;
    position: static;
    margin-top: 16px;
  }
  .brands a:nth-of-type(2)::after {
    width: 90%;
  }
  .brands a:nth-of-type(4)::after {
    margin-top: 8px;
    width: 25%;
  }
  .brands a:nth-of-type(7)::after {
    width: 70%;
  }
  .brands a:nth-of-type(8)::after {
    width: 60%;
  }
  .brands a:nth-of-type(9)::after {
    width: 70%;
  }
  .brands a:nth-of-type(12)::after {
    width: 80%;
  }
}
.brands a:nth-of-type(1)::after {
  content: url(../img/fujito.svg);
}
.brands a:nth-of-type(2)::after {
  content: url(../img/fujito_sk8.svg);
}
.brands a:nth-of-type(3)::after {
  content: url(../img/stock_no.svg);
}
.brands a:nth-of-type(4)::after {
  content: url(../img/vintage_heads.svg);
}
.brands a:nth-of-type(5)::after {
  content: url(../img/whyit.svg);
}
.brands a:nth-of-type(6)::after {
  content: url(../img/kaili.svg);
}
.brands a:nth-of-type(7)::after {
  content: url(../img/toualeg_silver.svg);
}
.brands a:nth-of-type(8)::after {
  content: url(../img/akio.svg);
}
.brands a:nth-of-type(9)::after {
  content: url(../img/obscure.svg);
}
.brands a:nth-of-type(10)::after {
  content: url(../img/gullvandel.svg);
}
.brands a:nth-of-type(11)::after {
  content: url(../img/sinya.svg);
}
.brands a:nth-of-type(12)::after {
  content: url(../img/uehara_koji.svg);
}
.brands a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.director {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #fff;
  font-size: calc(1em - 2px);
}
.director-info-title {
  display: block;
  font-size: 1em;
  margin: 0 auto 10px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .director-info-title {
    width: 400px;
  }
}
.director-info-title:nth-of-type(2) {
  margin: 0 auto 20px;
}
.director-info-cont {
  display: block;
  width: fit-content;
  font-size: 1em;
  margin: 0 auto 20px;
}
.parq {
  width: 25%;
  max-width: 150px;
}
.parq svg path {
  fill: #fff;
}
.copy {
  font-size: calc(1em - 1px);
  text-align: center;
}

.lang-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 10;
  mix-blend-mode: exclusion;
  padding: 2px 20px 3px 5px;
  border: 1px solid #9bc878;
  border-radius: 20px;
  cursor: pointer;
  transition: border-radius 0.5s ease;
}
.lang-selector.is-selected {
  border-radius: 15px;
}
.lang-selector::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 12.25px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #9bc878 transparent transparent transparent;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}
.lang-selector.is-selected::after {
  transform: rotate(180deg);
}
.lang-bg {
  display: block;
  position: absolute;
  right: 20px;
  left: 5px;
  top: 5px;
  height: 1.5em;
  width: 2em;
  border-radius: 20px;
  background: #9bc878;
  z-index: 0;
  margin: 0 auto;
  transform: scale(0);
  transition: transform 0.5s ease, top 0.5s ease;
}
.is-selected .lang-bg {
  transform: scale(1);
}
.other-langs {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}
.lang-selector.is-selected .other-langs {
  grid-template-rows: 1fr;
}
.other-langs-inner {
  overflow: hidden;
}
.lang {
  display: flex;
  justify-content: center;
  align-content: center;
  position: relative;
  z-index: 1;
  width: 2.5em;
  height: 1.5em;
  color: #9bc878;
  text-decoration: none;
  font-size: 14px;
  border-radius: 20px;
  margin-top: 5px;
  mix-blend-mode: difference;
}
.lang-current {
  pointer-events: none;
}
@media screen and (max-width: 999px) {
  .js-fade-in {
    opacity: 0;
  }
}
@media screen and (min-width: 1000px) {
  body {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    background: var(--purple1);
  }
  .wrapper {
    position: absolute;
    z-index: 0;
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: 100vh;
  }
  .fv,
  .about,
  .memories,
  .brands,
  .director {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    padding: 0;
  }
  .brands {
    /* background: linear-gradient(
      75deg,
      var(--purple1) 0%,
      var(--purple2) 10%,
      var(--purple3) 20%,
      var(--purple4) 30%,
      #fff 35%,
      #fff 65%,
      var(--purple4) 70%,
      var(--purple3) 80%,
      var(--purple2) 90%,
      var(--purple1) 100%
    ); */
    /* background: linear-gradient(
      85deg,
      var(--purple1) 5%,
      var(--purple2) 7.5%,
      var(--purple3) 10%,
      var(--purple4) 12.5%,
      #fff 35%,
      #fff 65%,
      var(--purple4) 87.5%,
      var(--purple3) 90%,
      var(--purple2) 92.5%,
      var(--purple1) 95%
    ); */
  }
}
