: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);
}

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;
}

body.fv-loading {
  overflow: hidden;
}

body.fv-preload .hero {
  visibility: hidden;
}

.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 30px;
  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: 114px;
  margin-right: 36px;
}

.mitsui-logo {
  width: 182px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.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: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0 20px;
}

.site-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 20px;
  right: 0;
  vertical-align: middle;
  background: #3fbef0;
}

.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, #47bdea 0%, #9dd7d8 62%, #ececbf 100%);
}

.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: #fff;
  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: #fff;
}

.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;
}

.fv-loader {
  position: fixed;
  top: var(--header-h-pc);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 950;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  background: linear-gradient(180deg, #4cc3f1 0%, #bfe9d5 58%, #fff0b5 100%);
  transition: opacity 0.45s ease;
  --cx: 50%;
  --cy: 54%;
  --r: 0px;
  --dx: 0px;
  --mask-scale: 1;
}

.fv-loader.is-masked {
  -webkit-mask-image:
    radial-gradient(
      circle calc(var(--r) * var(--mask-scale)) at
        calc(var(--cx) - ((var(--dx) * var(--mask-scale)) / 2)) var(--cy),
      transparent 99%,
      #000 100%
    ),
    radial-gradient(
      circle calc(var(--r) * var(--mask-scale)) at
        calc(var(--cx) + ((var(--dx) * var(--mask-scale)) / 2)) var(--cy),
      transparent 99%,
      #000 100%
    );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(
      circle calc(var(--r) * var(--mask-scale)) at
        calc(var(--cx) - ((var(--dx) * var(--mask-scale)) / 2)) var(--cy),
      transparent 99%,
      #000 100%
    ),
    radial-gradient(
      circle calc(var(--r) * var(--mask-scale)) at
        calc(var(--cx) + ((var(--dx) * var(--mask-scale)) / 2)) var(--cy),
      transparent 99%,
      #000 100%
    );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-composite: intersect;
}

.fv-loader.is-out {
  opacity: 0;
}

.fv-loader-copy {
  margin: 0;
  color: #1986cb;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fv-loader-copy.is-on {
  opacity: 1;
  transform: translateY(0);
}

.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 {
  scroll-margin-top: var(--header-h-pc);
  height: 120vh;
  background-image: url(../images/fv-2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.hero-inner {
  text-align: center;
  padding-top: 150px;
}

.hero-inner.container {
  height: 100%;
  position: relative;
}

.hero-inner-inner {
  height: 100%;
  position: relative;
}

.hero-inner:before {
  content: "";
  position: absolute;
  background-image: url(../images/fv-fw-cnt.svg);
  width: 220px;
  height: 220px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: -20px;
}

.hero-title {
  width: 100%;
  position: relative;
}

.hero-title img {
  width: 700px;
  margin: 0 auto;
}

.hero-sub {
  margin-top: 28px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}

.hero-sub img {
  margin: 0 auto;
}

.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) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.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;
}

.news-card li a {
  display: block;
  padding: 15px 0 10px 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 {
  border-bottom: 0;
}

.news-more {
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: #3fbef0;
  padding-right: 20px;
  font-size: 12px;
}

.news-more::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  top: 7px;
  right: 0;
  background-image: url(../images/icon-viewmore.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.new-shop {
  background: linear-gradient(to bottom, #55bbe3 0%, #caf0ff 21%, #b0e4f8 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 45px 0 280px 0;
  margin-top: -10px;
}

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

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

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

  /* 上端は白スモーク、下端は“次と繋ぐ”ので白に抜かない */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0,
    var(--blue-a) var(--fade),
    var(--blue-b) 55%,
    var(--blue-b) 100%
  );
}

.section--services::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--bridge) * -1); /* 下に飛び出させる */
  height: var(--bridge);
  z-index: -1;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    var(--blue-b) 0%,
    var(--blue-b) 35%,
    var(--yellow) 100%
  );
}

.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;
}

.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;
}

.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;
}

#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: 22px;
}

.event-dot {
  width: 16px;
  height: 16px;
  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 (min-width: 1340px) {
  .hero {
    background-image: url(../images/lg-fv2.webp);
  }
}

@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) {
  body {
    padding-top: var(--header-h-sp);
  }

  .fv-loader {
    top: var(--header-h-sp);
    --cy: 48%;
    --mask-scale: 1.2;
  }

  .site-header {
    height: 100px;
  }

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

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    width: 60px;
    height: 60px;
    padding: 0;
  }

  .menu-toggle span {
    height: 2px;
    margin: 8px 0;
    background: #888f95;
  }

  .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: 140px;
    margin-top: -140px;
  }

  .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(56px, 15.47vw, 116px);
    margin-right: clamp(19px, 5.33vw, 40px);
    padding-right: 0;
  }

  .mitsui-logo {
    width: clamp(101px, 28vw, 210px);
  }

  .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(to bottom, #3fbff0 0%, #f9f8c8 85%);
  }

  .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: 15px;
    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);
  }

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

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

  .event-pagination {
    gap: 12px;
  }

  .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(17px, 4.3vw, 40px);
    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: 10px 14px;
    gap: 12px;
  }
  .menu-toggle {
    height: 34px;
  }
  .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 37px 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%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv-loader {
    display: none !important;
  }

  body.fv-loading {
    overflow: auto;
  }
}

/* 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;
}



