*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

:root {
  --primary: #01b2c0;
  --text-dark: #3e4342;
  --accent-blue: #6286fe;
  --hero-gradient: linear-gradient(-42.57deg, #f0fbab 9%, #2fccd9 69%);
  --footer-gradient: linear-gradient(184.11deg, #2fccd9 2.5%, #10b3bd 71%);
  --section-gap-pc: 12rem;
  --section-gap-sp: 6rem;
  --padding-pc: 4rem;
  --padding-sp: 2rem;
  --z-base: 0;
  --z-float: 10;
  --z-sticky: 100;
  --z-modal: 200;
  --z-toast: 300;
  --easing: cubic-bezier(.4, .4, 0, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #fff;
  color: #3e4342;
  line-height: 180%;
  letter-spacing: 0;
  min-width: 1100px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 758px) {
  body {
    min-width: auto;
    padding-bottom: 0px;
  }
}

body.is-fixed {
  overflow: hidden;
}

a {
  transition: opacity 0.6s var(--easing);
}
@media (min-width: 758.11px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  height: auto;
}

h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 150%;
}
@media (max-width: 758px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 758px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 758px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 758px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 170%;
}
@media (max-width: 758px) {
  h5 {
    font-size: 1.6rem;
  }
}

[data-anime] {
  opacity: 0;
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
  will-change: opacity, transform;
}

[data-anime=fadeUp] {
  transform: translateY(30px);
}

[data-anime=fadeIn] {
  transform: none;
}

[data-anime=blur] {
  filter: blur(10px);
  transition: opacity 0.8s var(--easing), filter 0.8s var(--easing);
}

[data-anime].is-active {
  opacity: 1;
  transform: none;
  filter: none;
}

.c-inner {
  width: min(90%, 1120px);
  margin-left: auto;
  margin-right: auto;
}

.c-badge-qr {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.c-badge-qr__link {
  display: block;
}

.c-badge-qr__popup {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: var(--z-modal);
  width: max-content;
  min-width: 132px;
  padding: 12px;
  border: 1px solid rgba(1, 178, 192, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26, 32, 44, 0.16);
  text-align: center;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s var(--easing), visibility 0.2s var(--easing), transform 0.2s var(--easing);
}
.c-badge-qr__popup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(1, 178, 192, 0.16);
  border-bottom: 1px solid rgba(1, 178, 192, 0.16);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
.c-badge-qr__popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
@media (max-width: 758px) {
  .c-badge-qr__popup {
    display: none;
  }
}

.c-badge-qr__qr-img {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto 6px;
}

.c-badge-qr__label {
  margin: 0;
  color: #3e4342;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 758px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media (max-width: 758px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-tab-only {
  display: none !important;
}
@media (min-width: 758.11px) and (max-width: 1399px) {
  .u-tab-only {
    display: block !important;
  }
}

.u-tab-sp-only {
  display: none !important;
}
@media (max-width: 1399px) {
  .u-tab-sp-only {
    display: block !important;
  }
}

.u-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.u-pd-0 {
  padding: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-mg-0 {
  margin: 0px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-pd-8 {
  padding: 8px !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pb-8 {
  padding-bottom: 8px !important;
}

.u-pl-8 {
  padding-left: 8px !important;
}

.u-pr-8 {
  padding-right: 8px !important;
}

.u-mg-8 {
  margin: 8px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-pd-16 {
  padding: 16px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pb-16 {
  padding-bottom: 16px !important;
}

.u-pl-16 {
  padding-left: 16px !important;
}

.u-pr-16 {
  padding-right: 16px !important;
}

.u-mg-16 {
  margin: 16px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-pd-24 {
  padding: 24px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pb-24 {
  padding-bottom: 24px !important;
}

.u-pl-24 {
  padding-left: 24px !important;
}

.u-pr-24 {
  padding-right: 24px !important;
}

.u-mg-24 {
  margin: 24px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-pd-32 {
  padding: 32px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pb-32 {
  padding-bottom: 32px !important;
}

.u-pl-32 {
  padding-left: 32px !important;
}

.u-pr-32 {
  padding-right: 32px !important;
}

.u-mg-32 {
  margin: 32px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-pd-40 {
  padding: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-mg-40 {
  margin: 40px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-pd-48 {
  padding: 48px !important;
}

.u-pt-48 {
  padding-top: 48px !important;
}

.u-pb-48 {
  padding-bottom: 48px !important;
}

.u-pl-48 {
  padding-left: 48px !important;
}

.u-pr-48 {
  padding-right: 48px !important;
}

.u-mg-48 {
  margin: 48px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-pd-56 {
  padding: 56px !important;
}

.u-pt-56 {
  padding-top: 56px !important;
}

.u-pb-56 {
  padding-bottom: 56px !important;
}

.u-pl-56 {
  padding-left: 56px !important;
}

.u-pr-56 {
  padding-right: 56px !important;
}

.u-mg-56 {
  margin: 56px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-pd-64 {
  padding: 64px !important;
}

.u-pt-64 {
  padding-top: 64px !important;
}

.u-pb-64 {
  padding-bottom: 64px !important;
}

.u-pl-64 {
  padding-left: 64px !important;
}

.u-pr-64 {
  padding-right: 64px !important;
}

.u-mg-64 {
  margin: 64px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-pd-72 {
  padding: 72px !important;
}

.u-pt-72 {
  padding-top: 72px !important;
}

.u-pb-72 {
  padding-bottom: 72px !important;
}

.u-pl-72 {
  padding-left: 72px !important;
}

.u-pr-72 {
  padding-right: 72px !important;
}

.u-mg-72 {
  margin: 72px !important;
}

.u-mt-72 {
  margin-top: 72px !important;
}

.u-mb-72 {
  margin-bottom: 72px !important;
}

.u-ml-72 {
  margin-left: 72px !important;
}

.u-mr-72 {
  margin-right: 72px !important;
}

.u-pd-80 {
  padding: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-mg-80 {
  margin: 80px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-pd-88 {
  padding: 88px !important;
}

.u-pt-88 {
  padding-top: 88px !important;
}

.u-pb-88 {
  padding-bottom: 88px !important;
}

.u-pl-88 {
  padding-left: 88px !important;
}

.u-pr-88 {
  padding-right: 88px !important;
}

.u-mg-88 {
  margin: 88px !important;
}

.u-mt-88 {
  margin-top: 88px !important;
}

.u-mb-88 {
  margin-bottom: 88px !important;
}

.u-ml-88 {
  margin-left: 88px !important;
}

.u-mr-88 {
  margin-right: 88px !important;
}

.u-pd-96 {
  padding: 96px !important;
}

.u-pt-96 {
  padding-top: 96px !important;
}

.u-pb-96 {
  padding-bottom: 96px !important;
}

.u-pl-96 {
  padding-left: 96px !important;
}

.u-pr-96 {
  padding-right: 96px !important;
}

.u-mg-96 {
  margin: 96px !important;
}

.u-mt-96 {
  margin-top: 96px !important;
}

.u-mb-96 {
  margin-bottom: 96px !important;
}

.u-ml-96 {
  margin-left: 96px !important;
}

.u-mr-96 {
  margin-right: 96px !important;
}

.u-pd-104 {
  padding: 104px !important;
}

.u-pt-104 {
  padding-top: 104px !important;
}

.u-pb-104 {
  padding-bottom: 104px !important;
}

.u-pl-104 {
  padding-left: 104px !important;
}

.u-pr-104 {
  padding-right: 104px !important;
}

.u-mg-104 {
  margin: 104px !important;
}

.u-mt-104 {
  margin-top: 104px !important;
}

.u-mb-104 {
  margin-bottom: 104px !important;
}

.u-ml-104 {
  margin-left: 104px !important;
}

.u-mr-104 {
  margin-right: 104px !important;
}

.u-pd-112 {
  padding: 112px !important;
}

.u-pt-112 {
  padding-top: 112px !important;
}

.u-pb-112 {
  padding-bottom: 112px !important;
}

.u-pl-112 {
  padding-left: 112px !important;
}

.u-pr-112 {
  padding-right: 112px !important;
}

.u-mg-112 {
  margin: 112px !important;
}

.u-mt-112 {
  margin-top: 112px !important;
}

.u-mb-112 {
  margin-bottom: 112px !important;
}

.u-ml-112 {
  margin-left: 112px !important;
}

.u-mr-112 {
  margin-right: 112px !important;
}

.u-pd-120 {
  padding: 120px !important;
}

.u-pt-120 {
  padding-top: 120px !important;
}

.u-pb-120 {
  padding-bottom: 120px !important;
}

.u-pl-120 {
  padding-left: 120px !important;
}

.u-pr-120 {
  padding-right: 120px !important;
}

.u-mg-120 {
  margin: 120px !important;
}

.u-mt-120 {
  margin-top: 120px !important;
}

.u-mb-120 {
  margin-bottom: 120px !important;
}

.u-ml-120 {
  margin-left: 120px !important;
}

.u-mr-120 {
  margin-right: 120px !important;
}

.u-pd-128 {
  padding: 128px !important;
}

.u-pt-128 {
  padding-top: 128px !important;
}

.u-pb-128 {
  padding-bottom: 128px !important;
}

.u-pl-128 {
  padding-left: 128px !important;
}

.u-pr-128 {
  padding-right: 128px !important;
}

.u-mg-128 {
  margin: 128px !important;
}

.u-mt-128 {
  margin-top: 128px !important;
}

.u-mb-128 {
  margin-bottom: 128px !important;
}

.u-ml-128 {
  margin-left: 128px !important;
}

.u-mr-128 {
  margin-right: 128px !important;
}

.u-pd-136 {
  padding: 136px !important;
}

.u-pt-136 {
  padding-top: 136px !important;
}

.u-pb-136 {
  padding-bottom: 136px !important;
}

.u-pl-136 {
  padding-left: 136px !important;
}

.u-pr-136 {
  padding-right: 136px !important;
}

.u-mg-136 {
  margin: 136px !important;
}

.u-mt-136 {
  margin-top: 136px !important;
}

.u-mb-136 {
  margin-bottom: 136px !important;
}

.u-ml-136 {
  margin-left: 136px !important;
}

.u-mr-136 {
  margin-right: 136px !important;
}

.u-pd-144 {
  padding: 144px !important;
}

.u-pt-144 {
  padding-top: 144px !important;
}

.u-pb-144 {
  padding-bottom: 144px !important;
}

.u-pl-144 {
  padding-left: 144px !important;
}

.u-pr-144 {
  padding-right: 144px !important;
}

.u-mg-144 {
  margin: 144px !important;
}

.u-mt-144 {
  margin-top: 144px !important;
}

.u-mb-144 {
  margin-bottom: 144px !important;
}

.u-ml-144 {
  margin-left: 144px !important;
}

.u-mr-144 {
  margin-right: 144px !important;
}

.u-pd-152 {
  padding: 152px !important;
}

.u-pt-152 {
  padding-top: 152px !important;
}

.u-pb-152 {
  padding-bottom: 152px !important;
}

.u-pl-152 {
  padding-left: 152px !important;
}

.u-pr-152 {
  padding-right: 152px !important;
}

.u-mg-152 {
  margin: 152px !important;
}

.u-mt-152 {
  margin-top: 152px !important;
}

.u-mb-152 {
  margin-bottom: 152px !important;
}

.u-ml-152 {
  margin-left: 152px !important;
}

.u-mr-152 {
  margin-right: 152px !important;
}

.u-pd-160 {
  padding: 160px !important;
}

.u-pt-160 {
  padding-top: 160px !important;
}

.u-pb-160 {
  padding-bottom: 160px !important;
}

.u-pl-160 {
  padding-left: 160px !important;
}

.u-pr-160 {
  padding-right: 160px !important;
}

.u-mg-160 {
  margin: 160px !important;
}

.u-mt-160 {
  margin-top: 160px !important;
}

.u-mb-160 {
  margin-bottom: 160px !important;
}

.u-ml-160 {
  margin-left: 160px !important;
}

.u-mr-160 {
  margin-right: 160px !important;
}

.u-pd-168 {
  padding: 168px !important;
}

.u-pt-168 {
  padding-top: 168px !important;
}

.u-pb-168 {
  padding-bottom: 168px !important;
}

.u-pl-168 {
  padding-left: 168px !important;
}

.u-pr-168 {
  padding-right: 168px !important;
}

.u-mg-168 {
  margin: 168px !important;
}

.u-mt-168 {
  margin-top: 168px !important;
}

.u-mb-168 {
  margin-bottom: 168px !important;
}

.u-ml-168 {
  margin-left: 168px !important;
}

.u-mr-168 {
  margin-right: 168px !important;
}

.u-pd-176 {
  padding: 176px !important;
}

.u-pt-176 {
  padding-top: 176px !important;
}

.u-pb-176 {
  padding-bottom: 176px !important;
}

.u-pl-176 {
  padding-left: 176px !important;
}

.u-pr-176 {
  padding-right: 176px !important;
}

.u-mg-176 {
  margin: 176px !important;
}

.u-mt-176 {
  margin-top: 176px !important;
}

.u-mb-176 {
  margin-bottom: 176px !important;
}

.u-ml-176 {
  margin-left: 176px !important;
}

.u-mr-176 {
  margin-right: 176px !important;
}

.u-pd-184 {
  padding: 184px !important;
}

.u-pt-184 {
  padding-top: 184px !important;
}

.u-pb-184 {
  padding-bottom: 184px !important;
}

.u-pl-184 {
  padding-left: 184px !important;
}

.u-pr-184 {
  padding-right: 184px !important;
}

.u-mg-184 {
  margin: 184px !important;
}

.u-mt-184 {
  margin-top: 184px !important;
}

.u-mb-184 {
  margin-bottom: 184px !important;
}

.u-ml-184 {
  margin-left: 184px !important;
}

.u-mr-184 {
  margin-right: 184px !important;
}

.u-pd-192 {
  padding: 192px !important;
}

.u-pt-192 {
  padding-top: 192px !important;
}

.u-pb-192 {
  padding-bottom: 192px !important;
}

.u-pl-192 {
  padding-left: 192px !important;
}

.u-pr-192 {
  padding-right: 192px !important;
}

.u-mg-192 {
  margin: 192px !important;
}

.u-mt-192 {
  margin-top: 192px !important;
}

.u-mb-192 {
  margin-bottom: 192px !important;
}

.u-ml-192 {
  margin-left: 192px !important;
}

.u-mr-192 {
  margin-right: 192px !important;
}

.u-pd-200 {
  padding: 200px !important;
}

.u-pt-200 {
  padding-top: 200px !important;
}

.u-pb-200 {
  padding-bottom: 200px !important;
}

.u-pl-200 {
  padding-left: 200px !important;
}

.u-pr-200 {
  padding-right: 200px !important;
}

.u-mg-200 {
  margin: 200px !important;
}

.u-mt-200 {
  margin-top: 200px !important;
}

.u-mb-200 {
  margin-bottom: 200px !important;
}

.u-ml-200 {
  margin-left: 200px !important;
}

.u-mr-200 {
  margin-right: 200px !important;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: background-color 0.6s var(--easing);
}

.l-header__hamburger {
  display: none;
}
@media (max-width: 758px) {
  .l-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: calc(var(--z-modal) + 1);
  }
}

.l-header__hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: background-color 0.3s;
}

.l-header__hamburger__line::before,
.l-header__hamburger__line::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.l-header__hamburger__line::before {
  top: -8px;
}

.l-header__hamburger__line::after {
  bottom: -8px;
}

.l-header__hamburger.is-active .l-header__hamburger__line {
  background-color: transparent;
}

.l-header__hamburger.is-active .l-header__hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 758px) {
  .l-header__sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
}

@media (max-width: 758px) {
  .l-header__sp-nav.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.l-footer {
  background: var(--footer-gradient);
  opacity: 0.9;
  padding: 100px 60px 40px;
  color: #fff;
}
@media (max-width: 758px) {
  .l-footer {
    padding: 60px 20px 120px;
  }
}

.l-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.l-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media (max-width: 758px) {
  .l-footer__top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
  }
}

.l-footer__logo {
  width: 400px;
}
@media (max-width: 758px) {
  .l-footer__logo {
    width: 100%;
  }
}

.l-footer__logo img {
  width: 118px;
  height: auto;
  margin-bottom: 16px;
}

.l-footer__address {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (max-width: 758px) {
  .l-footer__address {
    font-size: 1.5rem;
  }
}

.l-footer__nav {
  display: flex;
  width: calc(100% - 400px);
  gap: 80px;
}
@media (max-width: 758px) {
  .l-footer__nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.l-footer__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-footer__nav-col li {
  margin-bottom: 8px;
}
@media (max-width: 758px) {
  .l-footer__nav-col li {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}

.l-footer__nav-col a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 758px) {
  .l-footer__nav-col a {
    font-size: 1.5rem;
  }
}

@media (max-width: 758px) {
  .l-footer__nav-col:first-child {
    width: 100%;
  }
  .l-footer__nav-col:nth-child(2), .l-footer__nav-col:nth-child(3) {
    flex: 0 0 auto;
  }
}

.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 758px) {
  .l-footer__bottom {
    gap: 20px;
  }
}

.l-footer__badge {
  background: #fff;
  border-radius: 4px;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.l-footer__badge img {
  width: 93px;
  height: auto;
  display: block;
}

.l-footer__copy {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-left: auto;
}

.l-footer-sp-bar {
  display: none;
}
@media (max-width: 758px) {
  .l-footer-sp-bar {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--footer-gradient);
    border-top: 1px solid #fff;
    padding: 15px 8px;
    gap: 4px;
    transform: translateY(100%);
    transition: transform 0.4s var(--easing);
  }
  .l-footer-sp-bar.is-visible {
    transform: translateY(0);
  }
}

.l-footer-sp-bar__logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}

.l-footer-sp-bar__name {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}

.l-footer-sp-bar__badges {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.l-footer-sp-bar__badges a {
  display: block;
  line-height: 0;
}
.l-footer-sp-bar__badges img {
  height: 38px;
  width: auto;
}

.p-hero {
  position: relative;
  width: 100%;
  height: 693px;
  overflow: hidden;
  padding: 0 60px;
}
@media (max-width: 1200px) {
  .p-hero {
    padding: 0 40px;
  }
}
@media (max-width: 758px) {
  .p-hero {
    height: auto;
    padding: 0 20px 40px;
  }
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(-42.57deg, rgb(240, 251, 171) 9.05%, rgb(47, 204, 217) 69.49%);
  opacity: 0.5;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  opacity: 1;
}

.p-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1250px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 758px) {
  .p-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px 0px 0;
  }
}

.p-hero__content {
  width: 530px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 758px) {
  .p-hero__content {
    display: contents;
  }
}

.p-hero__logo {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 14px;
}
@media (max-width: 758px) {
  .p-hero__logo {
    order: 1;
    gap: 10px;
    margin-bottom: 30px;
  }
}

.p-hero__logo-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 758px) {
  .p-hero__logo-body {
    gap: 2px;
  }
}

.p-hero__logo-icon {
  width: 67px;
  height: 67px;
  border-radius: 16px;
}
@media (max-width: 758px) {
  .p-hero__logo-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
}

.p-hero__logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #009DA3;
  line-height: 120%;
}
@media (max-width: 758px) {
  .p-hero__logo-text {
    font-size: 2rem;
  }
}

.p-hero__label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  background-color: #02C6D7;
  padding: 6px 15px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  line-height: normal;
  align-self: flex-start;
  clip-path: polygon(0 0, calc(100% - 10px) 0, calc(100% - 10px) 11px, 100% 11px, 100% 100%, 10px 100%, 10px calc(100% - 9px), 0 calc(100% - 9px));
}
@media (max-width: 758px) {
  .p-hero__label {
    font-size: 1.3rem;
    padding: 2px 15px;
  }
}

.p-hero__sub {
  font-size: 3rem;
  font-weight: 900;
  color: #3e4342;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 758px) {
  .p-hero__sub {
    font-size: 1.6rem;
    order: 3;
    text-align: center;
    margin-bottom: 5px;
  }
}

.p-hero__ttl {
  font-size: 5.4rem;
  font-weight: 900;
  color: #3e4342;
  letter-spacing: 0.07em;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 758px) {
  .p-hero__ttl {
    font-size: 2.2rem;
    order: 4;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 12px;
  }
}

.p-hero__line {
  width: 48px;
  height: 2px;
  background-color: #3e4342;
  margin-bottom: 17px;
  opacity: 0.3;
}
@media (max-width: 758px) {
  .p-hero__line {
    order: 5;
    margin: 0 auto 12px;
  }
}

.p-hero__desc {
  font-size: 1.4rem;
  font-weight: 400;
  color: #3e4342;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 418px;
}
@media (max-width: 758px) {
  .p-hero__desc {
    font-size: 1.4rem;
    order: 6;
    line-height: 1.8;
  }
}

.p-hero__badges {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 758px) {
  .p-hero__badges {
    order: 7;
    justify-content: center;
  }
}

.p-hero__badges a {
  display: block;
  transition: opacity 0.2s;
}
.p-hero__badges a:hover {
  opacity: 0.8;
}

.p-hero__badge-appstore {
  width: 150px;
  height: auto;
}
@media (max-width: 758px) {
  .p-hero__badge-appstore {
    width: auto;
    height: 50px;
  }
}

.p-hero__badge-googleplay {
  width: 185px;
  height: auto;
}
@media (max-width: 758px) {
  .p-hero__badge-googleplay {
    width: auto;
    height: 50px;
  }
}

.p-hero__visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 800px;
}
@media (max-width: 758px) {
  .p-hero__visual {
    position: relative;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 40px;
    order: 2;
  }
}

.p-hero__visual-img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 758px) {
  .p-hero__visual-img {
    width: 90%;
  }
}

.p-hero__deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.p-hero__deco--globe {
  top: -1%;
  left: 3%;
  width: 85px;
  height: auto;
  animation: heroFloat 3.5s ease-in-out infinite;
}
@media (max-width: 758px) {
  .p-hero__deco--globe {
    width: 60px;
    left: -3%;
    top: 3%;
  }
}

.p-hero__deco--bag {
  bottom: 5%;
  right: -2%;
  width: 180px;
  height: auto;
  animation: heroFloat 4s ease-in-out 0.5s infinite;
}
@media (max-width: 758px) {
  .p-hero__deco--bag {
    width: 100px;
    bottom: 15%;
    right: -6%;
  }
}

.p-hero__features {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 44px;
  justify-content: center;
  padding: 0 60px;
}
@media (max-width: 758px) {
  .p-hero__features {
    position: relative;
    bottom: auto;
    margin-top: -20px;
    gap: 8px;
    padding: 0;
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.p-hero__feature {
  position: relative;
  width: 149px;
  height: 149px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease forwards;
}
.p-hero__feature:nth-child(1) {
  animation-delay: 0.3s;
}
.p-hero__feature:nth-child(2) {
  animation-delay: 0s;
}
.p-hero__feature:nth-child(3) {
  animation-delay: 0.6s;
}
@media (max-width: 758px) {
  .p-hero__feature {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
.p-hero__feature-icon::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 30px;
  height: 30px;
  background: url("../img/index/feature_confetti.png") no-repeat center/contain;
  transform: rotate(30deg);
}
@media (max-width: 758px) {
  .p-hero__feature-icon::before {
    display: none;
  }
}

.p-hero__feature:nth-child(2) {
  margin-top: -50px;
}
@media (max-width: 758px) {
  .p-hero__feature:nth-child(2) {
    margin-top: -25px;
  }
}

.p-hero__feature-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #02c6d7;
  border-radius: 7px;
  transform: rotate(-30deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 758px) {
  .p-hero__feature-icon {
    width: 40px;
    height: 40px;
  }
}

.p-hero__feature-icon img {
  width: 34px;
  height: 34px;
  transform: rotate(30deg);
}
@media (max-width: 758px) {
  .p-hero__feature-icon img {
    width: 22px;
    height: 22px;
  }
}

.p-hero__feature:nth-child(2) .p-hero__feature-icon img {
  width: 25px;
  height: 25px;
}
@media (max-width: 758px) {
  .p-hero__feature:nth-child(2) .p-hero__feature-icon img {
    width: 18px;
    height: 18px;
  }
}

.p-hero__feature-sub {
  font-size: 1.3rem;
  font-weight: 500;
  color: #3e4342;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 758px) {
  .p-hero__feature-sub {
    font-size: 1rem;
    margin-top: 0;
  }
}

.p-hero__feature-value {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(transparent 80%, rgba(47, 204, 217, 0.4) 80%);
  padding: 0 5px 2px;
  line-height: 1;
}
@media (max-width: 758px) {
  .p-hero__feature-value {
    font-size: 1.4rem;
  }
}

.p-banner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -5px auto 0;
  max-width: 743px;
  height: 54px;
  background: linear-gradient(to right, #6281fe, #71b0fc);
  border-radius: 43px;
  padding: 0 30px;
  overflow: visible;
}
@media (max-width: 758px) {
  .p-banner {
    margin: 20px 20px 0;
    height: 60px;
    border-radius: 100px;
  }
}
.p-banner::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -19px;
  width: 24px;
  height: 28px;
  background: url("../img/index/banner_confetti.png") no-repeat center/contain;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 758px) {
  .p-banner::after {
    display: none;
  }
}

.p-banner__text {
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 758px) {
  .p-banner__text {
    font-size: 1.6rem;
    text-align: center;
    line-height: 150%;
    letter-spacing: 0;
  }
}

.p-marquee {
  width: 100%;
  margin-top: 20px;
}

.p-marquee__scroll {
  overflow: hidden;
}

.p-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 120s linear infinite;
}

.p-marquee__track img {
  height: 126px;
  width: auto;
  margin-right: 20px;
  object-fit: contain;
}
@media (max-width: 758px) {
  .p-marquee__track img {
    height: 80px;
    margin-right: 10px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-sidebar-cta {
  width: 47px;
  height: 301px;
  background-color: var(--primary);
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media (max-width: 758px) {
  .p-sidebar-cta {
    display: none;
  }
}

.p-sidebar-cta__icon {
  width: 26px;
  height: 26px;
  writing-mode: horizontal-tb;
}

.p-bubble {
  padding: 60px 0 80px;
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
  background: url("../img/index/bubble_bg.png") no-repeat center bottom/100% auto;
}
@media (max-width: 758px) {
  .p-bubble {
    padding: 20px 20px 20px;
  }
}

.p-bubble__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 758px) {
  .p-bubble__inner {
    flex-direction: column;
    gap: 5px;
    align-items: center;
    margin-bottom: 40px;
  }
}

.p-bubble__item {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
@media (max-width: 758px) {
  .p-bubble__item {
    gap: 8px;
  }
}

.p-bubble__item--right {
  flex-direction: row-reverse;
  margin-bottom: -40px;
}
@media (max-width: 758px) {
  .p-bubble__item--right {
    margin-bottom: 0px;
  }
}

.p-bubble__chara {
  width: 74px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 758px) {
  .p-bubble__chara {
    width: 60px;
  }
}

.p-bubble__item--right .p-bubble__chara {
  width: 83px;
}

.p-bubble__item--right .p-bubble__balloon {
  background: #DDE5FF;
  border-radius: 100px 100px 0 100px;
}

.p-bubble__item--right .p-bubble__text__highlight {
  color: #6286FE;
}

.p-bubble__balloon {
  background: rgba(47, 204, 217, 0.3);
  border-radius: 100px 100px 100px 0;
  padding: 12px 24px;
}
@media (max-width: 758px) {
  .p-bubble__balloon {
    padding: 12px 12px;
  }
}

.p-bubble__text {
  font-size: 2rem;
  font-weight: 500;
  color: #3e4342;
  white-space: nowrap;
}
@media (max-width: 758px) {
  .p-bubble__text {
    font-size: 1.4rem;
  }
}

.p-bubble__text__highlight {
  color: #03ABB2;
  font-weight: 700;
}

.p-support {
  padding: 40px 0 60px;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}
@media (max-width: 758px) {
  .p-support {
    padding: 30px 20px 40px;
  }
}

.p-support__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.p-support__lead {
  font-size: 2.8rem;
  font-weight: 700;
  color: #3e4342;
  margin-bottom: 16px;
}
@media (max-width: 758px) {
  .p-support__lead {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
}

.p-support__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 758px) {
  .p-support__logo {
    gap: 4px;
    margin-bottom: 4px;
  }
}

.p-support__logo-text {
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(transparent 80%, rgba(47, 204, 217, 0.4) 80%);
  padding: 0 2px 4px;
}
@media (max-width: 758px) {
  .p-support__logo-text {
    font-size: 2.4rem;
  }
}

.p-support__logo-after {
  font-size: 3rem;
  font-weight: 700;
  color: #3e4342;
}
@media (max-width: 758px) {
  .p-support__logo-after {
    font-size: 1.8rem;
  }
}

.p-support__message {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(to right, #6262FE, #71B0FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 758px) {
  .p-support__message {
    font-size: 1.8rem;
  }
}
.p-support__message::before, .p-support__message::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transform: rotate(-45deg);
  border-radius: 2px;
  background: linear-gradient(101deg, #2FCCD9 4.36%, #F0FBAB 139.6%);
  box-shadow: 0 0 18.1px 0 rgba(0, 168, 180, 0.15) inset;
}

.p-four-step {
  position: relative;
  background: url("../img/index/four_step_bg.png") no-repeat center top/cover;
  content-visibility: auto;
  contain-intrinsic-size: auto 1600px;
}

.p-four {
  padding: 80px 0 100px;
}
@media (max-width: 758px) {
  .p-four {
    padding: 50px 20px 20px;
  }
}

.p-four__inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 758px) {
  .p-four__inner {
    padding: 0;
  }
}

.p-four__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}
@media (max-width: 758px) {
  .p-four__ttl {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .p-four__ttl br {
    width: 100%;
  }
}

.p-four__ttl-icon {
  width: 52px;
  height: 52px;
}
@media (max-width: 758px) {
  .p-four__ttl-icon {
    width: 52px;
    height: 52px;
  }
}

.p-four__ttl-name {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--primary);
}
@media (max-width: 758px) {
  .p-four__ttl-name {
    font-size: 2.8rem;
  }
}

.p-four__ttl-text {
  font-size: 3.2rem;
  font-weight: 500;
  color: #3e4342;
}
@media (max-width: 758px) {
  .p-four__ttl-text {
    font-size: 2.2rem;
  }
}

.p-four__ttl-accent {
  font-size: 3.6rem;
  position: relative;
  color: #6286FE;
  font-weight: 800;
}
.p-four__ttl-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 8px;
  background: rgba(98, 134, 254, 0.3);
  z-index: 0;
  border-radius: 100px;
}

.p-four__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.3888888889vw, 20px);
}
@media (max-width: 758px) {
  .p-four__cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.p-four__card {
  text-align: center;
  position: relative;
}
@media (max-width: 758px) {
  .p-four__card {
    padding: 0 10px 10px;
  }
}
.p-four__card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: clamp(18px, 1.8055555556vw, 26px);
  left: calc(50% + clamp(25px, 2.5vw, 36px));
  width: calc(100% - clamp(25px, 2.5vw, 36px));
  height: clamp(58px, 5.8333333333vw, 84px);
  background: url("../img/index/four_wave.png") no-repeat center/contain;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 758px) {
  .p-four__card:not(:last-child)::after {
    display: none;
  }
}
.p-four__card:nth-child(1) {
  transition-delay: 0s;
}
.p-four__card:nth-child(2) {
  transition-delay: 0.15s;
}
.p-four__card:nth-child(3) {
  transition-delay: 0.3s;
}
.p-four__card:nth-child(4) {
  transition-delay: 0.45s;
}

.p-four__card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(4px, 0.5555555556vw, 8px);
}

.p-four__card-icon img {
  width: clamp(100px, 10.0694444444vw, 145px);
  height: clamp(100px, 10.0694444444vw, 145px);
}
@media (max-width: 758px) {
  .p-four__card-icon img {
    width: 145px;
    height: 145px;
  }
}

.p-four__card-ttl {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: clamp(8px, 0.8333333333vw, 12px);
  line-height: 1.5;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 758px) {
  .p-four__card-ttl {
    font-size: 2rem;
    min-height: auto;
  }
}

.p-four__card-desc {
  /*font-size: fluid(10, 13);*/
  font-size: 1.3rem;
  font-weight: 400;
  color: #3e4342;
  line-height: 1.6;
  letter-spacing: 0;
}
@media (max-width: 758px) {
  .p-four__card-desc {
    font-size: 1.2rem;
  }
}

.p-step {
  padding: 80px 0px 100px;
}
@media (max-width: 758px) {
  .p-step {
    padding: 20px 20px 30px;
  }
}

.p-step__inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 758px) {
  .p-step__inner {
    padding: 0;
    flex-direction: column;
    gap: 0px;
  }
}

.p-step__header {
  width: 200px;
  margin-bottom: 50px;
}
@media (max-width: 758px) {
  .p-step__header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }
}

.p-step__header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
@media (max-width: 758px) {
  .p-step__header-logo {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
    justify-content: center;
  }
}

.p-step__header-logo img {
  width: 52px;
  height: 52px;
}
@media (max-width: 758px) {
  .p-step__header-logo img {
    width: 52px;
    height: 52px;
  }
}

.p-step__header-logo span {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
}
@media (max-width: 758px) {
  .p-step__header-logo span {
    font-size: 2.8rem;
  }
}

.p-step__header-sub {
  font-size: 2.8rem;
  font-weight: 600;
  color: #3e4342;
  margin-bottom: 16px;
}
@media (max-width: 758px) {
  .p-step__header-sub {
    font-size: 2.2rem;
    margin-bottom: 0;
    text-align: center;
  }
}

.p-step__header-ttl {
  font-size: 4rem;
  font-weight: 900;
  color: #6286FE;
  position: relative;
  display: inline-block;
}
.p-step__header-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 8px;
  background: rgba(98, 134, 254, 0.3);
  z-index: 0;
  border-radius: 100px;
}
@media (max-width: 758px) {
  .p-step__header-ttl::after {
    bottom: 1px;
    height: 4px;
  }
}
@media (max-width: 758px) {
  .p-step__header-ttl {
    font-size: 2.8rem;
    width: auto;
    text-align: center;
  }
}

.p-step__list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.9411764706vw + -12.3529411765px, 30px);
  width: calc(100% - 200px);
}
@media (max-width: 758px) {
  .p-step__list {
    width: 100%;
  }
}

.p-step__item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4.1176470588vw + -29.2941176471px, 30px);
  position: relative;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 18.1px 0 rgba(0, 168, 180, 0.15);
  padding: clamp(24px, 1.7647058824vw + 4.5882352941px, 30px) clamp(24px, 4.7058823529vw + -27.7647058824px, 40px) clamp(24px, 1.7647058824vw + 4.5882352941px, 30px) clamp(40px, 5.8823529412vw + -24.7058823529px, 60px);
}
@media (max-width: 758px) {
  .p-step__item {
    flex-direction: column;
    padding-top: 40px;
    margin-top: 30px;
    gap: 5px;
  }
}
.p-step__item:last-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/index/step_04_bg.png") no-repeat center/100% 100%;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}
.p-step__item:last-child > *:not(.p-step__num) {
  position: relative;
  z-index: 1;
}
.p-step__item:nth-child(1) {
  transition-delay: 0s;
}
.p-step__item:nth-child(2) {
  transition-delay: 0.15s;
}
.p-step__item:nth-child(3) {
  transition-delay: 0.3s;
}
.p-step__item:nth-child(4) {
  transition-delay: 0.45s;
}

.p-step__num {
  width: clamp(46px, 4.1176470588vw + 0.7058823529px, 60px);
  height: clamp(46px, 4.1176470588vw + 0.7058823529px, 60px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #2FCCD9 0%, #C0EFB7 100%);
  border-radius: clamp(8px, 0.5882352941vw + 1.5294117647px, 10px);
  transform: rotate(45deg);
  box-shadow: inset 0 0 18.1px 0 rgba(0, 0, 0, 0.05);
  position: absolute;
  left: calc(clamp(46px, 4.1176470588vw + 0.7058823529px, 60px) / -2);
  top: 50%;
  margin-top: calc(clamp(46px, 4.1176470588vw + 0.7058823529px, 60px) / -2);
  z-index: 2;
}
@media (max-width: 758px) {
  .p-step__num {
    width: 46px;
    height: 46px;
    left: 50%;
    top: -23px;
    margin-top: 0;
    margin-left: -23px;
    border-radius: 8px;
  }
}

.p-step__num span {
  font-size: clamp(20px, 5.8823529412vw + -44.7058823529px, 40px);
  font-weight: 900;
  color: #fff;
  transform: rotate(-45deg);
}

.p-step__body {
  flex: 1;
}

.p-step__item-ttl {
  color: #01B2C0;
  font-size: clamp(19px, 0.8823529412vw + 9.2941176471px, 22px);
  font-weight: 700;
  line-height: 150%;
  margin-bottom: clamp(8px, 1.1764705882vw + -4.9411764706px, 12px);
}
@media (max-width: 758px) {
  .p-step__item-ttl {
    text-align: center;
  }
}

.p-step__item-desc {
  font-size: clamp(13px, 0.2941176471vw + 9.7647058824px, 14px);
  font-weight: 400;
  color: #3e4342;
  line-height: 1.6;
  padding-right: clamp(20px, 11.7647058824vw + -109.4117647059px, 60px);
}

.p-step__item-badges {
  display: flex;
  gap: clamp(10px, 1.1764705882vw + -2.9411764706px, 14px);
  margin-top: clamp(14px, 1.7647058824vw + -5.4117647059px, 20px);
}
@media (max-width: 758px) {
  .p-step__item-badges {
    justify-content: center;
  }
}

.p-step__item-badges .c-badge-qr__link img {
  height: clamp(40px, 4.4117647059vw + -8.5294117647px, 55px);
  width: auto;
}

.p-step__item-visual {
  flex-shrink: 0;
  width: clamp(280px, 20.5882352941vw + 53.5294117647px, 350px);
}
@media (max-width: 758px) {
  .p-step__item-visual {
    width: 100%;
    text-align: center;
  }
}

.p-step__item-visual:has(> img) {
  align-self: flex-end;
  margin-bottom: calc(-1 * clamp(24px, 1.7647058824vw + 4.5882352941px, 30px));
}

.p-step__item-visual > img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

.p-community {
  padding: 80px 0 100px;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
@media (max-width: 758px) {
  .p-community {
    padding: 50px 20px 40px;
  }
}

.p-community__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.p-community__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.p-community__logo-text {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--primary);
}
@media (max-width: 758px) {
  .p-community__logo-text {
    font-size: 2.4rem;
  }
}

.p-community__ttl {
  font-size: 2.4rem;
  font-weight: 500;
  color: #3e4342;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
@media (max-width: 758px) {
  .p-community__ttl {
    font-size: 1.8rem;
  }
}

.p-community__ttl-accent {
  font-weight: 900;
  color: var(--accent-blue);
  position: relative;
}
.p-community__ttl-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(98, 134, 254, 0.3);
  z-index: 0;
  border-radius: 100px;
}
@media (max-width: 758px) {
  .p-community__ttl-accent::after {
    bottom: 0;
    height: 5px;
  }
}

.p-community__desc {
  font-size: 1.6rem;
  font-weight: 400;
  color: #767E7D;
  margin-bottom: 50px;
}
@media (max-width: 758px) {
  .p-community__desc {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.p-community__icons {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  flex-wrap: wrap;
}
@media (max-width: 758px) {
  .p-community__icons {
    gap: 20px;
  }
}

.p-community__icon-item {
  text-align: center;
  position: relative;
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 758px) {
  .p-community__icon-item {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.p-community__icon-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 20px));
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background: rgba(47, 204, 217, 0.06);
  filter: blur(9.05px);
  z-index: 0;
}
@media (max-width: 758px) {
  .p-community__icon-item::before {
    width: 150px;
    height: 150px;
  }
}
.p-community__icon-item:nth-child(1) {
  transition-delay: 0s;
}
.p-community__icon-item:nth-child(2) {
  transition-delay: 0.15s;
}
.p-community__icon-item:nth-child(3) {
  transition-delay: 0.3s;
}
.p-community__icon-item:nth-child(4) {
  transition-delay: 0.45s;
}
.p-community__icon-item:nth-child(5) {
  transition-delay: 0.6s;
}

.p-community__icon-item img {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-bottom: clamp(8px, 0.8333333333vw, 12px);
  position: relative;
  z-index: 1;
}
@media (max-width: 758px) {
  .p-community__icon-item img {
    width: 150px;
    height: 150px;
  }
}

.p-community__icon-item p {
  font-size: clamp(13px, 1.0416666667vw, 15px);
  font-weight: 700;
  color: #00A3B1;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 758px) {
  .p-community__icon-item p {
    font-size: 1.6rem;
    padding-right: 20px;
  }
}
.p-community__icon-item p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14.493px;
  height: 14.493px;
  transform: rotate(-45deg);
  border-radius: 2px;
  background: linear-gradient(101deg, #2FCCD9 4.36%, #F0FBAB 139.6%);
  box-shadow: 0 0 18.1px 0 rgba(0, 168, 180, 0.15) inset;
}

.p-linc-community {
  padding: 40px 0 40px;
  text-align: center;
  contain-intrinsic-size: auto 500px;
}
@media (max-width: 758px) {
  .p-linc-community {
    padding: 50px 20px 20px;
  }
}

.p-linc-community__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.p-linc-community__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.p-linc-community__deco--lt {
  top: -30px;
  left: -15px;
  width: 124px;
  height: 124px;
  transition-delay: 0s;
}
@media (max-width: 758px) {
  .p-linc-community__deco--lt {
    width: 100px;
    height: 100px;
    top: -55px;
    left: 0px;
  }
}

.p-linc-community__deco--lb {
  bottom: -60px;
  left: -140px;
  width: 185px;
  height: 254px;
  transition-delay: 0.15s;
}
@media (max-width: 758px) {
  .p-linc-community__deco--lb {
    width: 93px;
    height: 127px;
    bottom: -30px;
    left: 10px;
  }
}

.p-linc-community__deco--rt {
  top: -60px;
  right: -120px;
  width: 259px;
  height: 206px;
  transition-delay: 0.3s;
}
@media (max-width: 758px) {
  .p-linc-community__deco--rt {
    width: 170px;
    height: 137px;
    top: -90px;
    right: -10px;
  }
}

.p-linc-community__deco--rb {
  bottom: -30px;
  right: -30px;
  width: 87px;
  height: 87px;
  transition-delay: 0.45s;
}
@media (max-width: 758px) {
  .p-linc-community__deco--rb {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: 15px;
  }
}

.p-linc-community__ttl {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 5px;
  color: white;
}
@media (max-width: 758px) {
  .p-linc-community__ttl {
    font-size: 2.6rem;
  }
}

.p-linc-community__sub {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}
@media (max-width: 758px) {
  .p-linc-community__sub {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}

.p-linc-community__card {
  border-radius: 25px;
  opacity: 0.9;
  background: linear-gradient(170deg, #2FCCD9 -10.64%, #10B3BD 126.14%);
  padding: 30px 25px 45px;
  color: white;
}
@media (max-width: 758px) {
  .p-linc-community__card {
    padding: 40px 25px 70px;
  }
}

.p-linc-community__desc {
  font-size: 1.6rem;
  font-weight: 400;
  color: #3e4342;
  line-height: 1.8;
  color: white;
}
@media (max-width: 758px) {
  .p-linc-community__desc {
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-linc-community__contact {
  font-size: 2.2rem;
  font-weight: 700;
  color: #01B2C0;
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 758px) {
  .p-linc-community__contact {
    font-size: 1.8rem;
    line-height: 135%;
  }
}
.p-linc-community__contact::before, .p-linc-community__contact::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 1px), #2FCCD9 calc(50% - 1px), #2FCCD9 calc(50% + 1px), transparent calc(50% + 1px));
}
.p-linc-community__contact::before {
  transform: scaleY(-1);
}

.p-sns {
  padding: 0 0 80px;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
  background: url("../img/index/sns_bg.png") no-repeat center bottom/100% auto;
}
@media (max-width: 758px) {
  .p-sns {
    padding: 0 20px 50px;
  }
}

.p-sns__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 758px) {
  .p-sns__inner {
    flex-direction: column;
    gap: 20px;
  }
}

.p-sns__card {
  flex: 1;
  max-width: 430px;
  border-radius: 16px;
  border: 2px solid rgba(68, 209, 221, 0.42);
  background: #FFF;
  box-shadow: 0 4px 19.5px 0 rgba(68, 209, 221, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 758px) {
  .p-sns__card {
    max-width: 100%;
    padding: 16px 20px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-sns__card-bg {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 758px) {
  .p-sns__card-bg {
    display: none;
  }
}

.p-sns__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 700;
  color: #3e4342;
}
@media (max-width: 758px) {
  .p-sns__card-header {
    font-size: 1.6rem;
    gap: 5px;
  }
}

.p-sns__card-header i {
  font-size: 3.2rem;
  color: var(--primary);
}
@media (max-width: 758px) {
  .p-sns__card-header i {
    font-size: 2.4rem;
  }
}

.p-sns__qr {
  width: 127px;
  height: auto;
}
@media (max-width: 758px) {
  .p-sns__qr {
    display: none;
  }
}

.p-sns__link {
  display: none;
}
@media (max-width: 758px) {
  .p-sns__link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: var(--primary);
    font-size: 2rem;
    text-decoration: none;
    z-index: 1;
  }
  .p-sns__link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.p-sidebar {
  --panel-w: 280px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(var(--panel-w));
  z-index: var(--z-sticky);
  display: flex;
  align-items: stretch;
  transition: transform 0.4s var(--easing);
}
.p-sidebar.is-open {
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 758px) {
  .p-sidebar {
    display: none;
  }
}

.p-sidebar__tab {
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  background: linear-gradient(180deg, #7dd8e0 0%, #45c5d0 100%);
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  color: #fff;
  user-select: none;
  justify-content: center;
  transition: background 0.3s ease;
}
.p-sidebar__tab:hover {
  background: linear-gradient(180deg, #6ed0d9 0%, #38bac5 100%);
}

.p-sidebar__tab-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.p-sidebar__tab-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.p-sidebar__panel {
  width: var(--panel-w);
  background: #fff;
  border-radius: 22px 0 0 22px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.p-sidebar__qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.p-sidebar__qr-img {
  width: 120px;
  height: 120px;
  border-radius: 0px;
}

.p-sidebar__qr-label {
  font-size: 1.4rem;
  color: #3e4342;
  text-align: center;
  line-height: 1.4;
}
