@charset "utf-8";

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

html {
  font-size: 10px;
  letter-spacing: 0;
}

body {
  line-height: 1;
  font-family: neue-haas-grotesk-display, toppan-bunkyu-midashi-go-std, sans-serif;
  background-color: #dbecf3;
  font-weight: 600;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, p {
  /* font-weight: 400; */
  margin: 0;
}

.font-neue {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 600;
}

.font-unica {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
}

.lang-selector,
.wrapper {
  font-family: neue-haas-grotesk-display, toppan-bunkyu-midashi-go-std, sans-serif;
  font-weight: 600;
}

a:hover {
  opacity: 0.7;
}

.visually-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
}

.wrapper {
  /* background: var(--purple1); */
  font-size: 1.6rem;
}
.c-inner {
  width: 100%;
  max-width: 100vw;
  padding: 0 20px;
  margin: 0 auto;
  @media (width > 900px) {
    max-width: 1200px;
    padding: 0 40px;
  }
}

.js-fade-in {
  opacity: 0;
}

/* fv */

.fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  aspect-ratio: 9/16;
  max-height: 100vh;
  position: relative;
  @media (width > 900px) {
    justify-content: center;
    aspect-ratio: 16/9;
  }
  .fv-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    @media (width <= 900px) {
      display: none;
    }
  }
  .fv-video-sp {
    display: none;
    @media (width <= 900px) {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
  }
  .c-inner {
    margin: 0 auto 20px;
    h1 {
      color: #87519d;
      font-size: 24vw;
      line-height: 1;
      @media (width > 900px) {
        font-size: 18rem;
      }
    }
    .fv-date {
      font-size: 15vw;
      margin-top: -7vw;
      font-weight: 600;
      text-shadow: 1px 1px 5px #dbecf3;
      @media (width > 900px) {
        font-size: 11rem;
        margin-top: -5rem;
      }
      span {
        font-size: 19vw;
        @media (width > 900px) {
          font-size: 15rem;
        }
      }
    }
    .fv-at {
      font-size: 8.6vw;
      font-weight: 600;
      text-shadow: 1px 1px 5px #dbecf3;
      @media (width > 900px) {
        font-size: 8rem;
      }
    }
    .fv-address {
      font-size: 4vw;
      line-height: 1.5;
      text-shadow: 1px 1px 5px #dbecf3;
      @media (width > 900px) {
        font-size: 3rem;
      }
    }
  }
}

/* fv */

/* about */
.about {
  padding: 40px 0;
  @media (width > 900px) {
    padding: 80px 0;
  }
  .about-text {
    display: block;
    font-size: 2rem;
    line-height: 1.25;
    max-width: 550px;
    @media (width > 900px) {
      font-size: 3rem;
      max-width: 680px;
    }

  }
}
/* about */

/* brands */
.brands {
  padding: 40px 0;
  @media (width > 900px) {
    padding: 80px 0;
  }
  h2 {
    font-size: 2.4rem;
    font-weight: 400;
    @media (width > 900px) {
      font-size: 4rem;
    }
  }
  .brands-list {
    display: block;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    @media (width > 900px) {
      margin: 40px 0 0;
      max-width: 680px;
    }
    .brands-list-item-button {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: .2em;
      width: 100%;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 1.8rem;
      padding: 3px 60px 3px 0;
      color: #000;
      @media (width > 900px) {
        align-items: flex-end;
        gap: 1em;
        font-size: 2.1rem;
        flex-direction: row;
        max-width: 680px;
        padding: 4px 80px 4px 0;
        &:hover {
          opacity: .7;
        }
      }
      .brands-list-item-button-title {
        font-size: 2rem;
        text-align: left;
        @media (width > 900px) {
          font-size: 2.8rem;
        }
      }
      .brands-list-item-button-title_jp {
        font-size: 1.4rem;
        padding-left: 0;
        line-height: 1.5;
        @media (width > 900px) {
          font-size: 1.6rem;
        }
      }
      .brands-list-item-button-cross {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 40px;
        border: 1px solid #000;
        border-radius: 25px;
        @media (width > 900px) {
          width: 70px;
          height: 30px;
        }
        &::before, &::after {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          content: "";
          display: block;
          width: 12px;
          height: 2px;
          background: #000;
          transition: transform 0.3s ease-in-out;
          @media (width > 900px) {
            width: 20px;
            height: 2px;
          }
        }
        &::after {
          transform: translate(-50%, -50%) rotate(-90deg);
        }
      }
      &[aria-expanded="true"] .brands-list-item-button-cross::after {
        transform: translate(-50%, -50%) rotate(0deg);
      }
    }
    .brands-list-item-content {
      display: grid;
      grid-template-rows: 0fr;
      padding-block: 0;
      transition: grid-template-rows 0.3s ease-in-out, padding-block 0.3s ease-in-out;
      &[aria-hidden="false"] {
        grid-template-rows: 1fr;
        padding-block: 20px;
      }
      .brands-list-item-content-inner {
        overflow: hidden;
        img {
          display: block;
          width: 100%;
          margin-bottom: 20px;
          @media (width > 900px) {
            width: 80%;
            margin-bottom: 40px;
            margin-inline: auto;
          }
        }
        p {
          font-size: 1.6rem;
          line-height: 1.5;
          margin-bottom: 20px;
          @media (width > 900px) {
            font-size: 1.8rem;
          }
        }
        .brands-list-item-content-link {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 10px;
          font-size: 1.4rem;
          text-decoration: none;
          color: #000;
          margin-bottom: 20px;
          @media (width > 900px) {
            font-size: 1.6rem;
          }
        }
      }
    }
  }
}
/* brands */

