@font-face {
  font-family: "M PLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Medium.woff2?v=1784185467") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff2?v=1784102976") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-Bold.woff2?v=1784102941") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  src: url("../fonts/MPLUSRounded1c-ExtraBold.woff2?v=1784185473") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

.landing-Root {
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-gutter: auto;
}

.landing-Body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  color: #404040;
  background: radial-gradient(circle at 15% 10%, rgba(88, 245, 208, 0.35), transparent 28rem), radial-gradient(circle at 90% 16%, rgba(255, 187, 0, 0.24), transparent 22rem), linear-gradient(180deg, #fffaf0 0%, #f6fff7 58%, #fffdf5 100%);
  line-height: 1.75;
}

.landing-Link {
  color: inherit;
}

.landing-ScreenReaderOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-Container {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}

.landing-Nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
}

.landing-Nav_Inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1248px, 100% - 32px);
  min-height: 84px;
  gap: 32px;
}

.landing-Nav_Logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.landing-Nav_Logo .landing-Image {
  width: 190px;
  max-width: 48vw;
  height: auto;
  display: block;
}

.landing-Nav_Links {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #00a991;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-Nav_Links .landing-Link {
  text-decoration: none;
}

.landing-Nav_MenuButton {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b4b4b4;
  cursor: pointer;
}

.landing-Nav_MenuButtonContainer {
  display: none;
}

.landing-MenuTrigger,
.landing-MenuTrigger_Bar {
  display: inline-block;
  box-sizing: border-box;
}

.landing-MenuTrigger {
  position: relative;
  width: 25px;
  height: 20px;
}

.landing-MenuTrigger_Bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #b4b4b4;
  transition: transform 400ms ease, opacity 400ms ease;
}

.landing-MenuTrigger_Bar:nth-of-type(1) {
  top: 0;
}

.landing-MenuTrigger_Bar:nth-of-type(2) {
  top: 8px;
}

.landing-MenuTrigger_Bar:nth-of-type(3) {
  bottom: 0;
}

.landing-Nav_MenuButton[aria-expanded=true] .landing-MenuTrigger_Bar:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}

.landing-Nav_MenuButton[aria-expanded=true] .landing-MenuTrigger_Bar:nth-of-type(2) {
  opacity: 0;
}

.landing-Nav_MenuButton[aria-expanded=true] .landing-MenuTrigger_Bar:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

.landing-MobileMenu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.landing-MobileMenu[hidden] {
  display: none;
}

.landing-MobileMenu.landing-MobileMenu-open {
  pointer-events: auto;
}

.landing-MobileMenu_Backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(45, 51, 48, 0.42);
  opacity: 0;
  transition: opacity 180ms ease;
}

