:root {
  --color-bg: #050711;
  --color-bg-2: #0b1024;
  --color-brand: #1f296f;
  --color-brand-dark: #12194a;
  --color-brand-light: #2a3584;
  --color-accent: #c9b100;
  --color-accent-2: #e1ca1a;
  --color-white: #ffffff;
  --color-black: #050711;
  --color-text: #f7f8fb;
  --color-muted: #a9b0c3;
  --color-line: rgba(255, 255, 255, 0.14);
  --color-dark-line: rgba(5, 7, 17, 0.12);
  --color-page-bg: #f4f6fb;
  --mpla-body-font-size: 16px;
  --mpla-body-font-weight: 600;
  --mpla-body-line-height: 1.95;
  --mpla-body-letter-spacing: 0.035em;
  --mpla-body-color-light: #384052;
  --mpla-body-color-dark: rgba(247, 248, 251, 0.76);
  --font-ja: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-en: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ja);
  line-height: 1.8;
  letter-spacing: 0.035em;
  -webkit-text-size-adjust: 100%;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

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

.l-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.l-container--narrow {
  width: min(880px, calc(100% - 48px));
}

.l-main {
  overflow: hidden;
}

/* Header */
.l-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-line);
  background: rgba(5, 7, 17, 0.82);
  backdrop-filter: blur(18px);
}

.admin-bar .l-header {
  top: 32px;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
}

.l-header__logo {
  display: inline-flex;
  align-items: center;
  width: 196px;
  line-height: 1;
}

.l-header__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.l-header__nav a {
  position: relative;
  transition: color 0.2s ease;
}

.l-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

.l-header__nav a:hover {
  color: var(--color-white);
}

.l-header__nav a:hover::after {
  width: 100%;
}

.l-header__menu-button {
  display: none;
}

/* Loading */
body.is-loading {
  overflow: hidden;
}

.p-loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(201, 177, 0, 0.16), transparent 32%),
    radial-gradient(circle at 82% 26%, rgba(65, 92, 255, 0.2), transparent 34%),
    radial-gradient(circle at 56% 82%, rgba(255, 82, 183, 0.14), transparent 36%),
    linear-gradient(135deg, #050711 0%, #0a1028 46%, #151847 100%);
  color: var(--color-white);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.72s ease, visibility 0.72s ease;
}

.p-loading::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    linear-gradient(115deg, rgba(40, 80, 255, 0.16), transparent 28%),
    linear-gradient(245deg, rgba(201, 177, 0, 0.14), transparent 30%),
    linear-gradient(0deg, rgba(255, 93, 167, 0.12), transparent 36%);
  filter: blur(34px);
  opacity: 0.95;
  animation: heroAurora 16s ease-in-out infinite alternate;
}

.p-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 210px 210px;
  background-position: 0 0, 48px 64px;
  opacity: 0.22;
  animation: heroStars 30s linear infinite;
}

.p-loading.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-loading__inner {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
}

.p-loading__label {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.24em;
}

.p-loading__type {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  min-height: 3.2em;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: clamp(38px, 8vw, 92px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-shadow:
    0 0 40px rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.26);
}

.p-loading__text {
  display: block;
  white-space: pre-line;
}

.p-loading__cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.12em;
  background: rgba(255, 255, 255, 0.9);
  animation: loadingCursor 0.62s steps(1) infinite;
}

.p-loading__bar {
  position: relative;
  width: 100%;
  height: clamp(6px, 0.8vw, 10px);
  margin-top: clamp(24px, 4vw, 38px);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.p-loading__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #c9b100 0%,
    #d3bf32 10%,
    #e1d883 21%,
    #d8e1ff 34%,
    #98a7ff 46%,
    #415cff 58%,
    #777eff 68%,
    #d48ed8 78%,
    #76e5d6 90%,
    #c9b100 100%
  );
  background-size: 420% 100%;
  filter: blur(0.2px);
  animation: heroLineColorFlow 24s linear infinite;
  transition: width 0.08s linear;
}

@keyframes loadingCursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .p-loading__inner {
    width: min(100% - 40px, 520px);
  }

  .p-loading__label {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .p-loading__type {
    font-size: clamp(32px, 10vw, 54px);
    letter-spacing: -0.05em;
  }

  .p-loading__bar {
    margin-top: 22px;
  }
}

/* Common components */
.c-section-label,
.p-hero__label {
  margin: 0 0 24px;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.c-section-title {
  margin: 0;
  color: inherit;
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.c-section-text,
.p-page-content p,
.p-about-lead__sub,
.p-business-page-lead__sub,
.p-company-page-lead__sub,
.p-contact-page-lead__sub,
.p-privacy-lead__sub,
.p-about-concept__body p,
.p-business-page-policy__body p,
.p-company-page-identity__text,
.p-contact-page-form-section__text,
.p-business-page-card__text,
.p-compliance__text,
.p-privacy-block__text,
.p-privacy-list,
.p-privacy-date p {
  color: var(--mpla-body-color-light);
  font-size: var(--mpla-body-font-size);
  font-weight: var(--mpla-body-font-weight);
  line-height: var(--mpla-body-line-height);
  letter-spacing: var(--mpla-body-letter-spacing);
}

.p-hero__text,
.p-video-statement__text,
.p-value .c-section-text,
.p-safety .c-section-text,
.p-contact .c-section-text,
.p-lower-message__text,
.c-card__text {
  color: var(--mpla-body-color-dark);
  font-size: var(--mpla-body-font-size);
  font-weight: var(--mpla-body-font-weight);
  line-height: var(--mpla-body-line-height);
  letter-spacing: var(--mpla-body-letter-spacing);
}

.c-section-text {
  max-width: 760px;
  margin: 32px 0 0;
}

.c-card {
  position: relative;
  min-height: 300px;
  padding: 42px 38px 38px;
  border: none;
  border-radius: 28px;
  background: radial-gradient(circle at 78% 18%, rgba(201, 177, 0, 0.13), transparent 34%), rgba(255, 255, 255, 0.058);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.c-card::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  opacity: 0.72;
  pointer-events: none;
}

.c-card__en {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-en);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.c-card__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.c-card__text {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 15px;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  min-height: 60px;
  margin-top: 52px;
  padding: 18px 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 48px rgba(5, 7, 17, 0.16);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.c-button::after {
  content: "→";
  display: inline-block;
  margin-left: 12px;
  font-family: var(--font-en);
  font-size: 17px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.24s ease;
}

.c-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

.c-button:hover::after {
  transform: translate(5px, -1px);
}

.c-button--dark {
  background: var(--color-brand);
  color: var(--color-white);
  box-shadow: 0 18px 48px rgba(31, 41, 111, 0.22);
}

.c-button--dark:hover {
  background: var(--color-brand-light);
}

.c-button--light {
  background: var(--color-accent);
  color: var(--color-black);
  box-shadow: 0 18px 48px rgba(201, 177, 0, 0.22);
}

.c-button--light:hover {
  background: var(--color-accent-2);
}

.c-button--ghost {
  background: rgba(255, 255, 255, 0.13);
  color: var(--color-white);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 54px rgba(0, 0, 0, 0.2);
}

.c-button--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.u-pc-only {
  display: inline;
}

.u-sp-only {
  display: none;
}

/* Front hero */
.p-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 20% 20%, rgba(54, 89, 255, 0.24), transparent 34%), radial-gradient(circle at 82% 20%, rgba(201, 177, 0, 0.18), transparent 30%), radial-gradient(circle at 60% 80%, rgba(255, 85, 160, 0.16), transparent 34%), linear-gradient(135deg, #050711 0%, #0a1028 44%, #151847 100%);
}

.p-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -3;
  background: linear-gradient(115deg, rgba(40, 80, 255, 0.16), transparent 28%), linear-gradient(245deg, rgba(201, 177, 0, 0.15), transparent 30%), linear-gradient(0deg, rgba(255, 93, 167, 0.12), transparent 36%);
  filter: blur(32px);
  opacity: 0.9;
  animation: heroAurora 18s ease-in-out infinite alternate;
}

.p-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.6px), radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 210px 210px;
  background-position: 0 0, 48px 64px;
  opacity: 0.23;
  animation: heroStars 30s linear infinite;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
  transition: transform 0.5s ease-out;
}