/* social */
.social {
  padding: 40px 0;
  @media (width > 900px) {
    padding: 80px 0;
  }
  h2 {
    font-size: 2.4rem;
    font-weight: 400;
    @media (width > 900px) {
      font-size: 4rem;
    }
  }
  .social-list {
    padding: 0;
    list-style: none;
    .social-list-item-link {
      display: flex;
      align-items: center;
      width: 100%;
      padding: 16px 0;
      text-decoration: none;
      color: #000;
      gap: 40px;
      font-size: 2.4rem;
      @media (width > 900px) {
        font-size: 3rem;
        max-width: 680px;
      }
      svg {
        display: block;
      }
    }
  }
}
/* social */

/* info */
.info {
  padding: 0 0 40px;
  @media (width > 900px) {
    padding: 0 0 80px;
  }
  h2 {
    display: block;
    font-size: 16vw;
    padding-block: 40px 30vw;
    line-height: 1.2;
    span {
      color: #87519d;
      margin-right: .1em;
    }
    br {
      display: block;
    }
    @media (width > 900px) {
      font-size: 6rem;
      padding-block: 80px;
      line-height: 1.1;
      br {
        display: none;
      }
    }
  }
  .info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    list-style: none;
    .info-list-item {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      width: 100%;
      padding: 16px 0;
      gap: 20px;
      a {
        text-decoration: none;
        color: #000;
      }
      @media (width > 900px) {
        font-size: 2.1rem;
        max-width: 680px;
      }
      h3 {
        display: block;
        font-size: 2rem;
        font-weight: 400;
        width: 100%;
        @media (width > 900px) {
          font-size: 2.1rem;
        }
      }
      img {
        display: block;
        height: 20px;
        width: auto;
        @media (width > 900px) {
          height: 30px;
        }
      }
      &:nth-of-type(2) {
        img {
          height: 80px;
        }
      }
      &:nth-of-type(3) {
        img {
          height: 60px;
        }
      }
    }
  }
  .info-link {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 4px;
    width: 140px;
    color: #000;
    text-decoration: none;
    line-height: 1;
    transform: translateY(calc(100% + 30px));
    transition: transform 0.3s ease-in-out;
    &.is-visible {
      transform: translateY(0);
    }
    span {
      line-height: 1;
      font-size: 1.4rem;
      &:nth-of-type(2) {
        font-size: 2.5rem;
      }
      &:nth-of-type(3) {
        font-size: 2.6rem;
      }
    }
    img {
      width: 80px;
      height: auto;
    }
  }
}
/* info */

/* footer */
footer {
  padding: 10px 0;
  @media (width > 900px) {
    padding: 20px 0;
  }
  .copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.6rem;
    @media (width > 900px) {
      font-size: 1.6rem;
    }
    img {
      width: 60px;
      height: auto;
    }
  }
}
/* footer */

/* menu */
.menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 36px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  @media (width > 900px) {
    width: 60px;
    height: 40px;
    gap: 12px;
    top: 40px;
    right: 40px;
  }
  .menu-icon {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  &[aria-expanded="true"] {
    .menu-icon {
      &:nth-of-type(1) {
        transform: translateY(calc(50% + 9px)) rotate(45deg);
        @media (width > 900px) {
          transform: translateY(calc(50% + 13px)) rotate(45deg);
        }
      }
      &:nth-of-type(2) {
        opacity: 0;
      }
      &:nth-of-type(3) {
        transform: translateY(calc(-50% - 9px)) rotate(-45deg);
        @media (width > 900px) {
          transform: translateY(calc(-50% - 13px)) rotate(-45deg);
        }
      }
    }
  }
}

@keyframes menu-open {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#menu {
  border: none;
  padding: 20px 60px;
  &[open] {
    animation: menu-open 0.3s ease-in-out;
  }
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
    li {
      a {
        display: block;
        font-size: 2.4rem;
        line-height: 1.8;
        font-weight: 400;
        text-decoration: none;
        color: #000;
      }
    }
  }
}
/* menu */