.landing-MobileMenu_Panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(320px, 82vw);
  height: 100%;
  padding: 22px;
  background: radial-gradient(circle at 85% 12%, rgba(255, 187, 0, 0.24), transparent 12rem), linear-gradient(180deg, #fffdf5 0%, #f4fff8 100%);
  box-shadow: -18px 0 42px rgba(64, 64, 64, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.landing-MobileMenu.landing-MobileMenu-open .landing-MobileMenu_Backdrop {
  opacity: 1;
}

.landing-MobileMenu.landing-MobileMenu-open .landing-MobileMenu_Panel {
  transform: translateX(0);
}

.landing-MobileMenu_Links {
  display: grid;
  gap: 10px;
}

.landing-MobileMenu_Links .landing-Link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 2px solid rgba(101, 173, 141, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #404040;
  font-weight: 700;
  text-decoration: none;
}

.landing-MobileMenu_Links .landing-Link:hover,
.landing-MobileMenu_Links .landing-Link[aria-current=page] {
  color: #1d9479;
  border-color: #1d9479;
}

.landing-Body-menuOpen {
  overflow: hidden;
}

.landing-Hero {
  position: relative;
  overflow: hidden;
  height: 568px;
  padding: 0;
  background-color: #fff;
  background-image: url("../new/bg_top_wave_pc.svg?v=1784198412");
  background-position: center;
  background-size: auto;
  background-repeat: repeat-x;
}

.landing-Hero_Background {
  display: none;
}

.landing-WalkScene {
  position: relative;
  overflow: visible;
  height: 155px;
  margin-top: -155px;
  pointer-events: none;
  background: transparent;
}

.landing-WalkScene::before {
  --street-shift: -616px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 155px;
  background: url("../bg_street.svg?v=1781176205") center bottom/auto 155px repeat-x;
  opacity: 1;
  z-index: 0;
  animation: streetMove 36s linear infinite;
  will-change: background-position;
}

.landing-WalkScene_Walker {
  position: absolute;
  left: max(16px, 50% - 350px);
  bottom: -12px;
  z-index: 1;
  width: 128px;
  aspect-ratio: 231/162;
  pointer-events: none;
}

.landing-WalkScene_Shadow {
  position: absolute;
  bottom: -3px;
  left: 50%;
  z-index: 0;
  display: block;
  width: 42%;
  height: auto;
  transform: translateX(-50%);
}

.landing-WalkScene_Walker .landing-Image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  z-index: 1;
  animation: walkerFrame 1.2s steps(1, end) infinite;
}

.landing-WalkScene_Walker .landing-Image:nth-child(1) {
  animation-delay: 0s;
}

.landing-WalkScene_Walker .landing-Image:nth-child(2) {
  animation-delay: 0.3s;
}

.landing-WalkScene_Walker .landing-Image:nth-child(3) {
  animation-delay: 0.6s;
}

.landing-WalkScene_Walker .landing-Image:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes streetMove {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: var(--street-shift) bottom;
  }
}
@keyframes walkerFrame {
  0%, 24.99% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0;
  }
}
@keyframes heroReveal {
  from {
    opacity: 0;
    translate: 0 -24px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.landing-Hero_Grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 57fr) minmax(0, 43fr);
  gap: 0;
  align-items: center;
  left: 16px;
  width: min(760px, 100% - 40px);
  height: 100%;
}

.landing-Hero_Content {
  display: grid;
  justify-items: center;
  transform: translateY(-14px);
}

.landing-Hero_Logo {
  display: block;
  width: 360px;
  max-width: 100%;
  height: auto;
  animation: heroReveal 700ms ease-out both;
}

.landing-Hero_Lead {
  margin: 22px 0 28px;
  color: #00594e;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-align: center;
}

.landing-Hero_Stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.landing-Hero .landing-Hero_Stores {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 0;
}