.p-hero__gradient {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(24px);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.p-hero__gradient--01 {
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  right: 5%;
  top: 13%;
  background: radial-gradient(circle at 34% 32%, rgba(255, 234, 94, 0.62), transparent 18%), radial-gradient(circle at 68% 54%, rgba(56, 93, 255, 0.72), transparent 40%), radial-gradient(circle at 42% 78%, rgba(255, 94, 170, 0.48), transparent 44%);
  animation: heroBlobOne 13s ease-in-out infinite alternate;
}

.p-hero__gradient--02 {
  width: min(36vw, 500px);
  height: min(36vw, 500px);
  left: 7%;
  bottom: 8%;
  background: radial-gradient(circle at 32% 40%, rgba(40, 222, 190, 0.38), transparent 32%), radial-gradient(circle at 70% 60%, rgba(90, 120, 255, 0.52), transparent 48%);
  animation: heroBlobTwo 16s ease-in-out infinite alternate;
}

.p-hero__gradient--03 {
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  right: 38%;
  bottom: 2%;
  background: radial-gradient(circle at 50% 50%, rgba(201, 177, 0, 0.32), transparent 58%);
  animation: heroBlobThree 20s ease-in-out infinite alternate;
}

.p-hero__planet {
  position: absolute;
  z-index: 3;
  right: 8%;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.22), transparent 12%), radial-gradient(circle at 50% 50%, rgba(31, 41, 111, 0.82), rgba(5, 7, 17, 0.1) 66%, transparent 70%);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.08), 0 0 110px rgba(75, 101, 255, 0.2), 0 0 90px rgba(201, 177, 0, 0.12);
  animation: heroPlanet 18s ease-in-out infinite alternate;
}

.p-hero__planet::before,
.p-hero__planet::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.p-hero__planet::before {
  inset: 18%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.24), transparent 14%), radial-gradient(circle at 66% 62%, rgba(255, 92, 168, 0.16), transparent 34%), radial-gradient(circle at 45% 48%, rgba(54, 89, 255, 0.28), transparent 48%);
  filter: blur(1px);
  opacity: 0.86;
}

.p-hero__planet::after {
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 48px rgba(255, 255, 255, 0.06), 0 0 72px rgba(65, 92, 255, 0.2);
}

.p-hero__orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.p-hero__orbit--01 {
  right: -3%;
  top: 33%;
  width: min(62vw, 820px);
  height: min(22vw, 280px);
  animation: heroOrbit 22s linear infinite;
}

.p-hero__orbit--02 {
  right: -9%;
  top: 27%;
  width: min(74vw, 980px);
  height: min(28vw, 360px);
  opacity: 0.56;
  animation: heroOrbit 32s linear infinite reverse;
}

.p-hero__orbit--03 {
  left: -16%;
  bottom: 8%;
  width: min(52vw, 680px);
  height: min(18vw, 240px);
  opacity: 0.42;
  animation: heroOrbit 38s linear infinite;
}

.p-hero__triangle-orbit {
  position: absolute;
  z-index: 2;
  right: 8%;
  top: 50%;
  width: min(46vw, 620px);
  height: min(34vw, 460px);
  transform: translateY(-50%);
  pointer-events: none;
}

.p-hero__triangle {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 42px;
  height: 36px;
  background: rgba(255, 255, 255, 0.62);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.32)) drop-shadow(0 0 28px rgba(255, 255, 255, 0.18));
  transform-origin: center;
}

.p-hero__triangle-orbit--01 {
  animation: heroTriangleLayer01 15s linear infinite;
}

.p-hero__triangle-orbit--01 .p-hero__triangle {
  animation: heroTriangleFrontPath01 15s cubic-bezier(0.45, 0, 0.35, 1) infinite;
}

.p-hero__triangle-orbit--02 {
  width: min(42vw, 560px);
  height: min(31vw, 420px);
  right: 10%;
  opacity: 0.72;
  animation: heroTriangleLayer02 22s linear infinite;
}

.p-hero__triangle-orbit--02 .p-hero__triangle {
  width: 34px;
  height: 30px;
  opacity: 0.76;
  animation: heroTriangleFrontPath02 22s cubic-bezier(0.45, 0, 0.35, 1) infinite;
}

.p-hero__triangle-orbit--03 {
  width: min(52vw, 700px);
  height: min(39vw, 520px);
  right: 2%;
  opacity: 0.46;
  animation: heroTriangleLayer03 30s linear infinite;
}

