@charset "UTF-8";
/* File name -- brulee.css */

:root {
  --color-pink: #ea53a1;
  --color-purple: #ae4dd8;
  --color-white: #ffffff;
  --color-blue: #46afd7;
  --color-navy: #1b4a9e;
  --color-dark-gray: #3f3d3d;
  --color-black: #231815;
}

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

.pc {
  display: block;
  @media (max-width: 767px) {
    display: none;
  }
}

.indent {
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.note {
  font-size: 12px;
  color: var(--color-dark-gray);
  text-align: left;
  line-height: 1.75;
  font-weight: 400;
}

.inline {
  display: inline-block;
}

.caution {
  color: red;
}

section {
  scroll-margin-top: clamp(20px, -130px + 19.53125vw, 120px)
}
.lace-frame {
  --lace-color: #b43be2;
  --corner-size: 56px;
  height: 100%;
  padding: 20px;
  position: relative;

  .lace-frame__inner {
    background: var(--color-white);
    border-radius: 20px;
    height: 100%;
    padding: 60px;
    position: relative;
    z-index: 10;
  }

  .lace-frame__corner {
    background: url(../../images/kuromeets-you/common/corner.svg) 50% / contain no-repeat;
    height: var(--corner-size);
    pointer-events: none;
    position: absolute;
    width: var(--corner-size);
    z-index: 3;
  }

  .lace-frame__corner--tl {
    left: 0;
    top: 0;
  }
  .lace-frame__corner--tr {
    right: 0;
    top: 0;
    transform: rotate(90deg);
  }
  .lace-frame__corner--br {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
  }
  .lace-frame__corner--bl {
    bottom: 0;
    left: 0;
    transform: rotate(270deg);
  }

  .lace-frame__line {
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }

  .lace-frame__line--bottom,
  .lace-frame__line--top {
    background-image: url(../../images/kuromeets-you/common/line.svg);
    background-size: auto 100%;
    height: var(--corner-size);
    left: var(--corner-size);
    right: var(--corner-size);
  }

  .lace-frame__line--top {
    background-repeat: round no-repeat;
    top: 0;
  }

  .lace-frame__line--bottom {
    background-repeat: round no-repeat;
    bottom: 0;
    transform: scaleY(-1);
  }

  .lace-frame__line--left,
  .lace-frame__line--right {
    background-image: url(../../images/kuromeets-you/common/line-v.svg);
    background-size: 100% auto;
    bottom: var(--corner-size);
    top: var(--corner-size);
    width: var(--corner-size);
  }

  .lace-frame__line--left {
    background-repeat: no-repeat round;
    left: 0;
    transform: scaleX(-1);
  }

  .lace-frame__line--right {
    background-repeat: no-repeat round;
    right: 0;
  }
  @media (max-width: 767px) {
    .lace-frame__inner {
      padding: 20px;
    }
  }
}

html {
  scroll-behavior: smooth;
}

.kuromeets-you {
  background-color: var(--color-navy);
  color: var(--color-black);
  .main-bg {
    max-width: 1400px;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;

    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 850px;
      bottom: 0;
      background-repeat: repeat-y;
      background-size: 100%;
      opacity: 0.7;
      width: calc(50vw - 380px);
      max-width: 300px;
    }
    
    &::before {
      left: 0;
      background-image: url("../../images/kuromeets-you/common/bg_pattern_left.png");
      background-position: top right;
    }

    &::after {
      right: 0;
      background-image: url("../../images/kuromeets-you/common/bg_pattern_right.png");
      background-position: top left;
    }

    @media (max-width: 767px) {
      &::before,
      &::after {
        top: 250px;
        width: 21vw;
      }
    }
  }
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;

  .hero-bg {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    > * {
      position: absolute;
    }

    .hero-title {
      width: 63.6%;
      max-width: 815px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .hero-lead {
      width: 54.45%;
      max-width: 697px;
      top: 35.23%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
    }

    .hero-mv {
      aspect-ratio: 870 / 1095;
      background: url("../../images/kuromeets-you/common/mv.png") center / contain no-repeat;
      height: auto;
      pointer-events: auto;
      user-select: none;
      -webkit-user-drag: none;
      width: 34%;
      max-width: 435px;
      top: 34%;
      left: 48.5%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .hero-period {
      left: 60.3%;
      top: 47.4%;
      width: 21%;
      z-index: 4;
    }
  }

  .hero-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    > * {
      position: absolute;
    }

    .item-fan {
      top: 26.3%;
      left: 11.4%;
      width: 16.93%;
    }
    .item-photo-frame {
      top: 48.3%;
      left: 21.2%;
      width: 14.06%;
    }
    .item-photo-spot {
      top: 65.5%;
      left: 15.35%;
      width: 17.81%;
      rotate: -28deg;
    }
    .item-sticker {
      top: 66%;
      left: 65.18%;
      width: 15%;
    }
  }

  .hero-logo {
    left: 29%;
    top: 80%;
    width: 18%;
    z-index: 1;
  }

  .hero-credit {
    position: absolute;
    top: 87.4%;
    left: 60.6%;
    width: 19.9%;
    max-width: 255px;
  }

  @media (max-width: 1024px) {
    .hero-content {
      .hero-lead {
        top: 34%;
        width: 60%;
      }

      .hero-period {
        left: 66%;
        top: 50%;
        width: 17%;
      }
    }
  }

  @media (max-width: 767px) {
    height: clamp(450px, 57.781px + 104.592vw, 860px);

    .hero-items {
      .item-fan {
        top: 47%;
        left: 2%;
        width: 26%;
      }
      .item-photo-frame {
        top: 78%;
        left: 67%;
        width: 23%;
      }
      .item-photo-spot {
        top: 65%;
        left: 8%;
        width: 31%;
      }
      .item-sticker {
        top: 61%;
        left: auto;
        width: 23%;
        right: 2%;
      }
    }
    .hero-content {
      .hero-title {
        width: 100%;
        top: 2%;
      }

      .hero-lead {
        top: 33%;
        width: 95%;
      }

      .hero-mv {
        top: 32%;
        width: 65%;
      }

      .hero-period {
        top: 45%;
        width: 33%;
        left: auto;
        right: 3%;
      }
    }

    .hero-logo {
      left: 20%;
      top: 86%;
      width: 30%;
      z-index: 1;
    }

    .hero-credit {
      left: auto;
      top: auto;
      width: 56%;
      right: 5%;
      bottom: 1%;
    }
  }
}

/* Navigation */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  margin: clamp(-70px, 50px - 9.375vw, -30px) auto 83px;
  width: 100%;
  z-index: 10;
  max-width: 840px;

  .nav-btn {
    display: grid;
    grid-template-columns: 1fr 20px;
    align-items: center;
    gap: 5px;
    position: relative;
    flex: 1;
    height: 65px;
    background: linear-gradient(180deg, var(--color-purple) 0%, #8124a6 100%);
    border-radius: 10px;
    box-shadow: 3px 3px 0px 0px #b86ad7;
    color: var(--color-white);
    font-weight: 800;
    font-size: clamp(12px, 8.685px + 0.884vw, 20px);
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 5px;
    transition: 0.3s ease;

    &::before {
      content: "";
      position: absolute;
      top: 5px;
      right: 5px;
      bottom: 5px;
      left: 5px;
      border: 2px dashed rgba(255, 255, 255, 0.5);
      border-radius: 5px;
      pointer-events: none;
    }

    .nav-icon {
      width: 20px;
      height: 20px;
    }
  }

  .nav-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  @media (max-width: 767px) {
    transform: none;
    gap: 5px;
    flex-wrap: nowrap;
    margin: 10px -10px;
    width: calc(100% + 20px);
    .nav-btn {
      padding: 0 10px;
      flex: 1;
      width: 30%;
      grid-template-columns: 1fr 15px;
      &::after {
        border: 1px dashed rgba(255, 255, 255, 0.5);
      }
      .nav-icon {
        width: 15px;
        height: 15px;
      }
    }
  }
}

/* ===========================
   Sections General
   =========================== */
.section-wrap {
  margin-top: clamp(10px, -19.006px + 7.735vw, 80px);

  .section-title {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;

    img {
      width: 100%;
      height: auto;
      max-width: 626px;
    }
  }
}

.js-enabled {
  .hero-sequence-item {
    opacity: 0;
    translate: 0 28px;
    will-change: opacity, translate;
  }

  &.hero-sequence-ready {
    .hero-sequence-item {
      animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: var(--hero-delay, 0s);
    }

    .hero-items .hero-sequence-item {
      animation:
        heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        heroFloat 3.3s ease-in-out calc(var(--hero-delay, 0s) + 0.95s) infinite alternate;
    }

    .hero-items .item-photo-frame {
      animation-duration: 0.85s, 3.9s;
    }

    .hero-items .item-water-balloon {
      animation-duration: 0.85s, 2.8s;
    }

    .hero-items .item-matsuri-uchiwa {
      animation-duration: 0.85s, 3.6s;
    }

    .hero-items .item-candy-apple {
      animation-duration: 0.85s, 3.1s;
    }

    .hero-items .item-photo-spot {
      animation-duration: 0.85s, 4.1s;
    }

    .hero-items .item-sticker {
      animation-duration: 0.85s, 3.3s;
    }
    @media (max-width: 767px) {
      .hero-sequence-item,
      .hero-items .hero-sequence-item {
        opacity: 1;
        animation: none;
        translate: 0;
      }
    }
  }
  .reveal-section {
    opacity: 0;
    transform: translateY(36px);
    transition:
      opacity 0.75s ease,
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
    @media (max-width: 767px) {
      opacity: 1;
    }
  }

  .reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    translate: 0 28px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes heroFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

/* ===========================
   Giveaway Section
   =========================== */
.giveaway-section {
  position: relative;
  padding-top: 35px;

  .section-title {
    left: 50%;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: 11;
    @media (max-width: 767px) {
      top: 20px;
    }
  }
}

.giveaway-content {
  text-align: center;

  .giveaway-text {
    margin: 25px auto 35px;
    position: relative;

    p {
      position: relative;
      z-index: 2;
      color: var(--color-black);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.55;
      margin: 0;
      text-align: center;
      text-wrap: balance;
      text-shadow:
        1px 1px 0 #fff,
        -2px -2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        0px 2px 0 #fff,
        0 -2px 0 #fff,
        -2px 0 0 #fff,
        2px 0 0 #fff;
    }

    .giveaway-intro-fan {
      position: absolute;
      left: 0%;
      top: -38%;
      width: 27%;
      z-index: 1;
    }

    .giveaway-text__highlight {
      background: linear-gradient(transparent 56%, rgba(213, 140, 241, 0.45) 56%);
      font-size: 25px;
      line-height: 1;
      padding-bottom: 5px;
    }

    .giveaway-text__highlight--small {
      font-size: 20px;
    }
  }

  .how-to-use {
    margin: 0 auto 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
    position: relative;
    .how-to-use-heading__lead {
      color: var(--color-purple);
      font-size: clamp(20px, 3vw, 33px);
      font-weight: 800;
      line-height: 1.15;
      margin: 0;
    }
    .how-to-use-title {
      color: var(--color-purple);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.2;
      background: var(--color-white);
      font-size: clamp(16px, 14.343px + 0.442vw, 20px);
      font-weight: 800;
      left: 50%;
      line-height: 1.45;
      padding: 0 12px;
      position: absolute;
      top: 0;
      transform: translate(-50%, -55%);
      white-space: nowrap;
    }

    .steps-container {
      position: relative;
      width: 100%;
      z-index: 2;
      background: var(--color-white);
      border: 5px dotted var(--color-purple);
      border-radius: 12px;
      padding: 28px clamp(20px, 11.713px + 2.21vw, 40px) 0;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .step-img-box {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin: 0 auto;
      width: 100%;
      gap: 40px;
      text-align: left;
      font-size: 13px;
      line-height: 1.5em;

      img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 5px;
      }
    }

    .how-to-use-note {
      font-size: 13px;
      color: var(--color-dark-gray);
      text-align: left;
      width: 100%;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
      ul {
        margin: 20px 0;
        li {
          margin-bottom: 10px;
          list-style: none;
          text-indent: -0.5em;
          margin-left: 0.5em;
          &:last-child {
            margin-bottom: 0px;
          }
        }
      }
    }

    .ar-demo-box {
      width: 176px;
      z-index: 3;
      flex-shrink: 0;

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

  .sns-follow {
    text-align: center;
    margin-top: 0;

    .sns-follow-title {
      align-items: center;
      display: inline-flex;
      flex-direction: column;
      gap: 16px;
      justify-content: center;
      margin: auto;

      .follow-text {
        color: var(--color-purple);
        font-size: clamp(18px, 3vw, 33px);
        font-weight: 800;
        line-height: 1.2;
        margin: 0;
        text-align: center;
        text-wrap: balance;
      }

      .follow-plus {
        flex: 0 0 auto;
        width: 54px;
        height: auto;
        margin-top: -6px;
      }
    }

    .sns-box {
      padding: 12px 34px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;

      .sns-box-text {
        align-items: center;
        display: flex;
        gap: 24px;
        justify-content: center;
        width: 100%;

        .box-desc {
          color: var(--color-dark-gray);
          font-size: 14px;
          font-weight: 700;
          line-height: 1.85;
          margin: 0;
          max-width: 498px;
          text-align: left;
        }

        .sticker-demo {
          flex: 0 0 auto;
          width: 165px;
          max-width: 100%;
        }
      }

      .sns-links-box {
        background-color: #f9eaff;
        border-radius: 10px;
        padding: 15px;
        .sns-links-title {
          font-size: 12px;
          font-weight: 700;
          margin-bottom: 10px;
        }
      }

      .sns-store-link {
        align-items: center;
        background: linear-gradient(180deg, var(--color-pink) 0%, #d83f8d 100%);
        border-radius: 10px;
        box-sizing: border-box;
        color: var(--color-white);
        display: inline-flex;
        gap: 5px;
        font-size: 20px;
        font-weight: 700;
        justify-content: center;
        margin: 20px auto 4px;
        padding: 24px 0;
        position: relative;
        text-align: center;
        text-decoration: none;
        width: min(100%, 430px);
        transition: 0.3s ease;
        line-height: 1.2;

        &::before {
          border: 2px dashed rgba(255, 255, 255, 0.5);
          border-radius: 5px;
          bottom: 5px;
          content: "";
          left: 5px;
          pointer-events: none;
          position: absolute;
          right: 5px;
          top: 5px;
        }

        &:hover {
          opacity: 0.9;
          transform: translateY(-1px);
        }

        .sns-store-link__icon {
          height: 18px;
          width: 18px;
        }
      }
      .sns-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;

        .sns-link-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 10px;
          width: 170px;

          img.qr {
            display: block;
            width: 110px;
            height: 110px;
          }

          img.btn {
            display: block;
            width: 150px;
            height: 40px;
          }
        }
      }
    }
  }

  @media (max-width: 767px) {
    .section-title {
      margin-bottom: -42px;
    }

    .lace-frame {
      padding-top: 38px;
    }

    .giveaway-text {
      margin: clamp(0px, -28.699px + 7.653vw, 30px) 0;

      .giveaway-intro-fan {
        margin: auto;
        position: relative;
        top: 0;
        width: 100%;
        max-width: 300px;
      }

      p {
        font-size: 17px;
        line-height: 1.5;
        margin-top: -100px;
      }

      .giveaway-text__highlight {
        font-size: 22px;
      }

      .giveaway-text__highlight--small {
        font-size: 18px;
      }
    }

    .how-to-use {
      border-radius: 16px;
      padding: 20px 0;
      gap: 20px;
      margin-bottom: 0;

      .how-to-use-heading__lead {
        font-size: 24px;
      }

      .steps-container {
        margin-top: 20px;
        padding: 20px 20px 0;
      }

      .step-img-box {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .how-to-use-note {
        font-size: 11px;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
      }

      .ar-demo-box {
        margin: auto;
        max-width: 300px;
        position: static;
        width: 100%;
      }
    }

    .sns-follow {
      .sns-follow-title {
        margin-bottom: 18px;
        display: flex;
        flex-direction: column;
        gap: 10px;

        .follow-plus {
          margin-top: 0;
        }
      }

      .sns-box {
        gap: 22px;
        padding: 0;
        .sns-links-box {
          .sns-links-title {
            margin-bottom: 10px;
          }
        }

        .sns-box-text {
          flex-direction: column;
          gap: 18px;

          .box-desc {
            font-size: 13px;
            line-height: 1.7;
            max-width: 100%;
          }

          .sticker-demo {
            width: 100%;
            max-width: 300px;
          }
        }

        .sns-links {
          gap: 20px 10px;
        }

        .sns-store-link {
          font-size: 14px;
          margin-top: 0px;
          min-height: 52px;
          padding: 0 18px;
          width: 100%;
        }
      }
    }
  }
}

/* ===========================
   Photo Spots Section
   =========================== */
.photospots-section {
  position: relative;
  padding-top: 35px;

  .section-title {
    left: 50%;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: 11;
  }
  .photo-spot-intro {
    align-items: center;
    display: flex;
    gap: 36px;
    justify-content: center;
    margin: 5px auto 45px;
    max-width: 780px;

    img {
      display: block;
      height: auto;
      max-width: 100%;
    }

    .intro-text {

      .intro-title {
        color: var(--color-purple);
        font-size: clamp(17px, 2.5vw, 25px);
        font-weight: 800;
        line-height: 1.5;
        margin: 0;
      }

      .intro-note {
        color: var(--color-black);
        font-size: 13px;
        line-height: 1.62;
        margin: 24px 0 0;
      }
    }

    .intro-img {
      flex: 0 0 324px;
      max-width: 324px;
    }
  }

  .store-maps {
    background: var(--color-white);
    border: 5px dotted var(--color-pink);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px clamp(20px, 7.569px + 3.315vw, 50px);
    justify-content: center;
    padding: 45px 40px 35px;
    position: relative;

    .store-maps-title {
      background: var(--color-white);
      color: var(--color-pink);
      font-size: clamp(16px, 14.343px + 0.442vw, 20px);
      font-weight: 800;
      left: 50%;
      line-height: 1.45;
      padding: 0 12px;
      position: absolute;
      top: 0;
      transform: translate(-50%, -55%);
      white-space: nowrap;
    }

    .store-map-box {
      font-size: 13px;
      margin-bottom: 0;

      .store-map-trigger {
        background: rgba(255, 255, 255, 0);
        border: 0;
        border-radius: 12px;
        box-shadow: 0 0 0 rgba(234, 83, 161, 0);
        cursor: pointer;
        display: block;
        font: inherit;
        padding: 10px;
        text-align: left;
        transition:
          background-color 0.2s ease,
          box-shadow 0.2s ease;
        width: 100%;
        color: var(--color-black);

        &:hover {
          background: rgba(249, 234, 255, 0.8);
          box-shadow: 0 10px 24px rgba(234, 83, 161, 0.12);
        }

        &:focus-visible {
          box-shadow: 0 0 0 4px rgba(234, 83, 161, 0.22);
          outline: none;
        }

        p {
          font-weight: 400;
          margin-bottom: 0.5em;
        }

        .store-name {
          border-bottom: solid 2px var(--color-pink);
          color: var(--color-pink);
          font-weight: 700;
          padding-bottom: 5px;
        }

        .store-floor {
          font-weight: 700;
        }

        img {
          display: block;
          height: auto;
          width: 100%;
        }
      }
    }
  }

  @media (max-width: 900px) {
    .section-title {
      top: 0;
    }

    .photo-spot-intro {
      gap: 24px;
      max-width: 100%;

      .intro-img {
        flex-basis: 280px;
      }
    }

    .store-maps {
      padding: 40px 24px 24px;
      gap: 24px;
    }
  }

  @media (max-width: 767px) {
    .section-title {
      top: 20px;
    }

    .lace-frame .lace-frame__inner {
      padding: 20px;
    }

    .photo-spot-intro {
      flex-direction: column;
      gap: 18px;
      margin: clamp(10px, -47.398px + 15.306vw, 70px) auto 10px;

      .intro-text {
        flex-basis: auto;
        max-width: 100%;
        padding-top: 0;
      }

      .intro-title {
        line-height: 1.45;
        text-align: center;
      }

      .intro-note {
        font-size: 12px;
        margin-top: 16px;
      }

      .intro-img {
        flex: none;
        max-width: 262px;
      }
    }

    .store-maps {
      grid-template-columns: 1fr;
      border-radius: 10px;
      padding: 10px 5px;
      margin-top: 20px;
      gap: 10px;

      .store-map-box {
        width: 100%;
        max-width: unset;
      }
    }
  }
}

/* ===========================
   Info Panels
   =========================== */
.info-panel {
  background: var(--color-white);
  border-radius: 20px;
  border-style: solid;
  border-width: 8px;
  margin-top: 80px;
  padding: 22px 34px 38px;
  position: relative;
  text-align: center;

  &::before {
    border-radius: 12px;
    content: "";
    inset: 35px;
    pointer-events: none;
    position: absolute;
  }

  .info-panel__title {
    background: var(--color-white);
    display: inline-block;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    padding: 0 0.4em;
    position: relative;
    z-index: 1;
  }

  .info-panel__body {
    color: var(--color-black);
    padding: 0 40px 40px;
    position: relative;
    text-align: left;
    z-index: 1;
  }

  @media (max-width: 767px) {
    margin-top: 40px;
    border-width: 6px;
    padding: 25px 20px 20px;

    &::before {
      inset: 10px;
    }

    .info-panel__title {
      img {
        width: 20px;
        height: auto;
      }
    }

    .info-panel__body {
      padding: 0 0 10px;
    }
  }

  &.info-panel--pink {
    border-color: var(--color-pink);

    &::before {
      border: 5px dotted var(--color-pink);
    }

    .info-panel__title {
      color: var(--color-pink);
    }
  }

  &.info-panel--blue {
    border-color: var(--color-blue);

    &::before {
      border: 5px dotted #46afd7;
    }

    .info-panel__title {
      color: var(--color-blue);
    }
  }
}

/* ===========================
   Stores Section
   =========================== */
.stores-section {
  .stores-title {
    margin-bottom: 12px;
  }

  .stores-photo-label {
    align-items: center;
    color: var(--color-black);
    display: inline-flex;
    font-size: 13px;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    width: 100%;
    @media (max-width: 767px) {
      width: 97%;
    }

    img {
      height: 20px;
      width: 24px;
    }
  }

  .store-names {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17em, 1fr));
    font-size: clamp(14px, 2vw, 18px);
    gap: 1.5em 0;
    font-weight: 400;
    list-style: none;
    margin: 0;
    padding: 0;

    li {
      padding-left: 1em;
      position: relative;
      &:last-child {
        margin-bottom: 0;
      }
      &::before {
        color: var(--color-pink);
        content: "・";
        left: 0;
        font-weight: 800;
        position: absolute;
        top: 0;
      }
    }

    .store-camera-icon {
      height: 24px;
      vertical-align: middle;
      width: 29px;
    }
  }

  @media (max-width: 767px) {
    .stores-title {
      margin-bottom: 10px;
    }

    .stores-photo-label {
      font-size: 12px;
      gap: 6px;

      img {
        height: 16px;
        width: 20px;
      }
    }

    .store-names {
      .store-camera-icon {
        height: 18px;
        margin-left: 0px;
        width: 22px;
      }
    }
  }
}

/* ===========================
   Sanrio Stores Section
   =========================== */
.sanrio-stores-section {
  .stores-title {
    margin-bottom: 30px;
  }

  .store-names {
    display: grid;
    font-size: clamp(14px, 2vw, 18px);
    gap: 1.5em 0;
    font-weight: 400;
    list-style: none;
    margin: 20px auto;
    padding: 0;
    width: min(100%, 620px);
    li {
      position: relative;
      .store-link {
        align-items: center;
        background: linear-gradient(180deg, var(--color-pink) 0%, #d83f8d 100%);
        border-radius: 10px;
        box-sizing: border-box;
        color: var(--color-white);
        display: flex;
        gap: 5px;
        font-size: 20px;
        font-weight: 700;
        justify-content: space-between;
        padding: 20px;
        position: relative;
        text-align: center;
        text-decoration: none;
        transition: 0.3s ease;
        line-height: 1.2;
        span {
          width: 100%;
        }

        &::before {
          border: 2px dashed rgba(255, 255, 255, 0.5);
          border-radius: 5px;
          bottom: 5px;
          content: "";
          left: 5px;
          pointer-events: none;
          position: absolute;
          right: 5px;
          top: 5px;
        }

        &:hover {
          opacity: 0.9;
          transform: translateY(-1px);
        }

        .store-link__icon {
          height: 18px;
          width: 18px;
        }
      }
      &:last-child {
        margin-bottom: 0;
      }
    }

  }

  @media (max-width: 767px) {
    .stores-title {
      margin-bottom: 20px;
    }
    & .store-names {
      margin: 0 auto;
      gap: 1em 0;
      & li {
        .store-link {
          font-size: 14px;
        }
      }
    }
  }
}


/* ===========================
   Notes Section
   =========================== */
.notes-section {
  .notes-content {
    font-size: 15px;
    line-height: 1.55;
    .notes-group {
      margin-bottom: 22px;
      &:last-of-type {
        margin-bottom: 0;
      }
    }

    h3 {
      display: flex;
      color: var(--color-blue);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.3;
      margin: 0 0 6px;
      position: relative;

      &::before {
        color: var(--color-blue);
        content: "・";
        margin-right: 3px;
        font-weight: 800;
      }
    }

    ul {
      list-style: none;
      margin: 0 0 0 1em;
      padding: 0 0 0 18px;
    }

    li {
      margin: 0 0 4px;
      position: relative;

      &::before {
        content: "*";
        left: -14px;
        position: absolute;
        top: 3px;
      }
    }
    .notes-fan {
      padding: 0 0 0 10px;
      li {
        &::before {
          content: none;
        }
      }
    }

    .notes-subheading {
      color: var(--color-black);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.35;
      margin: 8px 1em 4px;
    }

    .notes-browser {
      margin: 0;
      padding-left: 18px;
    }
  }

  @media (max-width: 900px) {
    .notes-content {
      font-size: 14px;
    }
  }

  @media (max-width: 767px) {
    .notes-content {
      font-size: 13px;
      line-height: 1.5;

      .notes-group {
        margin-bottom: 18px;
      }

      h3 {
        font-size: 16px;
      }

      .notes-subheading {
        font-size: 15px;
      }
    }
  }
}

.page-top-button {
  align-items: center;
  background: linear-gradient(180deg, var(--color-purple) 0%, #8124a6 100%);
  border: 0;
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 3px 3px 0 0 #b86ad7;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  text-align: center;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.2s ease;
  z-index: 30;

  &::before {
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    bottom: 5px;
    content: "";
    left: 5px;
    pointer-events: none;
    position: absolute;
    right: 5px;
    top: 5px;
  }

  &.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  &:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .page-top-button__label {
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
  }

  .page-top-button__icon {
    height: 16px;
    transform: rotate(-90deg);
    width: 16px;
  }

  @media (max-width: 767px) {
    bottom: 18px;
    min-height: 52px;
    padding: 0 16px;
    right: 16px;

    .page-top-button__label {
      font-size: 13px;
    }
  }
}

.store-map-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease;
  z-index: 40;

  &.is-open {
    opacity: 1;
    pointer-events: auto;

    .store-map-modal__dialog {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  .store-map-modal__backdrop {
    background: rgba(27, 14, 36, 0.72);
    inset: 0;
    position: absolute;
  }

  .store-map-modal__dialog {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(24, 14, 34, 0.28);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 50%;
    max-height: min(86vh, 960px);
    max-width: min(92vw, 980px);
    opacity: 0;
    overflow: auto;
    padding: 18px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
    width: calc(100% - 32px);
  }

  .store-map-modal__close {
    position: absolute;
    top: 0;
    right: 10px;
    align-items: center;
    background: var(--color-pink);
    border: solid 10px var(--color-white);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 28px;
    width: 50px;
    height: 50px;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    margin-left: 16px;
  }

  .store-map-modal__meta {
    align-self: start;
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 10px;
  }

  .store-map-modal__name {
    padding-bottom: 5px;
    color: var(--color-pink);
    border-bottom: 2px solid var(--color-pink);
    font-size: clamp(20px, 2.4vw, 24px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .store-map-modal__floor {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 6px;
  }

  .store-map-modal__note {
    color: var(--color-dark-gray);
    font-size: 13px;
    line-height: 1.6;
  }

  .store-map-modal__image {
    display: block;
    grid-column: 1 / -1;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }

  @media (max-width: 767px) {
    .store-map-modal__dialog {
      border-radius: 16px;
      padding: 14px;
      width: 90%;
    }

    .store-map-modal__close {
      font-size: 24px;
      height: 38px;
      width: 38px;
    }

    .store-map-modal__name {
      font-size: 20px;
    }

    .store-map-modal__floor {
      font-size: 14px;
    }

    .store-map-modal__note {
      font-size: 12px;
    }
  }
}

/* ===========================
   only for english page
   =========================== */
.en .kuromeets-you {
  font-family: "LINE Seed JP", sans-serif;
  .nav-buttons {
    .nav-btn {
      font-size: clamp(10px, 7.099px + 0.773vw, 17px);
    }
  }
  .hero {
    @media (max-width: 767px) {
      & .hero-content {
        .hero-lead {
          width: 100%;
        }
      }
    }
  }
}