.landing-Hero_Store {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.landing-Hero_StoreImage {
  display: block;
  width: auto;
  height: 65px;
}

.landing-Phone {
  justify-self: center;
  width: 280px;
  height: 560px;
  padding: 12px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.landing-Phone-image {
  width: min(332px, 92vw);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-Phone_Mockup {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
}

.landing-Hero_Phone picture,
.landing-WalkFeature_Visual picture,
.landing-CheckinFeature_Visual picture,
.landing-WarauService > picture {
  display: block;
}

.landing-Hero_Phone {
  width: 234px;
  max-width: none;
  transform: translateY(-16px);
  animation: heroReveal 700ms 180ms ease-out both;
}

.landing-Section {
  padding: 84px 0;
}

.landing-Heading {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.landing-Section-about {
  padding: 40px 0 26px;
  background: #88f292;
  scroll-margin-top: 84px;
}

.landing-About {
  display: grid;
  justify-items: center;
  width: min(700px, 100% - 40px);
  scroll-margin-top: 84px;
  text-align: center;
}

.landing-About_Title {
  display: block;
  width: min(456px, 100%);
  padding: 0;
  border: 0;
  line-height: 0;
}

.landing-About_TitlePicture,
.landing-About_TitleImage {
  display: block;
  width: 100%;
  height: auto;
}

.landing-About_Lead {
  width: min(660px, 100%);
  margin: 26px auto 18px;
  color: #404040;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-FeatureList {
  display: grid;
  grid-template-columns: repeat(4, 175px);
  gap: 0;
  width: 700px;
  max-width: 100%;
}

.landing-FeatureCard {
  min-width: 0;
}

.landing-FeatureCard .landing-Image {
  display: block;
  width: 100%;
  margin: 0;
  height: auto;
}

.landing-FeatureCard picture {
  display: block;
}

.landing-Section.landing-Section-walk {
  position: relative;
  overflow: hidden;
  height: auto;
  padding: 0;
  scroll-margin-top: 84px;
  background-color: #88f292;
  background-image: url("../new/bg_wave_section_2_pc.svg?v=1784088154");
  background-position: center top;
  background-repeat: repeat-x;
  background-size: 1280px auto;
}

.landing-WalkFeature {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  padding-top: 80px;
}

.landing-WalkFeature_Title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(668px, 100% - 40px);
  min-height: 62px;
  margin: 0;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-WalkFeature_Lead {
  margin: 20px auto 12px;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-WalkFeature_Visual {
  position: relative;
  width: 300px;
  padding-top: 6px;
}

.landing-WalkFeature_Phone {
  display: block;
  width: 300px;
  height: auto;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
}

.landing-WalkFeature_Miles {
  position: absolute;
  top: 10px;
  right: -52px;
  display: block;
  width: 88px;
  height: auto;
}

.landing-Section.landing-Section-checkin {
  position: relative;
  overflow: hidden;
  height: auto;
  padding: 0;
  background: #fff;
}

.landing-CheckinFeature {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  padding-top: 40px;
}

.landing-CheckinFeature_Title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(668px, 100% - 40px);
  min-height: 62px;
  margin: 0;
  padding: 0 24px;
  border-radius: 999px;
  background: #b5fbf1;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-CheckinFeature_Lead {
  margin: 20px auto 12px;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-CheckinFeature_Visual {
  position: relative;
  width: 300px;
  padding-top: 6px;
}

.landing-CheckinFeature_Phone {
  display: block;
  width: 300px;
  height: auto;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
}

.landing-CheckinFeature_Miles {
  position: absolute;
  top: 10px;
  left: -52px;
  display: block;
  width: 88px;
  height: auto;
}

.landing-Section.landing-Section-points {
  position: relative;
  overflow: hidden;
  height: 362px;
  padding: 0;
  scroll-margin-top: 84px;
  background: #b5fbf1;
}

.landing-PointsFeature {
  display: grid;
  justify-items: center;
  padding-top: 40px;
}

.landing-PointsFeature_Title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(668px, 100% - 40px);
  min-height: 62px;
  margin: 0;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-PointsFeature_Lead {
  margin: 20px auto 0;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-PointsFeature_Rate {
  font-weight: 800;
}

.landing-PointsFeature_Image {
  display: block;
  width: 350px;
  height: auto;
  margin-top: 22px;
}

.landing-Section.landing-Section-exchange {
  padding: 40px 0 40px;
  background: #fff;
}

.landing-Exchange {
  display: grid;
  justify-items: center;
  gap: 0;
}

.landing-Exchange_Title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(668px, 100% - 40px);
  min-height: 62px;
  margin: 0;
  padding: 0 24px;
  border-radius: 999px;
  background: #b5fbf1;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-Exchange_Lead {
  width: min(700px, 100%);
  margin: 20px auto 0;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-Exchange_Count {
  display: flex;
  align-items: center;
  margin: 24px 0 0;
  color: #ff9219;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.05em;
  text-align: center;
}

.landing-Exchange_CountNumber {
  margin: 0 2px;
  font-size: 40px;
  line-height: 1.24;
  letter-spacing: 0;
}

.landing-Exchange_Brands {
  display: block;
  width: 390px;
  height: auto;
  margin-top: 24px;
}

.landing-Exchange_TrademarkLink {
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b3b3b3;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.landing-Exchange_TrademarkPanel {
  display: grid;
  grid-template-rows: 0fr;
  width: min(668px, 100%);
  margin-top: 0;
  opacity: 0;
  transition: grid-template-rows 300ms ease, margin-top 300ms ease, opacity 220ms ease;
}

.landing-Exchange_TrademarkPanel-open {
  grid-template-rows: 1fr;
  margin-top: 24px;
  opacity: 1;
}

.landing-Exchange_TrademarkPanelInner {
  overflow: hidden;
}

.landing-TrademarkCopy {
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.landing-TrademarkCopy_Item + .landing-TrademarkCopy_Item {
  margin-top: 24px;
}

.landing-TrademarkCopy_Heading {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
}

.landing-TrademarkCopy .landing-Text {
  margin: 0;
}

.landing-TrademarkCopy .landing-Link {
  color: #1a73e8;
  text-decoration: underline;
}

.landing-Section.landing-Section-warauService {
  padding: 40px 0 55px;
  scroll-margin-top: 84px;
  background: #b5fbf1;
}

.landing-WarauService {
  display: grid;
  justify-items: center;
}

.landing-WarauService_Title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(668px, 100% - 40px);
  min-height: 62px;
  margin: 0;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-WarauService_TitleIcon {
  display: block;
  width: 30px;
  height: 30px;
}

.landing-WarauService_Lead {
  width: min(668px, 100%);
  margin: 20px auto 0;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
}

.landing-WarauService_Image {
  display: block;
  width: 450px;
  height: auto;
  margin-top: 32px;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
}

.landing-WarauService_Cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 85px;
  margin-top: 31px;
  padding: 0 24px;
  border-radius: 10px;
  background: #ff9d1c;
  box-shadow: 0 7px 0 #e88700;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.landing-WarauService_Cta:hover {
  box-shadow: 0 4px 0 #e88700;
  color: #fff;
  transform: translateY(4px);
}

.landing-Section.landing-Section-howSteps {
  position: relative;
  overflow: hidden;
  height: 506px;
  padding: 0;
  scroll-margin-top: 84px;
  background-color: #88f292;
  background-image: url("../new/bg_wave_green_pc.svg?v=1784090509"), linear-gradient(to bottom, #b5fbf1 30px, #88f292 30px);
  background-position: center top, center top;
  background-repeat: repeat-x, no-repeat;
  background-size: 1280px auto, 100% 100%;
}

.landing-HowSteps {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 65px;
}

.landing-HowSteps_Title {
  display: block;
  width: 378px;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.landing-HowSteps_TitlePicture,
.landing-HowSteps_TitleImage {
  display: block;
  width: 100%;
  height: auto;
}

.landing-HowSteps_List {
  display: grid;
  gap: 0;
  width: 450px;
  margin: 24px 0 0;
  padding: 0;
  color: #08733d;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  list-style: none;
}

.landing-HowSteps_Item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.landing-HowSteps_Number {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0aaa38;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.landing-HowSteps_DownloadLabel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  min-height: 47px;
  margin: 32px 0 0;
  border-radius: 999px;
  background: #ff9d1c;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-HowSteps_DownloadLabel::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid #ff9d1c;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  transform: translateX(-50%);
}

.landing-HowSteps_Stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-top: 36px;
}

.landing-HowSteps_Store,
.landing-HowSteps_StoreImage {
  display: block;
}

.landing-HowSteps_StoreImage {
  width: auto;
  height: 70px;
}

.landing-Footer {
  padding: 50px 0 50px;
  background: #fff;
  color: #006b63;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.landing-Footer_Inner {
  display: grid;
  justify-items: center;
  gap: 31px;
}

.landing-Footer_LinkList {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-Footer_Links .landing-Link {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

.landing-Footer_Links .landing-Link:hover {
  text-decoration: underline;
}

.landing-Footer_Copyright {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 861px) {
  .landing-Hero .landing-Hero_Stores {
    animation: heroReveal 700ms 360ms ease-out both;
  }
}
@media (max-width: 860px) {
  .landing-Body-menuOpen .landing-Nav {
    background: #fff;
    pointer-events: none;
  }
  .landing-Body-menuOpen .landing-Nav_MenuButton {
    pointer-events: auto;
  }
  .landing-Nav_MenuButtonContainer {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;
    display: block;
    height: 48px;
    background: transparent;
    pointer-events: none;
  }
  .landing-Body-menuOpen .landing-Nav_MenuButtonContainer {
    background: #fff;
  }
  .landing-Nav_Inner {
    position: relative;
    justify-content: center;
    width: 100%;
    min-height: 118px;
    padding: 0 20px;
  }
  .landing-Nav_Logo .landing-Image {
    width: 260px;
    max-width: calc(100vw - 104px);
    animation: heroReveal 700ms ease-out both;
  }
  .landing-Nav_Logo {
    opacity: 1;
  }
  .landing-Body-menuOpen .landing-Nav_Logo {
    opacity: 0;
  }
  .landing-Nav_Logo-menuReveal {
    animation: heroReveal 400ms ease-out both;
  }
  .landing-Nav_Links {
    display: none;
  }
  .landing-Nav_MenuButton {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: inline-flex;
    width: 48px;
    height: 48px;
    transform: none;
    pointer-events: auto;
  }
  .landing-MobileMenu {
    display: block;
    overflow-y: auto;
    background: transparent;
  }
  .landing-MobileMenu[hidden] {
    display: none;
  }
  .landing-MobileMenu_Backdrop {
    display: none;
  }
  .landing-MobileMenu_Panel {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .landing-MobileMenu .landing-MobileMenu_Panel,
  .landing-MobileMenu.landing-MobileMenu-open .landing-MobileMenu_Panel {
    transform: none;
    transition: none;
  }
  .landing-MobileMenu_Links {
    display: grid;
    gap: 0;
    margin-top: 48px;
    padding: 0 16px;
    background: #00ac97;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 260ms ease, opacity 220ms ease;
  }
  .landing-MobileMenu.landing-MobileMenu-open .landing-MobileMenu_Links {
    opacity: 1;
    transform: translateY(0);
  }
  .landing-MobileMenu_Links .landing-Link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.84);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 18px;
    font-weight: 800;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: center;
  }
  .landing-MobileMenu_Links .landing-Link:last-child {
    border-bottom: 0;
  }
  .landing-MobileMenu_Links .landing-Link:hover,
  .landing-MobileMenu_Links .landing-Link[aria-current=page] {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.84);
  }
  .landing-Hero {
    box-sizing: content-box;
    height: 553px;
    padding: 0;
    background: #fff;
  }
  .landing-Hero_Background {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    pointer-events: none;
  }
  .landing-Hero_Background::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 553px;
    background-image: url("../new/bg_top_wave_sp.svg?v=1784711477");
    background-position: center top;
    background-size: max(390px, 100%) auto;
    background-repeat: no-repeat;
  }
  .landing-Hero_Grid {
    display: block;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .landing-Hero_Content {
    position: absolute;
    top: 350px;
    left: 0;
    width: 100%;
    transform: none;
  }
  .landing-Hero_Logo {
    display: none;
  }
  .landing-Hero_Lead {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-Hero .landing-Hero_Stores {
    gap: 16px;
  }
  .landing-Hero_StoreImage {
    height: 53px;
  }
  .landing-Hero_Phone {
    position: absolute;
    top: 44px;
    left: 50%;
    width: 145px;
    transform: translateX(-50%);
  }
  .landing-WalkScene {
    z-index: 3;
    height: 95px;
    margin-top: -95px;
  }
  .landing-WalkScene::before {
    --street-shift: -378px;
    height: 95px;
    background-size: auto 95px;
  }
  .landing-WalkScene_Walker {
    left: 14px;
    width: 86px;
    bottom: -8px;
  }
  .landing-FeatureList {
    grid-template-columns: 1fr 1fr;
  }
  .landing-Section.landing-Section-about {
    padding: 33px 0 24px;
    scroll-margin-top: 118px;
  }
  .landing-About {
    width: min(350px, 100% - 40px);
    scroll-margin-top: 118px;
  }
  .landing-About_Title {
    width: min(268px, 100%);
  }
  .landing-About_Lead {
    width: min(326px, 100% - 24px);
    margin: 14px auto 11px;
    color: #156a1d;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .landing-Section-about .landing-FeatureList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 350px;
  }
  .landing-Section.landing-Section-walk {
    padding: 0;
    scroll-margin-top: 118px;
    background-image: url("../new/bg_wave_section_2_sp.svg?v=1784088154");
    background-size: 390px auto;
  }
  .landing-WalkFeature {
    padding-top: 56px;
  }
  .landing-WalkFeature_Title {
    width: min(326px, 100% - 64px);
    min-height: 39px;
    padding: 0 12px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-WalkFeature_Lead {
    width: min(326px, 100% - 64px);
    margin: 20px auto 12px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .landing-WalkFeature_Visual {
    width: 204px;
  }
  .landing-WalkFeature_Phone {
    width: 204px;
  }
  .landing-WalkFeature_Miles {
    top: -8px;
    right: -39px;
    width: 65px;
  }
  .landing-Section.landing-Section-checkin {
    padding: 0;
  }
  .landing-CheckinFeature {
    padding-top: 32px;
  }
  .landing-CheckinFeature_Title {
    width: min(326px, 100% - 64px);
    min-height: 40px;
    padding: 0 12px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-CheckinFeature_Lead {
    width: min(326px, 100% - 64px);
    margin: 20px auto 12px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .landing-CheckinFeature_Visual {
    width: 204px;
  }
  .landing-CheckinFeature_Phone {
    width: 204px;
  }
  .landing-CheckinFeature_Miles {
    top: 10px;
    left: -39px;
    width: 60px;
  }
  .landing-Section.landing-Section-points {
    height: 280px;
    padding: 0;
    scroll-margin-top: 118px;
  }
  .landing-PointsFeature {
    padding-top: 32px;
  }
  .landing-PointsFeature_Title {
    width: min(326px, 100% - 64px);
    min-height: 40px;
    padding: 0 12px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-PointsFeature_Lead {
    width: min(326px, 100% - 64px);
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .landing-PointsFeature_DesktopBreak {
    display: none;
  }
  .landing-PointsFeature_Image {
    width: 280px;
    margin-top: 14px;
  }
  .landing-Section.landing-Section-howSteps {
    min-height: 405px;
    padding: 0;
    height: auto;
    scroll-margin-top: 118px;
    background-image: url("../new/bg_wave_green_sp.svg?v=1784090509"), linear-gradient(to bottom, #b5fbf1 24px, #88f292 24px);
    background-size: 390px auto, 100% 100%;
  }
  .landing-HowSteps {
    padding-top: 55px;
  }
  .landing-HowSteps_Title {
    width: 221px;
  }
  .landing-HowSteps_List {
    width: 326px;
    max-width: calc(100% - 64px);
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-HowSteps_Item {
    gap: 5px;
  }
  .landing-HowSteps_Number {
    width: 20px;
    height: 20px;
    font-size: 15px;
  }
  .landing-HowSteps_DownloadLabel {
    width: 327px;
    max-width: calc(100% - 28px);
    min-height: 42px;
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-HowSteps_DownloadLabel::after {
    bottom: -8px;
    border-top-width: 9px;
    border-right-width: 9px;
    border-left-width: 9px;
  }
  .landing-HowSteps_Stores {
    gap: 16px;
    margin-top: 23px;
  }
  .landing-HowSteps_StoreImage {
    height: 52px;
  }
  .landing-Exchange_Count {
    color: #ffa220;
  }
  .landing-Exchange_Brands {
    width: 100%;
    max-width: 390px;
  }
  .landing-Footer {
    padding: 32px 0 32px;
  }
}
@media (max-width: 560px) {
  .landing-Container {
    width: min(100% - 28px, 1120px);
  }
  .landing-Nav .landing-Nav_Inner {
    width: 100%;
    margin: 0;
  }
  .landing-Nav_MenuButton {
    right: 0;
  }
  .landing-Hero_Stores {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .landing-FeatureList {
    grid-template-columns: 1fr;
  }
  .landing-Section.landing-Section-exchange {
    padding: 32px 0 29px;
  }
  .landing-Exchange_Title {
    width: min(326px, 100% - 36px);
    min-height: 40px;
    padding: 0 12px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-Exchange_Lead {
    width: min(326px, 100% - 36px);
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .landing-Exchange_DesktopBreak {
    display: none;
  }
  .landing-Exchange_Count {
    margin-top: 14px;
  }
  .landing-Exchange_Brands {
    margin-top: 13px;
  }
  .landing-Exchange_TrademarkLink {
    margin-top: 10px;
    color: #aaaaaa;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    text-underline-offset: 2px;
  }
  .landing-Exchange_TrademarkPanel {
    width: calc(100% - 24px);
    margin-top: 16px;
  }
  .landing-TrademarkCopy {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
  }
  .landing-TrademarkCopy_Item + .landing-TrademarkCopy_Item {
    margin-top: 20px;
  }
  .landing-TrademarkCopy_Heading {
    font-size: 12px;
  }
  .landing-Section.landing-Section-warauService {
    padding: 32px 0;
    scroll-margin-top: 118px;
  }
  .landing-WarauService_Title {
    gap: 4px;
    width: min(326px, 100% - 36px);
    min-height: 40px;
    padding: 0 12px;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-WarauService_TitleIcon {
    width: 20px;
    height: 20px;
  }
  .landing-WarauService_Lead {
    width: min(326px, 100% - 36px);
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .landing-WarauService_Image {
    width: 326px;
    max-width: 100%;
    margin-top: 14px;
  }
  .landing-WarauService_Cta {
    width: 326px;
    max-width: 100%;
    height: 48px;
    margin-top: 24px;
    padding: 0 12px;
    border-radius: 7px;
    box-shadow: 0 5px 0 #e88700;
    font-size: 18px;
    line-height: 1.6;
  }
  .landing-Section {
    padding: 58px 0;
  }
  .landing-Footer {
    font-size: 14px;
    text-align: left;
  }
  .landing-Footer_Inner {
    justify-items: start;
    width: min(332px, 100% - 56px);
    gap: 14px;
  }
  .landing-Footer_LinkList {
    display: block;
    margin: 0;
    padding-left: 24px;
    list-style: disc;
  }
  .landing-Footer_LinkItem {
    font-size: 14px;
    line-height: 1.6;
  }
  .landing-Footer_Copyright {
    font-size: 14px;
    line-height: 1.6;
  }
}
@media (max-width: 360px) {
  .landing-Section.landing-Section-howSteps {
    height: 435px;
  }
  .landing-Hero .landing-Hero_Stores,
  .landing-HowSteps_Stores {
    width: calc(100% - 24px);
  }
  .landing-Hero_Store,
  .landing-HowSteps_Store {
    flex: 0 1 auto;
    min-width: 0;
  }
  .landing-Hero_StoreImage,
  .landing-HowSteps_StoreImage {
    width: 100%;
    height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing-Hero_Logo,
  .landing-Hero_Phone,
  .landing-Hero .landing-Hero_Stores,
  .landing-Nav_Logo-menuReveal,
  .landing-Nav_Logo .landing-Image,
  .landing-WalkScene::before,
  .landing-WalkScene_Walker .landing-Image {
    animation: none;
  }
  .landing-MobileMenu_Panel,
  .landing-MobileMenu_Links,
  .landing-Exchange_TrademarkPanel,
  .landing-WarauService_Cta,
  .landing-MenuTrigger_Bar {
    transition: none;
  }
}