.p-hero__triangle-orbit--03 .p-hero__triangle {
  width: 30px;
  height: 26px;
  opacity: 0.58;
  animation: heroTriangleFrontPath03 30s cubic-bezier(0.45, 0, 0.35, 1) infinite;
}

.p-hero__star {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.8);
  animation: heroTwinkle 4s ease-in-out infinite;
}

.p-hero__star--01 { left: 18%; top: 22%; }
.p-hero__star--02 { left: 48%; top: 18%; animation-delay: 0.8s; }
.p-hero__star--03 { right: 18%; top: 72%; animation-delay: 1.4s; }
.p-hero__star--04 { left: 34%; bottom: 18%; animation-delay: 2.1s; }
.p-hero__star--05 { right: 8%; top: 18%; animation-delay: 2.8s; }

.p-hero__inner {
  position: relative;
  z-index: 10;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 76px;
}

.p-hero__label {
  color: rgba(255, 255, 255, 0.72);
}

.p-hero__title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: clamp(88px, 17vw, 220px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.085em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.26);
}

.p-hero__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: -3%;
  bottom: -0.12em;
  height: 0.08em;
  border-radius: 999px;
  opacity: 0.88;
  filter: blur(0.5px);
  background: linear-gradient(90deg, #c9b100 0%, #d3bf32 10%, #e1d883 21%, #d8e1ff 34%, #98a7ff 46%, #415cff 58%, #777eff 68%, #d48ed8 78%, #76e5d6 90%, #c9b100 100%);
  background-size: 420% 100%;
  animation: heroLineColorFlow 24s linear infinite;
}

.p-hero__copy {
  margin: 42px 0 0;
  max-width: 1000px;
  color: var(--color-white);
  font-size: clamp(26px, 3.5vw, 54px);
  font-weight: 850;
  line-height: 1.34;
  letter-spacing: 0.035em;
}

.p-hero__text {
  max-width: 720px;
  margin: 30px 0 0;
}

/* Top sections */
.p-section {
  position: relative;
  padding: clamp(112px, 11vw, 168px) 0;
}

.p-intro,
.p-company {
  background: var(--color-white);
  color: var(--color-black);
}

.p-value,
.p-safety {
  background: radial-gradient(circle at 90% 18%, rgba(201, 177, 0, 0.1), transparent 32%), var(--color-bg);
  color: var(--color-white);
}

.p-business {
  background: var(--color-page-bg);
  color: var(--color-black);
}

.p-contact {
  background: radial-gradient(circle at 72% 30%, rgba(201, 177, 0, 0.18), transparent 34%), linear-gradient(135deg, #0b1024 0%, #050711 100%);
  color: var(--color-white);
}

.p-intro .c-section-text,
.p-business .c-section-text,
.p-company .c-section-text {
  color: var(--mpla-body-color-light);
}

.p-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.p-intro__body {
  position: relative;
  z-index: 1;
}

.p-intro__visual--motion {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 18% 18%, rgba(255, 224, 74, 0.58), transparent 30%), radial-gradient(circle at 82% 24%, rgba(91, 112, 255, 0.64), transparent 32%), radial-gradient(circle at 22% 82%, rgba(53, 238, 207, 0.52), transparent 34%), radial-gradient(circle at 78% 78%, rgba(255, 82, 183, 0.54), transparent 34%), linear-gradient(135deg, #061020 0%, #10184a 48%, #050711 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 34px 90px rgba(5, 7, 17, 0.18);
}

.p-intro__visual--motion::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  background: conic-gradient(from 0deg, rgba(255, 220, 70, 0.92), rgba(255, 82, 183, 0.86), rgba(91, 112, 255, 0.9), rgba(53, 238, 207, 0.86), rgba(255, 153, 78, 0.82), rgba(255, 220, 70, 0.92));
  filter: blur(52px) saturate(185%);
  opacity: 0.9;
  mix-blend-mode: screen;
  animation: mplaIntroSpin 7s linear infinite;
}

.p-intro__visual--motion::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  background: radial-gradient(circle at 22% 42%, rgba(255, 94, 170, 0.34), transparent 24%), radial-gradient(circle at 76% 30%, rgba(255, 214, 65, 0.32), transparent 28%), radial-gradient(circle at 64% 80%, rgba(91, 112, 255, 0.36), transparent 30%), radial-gradient(circle at 38% 70%, rgba(53, 238, 207, 0.34), transparent 28%);
  filter: blur(20px) saturate(160%);
  opacity: 0.82;
  mix-blend-mode: screen;
  animation: mplaIntroFlow 4.8s ease-in-out infinite alternate;
}

.p-intro__orb {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
  filter: blur(28px);
  mix-blend-mode: screen;
  opacity: 0.94;
  will-change: transform;
  pointer-events: none;
}

.p-intro__orb--01 {
  width: 42%;
  height: 42%;
  left: -8%;
  top: 2%;
  background: radial-gradient(circle, rgba(255, 224, 74, 0.98), rgba(255, 224, 74, 0.24) 54%, transparent 74%);
  animation: mplaIntroOrb01 4.8s ease-in-out infinite alternate;
}

.p-intro__orb--02 {
  width: 48%;
  height: 48%;
  right: -12%;
  top: 0;
  background: radial-gradient(circle, rgba(91, 112, 255, 1), rgba(91, 112, 255, 0.24) 56%, transparent 74%);
  animation: mplaIntroOrb02 5.2s ease-in-out infinite alternate;
}

.p-intro__orb--03 {
  width: 42%;
  height: 42%;
  left: 8%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(53, 238, 207, 0.94), rgba(53, 238, 207, 0.22) 56%, transparent 74%);
  animation: mplaIntroOrb03 4.6s ease-in-out infinite alternate;
}

.p-intro__orb--04 {
  width: 50%;
  height: 50%;
  right: 0;
  bottom: -14%;
  background: radial-gradient(circle, rgba(255, 82, 183, 0.88), rgba(255, 82, 183, 0.2) 58%, transparent 76%);
  animation: mplaIntroOrb04 5.6s ease-in-out infinite alternate;
}

