:root {
  --white: #ffffff;
  --text: #6c6c6c;
  --line: #8ec7e5;
  --pink: #dda7d8;
  --header-h-pc: 70px;
  --header-h-sp: 50px;
  --main-blue: #008fd3;
  --shop-card-w-sp: 148px;
  --font-en: "pacaembu", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  background: var(--white);
}
main {
  overflow: hidden;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.85;
}

body.menu-open {
  overflow: hidden;
}

.no-link {
  pointer-events: none;
}

.text-v-cnt {
  display: flex;
  align-items: center;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-h-pc);
  background: #fff;
  border-bottom: 1px solid #dbe7ef;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    visibility 0.32s ease;
}

.site-header-inner {
  position: relative;
  width: 100%;
  padding: 10px 35px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header-logos {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  width: 100%;
  height: auto;
}

.lalaport-logo {
  width: 114.354px;
  margin-right: 39px;
}

.mitsui-logo {
  width: 182.14px;
}

.site-nav {
  /* position: absolute;
  top: 50%;
  left: clamp(330px, 32.2108vw, 440px); */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(15px, 3.4641vw, 30px);
  /* transform: translateY(-50%); */
}

.site-header-logos,
.site-nav,
.menu-toggle {
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    visibility 0.32s ease;
}

body.sns-reached .site-header-logos,
body.sns-reached .site-nav,
body.sns-reached .menu-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

body.sns-reached .site-header {
  background: transparent;
  border-bottom: 0;
}

.site-nav a {
  font-family: var(--font-en);
  position: relative;
  font-style: normal;
  color: #3fbef0;
  font-size: clamp(12px, 1.1713vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0;
  white-space: nowrap;
}

.site-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: clamp(15px, 1.4641vw, 20px);
  right: calc(clamp(15px, 1.9641vw, 35px) / -2);
  top: 50%;
  vertical-align: middle;
  background: #3fbef0;
  transform: translateY(-50%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: #7f878f;
}

.tb-br {
  display: none;
}

.sp-br {
  display: none;
}

.sp-cont {
  display: none;
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
  background: linear-gradient(
    180deg,
    #95ceef 9.46%,
    #faf7c4 29.92%,
    #eacadc 71.27%
  );
}

.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-menu-inner {
  position: relative;
  z-index: 1;
  height: 100dvh;
  padding: 50px 36px 42px;
  display: flex;
  flex-direction: column;
}

.sp-menu-label {
  width: 89px;
}

.sp-menu-nav {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.sp-menu-nav a {
  color: #00a0e2;
  font-size: clamp(24px, 7.2vw, 46px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-family: var(--font-en);
  position: relative;
  padding-left: clamp(24px, 6.67vw, 50px);
}

.sp-menu-nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: clamp(14px, 4vw, 30px);
  height: 1px;
  background-color: #00a0e2;
}

.sp-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 5;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sp-menu-close::before,
.sp-menu-close::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 1px;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
}

.sp-menu-close::before {
  transform: rotate(45deg);
}

.sp-menu-close::after {
  transform: rotate(-45deg);
}

.sp-menu-20th-logo {
  width: min(190px, 52vw);
  margin-top: auto;
}

.container {
  width: 1000px;
  margin: 0 auto;
}

.section-title {
  width: 100%;
}

.section-copy {
  margin-top: 70px;
  text-align: center;
  font-size: 28px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 1.4px;
}

.section-bg-sky {
  background-color: #b0e4f8;
}

.section-bg-white {
  background: var(--white);
}

.hero {
  position: relative;
  scroll-margin-top: var(--header-h-pc);
  width: 100%;
  height: auto;
  min-height: 0;
  margin-top: var(--header-h-pc);
  aspect-ratio: 1366 / 1200;
  background-image: url(../images/20th-kv-pc.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
}

.hero-anniversary-logo {
  position: absolute;
  top: 5.75%;
  /* left: 28.92%; */
  left: 50%;
  transform: translateX(-50%);
  width: 42.39%;
  max-width: 570px;
  margin: 0;
}

.hero-anniversary-logo::before {
  content: "";
  position: absolute;
  top: -45px;
  left: -400px;
  width: 350px;
  height: 580px;
  background-image: url(../images/fv-fw-lft.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-anniversary-logo::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -400px;
  width: 350px;
  height: 580px;
  background-image: url(../images/fv-fw-rgt.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-anniversary-logo img,
.hero-slogan img {
  width: 100%;
  height: auto;
}

.hero-slogan {
  /* position: absolute; */
  /* top: 25.83%; */
  /* left: 32.5%; */
  /* left: 50%;
  transform: translateX(-50%);
  width: 35.07%; */
  display: block;
  margin: 20px auto 0 auto;
  width: 80%;
  max-width: 470px;
}

.anniversary-message {
  position: relative;
  z-index: 2;
  height: 100px;
  margin-top: -120px;
  color: #fff;
  text-align: center;
}

.anniversary-message p {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
}

.anniversary-message p::before {
  content: "";
  position: absolute;
  top: 0;
  left: -400px;
  width: 190px;
  height: 350px;
  background-image: url(../images/anniversary-message-fw-lft.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.anniversary-message p::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -400px;
  width: 300px;
  height: 300px;
  background-image: url(../images/anniversary-message-fw-rgt.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.anniversary-message-line {
  display: block;
}

.special-contents {
  display: flow-root;
  position: relative;
  z-index: 1;
  min-height: 1145px;
  overflow-x: clip;
  overflow-y: visible;
  background: none;
}

.special-contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 90px;
  right: 0;
  bottom: 220px;
  left: 0;
  border-radius: 150px;
  background: rgba(255, 255, 255, 0.4);
}

.special-contents::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    url(../images/special-firework-pc-blue-top.svg) calc(50% + 407px) 0 / 127px
      127px no-repeat,
    url(../images/special-firework-pc-pink-top.svg) calc(50% + 533px) 100px /
      94px 94px no-repeat,
    url(../images/special-firework-pc-pink-left.svg) calc(48% - 464px) 790px /
      75px 74px no-repeat,
    url(../images/special-firework-pc-pink-bottom.svg) calc(40% - 30px) 870px /
      165px 114px no-repeat,
    url(../images/special-firework-pc-blue-left.svg) calc(50% - 631px) 820px /
      160px 160px no-repeat;
}

.special-contents-inner {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 155px;
}

.special-heading {
  width: 460px;
  height: 154px;
  margin: 0 auto;
  background: none;
}

.special-heading picture,
.special-heading img {
  display: block;
  width: 100%;
  height: 100%;
}

.special-carousel {
  position: relative;
  margin-top: 56px;
  --special-card-height: clamp(390px, calc(530px - 10.25vw), 432px);
}

.special-carousel-viewport {
  position: relative;
  width: 100%;
  height: var(--special-card-height);
}

.special-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.special-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(800px, 58.57vw);
  height: var(--special-card-height);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) scale(0.75);
  transition:
    left 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: left, opacity, transform;
}

.special-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 101.5%;
  height: 103.08%;
  background: url(../images/special-card-frame-pc.svg) center / 100% 100%
    no-repeat;
  transform: translate(-50%, -50%);
}

.special-card.is-active,
.special-card.is-prev,
.special-card.is-next,
.special-card.is-off-prev,
.special-card.is-off-next {
  visibility: visible;
}

.special-card.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.special-card.is-prev,
.special-card.is-next {
  z-index: 1;
  opacity: 0.4;
}

.special-card.is-prev {
  left: calc(50% - 530px);
  transform: translateX(-50%) scale(0.75);
}

.special-card.is-next {
  left: calc(50% + 533px);
  transform: translateX(-50%) scale(0.75);
}

.special-card.is-off-prev,
.special-card.is-off-next {
  z-index: 0;
  opacity: 0;
}

.special-card.is-off-prev {
  left: calc(50% - 1060px);
}

.special-card.is-off-next {
  left: calc(50% + 1066px);
}

.special-card.is-resetting {
  transition: none;
}

.special-card-number {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: calc(50% - 8px);
  color: #3fbef0;
  font-family: "Poller One", var(--font-en);
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
}

.special-card-inner {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: clamp(160px, 15.3734vw, 210px) minmax(0, 1fr);
  gap: clamp(20px, 2.5622vw, 35px);
  padding: 25px clamp(35px, 4.0264vw, 55px) 51px;
  background: transparent;
}

.special-card-image {
  position: relative;
  top: 14px;
  left: 5px;
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  place-items: center;
  background: #fff;
}

.special-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.special-card:nth-child(2) .special-card-image img {
  width: 82%;
  height: 82%;
}

.special-card-body {
  position: static;
  width: auto;
  min-width: 0;
  padding: 18px 0 54px;
}

.special-card-body h3 {
  min-height: 65px;
  padding-left: 12px;
  border-left: 8px solid #3fbef0;
  color: #3fbef0;
  font-size: 18px;
  font-weight: 900;
  line-height: 26px;
}

.special-card-body h3 strong,
.special-card:nth-child(n + 2) .special-card-body h3 {
  font-size: 26px;
  /* display: flex;
  align-items: center; */
}

.special-card-body h3 small {
  font-size: 18px;
}

.special-card-date {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: #3fbef0;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.special-card-date .special-card-weekday {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 22px;
  margin: 3px 4px 0;
  object-fit: contain;
}

.special-card-copy {
  margin-top: 14px;
  color: #6c6c6c;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: justify;
}

.special-card-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}

.special-card-more {
  position: absolute;
  top: auto;
  right: auto;
  bottom: clamp(30px, 3.3vw, 45px);
  left: clamp(320px, 32.3572vw, 442px);
  width: 150px;
  height: auto;
  line-height: 0;
}

.special-card-more a {
  display: block;
  width: 100%;
  height: auto;
}

.special-card-more img {
  display: block;
  width: 100%;
  height: auto;
}

.special-arrow {
  position: absolute;
  z-index: 5;
  top: 170px;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #8dccf0, #e5a7d4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

.special-arrow-prev {
  left: calc(50% - 430px);
  opacity: 0.6;
  /* background-image:
    url(../images/btn-slider-left.svg),
    linear-gradient(135deg, #8dccf0, #e5a7d4); */
}

.special-arrow-next {
  right: calc(50% - 430px);
  opacity: 0.6;
  /* background-image:
    url(../images/btn-slider-right.svg),
    linear-gradient(135deg, #8dccf0, #e5a7d4); */
}

.special-arrow:focus-visible,
.special-pagination button:focus-visible {
  outline: 3px solid #008fd3;
  outline-offset: 3px;
}

.special-pagination {
  display: flex;
  height: 30px;
  margin-top: 28px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.special-pagination button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #80c9ed;
  cursor: pointer;
}

.special-pagination button.is-active {
  background: #eb6893;
}

.fade-up {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--fade-delay, 0ms);
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.shop-group:not(.is-heading-visible) .shop-grid .shop-card.fade-up {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .special-card,
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .special-card {
    opacity: 0;
    transform: translateX(-50%) scale(0.75);
  }

  .special-card.is-active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  .special-card.is-prev,
  .special-card.is-next {
    opacity: 0.4;
  }
}

.intro {
  scroll-margin-top: var(--header-h-pc);
  padding: 20px 0 135px;
  background: linear-gradient(
    to bottom,
    #f9f8c8 0%,
    #fffedf 40%,
    #55bbe3 100%,
    #caf0ff 100%,
    #caf0ff 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.intro-before-inner {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
}

.intro-before-inner:before {
  content: "";
  position: absolute;
  background-image: url(../images/intro-fw-lft.svg);
  width: 190px;
  height: 350px;
  background-size: contain;
  background-repeat: no-repeat;
  top: -50px;
  left: 0;
}

.intro-before-inner::after {
  content: "";
  position: absolute;
  background-image: url(../images/intro-fw-rgt.svg);
  width: 255px;
  height: 255px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 250px;
  right: 0;
}

.intro-inner {
  text-align: center;
}

.intro .lead {
  margin: 0 auto;
  font-size: 24px;
  line-height: 50px;
  color: var(--main-blue);
  font-weight: 500;
  letter-spacing: 1.2px;
}

.logo-placeholder {
  margin: 80px auto 0 auto;
}

.logo-placeholder img {
  margin: 0 auto;
  max-width: 266px;
}

.sec-news-card {
  padding-top: 20px;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.news-card {
  position: relative;
  margin: 100px auto 0 auto;
  width: 80%;
  background: #fff;
  border-radius: 20px;
  padding: 23px 40px;
  box-shadow: 0 8px 24px rgba(55, 95, 120, 0.12);
  display: flex;
  align-items: center;
}

.news-label {
  margin: 0;
  color: #36b2ea;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  width: 22%;
  padding-left: 10px;
  text-align: left;
}

.news-content {
  text-align: left;
  width: 78%;
}

.news-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-card li {
  border-bottom: 0.5px solid #3fbef0;
  max-height: 240px;
  overflow: hidden;
  opacity: 1;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    border-color 0.25s ease;
}

.news-card li a {
  display: block;
  padding: 15px 0 10px 0;
  transition: padding 0.35s ease;
}

.news-card li.is-collapsed {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.news-card li.is-collapsed a {
  padding-top: 0;
  padding-bottom: 0;
}

.news-card .datetime {
  display: block;
  color: #3fbef0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  font-family: var(--font-en);
}

.news-card li span {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.news-card li:last-child,
.news-card li.is-last-visible {
  border-bottom: 0;
}

.news-more {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  margin: 14px 0 0 auto;
  padding: 0 20px 0 0;
  border: 0;
  background: transparent;
  color: #3fbef0;
  font-size: 12px;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.news-more:focus-visible {
  outline: 2px solid #3fbef0;
  outline-offset: 4px;
}

.news-more::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  top: 50%;
  right: 0;
  background-image: url(../images/icon-viewmore.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.news-more.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.new-shop {
  background: none;
  padding: 45px 0 165px 0;
}

#new-shop {
  padding-top: 100px;
  margin-top: 230px;
}

.section {
  position: relative;
  z-index: 0;
}

.new-shop.section--services::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -55px;
  right: 0;
  bottom: auto;
  left: 0;
  height: 4300px;
  pointer-events: none;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 8%,
      rgb(202, 240, 255) 16%,
      rgba(176, 228, 248, 0.745098) 95%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgb(104, 197, 221) 0%,
      rgb(149, 206, 239) 31.4%,
      rgb(149, 206, 239) 100%
    );
  background-repeat: no-repeat;
  background-position:
    center 0,
    center 0;
  background-size:
    100% 4300px,
    100% 4300px;
}

.new-shop.section--services::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(100% - 230px);
  left: 0;
  right: 0;
  height: 1600px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(101, 198, 222, 0) 0%,
    rgb(250, 247, 196) 30.115384%,
    rgb(236, 205, 219) 54.807693%,
    rgb(236, 205, 219) 59%,
    rgb(149, 206, 239) 90%
  );
}

.event .event-note-top {
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
}

.shop-group {
  margin-top: 75px;
}

.shop-group.shop-group-fashion {
  margin-top: 25px;
}

.shop-group h3 {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 15px 40px;
  background: linear-gradient(90deg, #72c5ef 0%, #a9c5e6 55%, #d7a8d5 100%);
  color: #fff;
  text-align: left;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.shop-group h3 span {
  font-size: 16px;
  display: inline-block;
  margin-left: 15px;
  font-family: "Noto Sans JP", sans-serif;
}

.shop-group h3::after {
  content: "";
  display: none;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: start;
  gap: 8px;
}

.shop-grid.small {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shop-card {
  position: relative;
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.shop-card:hover {
  opacity: 0.9;
}

.shop-card:focus-visible {
  outline: 3px solid #2daae2;
  outline-offset: 2px;
}

.shop-card-image {
  display: block;
  width: 100%;
  height: auto;
}

.shop-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 58px;
  padding: 5px 8px 6px;
  border-radius: 0 0 8px 0;
  background: #14a9e7;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
}

.shop-logo-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px 6px;
}

.shop-logo-image {
  width: 100%;
  max-width: 120px;
  max-height: 56px;
  object-fit: contain;
}

.shop-name {
  margin: 0;
  padding: 0 8px;
  color: #5b5b5b;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.shop-area {
  margin: 2px 0 8px;
  color: #6b6b6b;
  font-size: 10px;
  line-height: 1.2;
}

.shop-open-wrap {
  border-top: 1px solid #e9edf0;
}

.shop-open-image {
  display: block;
  width: 100%;
  height: auto;
}

body.modal-open {
  overflow: hidden;
}

.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px 16px 64px;
  background: rgba(37, 51, 63, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.shop-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.shop-modal-dialog {
  position: relative;
  width: min(610px, 100%);
  max-height: 650px;
  background: #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.shop-modal-head {
  position: relative;
  background-image: url("../images/shop-head-bg-blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.shop-modal-head.tone-pink {
  background-image: url("../images/shop-head-bg-pink.png");
}

.shop-modal-head.tone-blue {
  background-image: url("../images/shop-head-bg-blue.png");
}

.shop-modal-head.tone-gray {
  background-image: url("../images/shop-head-bg-gray.png");
}

.shop-modal-head--single {
  background: none;
  height: auto;
  padding: 0;
  display: block;
  margin-top: -6px;
}

.shop-modal-head-image {
  display: block;
  width: 100%;
  height: auto;
}

.shop-modal-head--single .sp-cont {
  display: none;
}

@media (max-width: 960px) {
  .shop-modal-head--single .sp-cont {
    display: block;
  }

  .shop-modal-head--single .pc-cont {
    display: none;
  }
}

.shop-modal-badge {
  position: absolute;
  left: 20px;
  top: -5px;
  width: 120px;
}

.shop-modal-open {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}

.shop-modal-badge img,
.shop-modal-open img {
  width: 100%;
  height: auto;
}

.shop-modal-body {
  flex: 1;
  min-height: 0;
  padding: 30px 50px;
  text-align: center;
  overflow-y: auto;
}

.shop-modal-title {
  margin: 0;
  color: #6c6c6c;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

.shop-modal-logo {
  margin: 30px auto 20px;
  max-width: 60%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-modal-logo img {
  object-fit: contain;
}

.shop-modal-copy {
  text-align: left;
  color: #6c6c6c;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
}

.shop-modal-close {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shop-modal-close img {
  display: block;
  width: 100%;
  height: auto;
}

.new-shop-annotation {
  margin: 60px auto 0 auto;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #6c6c6c;
}

.band {
  position: relative;
  z-index: 0;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.band--yellow::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(249, 248, 200, 1) 10%,
    rgba(249, 248, 200, 1) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}

.band--top-yellow::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(249, 248, 200, 1) 10%,
    rgba(249, 248, 200, 1) 100%
  );
}

.band--blue::before {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(176, 228, 248, 0.75) 23%,
    rgba(63, 190, 240, 1) 53%,
    rgba(63, 190, 240, 1) 75%,
    rgba(176, 228, 248, 0.75) 95%,
    rgba(255, 255, 255, 0) 100%
  );
}

.renewal-point {
  position: relative;
  padding: 180px 0 280px 0;
  margin-top: -200px;
}

.renewal-point.band--yellow {
  padding-top: 222px;
  margin-top: -119px;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 80px;
  align-items: stretch;
}

.point-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.point-number {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: #58bde8;
  font-family: var(--font-en);
  font-size: 37px;
  font-weight: 700;
  line-height: 1;
}

.point-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.point-card {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.point-tabs {
  display: flex;
  justify-content: space-between;
  gap: 7.5px;
}

.point-tab {
  flex: 1;
  border: 0;
  border-radius: 14px 14px 0 0;
  background: #caf0ff;
  color: #3fbef0;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 12px 0 25px 0;
  line-height: 1;
}

.point-tab.is-active {
  background: #fff;
  position: relative;
  z-index: 10;
  box-shadow:
    -10px 0 22px -10px rgba(118, 116, 72, 0.2),
    /* 左側の影 */ 0 -10px 22px -10px rgba(118, 116, 72, 0.2),
    /* 上側の影 */ 10px 0 22px -10px rgba(118, 116, 72, 0.2); /* 右側の影 */
}

.point-tab.is-active:before {
  position: absolute;
  content: "";
  bottom: -7px;
  left: 0;
  height: 10px;
  width: 100%;
  background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .point-tab:not(.is-active):hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

.point-panels {
  margin-top: -12px;
  padding: 24px;
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 445px;
  flex: 1;
  background-color: #fff;
  border-radius: 16px;
  box-shadow:
    0 10px 22px rgba(118, 116, 72, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.point-panel {
  display: none;
  grid-area: 1 / 1;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center top;
}

.point-panel.is-active {
  display: block;
}

.point-panel.is-zoom-in {
  animation: pointZoomIn 0.5s ease forwards;
}

.point-panel.is-zoom-out {
  display: block;
  pointer-events: none;
  animation: pointZoomOut 0.35s ease forwards;
}

@keyframes pointZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pointZoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.08);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .point-panel,
  .point-panel.is-zoom-in,
  .point-panel.is-zoom-out {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.point-image {
  width: 100%;
  background: #d8d8d8;
}

.point-image img {
  display: block;
  width: 100%;
  height: auto;
}

.point-topic-title {
  margin: 16px 0 0;
  padding-left: 10px;
  border-left: 7px solid #3fbef0;
  color: #3fbef0;
  font-size: clamp(8px, 2.27vw, 16px);
  line-height: 1.3;
  font-weight: 700;
}

.point-panel p {
  margin: 14px 0 0;
  color: #000;
  font-size: clamp(6px, 1.73vw, 13px);
  line-height: 1.7;
}

.event {
  padding: 200px 0 320px;
  margin-top: -200px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 961px) {
  .event.band--blue::before {
    background: linear-gradient(
      to bottom,
      rgba(176, 228, 248, 0) 0,
      rgba(176, 228, 248, 0.9) 150px,
      rgb(176, 228, 248) 200px,
      rgb(63, 190, 240) 53%,
      rgb(63, 190, 240) 75%,
      rgba(176, 228, 248, 0.75) 95%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

#event {
  padding-top: 180px;
  margin-top: -180px;
}

.event-note-top {
  font-family: var(--font-en);
  margin: 80px 0 18px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #00a0e2;
}

.event-carousel {
  width: 600px;
  margin: 0 auto;
}

.event-carousel-viewport {
  overflow: hidden;
  background: #cfcfcf;
}

.event-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.event-slide {
  flex: 0 0 100%;
  display: block;
}

.event-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.event-carousel-controls {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-arrow {
  border: 0;
  background: transparent;
  width: 60px;
  height: 60px;
  padding: 0;
  cursor: pointer;
}

.event-arrow img {
  width: 100%;
  height: auto;
}

.event-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.event-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.event-dot.is-active {
  background: #ecebbd;
}

.event-disclaimer {
  margin: 75px 0 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
}

.recruit {
  padding: 200px 0 250px 0;
  margin-top: -235px;
  background-image: url(../images/recruit-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

#recruit {
  padding-top: 180px;
  margin-top: -180px;
}

.recruit-banner {
  margin: 18px auto 0;
  width: min(620px, 100%);
  display: block;
}

.recruit-banner img {
  transition: 0.2s;
}

.recruit-banner img:hover {
  opacity: 0.85;
}

.container.sns-inner {
  overflow: visible;
}

.sns-inner {
  position: relative;
  padding: 80px 0 105px 0;
  text-align: center;
}

.sns-inner p {
  margin: 0;
  color: #00a0e2;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.sns-top-btn {
  display: block;
  width: 120px;
}

.header-top-btn {
  position: absolute;
  top: 50%;
  right: 30px;
  padding-top: 10px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-50% - 8px));
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    visibility 0.32s ease;
}

body.sns-reached .header-top-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%);
}

.sns-top-btn img {
  width: 100%;
  height: auto;
}

.sns-list {
  margin: 60px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.sns-list a {
  display: block;
  width: 80px;
}

.sns-list a img {
  display: block;
  width: 100%;
  height: auto;
}

.app-banners {
  display: grid;
  gap: 80px;
  width: 600px;
  margin: 0 auto;
}

.apps {
  padding: 80px 0 110px;
}

.app-block {
  text-align: center;
}

.app-title {
  margin: 0 0 18px;
  color: #00a0e2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -1.3px;
}

.app-banner {
  display: block;
  width: 100%;
}

.app-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  background: #44b5df;
  color: #fff;
}

.footer-links-wrap {
  background: #3fbef0;
  padding: 50px 0;
}

.footer-links-inner {
  text-align: center;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer-links + .footer-links {
  margin-top: 12px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-brand-wrap {
  background: #fff;
}

.footer-brand-inner {
  padding: 40px 0 45px;
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
}

.footer-brand-link {
  display: block;
}

.footer-logo-lalaport {
  width: 150px;
}

.footer-logo-mitsui {
  width: 280px;
}

.footer-copy {
  margin: 34px 0 0;
  color: #6c6c6c;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .container.sns-inner {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    width: 80%;
  }

  .footer-links {
    gap: 28px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-brand-logos {
    gap: 80px;
  }

  .footer-logo-lalaport {
    width: 190px;
  }

  .footer-logo-mitsui {
    width: 360px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h-sp: clamp(50px, 13.3333vw, 100px);
  }

  body {
    padding-top: var(--header-h-sp);
  }

  .site-header {
    height: var(--header-h-sp);
  }

  .site-header-inner {
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .site-header-logos {
    position: static;
  }

  .lalaport-logo,
  .mitsui-logo {
    position: absolute;
    display: block;
    flex: none;
    max-width: none;
    margin: 0;
  }

  .lalaport-logo {
    top: clamp(11.5px, 3.0667vw, 23px);
    left: 4.6667%;
    width: clamp(67px, 17.8667vw, 134px);
    height: clamp(27px, 7.2vw, 54px);
  }

  .mitsui-logo {
    top: clamp(16px, 4.2667vw, 32px);
    left: 28.6667%;
    width: clamp(106.9085px, 28.5089vw, 213.817px);
    height: clamp(18px, 4.8vw, 36px);
  }

  .lalaport-logo img,
  .mitsui-logo img {
    width: 100%;
    height: 100%;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    top: 5%;
    left: 86.6667%;
    display: block;
    width: 12%;
    height: 90%;
    margin: 0;
    padding: 0;
  }

  .menu-toggle span {
    position: absolute;
    left: 17.08%;
    width: 80.84%;
    height: max(1px, 0.2667vw);
    margin: 0;
    background: #888f95;
  }

  .menu-toggle span:nth-child(1) {
    top: 20%;
  }

  .menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle span:nth-child(3) {
    bottom: 30.63%;
  }

  .shop-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .header-top-btn {
    right: 0;
  }

  .shop-grid.small {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .lp-root {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  h1 {
    margin-bottom: 0;
  }
  .tb-br {
    display: block;
  }
  .tb-cont {
    display: block;
  }
  .container {
    width: 88%;
  }

  #new-shop {
    padding-top: 200px;
    margin-top: 0;
  }

  .new-shop .container {
    width: 94%;
  }

  #event {
    padding-top: 130px;
    margin-top: -130px;
  }
  .event-carousel {
    width: 100%;
  }

  .menu-toggle span {
    margin: clamp(7px, 1.87vw, 14px) 0;
  }

  .hero-inner:before {
    width: clamp(106px, 29.33vw, 220px);
    height: clamp(106px, 29.33vw, 220px);
    right: 16%;
  }

  .hero-inner {
    padding-top: clamp(34px, 9.33vw, 70px);
  }

  .hero-inner.container {
    width: 100%;
  }

  .lalaport-logo {
    width: clamp(67px, 17.8667vw, 134px);
    margin-right: clamp(19px, 5.33vw, 40px);
    padding-right: 0;
  }

  .mitsui-logo {
    width: clamp(106.9085px, 28.5089vw, 213.817px);
  }

  .menu-toggle {
    width: clamp(29px, 8vw, 60px);
  }

  .sp-menu-inner {
    padding: clamp(48px, 13.33vw, 100px) 8% 25px;
  }

  .sp-menu-label {
    width: 120px;
  }

  .sp-menu-nav {
    margin-top: 36px;
    gap: clamp(24px, 6.67vw, 50px);
    padding-left: 15px;
  }

  .sp-menu-nav a {
    font-size: clamp(23px, 6.4vw, 48px);
    font-weight: 700;
    line-height: 1.18;
  }

  .sp-menu {
    background: linear-gradient(
      180deg,
      #95ceef 9.46%,
      #faf7c4 29.92%,
      #eacadc 71.27%
    );
  }

  .sp-menu-close {
    top: 24px;
    right: 20px;
    width: 36px;
    height: 36px;
  }

  .sp-menu-close::before,
  .sp-menu-close::after {
    top: 17px;
    left: 2px;
    width: 32px;
    height: 1.8px;
  }

  .sp-menu-20th-logo {
    width: min(170px, 44vw);
    /* margin-top: auto;
    margin-left: auto;
    margin-right: 4px;
    margin-bottom: 8px; */
    /* position: absolute;
    bottom: 30px;
    right: 30px; */
    margin-top: clamp(48px, 16.33vw, 100px);
    margin-left: auto;
  }

  .section-copy {
    margin-top: clamp(33px, 9.3vw, 70px);
    font-size: clamp(17px, 4.8vw, 36px);
    line-height: 1.5;
    letter-spacing: 1.8px;
  }

  .hero {
    min-height: 74vw;
    background-image: url(../images/sp-bg-fv.png);
    margin-top: -50px;
  }

  .hero-inner {
    padding-top: clamp(82px, 22.67vw, 170px);
  }

  .hero-title .pc-cont {
    width: 72%;
    display: none;
  }

  .hero-title .sp-cont {
    width: 72%;
    display: block;
  }

  .hero-sub {
    width: 46%;
    margin: clamp(17px, 4.67vw, 35px) auto 0 auto;
  }

  .intro {
    padding: 30px 0;
    margin-top: -15px;
  }

  .intro .lead {
    font-size: clamp(16px, 4.27vw, 32px);
    letter-spacing: 1.6px;
    line-height: 2;
  }

  .intro-before-inner::after {
    width: clamp(110px, 30.67vw, 230px);
    height: clamp(110px, 30.67vw, 230px);
    top: -80px;
    right: -15px;
  }

  .intro-before-inner:before {
    width: clamp(91px, 25.33vw, 190px);
    height: clamp(168px, 46.67vw, 350px);
    top: 230px;
  }

  .logo-placeholder {
    width: 50%;
  }

  .news-card {
    width: 90%;
    padding: 20px 20px clamp(24px, 6.67vw, 50px);
    border-radius: 14px;
    grid-template-columns: 1fr;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .news-label {
    font-size: clamp(26px, 7.2vw, 54px);
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .news-card li a {
    padding: 10px;
  }

  .news-more {
    margin-top: 8px;
    font-size: 14px;
  }

  .shop-group {
    margin-top: 16px;
  }

  .shop-group h3 {
    margin-bottom: 0;
    padding: clamp(19px, 5.33vw, 40px) 44px clamp(19px, 5.33vw, 40px) 14px;
    font-size: 14px;
    cursor: pointer;
  }

  .shop-group h3::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/accordion-open.svg") center / contain no-repeat;
    transform: translateY(-50%);
    transition: opacity 0.2s ease;
  }

  .shop-group.is-open h3::after {
    background-image: url("../images/accordion-close.svg");
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      margin-top 0.35s ease;
  }

  .shop-grid.small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-group.is-open .shop-grid {
    margin-top: 8px;
    max-height: 2500px;
    opacity: 1;
    pointer-events: auto;
  }

  .shop-logo-wrap {
    height: 84px;
    padding-top: 10px;
  }

  .shop-logo-image {
    max-height: 42px;
  }

  .shop-name {
    font-size: 11px;
    padding: 0 6px;
  }

  .shop-area {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .shop-open-wrap {
    border-top-width: 0;
  }

  .new-shop {
    padding-top: clamp(72px, 20vw, 150px);
  }

  .new-shop-annotation {
    margin-top: clamp(24px, 6.6vw, 50px);
    font-size: clamp(12px, 3.2vw, 24px);
    text-align: center;
  }

  .renewal-point {
    padding: 270px 0 280px 0;
    margin-top: -395px;
  }

  .point-grid {
    grid-template-columns: 1fr;
    gap: clamp(35px, 10.6vw, 80px);
    margin-top: clamp(48px, 13.3vw, 100px);
  }

  .point-head {
    min-height: 58px;
    padding: 0;
  }

  .point-head img {
    width: 100%;
  }

  .point-number {
    width: 42px;
    height: 42px;
    left: 7px;
    font-size: 26px;
  }

  .point-head h3 {
    font-size: 18px;
  }

  .point-card {
    margin-top: clamp(17px, 4.67vw, 35px);
    border-radius: 12px;
  }

  .point-tabs {
    gap: 15px;
  }

  .point-tab {
    height: 34px;
    font-size: clamp(15px, 4vw, 30px);
    padding: 25px 0 65px 0;
    border-radius: 30px 30px 0 0;
  }

  .point-panels {
    padding: clamp(24px, 6.6vw, 50px);
  }

  .point-topic-title {
    margin-top: 25px;
    padding-left: 25px;
    border-left-width: 4px;
    font-size: clamp(16px, 3.8vw, 36px);
    min-height: clamp(48px, 13.33vw, 100px);
    display: flex;
    align-items: center;
    border-left: 8px solid #3fbef0;
  }

  .point-panel p {
    margin-top: 20px;
    font-size: clamp(13px, 3vw, 28px);
    line-height: 1.65;
  }

  .event {
    padding: 50px 0 150px;
    margin-top: -220px;
  }

  .event-note-top {
    margin-top: clamp(33.6px, 9.3vw, 79px);
    font-size: 18px;
  }

  .event-carousel-controls {
    margin-top: 14px;
  }

  .event-arrow {
    width: clamp(29px, 8vw, 60px);
    height: clamp(29px, 8vw, 60px);
  }

  .event-pagination {
    gap: 6px;
  }

  .event-dot {
    width: 12px;
    height: 12px;
  }

  .event-disclaimer {
    margin-top: 70px;
    font-size: 20px;
    line-height: 1.75;
  }

  .recruit {
    padding: 50px 0 250px 0;
    margin-top: -95px;
    padding-bottom: clamp(86px, 24vw, 180px);
  }

  #recruit {
    padding-top: 110px;
    margin-top: -130px;
  }

  .recruit-banner {
    width: 90%;
    margin: clamp(10px, 2.67vw, 20px) auto 0 auto;
  }

  .apps {
    padding: clamp(43px, 12vw, 90px) 0 clamp(58px, 16vw, 120px) 0;
  }

  .app-banners {
    gap: clamp(43px, 12vw, 90px);
    width: 80%;
  }

  .app-title {
    margin-bottom: 12px;
    letter-spacing: -1.3px;
    font-size: clamp(12px, 3.47vw, 26px);
    color: #00a0e2;
  }

  .sns-list {
    margin-top: clamp(24px, 6.67vw, 50px);
    gap: clamp(38px, 10.67vw, 80px);
  }

  .sns-inner {
    padding: clamp(43px, 12vw, 90px) 0;
    width: 100%;
  }

  .sns-top-btn {
    width: clamp(65px, 19vw, 120px);
  }

  .sns-inner p {
    font-size: clamp(14px, 4vw, 30px);
  }

  .sns-list a {
    width: clamp(43px, 12vw, 90px);
  }
}

@media (max-width: 820px) {
  .section-title .pc-cont {
    display: none;
  }
  .section-title .sp-cont {
    display: block;
    width: 100%;
  }
  .news-card .datetime {
    font-size: 20px;
  }

  .news-content {
    margin-top: 20px;
  }

  .news-card li span {
    margin-top: 12px;
    font-size: 24px;
  }
  .shop-group {
    margin-top: 16px;
  }

  .shop-group h3 {
    margin-bottom: 0;
    font-size: clamp(15px, 3.3vw, 30px);
    cursor: pointer;
  }

  .shop-group h3 span {
    font-size: clamp(10px, 3vw, 20px);
    margin-left: 7px;
  }

  .shop-group h3::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/accordion-open.svg") center / contain no-repeat;
    transform: translateY(-50%);
    transition: opacity 0.2s ease;
  }

  .shop-group.is-open h3::after {
    background-image: url("../images/accordion-close.svg");
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      margin-top 0.35s ease;
  }

  .shop-grid.small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-group.is-open .shop-grid {
    margin-top: 8px;
    max-height: 2500px;
    opacity: 1;
    pointer-events: auto;
  }

  .shop-modal {
    place-items: start center;
    padding: 15% 16px clamp(36px, 10vw, 75px) 16px;
    background: rgba(24, 34, 43, 0.58);
  }

  .shop-modal-dialog {
    width: 100%;
    max-width: 550px;
    max-height: 76vh;
    border-radius: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .shop-modal-head {
    /* height: clamp(60px, 14.67vw, 110px); */
    height: 60px;
    min-height: 60px;
    justify-content: center;
    display: flex;
    padding: 10px;
  }

  .shop-modal-head--single {
    height: auto;
    padding: 0;
    display: block;
  }

  .shop-modal-badge {
    position: relative;
    top: initial;
    left: initial;
    z-index: 3;
    width: clamp(86px, 24vw, 180px);
  }

  .shop-modal-open {
    width: 65%;
  }
  .shop-modal-open.shop-sanwa {
    width: 85%;
  }
  .tone-blue .shop-modal-open {
    width: 75%;
  }

  .tone-gray .shop-modal-open {
    width: 55%;
  }

  .shop-modal-weekday {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05em;
    height: 1.05em;
    margin: 0 0.2em;
    border-radius: 50%;
    background: #fff;
    color: #d6b0d4;
    font-size: 0.64em;
    line-height: 1;
    vertical-align: 0.04em;
  }

  .shop-modal-body {
    padding: 30px clamp(30px, 4.6vw, 36px) 26px;
    text-align: center;
  }

  .shop-modal-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(18px, 5.2vw, 46px);
    letter-spacing: 0.01em;
    line-height: 27px;
  }

  .shop-modal-logo {
    margin: 26px auto 28px;
    max-width: 100%;
    height: auto;
  }

  .shop-modal-logo img {
    max-width: 85%;
  }

  .shop-modal-copy {
    color: #666;
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.65;
    letter-spacing: 0.01em;
  }

  .shop-modal-close {
    bottom: -35px;
    width: clamp(22px, 6.13vw, 46px);
    height: clamp(22px, 6.13vw, 46px);
  }
}

@media (max-width: 768px) {
  .footer-links-wrap {
    padding: clamp(43px, 12vw, 90px) 0 clamp(48px, 13.33vw, 100px);
  }

  .footer-links {
    display: grid;
    justify-content: center;
    gap: 20px;
  }

  .footer-links a {
    font-size: clamp(12px, 3.9vw, 34px);
    line-height: 1.35;
  }

  .footer-links + .footer-links {
    margin-top: 20px;
  }

  .footer-links-bottom {
    column-gap: 20px;
    row-gap: 20px;
  }

  .footer-links-bottom li:nth-child(3),
  .footer-links-bottom li:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-brand-inner {
    padding: clamp(34px, 9.33vw, 70px) 0 clamp(24px, 6.67vw, 50px);
  }

  .footer-brand-link {
    width: 100%;
  }

  .footer-brand-link img {
    margin: 0 auto;
  }

  .footer-brand-logos {
    flex-direction: column;
    gap: clamp(31px, 8.67vw, 65px);
  }

  .footer-logo-lalaport {
    width: 44%;
  }

  .footer-logo-mitsui {
    width: 63%;
  }

  .footer-copy {
    margin-top: clamp(34px, 9.33vw, 70px);
    font-size: clamp(10px, 2.67vw, 20px);
    line-height: 1.5;
    color: #6c6c6c;
  }
}

@media screen and (max-width: 480px) {
  .sp-cont {
    display: block;
  }
  .pc-cont {
    display: none;
  }
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
  .section-title .pc-cont {
    display: none;
  }
  .logo-placeholder {
    margin-top: 40px;
  }
  .news-card {
    width: 100%;
    margin-top: 90px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .news-label {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  .news-content {
    width: 100%;
    margin-top: 0;
  }
  .site-header {
    height: var(--header-h-sp);
  }
  .site-header-inner {
    padding: 0;
    gap: 0;
  }
  .menu-toggle {
    height: 90%;
  }
  .hero {
    height: 100vh;
  }

  .event-note-top {
    font-size: 14px;
  }
  .news-card .datetime {
    font-size: 14px;
  }
  .news-card li span {
    margin-top: 8px;
    font-size: 16px;
  }
  .renewal-point {
    padding: 130px 0 280px 0;
    margin-top: -315px;
  }
  .point-tabs {
    gap: 7px;
  }
  .point-tab {
    padding: 12px 0 15px 0;
    border-radius: 15px 15px 0 0;
  }
  .point-topic-title {
    margin-top: 15px;
    padding-left: 10px;
  }
  .point-panel p {
    margin-top: 10px;
  }
  .event-disclaimer {
    font-size: 12px;
  }
  .logo-placeholder img {
    max-width: 100%;
  }
}

/* Swiperのimgがはみ出したり隙間が出るのを防ぐ */
#eventSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

#eventSwiper {
  overflow: hidden;
}

#eventSwiper .swiper-wrapper {
  align-items: stretch;
}

#eventSwiper .swiper-slide {
  flex-shrink: 0;
}

#eventSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* 20周年デザインを既存の画面幅別KV指定より優先する */
.hero {
  background-image: url(../images/20th-kv-pc.png);
  overflow: hidden;
}

.site-nav {
  flex-wrap: nowrap;
}

@media (max-width: 960px) {
  .hero {
    height: auto;
    min-height: 0;
    margin-top: calc(var(--header-h-sp) * -1);
    aspect-ratio: 750 / 1300;
    background-image: url(../images/20th-kv-sp.png);
    background-size: 100% 100%;
  }

  .hero-anniversary-logo {
    top: 11.85%;
    left: 53%;
    width: 45%;
  }

  .hero-slogan {
    top: 48.46%;
    left: 22.8%;
    width: 100%;
    scale: 1.2;
  }

  .hero-anniversary-logo::before {
    background-image: url(../images/sp-fv-fw-lft.png);
    top: -120px;
    left: -320px;
    height: 680px;
  }
  .hero-anniversary-logo::after {
    background-image: url(../images/sp-fv-fw-rgt.png);
    top: -120px;
    right: -220px;
    height: 800px;
    width: 280px;
  }

  .anniversary-message p::before {
    left: -280px;
    top: 200px;
  }
  .anniversary-message p::after {
    top: -180px;
    width: 250px;
    right: -280px;
  }

  .anniversary-message {
    width: 58.1333%;
    height: auto;
    min-height: clamp(128px, 34.1333vw, 256px);
    margin: 0 auto;
  }

  .anniversary-message p {
    font-size: clamp(16px, 4.2667vw, 32px);
    line-height: clamp(32px, 8.53vw, 64px);
    letter-spacing: 0.05em;
  }

  .anniversary-message-line span {
    display: block;
    white-space: nowrap;
  }

  .special-contents {
    margin-top: -1px;
    min-height: clamp(1024.5px, 273.2vw, 2049px);
    padding-top: 0;
    background: none;
  }

  .special-contents::before {
    top: clamp(6.5px, 1.7333vw, 13px);
    bottom: clamp(58px, 15.4667vw, 116px);
    border-radius: 50% / 19.53125%;
    background: rgba(255, 255, 255, 0.4);
  }

  .special-contents::after {
    background:
      url(../images/special-firework-sp-blue-top.svg) 72.6667vw 1.3333vw /
        19.4667vw 19.4667vw no-repeat,
      url(../images/special-firework-sp-pink-top.svg) 88.4667vw 17.333vw /
        14.2667vw 14.2667vw no-repeat,
      url(../images/special-firework-sp-pink-left.svg) 30vw 180.5333vw /
        14.2667vw 14.2667vw no-repeat,
      url(../images/special-firework-sp-pink-bottom.svg) 76vw 190.5333vw /
        21.8667vw 21.8667vw no-repeat,
      url(../images/special-firework-sp-blue-left.svg) -1.7333vw 182.2667vw /
        30.4vw 30.4vw no-repeat;
  }

  .special-contents-inner {
    margin-top: 0;
    padding-top: clamp(93px, 24.8vw, 186px);
  }

  .new-shop {
    background: none;
    padding-bottom: clamp(150px, 40vw, 300px);
  }

  .new-shop.section--services::before {
    top: 0;
    height: clamp(6545px, 1745.3333vw, 13090px);
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(202, 240, 255) 5%,
        rgba(176, 228, 248, 0.745098) 95%,
        rgba(255, 255, 255, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgb(101, 198, 222) 0%,
        rgb(101, 198, 222) 10%,
        rgb(149, 206, 239) 90%
      );
    background-position:
      center clamp(245px, 65.3333vw, 490px),
      center 0;
    background-size:
      100% clamp(6300px, 1680vw, 12600px),
      100% clamp(700px, 186.6667vw, 1400px);
  }

  .new-shop.section--services::after {
    top: calc(100% - clamp(431.5px, 115.0667vw, 863px));
    height: clamp(1650px, 440vw, 3300px);
    background: linear-gradient(
      180deg,
      rgba(101, 198, 222, 0) 10%,
      rgb(250, 247, 196) 30%,
      rgb(236, 205, 219) 75%,
      rgb(149, 206, 239) 90%
    );
  }

  .renewal-point.band--yellow {
    padding-top: clamp(207.5px, 55.3333vw, 415px);
    margin-top: calc(0px - clamp(90.5px, 24.1333vw, 181px));
  }

  .renewal-point.band--yellow::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgb(249, 248, 200) 20%,
      rgb(249, 248, 200) 70%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .special-heading {
    width: clamp(270px, 72vw, 540px);
    height: clamp(114px, 30.4vw, 228px);
  }

  .special-carousel {
    margin-top: clamp(44.5px, 11.8667vw, 89px);
  }

  .special-carousel-viewport {
    height: clamp(525px, 140vw, 1050px);
  }

  .special-card {
    width: min(
      clamp(320px, 85.3333vw, 640px),
      calc(100vw - clamp(55px, 14.6667vw, 110px))
    );
    height: clamp(525px, 140vw, 1050px);
    transform: translateX(-50%) scale(0.75);
  }

  .special-card::before {
    width: 103.75%;
    height: 102.2857%;
    background-image: url(../images/special-card-frame-sp.svg);
  }

  .special-card.is-prev {
    left: calc(50% - 47.3333vw);
    transform: translateX(-50%) scale(0.75);
  }

  .special-card.is-next {
    left: calc(50% + 47.3333vw);
    transform: translateX(-50%) scale(0.75);
  }

  .special-card.is-off-prev {
    left: calc(50% - 94.6667vw);
  }

  .special-card.is-off-next {
    left: calc(50% + 94.6667vw);
  }

  .special-card-number {
    top: clamp(10px, 2.6667vw, 20px);
    left: calc(50% - clamp(7.5px, 2vw, 15px));
    font-size: clamp(25px, 6.6667vw, 50px);
  }

  .special-card-inner {
    top: clamp(15px, 4vw, 30px);
    display: block;
    padding: clamp(40px, 10.6667vw, 80px) clamp(27px, 7.3333vw, 55px)
      clamp(30px, 8vw, 60px);
    border-radius: clamp(14px, 4vw, 30px);
  }

  .special-card-image {
    top: 0;
    left: 0;
    width: clamp(150px, 40vw, 300px);
    height: clamp(200px, 53.3333vw, 400px);
    margin: 0 auto;
  }

  .special-card-body {
    position: static;
    width: auto;
    margin-top: clamp(15px, 4vw, 30px);
    padding: 0;
  }

  .special-card-body h3 {
    height: clamp(50px, 13.3333vw, 100px);
    min-height: clamp(50px, 13.3333vw, 100px);
    padding-left: clamp(9px, 2.4vw, 18px);
    border-left-width: clamp(6px, 1.6vw, 12px);
    font-size: clamp(13px, 3.4667vw, 26px);
    line-height: clamp(25px, 6.6667vw, 50px);
  }

  .special-card-body h3 strong,
  .special-card:nth-child(n + 2) .special-card-body h3 {
    font-size: clamp(20px, 5.3333vw, 40px);
  }

  .special-card-body h3 small {
    font-size: clamp(13px, 3.4667vw, 26px);
  }

  .special-card-date {
    display: flex;
    height: clamp(19px, 5.0667vw, 38px);
    align-items: center;
    margin-top: clamp(10px, 2.6667vw, 20px);
    font-size: clamp(20px, 5.3333vw, 40px);
    line-height: 1;
    white-space: nowrap;
  }

  .special-card-date .special-card-weekday {
    width: auto;
    height: clamp(18px, 4.8vw, 36px);
    margin: 3px clamp(2px, 0.8vw, 6px) 0;
  }

  .special-card-copy {
    margin-top: clamp(11px, 2.9333vw, 22px);
    font-size: clamp(13px, 3.4667vw, 26px);
    line-height: clamp(20px, 5.3333vw, 40px);
  }

  .special-card-note {
    margin-top: clamp(3px, 0.8vw, 6px);
    font-size: clamp(9px, 2.4vw, 18px);
    line-height: 1.5;
  }

  .special-card-more {
    right: 50%;
    bottom: clamp(30px, 8vw, 60px);
    left: auto;
    top: auto;
    width: clamp(120px, 32vw, 240px);
    height: auto;
    transform: translateX(50%);
  }

  .special-arrow {
    top: clamp(235px, 62.6667vw, 470px);
    width: clamp(35px, 9.3333vw, 70px);
    height: clamp(35px, 9.3333vw, 70px);
  }

  .special-arrow-prev {
    left: 2.6667%;
  }

  .special-arrow-next {
    right: 2.6667%;
  }

  .special-pagination {
    height: clamp(30px, 8vw, 60px);
    margin-top: clamp(5px, 1.3333vw, 10px);
    gap: clamp(10px, 2.6667vw, 20px);
  }

  .special-pagination button {
    width: clamp(8px, 2.1333vw, 16px);
    height: clamp(8px, 2.1333vw, 16px);
  }
}

/* 2026 renewal: NEW SHOP / RENEWAL POINT */
.new-shop-annotation--top {
  margin-top: 12px;
}

.shop-grid-featured {
  gap: 12px;
  margin-top: 74px;
}

.shop-grid-featured .shop-card {
  aspect-ratio: 190 / 300;
}

.shop-grid-featured .shop-card-image {
  width: 100%;
  height: 100%;
}

.new-shop-check {
  margin-top: 110px;
}

.shop-group,
.shop-group.shop-group-fashion {
  margin-top: 30px;
}

.shop-group.shop-group-fashion {
  margin-top: 20px;
}

.shop-group h3 {
  min-height: 60px;
  margin: 0;
  padding: 10px 70px 10px 40px;
  /* border-radius: 999px; */
  cursor: pointer;
}

.shop-group h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 16px solid #fff;
  background: none;
  transform: translateY(-35%);
  transition: transform 0.25s ease;
}

.shop-group.is-open h3::after {
  border-top: 0;
  border-bottom: 16px solid #fff;
  background: none;
  transform: translateY(-65%);
}

.shop-group .shop-grid {
  gap: 12px;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 0.45s ease,
    margin-top 0.35s ease,
    opacity 0.25s ease;
}

.shop-group.is-open .shop-grid {
  max-height: 2000px;
  margin-top: 20px;
  opacity: 1;
  pointer-events: auto;
}

.shop-modal-head--text {
  justify-content: center;
}

.shop-modal-open-text {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-family: var(--font-en);
  line-height: 1;
}

.shop-modal-open-text strong {
  font-size: 34px;
}

.shop-modal-open-text span {
  font-size: 24px;
  font-weight: 700;
}

.shop-modal-placeholder {
  width: 320px;
  height: 205px;
  margin: 30px auto;
  background: #c4c4c4;
}

#shop-modal-gelato .shop-modal-dialog,
#shop-modal-mila .shop-modal-dialog {
  width: min(620px, 100%);
}

#shop-modal-gelato .shop-modal-body,
#shop-modal-mila .shop-modal-body {
  padding: 40px 50px 50px;
}

.point-grid {
  display: block;
  margin-top: 80px;
}

.point-item {
  display: block;
  height: auto;
}

.point-item + .point-item {
  margin-top: 40px;
}

.point-head {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 68px;
  padding: 0 70px 0 83px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #8dccf0 0%, #e3c3dc 100%);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.point-head:focus-visible {
  outline: 3px solid #3fbef0;
  outline-offset: 4px;
}

.point-head-number {
  position: absolute;
  top: 50%;
  left: 10px;
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: #fff;
  color: #8dccf0;
  font-family: "Poller One", var(--font-en);
  font-size: 29px;
  line-height: 1;
  transform: translateY(-50%);
}

.point-head-label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.point-head-arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 16px solid #fff;
  transform: translateY(-35%);
}

.point-item.is-open .point-head-arrow {
  border-top: 0;
  border-bottom: 16px solid #fff;
  transform: translateY(-65%);
}

.point-card {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 0.5s ease,
    margin-top 0.4s ease,
    opacity 0.25s ease;
}

.point-item.is-open .point-card {
  max-height: 1000px;
  margin-top: 22px;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}

.point-tabs {
  position: relative;
  /* z-index: 2; */
  width: 310px;
  gap: 0;
}

.point-tab {
  /* height: 73px; */
  padding: 12px 0 15px;
  border-radius: 15px 15px 0 0;
}

.point-tab.is-active {
  box-shadow:
    -10px 0 22px -10px rgba(118, 116, 72, 0.2),
    0 -10px 22px -10px rgba(118, 116, 72, 0.2),
    10px 0 22px -10px rgba(118, 116, 72, 0.2);
}

.point-panels {
  /* height: 267px; */
  min-height: 0;
  margin-top: -3px;
  padding: 34px 43px 33px;
  border-radius: 15px;
  box-shadow: 1.5px 1.5px 6px rgba(71, 78, 80, 0.2);
}

@media (min-width: 821px) {
  .point-head-label {
    white-space: nowrap;
  }
}

.point-panel.is-active,
.point-panel.is-zoom-out {
  grid-template-columns: 311px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 40px;
  align-content: start;
}

.point-panel.is-active {
  display: grid;
}

.point-image {
  grid-row: 1 / 3;
  width: 311px;
  height: 200px;
}

.point-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point-topic-title {
  margin: 10px 0 0;
  padding-left: 10px;
  border-left-width: 7px;
  font-size: 18px;
  line-height: 24px;
}

.point-panel p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  font-feature-settings: "palt" 1;
}

@media (max-width: 820px) {
  .new-shop .section-title {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  .new-shop-annotation--top {
    width: 95%;
    margin-top: clamp(13px, 3.47vw, 26px);
    font-size: clamp(12px, 3.2vw, 24px);
  }

  .shop-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 3.2vw, 24px);
    margin-top: clamp(43px, 11.47vw, 86px);
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .shop-grid-featured .shop-card {
    aspect-ratio: 340 / 520;
  }

  .new-shop-check {
    width: 95%;
    margin-top: clamp(60px, 16vw, 120px);
  }

  .shop-group,
  .shop-group.shop-group-fashion {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    margin-top: clamp(15px, 4vw, 30px);
  }

  .shop-group.shop-group-fashion {
    margin-top: clamp(22px, 6vw, 45px);
  }

  .shop-group h3 {
    min-height: clamp(57px, 15.2vw, 114px);
    padding: 0 clamp(45px, 12vw, 90px) 0 clamp(20px, 5.33vw, 40px);
    font-size: clamp(16px, 4.33vw, 30px);
  }

  .shop-group h3 span {
    margin-left: clamp(6px, 1.6vw, 12px);
    font-size: clamp(10px, 2.67vw, 20px);
  }

  .shop-group h3::after {
    right: clamp(20px, 5.33vw, 40px);
    border-right-width: clamp(7.5px, 2vw, 15px);
    border-left-width: clamp(7.5px, 2vw, 15px);
    border-top-width: clamp(10px, 2.67vw, 20px);
  }

  .shop-group.is-open h3::after {
    border-bottom-width: clamp(10px, 2.67vw, 20px);
  }

  .shop-group .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 3.2vw, 24px);
  }

  .shop-group.is-open .shop-grid {
    margin-top: clamp(10px, 2.67vw, 20px);
    max-height: 6000px;
  }

  .shop-modal-open-text {
    gap: clamp(7px, 1.87vw, 14px);
  }

  .shop-modal-open-text strong {
    font-size: clamp(20px, 5.33vw, 40px);
  }

  .shop-modal-open-text span {
    font-size: clamp(14px, 3.73vw, 28px);
  }

  .shop-modal-placeholder {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 320 / 205;
    margin: 26px auto 28px;
  }

  #shop-modal-gelato .shop-modal-dialog,
  #shop-modal-mila .shop-modal-dialog {
    width: 100%;
  }

  #shop-modal-gelato .shop-modal-body,
  #shop-modal-mila .shop-modal-body {
    padding: 30px clamp(30px, 4.6vw, 36px) 26px;
  }

  .point-grid {
    margin-top: clamp(48px, 12.8vw, 96px);
  }

  .point-item + .point-item {
    margin-top: clamp(15px, 4vw, 30px);
  }

  .point-item.is-open + .point-item {
    margin-top: clamp(40px, 10.67vw, 80px);
  }

  .point-head {
    height: clamp(70px, 18.67vw, 140px);
    padding: 0 clamp(55px, 14.67vw, 110px) 0 clamp(57.5px, 15.33vw, 115px);
  }

  .point-head-number {
    left: clamp(10px, 2.67vw, 20px);
    width: clamp(40px, 10.67vw, 80px);
    height: clamp(40px, 10.67vw, 80px);
    font-size: clamp(25px, 6.67vw, 50px);
  }

  .point-head-label {
    font-size: clamp(18px, 4.8vw, 36px);
    line-height: 1.4;
  }

  .point-head-arrow {
    right: clamp(20px, 5.33vw, 40px);
    border-right-width: clamp(7.5px, 2vw, 15px);
    border-left-width: clamp(7.5px, 2vw, 15px);
    border-top-width: clamp(10px, 2.67vw, 20px);
  }

  .point-item.is-open .point-head-arrow {
    border-bottom-width: clamp(10px, 2.67vw, 20px);
  }

  .point-item.is-open .point-card {
    max-height: 2200px;
    margin-top: clamp(20px, 5.33vw, 40px);
  }

  .point-tabs {
    width: 100%;
    gap: clamp(7.5px, 2vw, 15px);
  }

  .point-tab {
    height: 80px;
    padding: 15px 0 25px 0;
    border-radius: clamp(15px, 4vw, 30px) clamp(15px, 4vw, 30px) 0 0;
    font-size: clamp(15px, 4vw, 30px);
  }

  .point-panels {
    height: auto;
    min-height: clamp(490px, 130.67vw, 980px);
    margin-top: -15px;
    padding: clamp(25px, 6.67vw, 50px);
    border-radius: clamp(15px, 4vw, 30px);
  }

  .point-panel.is-active,
  .point-panel.is-zoom-out {
    display: block;
  }

  .point-image {
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 360;
  }

  .point-topic-title {
    min-height: clamp(50px, 13.33vw, 100px);
    margin-top: clamp(15px, 4vw, 30px);
    padding-left: clamp(10px, 2.67vw, 20px);
    border-left-width: clamp(7px, 1.87vw, 14px);
    font-size: clamp(17px, 4.53vw, 34px);
    line-height: 1.47;
  }

  .point-panel p {
    margin-top: clamp(10px, 2.67vw, 20px);
    font-size: clamp(13px, 3.47vw, 26px);
    line-height: 1.77;
  }
  .special-contents::after {
    background:
      url(../images/special-firework-sp-blue-top.svg) 72.6667vw 1.3333vw /
        19.4667vw 19.4667vw no-repeat,
      url(../images/special-firework-sp-pink-top.svg) 88.4667vw 17.333vw /
        14.2667vw 14.2667vw no-repeat,
      url(../images/special-firework-sp-pink-left.svg) 30vw 220.5333vw /
        14.2667vw 14.2667vw no-repeat,
      url(../images/special-firework-sp-pink-bottom.svg) 76vw 230.5333vw /
        21.8667vw 21.8667vw no-repeat,
      url(../images/special-firework-sp-blue-left.svg) -1.7333vw 222.2667vw /
        30.4vw 30.4vw no-repeat;
  }
}

@media screen and (max-width: 480px) {
  .hero-anniversary-logo::before {
    width: 200px;
    height: 360px;
    left: -145px;
    top: -75px;
  }
  .hero-anniversary-logo {
    top: 15%;
  }
  .hero-anniversary-logo::after {
    width: 180px;
    right: -150px;
    top: -90px;
    height: 450px;
  }
  .anniversary-message p::before {
    left: -90px;
    top: 100px;
    width: 100px;
    height: 200px;
  }
  .anniversary-message p::after {
    top: -100px;
    width: 130px;
    height: 200px;
    right: -100px;
  }
  .shop-group h3 {
    font-size: 15px;
  }
  .special-contents::after {
    background:
      url(../images/special-firework-sp-blue-top.svg) 72.6667vw 1.3333vw /
        19.4667vw 19.4667vw no-repeat,
      url(../images/special-firework-sp-pink-top.svg) 88.4667vw 17.7333vw /
        14.2667vw 14.2667vw no-repeat,
      url(../images/special-firework-sp-pink-left.svg) 30vw 220.5333vw /
        14.2667vw 14.2667vw no-repeat,
      url(../images/special-firework-sp-pink-bottom.svg) 76vw 230.5333vw /
        21.8667vw 21.8667vw no-repeat,
      url(../images/special-firework-sp-blue-left.svg) -1.7333vw 220.2667vw /
        30.4vw 30.4vw no-repeat;
  }
  .special-card.is-prev,
  .special-card.is-next {
    opacity: 0;
  }
  .section-copy {
    font-size: clamp(15px, 4.4vw, 36px);
  }
  .point-tab {
    height: auto;
    padding: 15px 0 22px 0;
  }
  .point-panels {
    margin-top: -10px;
  }
  #new-shop {
    padding-top: 150px;
  }
}

@media screen and (max-width: 500px) {
  .special-contents .special-card.is-prev,
  .special-contents .special-card.is-next {
    opacity: 0;
  }

  .special-contents .special-card-body > h3.pc-cont {
    display: none;
  }

  .special-contents .special-card-body > h3.sp-cont {
    display: block;
  }
}

@media screen and (min-width: 1400px) {
  .hero {
    background-image: url(../images/20th-kv-pc-wide.png);
    height: 120vh;
    background-size: cover;
  }
  .hero-anniversary-logo {
    top: 3.75%;
    width: 27.39%;
    max-width: 470px;
  }
  .anniversary-message {
    margin-top: 0;
  }
  .special-contents {
    margin-top: -1px;
  }
  .special-contents::before {
    top: 63px;
    border-radius: 150px;
  }
  .anniversary-message p::before {
    top: -50px;
  }
  .anniversary-message p::after {
    top: -250px;
  }
  /* .special-contents::after {
    background:
      url(../images/special-firework-pc-blue-top.svg) calc(50% + 407px) 195px /
        127px 127px no-repeat,
      url(../images/special-firework-pc-pink-top.svg) calc(50% + 533px) 290px /
        94px 94px no-repeat,
      url(../images/special-firework-pc-pink-left.svg) calc(50% - 464px) 959px /
        75px 74px no-repeat,
      url(../images/special-firework-pc-pink-bottom.svg) calc(50% - 221px)
        1036px / 165px 114px no-repeat,
      url(../images/special-firework-pc-blue-left.svg) calc(50% - 631px) 979px /
        160px 160px no-repeat;
  } */
  .special-contents {
    /* min-height: 989px; */
    background: none;
  }
}