.p-intro__orb--05 {
  width: 38%;
  height: 38%;
  left: 31%;
  top: 26%;
  background: radial-gradient(circle at 24% 36%, rgba(255, 220, 70, 0.54), transparent 26%), radial-gradient(circle at 72% 34%, rgba(255, 82, 183, 0.54), transparent 28%), radial-gradient(circle at 56% 72%, rgba(53, 238, 207, 0.48), transparent 28%), radial-gradient(circle at 46% 46%, rgba(91, 112, 255, 0.52), transparent 34%);
  filter: blur(26px) saturate(165%);
  opacity: 0.82;
  animation: mplaIntroOrb05 4.4s ease-in-out infinite alternate;
}

.p-intro__veil {
  display: none;
}

.p-video-statement {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 78% 38%, rgba(201, 177, 0, 0.18), transparent 34%), radial-gradient(circle at 26% 72%, rgba(65, 92, 255, 0.2), transparent 38%), linear-gradient(135deg, #050711 0%, #12194a 100%);
  color: var(--color-white);
}

.p-video-statement__media,
.p-video-statement__overlay {
  position: absolute;
  inset: 0;
}

.p-video-statement__media {
  z-index: 0;
}

.p-video-statement__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity:0.7;
  filter: saturate(1.08) contrast(1.04);
  pointer-events: none;
}

.p-video-statement__overlay {
  z-index: 1;
  background: radial-gradient(circle at 78% 38%, rgba(201, 177, 0, 0.16), transparent 34%), radial-gradient(circle at 26% 72%, rgba(65, 92, 255, 0.18), transparent 38%), linear-gradient(90deg, rgba(5, 7, 17, 0.9) 0%, rgba(5, 7, 17, 0.66) 44%, rgba(5, 7, 17, 0.36) 100%);
  pointer-events: none;
}

.p-video-statement__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.p-video-statement__title {
  margin: 0;
  max-width: 920px;
  color: var(--color-white);
  font-size: clamp(42px, 7.4vw, 112px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.p-video-statement__text {
  max-width: 680px;
  margin: 34px 0 0;
}

.p-video-statement .c-button,
.p-business .c-button {
  margin-top: 44px;
}

.p-value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.p-business__list {
  margin-top: 58px;
  border-top: none;
}

.p-business__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(5, 7, 17, 0.1);
}

.p-business__item span {
  color: rgba(31, 41, 111, 0.92);
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.p-business__item p {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.p-safety__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.p-safety__item {
  padding: 26px 24px;
  border: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.p-safety__item span {
  display: block;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-en);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.p-safety__item p {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.035em;
}

/* Lower pages */
.p-page-hero {
  padding: 180px 0 96px;
  background: radial-gradient(circle at 80% 30%, rgba(201, 177, 0, 0.16), transparent 34%), linear-gradient(135deg, #050711 0%, #12194a 100%);
  color: var(--color-white);
}

.p-page-hero__title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.p-page-content {
  min-height: 420px;
  padding: 96px 0 140px;
  background: var(--color-white);
  color: var(--color-black);
}

.p-page-content p {
  margin: 0 0 1.6em;
}

.p-page-content h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.35;
}

.p-page-content h3 {
  margin: 48px 0 18px;
  font-size: 24px;
}

.p-lower-section {
  padding: clamp(96px, 10vw, 150px) 0;
  background: var(--color-white);
  color: var(--color-black);
}

.p-lower-lead {
  padding-bottom: 72px;
}

.p-lower-lead__text {
  margin: 0;
  color: #050711;
  font-size: clamp(21px, 2.35vw, 34px);
  font-weight: 800;
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.p-about-lead__sub,
.p-business-page-lead__sub,
.p-company-page-lead__sub,
.p-contact-page-lead__sub,
.p-privacy-lead__sub {
  max-width: 760px;
  margin: 34px 0 0;
}

.p-about-concept,
.p-business-page-list,
.p-compliance,
.p-contact-page-form-section,
.p-privacy-content,
.p-company-page-profile {
  background: var(--color-page-bg);
}

.p-about-concept,
.p-business-page-policy {
  overflow: hidden;
}

.p-about-concept__heading,
.p-business-page-policy__heading {
  max-width: 880px;
}

.p-about-concept__heading .c-section-label,
.p-business-page-policy__heading .c-section-label {
  margin-bottom: 24px;
}

.p-about-concept__title,
.p-business-page-policy__title,
.p-company-page-profile__title,
.p-company-page-identity__title,
.p-contact-page-form-section__title,
.p-lower-message__title {
  margin: 0;
  color: #050711;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.p-about-concept__content,
.p-business-page-policy__content {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 560px);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
  margin-top: clamp(56px, 6vw, 78px);
}

.p-about-concept__visual,
.p-business-page-policy__visual {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 38px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 18% 22%, rgba(255, 220, 70, 0.62), transparent 34%), radial-gradient(circle at 78% 20%, rgba(91, 112, 255, 0.66), transparent 36%), radial-gradient(circle at 24% 82%, rgba(53, 238, 207, 0.46), transparent 36%), radial-gradient(circle at 78% 78%, rgba(255, 82, 183, 0.52), transparent 36%), linear-gradient(135deg, #061020 0%, #11184a 50%, #050711 100%);
  box-shadow: 0 24px 72px rgba(5, 7, 17, 0.12);
}

.p-about-concept__visual img,
.p-business-page-policy__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-concept__visual::before,
.p-business-page-policy__visual::before {
  content: "";
  position: absolute;
  inset: -36%;
  z-index: 0;
  background: conic-gradient(from 0deg, rgba(255, 220, 70, 0.86), rgba(255, 82, 183, 0.78), rgba(91, 112, 255, 0.86), rgba(53, 238, 207, 0.8), rgba(255, 153, 78, 0.74), rgba(255, 220, 70, 0.86));
  filter: blur(48px) saturate(175%);
  opacity: 0.78;
  mix-blend-mode: screen;
  animation: conceptVisualSpin 7s linear infinite;
}

.p-about-concept__visual::after,
.p-business-page-policy__visual::after {
  content: "IMAGE AREA";
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.p-about-concept__visual-orb,
.p-business-page-policy__visual-orb {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  filter: blur(26px);
  mix-blend-mode: screen;
  opacity: 0.86;
  pointer-events: none;
}

.p-about-concept__visual-orb--01,
.p-business-page-policy__visual-orb--01 {
  width: 50%;
  height: 50%;
  left: -12%;
  top: 4%;
  background: radial-gradient(circle, rgba(255, 220, 70, 0.92), rgba(255, 220, 70, 0.18) 58%, transparent 76%);
  animation: conceptVisualOrb01 5s ease-in-out infinite alternate;
}

.p-about-concept__visual-orb--02,
.p-business-page-policy__visual-orb--02 {
  width: 54%;
  height: 54%;
  right: -16%;
  top: 2%;
  background: radial-gradient(circle, rgba(91, 112, 255, 0.96), rgba(91, 112, 255, 0.2) 58%, transparent 76%);
  animation: conceptVisualOrb02 5.4s ease-in-out infinite alternate;
}

.p-about-concept__visual-orb--03,
.p-business-page-policy__visual-orb--03 {
  width: 48%;
  height: 48%;
  left: 6%;
  bottom: -14%;
  background: radial-gradient(circle, rgba(53, 238, 207, 0.82), rgba(53, 238, 207, 0.16) 58%, transparent 76%);
  animation: conceptVisualOrb03 4.8s ease-in-out infinite alternate;
}

.p-about-concept__visual-orb--04,
.p-business-page-policy__visual-orb--04 {
  width: 54%;
  height: 54%;
  right: -4%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(255, 82, 183, 0.82), rgba(255, 82, 183, 0.16) 58%, transparent 76%);
  animation: conceptVisualOrb04 5.8s ease-in-out infinite alternate;
}

.p-about-concept__body,
.p-business-page-policy__body {
  max-width: 560px;
}

.p-about-concept__body p,
.p-business-page-policy__body p {
  margin: 0 0 28px;
}

.p-about-concept__body p:last-child,
.p-business-page-policy__body p:last-child {
  margin-bottom: 0;
}

/* Business page cards */
.p-business-page-list__grid,
.p-compliance__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p-business-page-card,
.p-compliance__card {
  position: relative;
  padding: 44px;
  border: none;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 76px rgba(5, 7, 17, 0.055);
  overflow: hidden;
}

.p-business-page-card {
  min-height: 390px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.94));
}

.p-business-page-card::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 177, 0, 0.18), rgba(65, 92, 255, 0.06) 42%, transparent 70%);
  pointer-events: none;
}

.p-business-page-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.p-business-page-card__num,
.p-compliance__num {
  margin: 0;
  color: var(--color-brand);
  font-family: var(--font-en);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.p-business-page-card__en {
  max-width: 180px;
  margin: 0;
  padding-top: 4px;
  color: rgba(5, 7, 17, 0.42);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-align: right;
}

.p-business-page-card__title,
.p-compliance__title,
.p-privacy-block__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #050711;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -0.04em;
}

.p-business-page-card__text,
.p-compliance__text {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  font-size: 15px;
}

.p-compliance {
  padding-top: 40px;
}

.p-compliance__num {
  margin-bottom: 42px;
}

/* Company */
.p-company-page-profile__inner,
.p-company-page-identity__grid,
.p-contact-page-form-section__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.p-company-page-table {
  background: transparent;
}

.p-company-page-table__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(5, 7, 17, 0.1);
}

.p-company-page-table__row dt {
  color: rgba(31, 41, 111, 0.92);
  font-size: 14px;
  font-weight: 800;
}

.p-company-page-table__row dd {
  margin: 0;
  color: #222735;
  font-size: 16px;
  line-height: 1.9;
}

.p-company-page-table__row dd a {
  color: var(--color-brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.p-company-page-table__note {
  display: inline-block;
  margin-top: 6px;
  color: #8a91a5;
  font-size: 13px;
}

.p-company-page-identity__grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.p-company-page-identity__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  border-radius: 40px;
  background: radial-gradient(circle at 72% 28%, rgba(201, 177, 0, 0.24), transparent 32%), radial-gradient(circle at 22% 78%, rgba(65, 92, 255, 0.2), transparent 38%), linear-gradient(135deg, #f6f6ff 0%, #e9ecff 52%, #f7f1d8 100%);
  overflow: hidden;
}

.p-company-page-identity__visual img {
  width: min(52%, 300px);
  opacity: 0.9;
}

.p-company-page-identity__text {
  margin: 32px 0 0;
}

/* Contact */
.p-contact-page-form-section__grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.p-contact-page-form {
  padding: 48px;
  border: none;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 80px rgba(5, 7, 17, 0.06);
}

.p-contact-page-form__empty {
  margin: 0;
  color: var(--mpla-body-color-light);
  font-size: 15px;
  line-height: 2;
}

.p-contact-page-form .wpcf7,
.p-contact-page-form .wpcf7 p {
  width: 100%;
  margin: 0;
}

.p-contact-page-form .wpcf7 form {
  display: grid;
  gap: 22px;
}

.p-contact-page-form label {
  display: grid;
  gap: 10px;
  color: #222735;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.p-contact-page-form label span {
  display: inline-block;
  margin-left: 6px;
  color: var(--color-accent);
  font-size: 12px;
}

.p-contact-page-form input[type="text"],
.p-contact-page-form input[type="email"],
.p-contact-page-form input[type="tel"],
.p-contact-page-form select,
.p-contact-page-form textarea {
  width: 100%;
  padding: 17px 18px;
  border: none;
  border-radius: 16px;
  background: #f1f3f8;
  color: var(--color-black);
  font-family: var(--font-ja);
  font-size: 15px;
  outline: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.p-contact-page-form textarea {
  min-height: 180px;
  resize: vertical;
}

.p-contact-page-form input:focus,
.p-contact-page-form select:focus,
.p-contact-page-form textarea:focus {
  background: var(--color-white);
  box-shadow: 0 0 0 2px rgba(31, 41, 111, 0.18);
}

.p-contact-page-form .wpcf7-acceptance {
  display: block;
  color: #4c5366;
  font-size: 14px;
  font-weight: 500;
}

.p-contact-page-form .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.p-contact-page-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-brand);
}

.p-contact-page-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 16px 30px;
  border: none;
  border-radius: 999px;
  background: var(--color-brand);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(31, 41, 111, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.p-contact-page-form input[type="submit"]:hover {
  transform: translateY(-2px);
  background: var(--color-brand-dark);
}

.p-contact-page-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #b00020;
  font-size: 13px;
  font-weight: 600;
}

.p-contact-page-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
}

/* Privacy */
.p-privacy-block {
  padding: 42px 0;
  border-bottom: 1px solid rgba(5, 7, 17, 0.14);
}

.p-privacy-block:first-child {
  padding-top: 0;
}

.p-privacy-block__num {
  margin: 0 0 18px;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.p-privacy-block__text,
.p-privacy-list {
  margin: 22px 0 0;
}

.p-privacy-list {
  padding-left: 1.4em;
}

.p-privacy-list li {
  margin: 0 0 8px;
}

.p-privacy-block__note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-white);
  color: #6b7280;
  font-size: 13px;
  line-height: 1.9;
}

.p-privacy-block__link {
  margin: 24px 0 0;
}

.p-privacy-block__link a {
  display: inline-flex;
  color: var(--color-brand);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.p-privacy-date {
  margin-top: 52px;
  padding: 28px 32px;
  border-radius: 18px;
  background: var(--color-white);
  color: #222735;
}

.p-privacy-date p {
  margin: 0;
}

/* Lower message */
.p-lower-message {
  background: radial-gradient(circle at 78% 28%, rgba(201, 177, 0, 0.16), transparent 34%), linear-gradient(135deg, #050711 0%, #12194a 100%);
  color: var(--color-white);
}

.p-lower-message__title {
  color: var(--color-white);
}

.p-lower-message__text {
  margin: 32px 0 0;
}

/* Footer */
.l-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-line);
  background: #050711;
  color: var(--color-white);
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.l-footer__logo {
  display: block;
  width: 220px;
  line-height: 1;
}

.l-footer__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__copy {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.l-footer__nav {
  display: grid;
  gap: 10px;
  color: var(--color-muted);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.l-footer__nav a {
  transition: color 0.2s ease;
}

.l-footer__nav a:hover {
  color: var(--color-white);
}

.l-footer__copyright {
  width: min(1120px, calc(100% - 48px));
  margin: 48px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* Animations */
@keyframes heroAurora {
  0% { transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(2%, 3%, 0) rotate(8deg) scale(1.06); }
  100% { transform: translate3d(4%, -2%, 0) rotate(-5deg) scale(1.03); }
}

@keyframes heroStars {
  from { background-position: 0 0, 48px 64px; }
  to { background-position: 120px 120px, 258px 274px; }
}

@keyframes heroBlobOne {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); border-radius: 54% 46% 62% 38% / 42% 62% 38% 58%; }
  100% { transform: translate3d(-42px, 28px, 0) rotate(16deg) scale(1.08); border-radius: 40% 60% 38% 62% / 58% 38% 62% 42%; }
}

@keyframes heroBlobTwo {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); border-radius: 60% 40% 44% 56% / 52% 46% 54% 48%; }
  100% { transform: translate3d(34px, -24px, 0) rotate(-14deg) scale(1.06); border-radius: 42% 58% 62% 38% / 44% 58% 42% 56%; }
}

@keyframes heroBlobThree {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(22px, -36px, 0) scale(1.16); }
}

@keyframes heroPlanet {
  0% { transform: translateY(-50%) translate3d(0, 0, 0) rotate(-3deg) scale(1); }
  100% { transform: translateY(-50%) translate3d(-22px, 18px, 0) rotate(4deg) scale(1.025); }
}

@keyframes heroOrbit {
  from { transform: rotate(-18deg); }
  to { transform: rotate(342deg); }
}

@keyframes heroTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes heroLineColorFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 420% 50%; }
}

@keyframes heroTriangleLayer01 { 0%, 28%, 78%, 100% { z-index: 2; } 34%, 68% { z-index: 6; } }
@keyframes heroTriangleLayer02 { 0%, 24%, 74%, 100% { z-index: 2; } 32%, 64% { z-index: 6; } }
@keyframes heroTriangleLayer03 { 0%, 30%, 80%, 100% { z-index: 2; } 38%, 66% { z-index: 5; } }

@keyframes heroTriangleFrontPath01 {
  0% { transform: translate3d(230px, -78px, 0) rotate(168deg) scale(0.62); opacity: 0.14; }
  22% { transform: translate3d(140px, -126px, 0) rotate(186deg) scale(0.72); opacity: 0.24; }
  36% { transform: translate3d(86px, -42px, 0) rotate(202deg) scale(1.08); opacity: 0.62; }
  50% { transform: translate3d(0, 0, 0) rotate(218deg) scale(1.55); opacity: 0.86; }
  64% { transform: translate3d(-98px, 42px, 0) rotate(236deg) scale(1.16); opacity: 0.66; }
  80% { transform: translate3d(-190px, 104px, 0) rotate(254deg) scale(0.72); opacity: 0.22; }
  100% { transform: translate3d(230px, -78px, 0) rotate(528deg) scale(0.62); opacity: 0.14; }
}

@keyframes heroTriangleFrontPath02 {
  0% { transform: translate3d(-180px, 92px, 0) rotate(-28deg) scale(0.58); opacity: 0.12; }
  24% { transform: translate3d(-92px, 46px, 0) rotate(10deg) scale(0.92); opacity: 0.42; }
  48% { transform: translate3d(10px, -8px, 0) rotate(42deg) scale(1.32); opacity: 0.78; }
  70% { transform: translate3d(132px, -72px, 0) rotate(82deg) scale(0.78); opacity: 0.28; }
  100% { transform: translate3d(-180px, 92px, 0) rotate(332deg) scale(0.58); opacity: 0.12; }
}

@keyframes heroTriangleFrontPath03 {
  0% { transform: translate3d(210px, 112px, 0) rotate(120deg) scale(0.48); opacity: 0.08; }
  30% { transform: translate3d(86px, 48px, 0) rotate(160deg) scale(0.74); opacity: 0.22; }
  52% { transform: translate3d(-18px, -4px, 0) rotate(200deg) scale(1.14); opacity: 0.48; }
  76% { transform: translate3d(-150px, -92px, 0) rotate(248deg) scale(0.66); opacity: 0.16; }
  100% { transform: translate3d(210px, 112px, 0) rotate(480deg) scale(0.48); opacity: 0.08; }
}

@keyframes mplaIntroSpin {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1.12); }
}

@keyframes mplaIntroFlow {
  0% { transform: translate3d(-10%, -8%, 0) scale(1); }
  50% { transform: translate3d(8%, 10%, 0) scale(1.12); }
  100% { transform: translate3d(12%, -8%, 0) scale(1.06); }
}

@keyframes mplaIntroOrb01 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(52%, 42%, 0) scale(1.22); } }
@keyframes mplaIntroOrb02 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(-48%, 40%, 0) scale(1.2); } }
@keyframes mplaIntroOrb03 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(40%, -50%, 0) scale(1.24); } }
@keyframes mplaIntroOrb04 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(-42%, -42%, 0) scale(1.2); } }
@keyframes mplaIntroOrb05 { 0% { transform: translate3d(-12%, -10%, 0) scale(0.96); opacity: 0.62; } 100% { transform: translate3d(18%, 20%, 0) scale(1.28); opacity: 0.9; } }

@keyframes conceptVisualSpin { 0% { transform: rotate(0deg) scale(1); } 100% { transform: rotate(360deg) scale(1.08); } }
@keyframes conceptVisualOrb01 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(44%, 38%, 0) scale(1.18); } }
@keyframes conceptVisualOrb02 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(-40%, 38%, 0) scale(1.16); } }
@keyframes conceptVisualOrb03 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(36%, -40%, 0) scale(1.2); } }
@keyframes conceptVisualOrb04 { 0% { transform: translate3d(0, 0, 0) scale(1); } 100% { transform: translate3d(-36%, -38%, 0) scale(1.18); } }

/* Responsive */
@media (max-width: 900px) {
  .admin-bar .l-header {
    top: 46px;
  }

  .l-header__inner {
    height: 68px;
  }

  .l-header__logo {
    width: 172px;
  }

  .l-header__menu-button {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .l-header__menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 0 auto;
    background: var(--color-white);
    transition: transform 0.2s ease;
  }

  body.is-menu-open .l-header__menu-button span:nth-child(1) {
    transform: translateY(4px) rotate(35deg);
  }

  body.is-menu-open .l-header__menu-button span:nth-child(2) {
    transform: translateY(-4px) rotate(-35deg);
  }

  .l-header__nav {
    position: fixed;
    z-index: 1001;
    top: 68px;
    left: 0;
    display: grid;
    width: 100%;
    padding: 28px 24px 34px;
    border-bottom: 1px solid var(--color-line);
    background: rgba(5, 7, 17, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  body.is-menu-open .l-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .l-header__nav a {
    padding: 12px 0;
    font-size: 14px;
  }

  .p-hero__inner,
  .p-video-statement__inner {
    padding-top: 68px;
  }

  .p-hero__planet {
    right: -5%;
    width: 58vw;
    height: 58vw;
    opacity: 0.82;
  }

  .p-hero__triangle-orbit {
    right: -5%;
    width: 70vw;
    height: 50vw;
  }

  .p-section,
  .p-lower-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .p-intro__grid,
  .p-value__grid,
  .p-business-page-list__grid,
  .p-compliance__grid,
  .p-about-concept__content,
  .p-business-page-policy__content,
  .p-company-page-profile__inner,
  .p-company-page-identity__grid,
  .p-contact-page-form-section__grid {
    grid-template-columns: 1fr;
  }

  .p-intro__visual--motion {
    min-height: 390px;
    border-radius: 32px;
  }

  .p-intro__orb {
    filter: blur(24px);
  }

  .p-video-statement {
    min-height: 76svh;
  }

  .p-video-statement__inner {
    width: calc(100% - 48px);
    padding: 96px 0;
  }

  .p-video-statement__overlay {
    background: radial-gradient(circle at 78% 36%, rgba(201, 177, 0, 0.14), transparent 34%), linear-gradient(90deg, rgba(5, 7, 17, 0.92) 0%, rgba(5, 7, 17, 0.72) 58%, rgba(5, 7, 17, 0.48) 100%);
  }

  .p-safety__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-about-concept__title,
  .p-business-page-policy__title {
    font-size: clamp(42px, 10vw, 72px);
  }

  .p-about-concept__content,
  .p-business-page-policy__content {
    gap: 42px;
    margin-top: 52px;
  }

  .p-about-concept__visual,
  .p-business-page-policy__visual {
    max-width: 520px;
    min-height: 340px;
    border-radius: 32px;
  }

  .p-company-page-identity__visual {
    min-height: 280px;
  }

  .l-footer__inner {
    display: block;
  }

  .l-footer__nav {
    margin-top: 40px;
  }

  .u-pc-only {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --mpla-body-font-size: 15px;
    --mpla-body-line-height: 1.9;
  }

  .l-container,
  .l-container--narrow,
  .p-hero__inner,
  .p-video-statement__inner,
  .l-header__inner,
  .l-footer__inner,
  .l-footer__copyright {
    width: calc(100% - 32px);
  }

  .l-header__logo {
    width: 154px;
  }

  .p-hero__title {
    font-size: clamp(70px, 22vw, 118px);
  }

  .p-hero__copy {
    font-size: 28px;
  }

  .p-hero__text {
    font-size: 14px;
  }

  .u-sp-only {
    display: inline;
  }

  .p-section,
  .p-lower-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .p-page-hero {
    padding: 148px 0 76px;
  }

  .p-page-hero__title,
  .c-section-title,
  .p-about-concept__title,
  .p-business-page-policy__title {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.12;
  }

  .p-lower-lead__text {
    font-size: 20px;
    line-height: 1.58;
  }

  .p-intro__visual--motion {
    min-height: 310px;
    border-radius: 26px;
  }

  .p-intro__visual--motion::before {
    filter: blur(40px) saturate(175%);
  }

  .p-intro__orb {
    filter: blur(20px);
  }

  .p-video-statement {
    min-height: 68svh;
  }

  .p-video-statement__video {
    opacity: 0.46;
  }

  .p-video-statement__inner {
    padding: 78px 0;
  }

  .p-video-statement__title {
    font-size: clamp(36px, 12vw, 58px);
    line-height: 1.14;
  }

  .p-business__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }

  .p-business__item span {
    font-size: 42px;
  }

  .p-safety__grid {
    grid-template-columns: 1fr;
  }

  .p-safety__item p,
  .p-safety__item span {
    font-size: 24px;
  }

  .c-card,
  .p-business-page-card,
  .p-compliance__card,
  .p-contact-page-form {
    padding: 30px 26px;
    border-radius: 24px;
  }

  .c-card__en {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .p-business-page-card__head {
    display: block;
    margin-bottom: 36px;
  }

  .p-business-page-card__num,
  .p-compliance__num {
    font-size: 60px;
  }

  .p-business-page-card__en {
    margin-top: 12px;
    text-align: left;
  }

  .p-about-concept__content,
  .p-business-page-policy__content {
    gap: 32px;
    margin-top: 38px;
  }

  .p-about-concept__visual,
  .p-business-page-policy__visual {
    min-height: 260px;
    border-radius: 26px;
  }

  .p-about-concept__visual::after,
  .p-business-page-policy__visual::after {
    right: 22px;
    bottom: 20px;
    font-size: 10px;
  }

  .p-company-page-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .p-company-page-identity__visual {
    min-height: 220px;
    border-radius: 20px;
  }

  .p-company-page-identity__visual img {
    width: min(62%, 220px);
  }

  .p-contact-page-form input[type="submit"],
  .c-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    margin-top: 42px;
    padding: 17px 24px;
    font-size: 14px;
  }

  .p-video-statement .c-button {
    width: auto;
    min-width: 230px;
  }

  .p-privacy-block {
    padding: 34px 0;
  }

  .p-privacy-date {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Compatibility hooks for current templates */
.p-about-lead,
.p-business-page-lead,
.p-company-page-lead,
.p-contact-page-lead,
.p-privacy-lead,
.p-company-page-identity {
  background: var(--color-white);
}

.p-intro__visual,
.p-hero__planet--main,
.l-footer__brand,
.p-company-page-profile__head,
.p-company-page-identity__body,
.p-contact-page-form-section__side {
  min-width: 0;
}

.p-about-concept__visual--image {
  background: transparent !important;
  box-shadow: none;
}

/* 虹色グラデーション・IMAGE AREA表記を消す */
.p-about-concept__visual--image::before,
.p-about-concept__visual--image::after {
  content: none !important;
  display: none !important;
}

.p-about-concept__visual--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
}

/* =========================================
  Intro motion visual：スマホで虹色レイヤーが角丸外にはみ出す問題の修正
========================================= */

.p-intro__visual--motion {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  clip-path: inset(0 round 44px);
  -webkit-mask-image: linear-gradient(#000, #000);
  mask-image: linear-gradient(#000, #000);
}

.p-intro__visual--motion::before,
.p-intro__visual--motion::after {
  border-radius: inherit;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* スマホ時は角丸サイズに合わせてクリップを再指定 */
@media (max-width: 600px) {
  .p-intro__visual--motion {
    border-radius: 26px;
    clip-path: inset(0 round 26px);
  }

  /* はみ出しやすい疑似要素の広がりを少し抑える */
  .p-intro__visual--motion::after {
    inset: -8% !important;
  }

  .p-intro__visual--motion::before {
    inset: -22% !important;
  }
}

/* =========================================
  Scroll reveal motion
  見出し・ビジュアル・カードだけを上品に動かす
========================================= */

.js-scroll-reveal {
  --mpla-reveal-delay: 0ms;
  opacity: 0;
  will-change: opacity, transform, filter, clip-path;
  transition-property: opacity, transform, filter, clip-path;
  transition-duration: 880ms;
  transition-delay: var(--mpla-reveal-delay);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 小さな英字ラベル */
.js-scroll-reveal--label {
  transform: translate3d(0, 18px, 0);
  filter: blur(3px);
  transition-duration: 680ms;
}

/* 大きな見出し */
.js-scroll-reveal--heading {
  transform: translate3d(0, 34px, 0);
  filter: blur(5px);
}

/* 写真・動画・抽象ビジュアル */
.js-scroll-reveal--visual {
  transform: translate3d(0, 46px, 0) scale(0.975);
  filter: blur(7px) saturate(0.86);
  transition-duration: 1080ms;
}

/* ビジュアル内の画像・動画を少しだけ寄せる */
.js-scroll-reveal--visual img,
.js-scroll-reveal--visual video {
  transform: scale(1.08);
  transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* カード系 */
.js-scroll-reveal--card {
  transform: translate3d(0, 34px, 0);
  filter: blur(4px);
  transition-duration: 900ms;
}

/* 横罫線・リスト・表の行 */
.js-scroll-reveal--line {
  transform: translate3d(0, 18px, 0);
  clip-path: inset(0 100% 0 0);
  transition-duration: 820ms;
}

/* 表示後 */
.js-scroll-reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1);
  clip-path: inset(0 0 0 0);
}

.js-scroll-reveal.is-inview img,
.js-scroll-reveal.is-inview video {
  transform: scale(1);
}

/* 連続要素の動きに少しだけ差をつける */
.js-scroll-reveal[style*="--mpla-reveal-delay"] {
  transition-delay: var(--mpla-reveal-delay);
}

/* スマホは少し控えめにする */
@media (max-width: 767px) {
  .js-scroll-reveal--heading {
    transform: translate3d(0, 24px, 0);
  }

  .js-scroll-reveal--visual {
    transform: translate3d(0, 30px, 0) scale(0.985);
  }

  .js-scroll-reveal--card,
  .js-scroll-reveal--line {
    transform: translate3d(0, 22px, 0);
  }
}

/* 動きを減らす設定のユーザーには無効化 */
@media (prefers-reduced-motion: reduce) {
  .js-scroll-reveal,
  .js-scroll-reveal img,
  .js-scroll-reveal video {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

/* =========================================
  Footer logo marquee
  トップページ フッター直上の無限ロゴスクロール
========================================= */

.p-footer-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #050711;
  border: none;
  box-shadow: none;
  line-height: 0;
}

.p-footer-marquee__viewport {
  width: 100%;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px) 0;
}

.p-footer-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mplaFooterMarquee 72s linear infinite;
}

.p-footer-marquee__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.p-footer-marquee__group img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(38px, 4.4vw, 74px);
  max-width: none;
  opacity: 0.92;
  user-select: none;
  pointer-events: none;
}

@keyframes mplaFooterMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ホバーしても速度を変えない。ガタつき防止 */
.p-footer-marquee:hover .p-footer-marquee__track {
  animation-duration: 72s;
}

/* スマホでは少しだけ速度を上げる */
@media (max-width: 767px) {
  .p-footer-marquee__viewport {
    padding: 16px 0;
  }

  .p-footer-marquee__track {
    animation-duration: 56s;
  }

  .p-footer-marquee:hover .p-footer-marquee__track {
    animation-duration: 56s;
  }

  .p-footer-marquee__group img {
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-footer-marquee__track {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}