/* =====================================================================
   ASTERIA — Night-sky design system (front page)
   prefix: .as-
   palette: white / dark navy (night sky) / star glow
   ===================================================================== */

:root {
  --as-navy-950: #03071a;
  --as-navy-900: #050c24;
  --as-navy-800: #0a1640;
  --as-navy-700: #12235e;
  --as-navy-600: #1b3487;
  --as-ink: #0c1433;
  --as-ink-2: #4a5273;
  --as-ink-3: #8a90a8;
  --as-line: rgba(12, 20, 51, .12);
  --as-line-w: rgba(255, 255, 255, .14);
  --as-white: #ffffff;
  --as-mist: #eef2ff;
  --as-glow: #9fb8ff;
  --as-blue: #4d6fff;
  --as-blue-2: #7c95ff;
  --as-star: #fff7e0;
  --as-gold: #f2d48a;

  --as-font-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --as-font-ja: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  --as-font-min: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  --as-w: min(1180px, 92vw);
  --as-w-narrow: min(860px, 92vw);
  --as-pad: clamp(80px, 11vw, 150px);
  --as-ease: cubic-bezier(.22, 1, .36, 1);
  --as-ease-2: cubic-bezier(.65, 0, .35, 1);
  --as-header-h: 84px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.as-body {
  margin: 0;
  font-family: var(--as-font-ja);
  font-size: 16px;
  line-height: 1.9;
  color: var(--as-ink);
  background: var(--as-navy-950);
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.as-body.is-locked { overflow: hidden; }
.as-body h1, .as-body h2, .as-body h3, .as-body h4, .as-body p, .as-body ul, .as-body ol, .as-body dl, .as-body dd, .as-body figure { margin: 0; }
.as-body ul, .as-body ol { padding: 0; list-style: none; }
.as-body img, .as-body svg, .as-body video { max-width: 100%; height: auto; display: block; }
.as-body a:not(.as-btn) { color: inherit; } .as-body a { text-decoration: none; }
.as-body button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.as-body em { font-style: normal; }
.as-body :focus-visible { outline: 2px solid var(--as-glow); outline-offset: 3px; }
@media (max-width: 767px) { body.as-body { font-size: 15px; } .as-sec__ttl { font-size: clamp(23px, 6.6vw, 28px); } }

/* WP admin bar */
body.admin-bar .as-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .as-header { top: 46px; } }

/* ---------- fixed night sky ---------- */
.as-sky {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% -10%, #17307a 0%, rgba(23, 48, 122, 0) 60%),
    radial-gradient(60% 40% at 90% 100%, rgba(77, 111, 255, .18) 0%, rgba(77, 111, 255, 0) 70%),
    linear-gradient(180deg, var(--as-navy-900) 0%, var(--as-navy-950) 100%);
}
.as-cursor {
  position: fixed; left: 0; top: 0; z-index: 2;
  width: 420px; height: 420px; margin: -210px 0 0 -210px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(159, 184, 255, .16) 0%, rgba(159, 184, 255, 0) 60%);
  opacity: 0; transition: opacity .6s;
  mix-blend-mode: screen;
}
@media (hover: hover) and (pointer: fine) { body.as-body.has-cursor .as-cursor { opacity: 1; } }

/* responsive line breaks */
br.sp { display: none; }
@media (max-width: 767px) { br.sp { display: inline; } br.pc { display: none; } }

/* ---------- layout helpers ---------- */
.as-main { position: relative; z-index: 1; }
.as-sec { position: relative; padding: var(--as-pad) 0; }
.as-sec--dark { color: var(--as-white); }
.as-sec--light { background: var(--as-white); color: var(--as-ink); }
.as-sec--mist { background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%); color: var(--as-ink); }
.as-sec--light::before, .as-sec--mist::before {
  /* faint constellation texture on white sections */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(77, 111, 255, .18) 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 26%, rgba(77, 111, 255, .14) 0 1.2px, transparent 2px),
    radial-gradient(circle at 34% 72%, rgba(77, 111, 255, .12) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 82%, rgba(77, 111, 255, .16) 0 1.4px, transparent 2px),
    radial-gradient(circle at 55% 48%, rgba(77, 111, 255, .10) 0 1px, transparent 2px);
  background-size: 900px 700px;
}
.as-inner { position: relative; width: var(--as-w); margin: 0 auto; }
.as-inner--narrow { width: var(--as-w-narrow); }

.as-sec__head { margin-bottom: clamp(44px, 6vw, 72px); }
.as-sec__head--center { text-align: center; }
.as-sec__en {
  font-family: var(--as-font-en); font-style: italic; font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px); letter-spacing: .12em; text-transform: none;
  color: var(--as-blue); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.as-sec--dark .as-sec__en { color: var(--as-glow); }
.as-sec__en::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.as-sec__ttl {
  font-family: var(--as-font-min); font-weight: 600;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.45; letter-spacing: .04em;
}
.as-sec__ttl em { color: var(--as-blue); }
.as-sec--dark .as-sec__ttl em { color: var(--as-glow); }
.as-sec__sub { margin-top: 20px; color: var(--as-ink-2); font-size: clamp(14px, 1.2vw, 16px); }
.as-sec--dark .as-sec__sub { color: rgba(255, 255, 255, .72); }

/* ---------- buttons ---------- */
.as-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 32px; height: 60px; border-radius: 999px;
  font-family: var(--as-font-ja); font-weight: 700; font-size: 15px; letter-spacing: .06em;
  transition: transform .5s var(--as-ease), box-shadow .5s var(--as-ease), background .4s, color .4s, border-color .4s;
  overflow: hidden; isolation: isolate; white-space: nowrap;
}
.as-btn--sm { height: 46px; padding: 0 22px; font-size: 13px; }
.as-btn.as-btn--primary { color: var(--as-navy-900); background: var(--as-white); box-shadow: 0 10px 40px rgba(159, 184, 255, .25); }
.as-btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(120deg, #fff 0%, #dfe7ff 50%, #fff 100%);
  transform: translateX(-100%); transition: transform .8s var(--as-ease);
}
.as-btn--primary:hover::after { transform: translateX(0); }
.as-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(159, 184, 255, .4); }
.as-btn.as-btn--ghost { color: var(--as-white); border: 1px solid rgba(255, 255, 255, .45); backdrop-filter: blur(6px); }
.as-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); transform: translateY(-3px); }
.as-btn.as-btn--navy { color: #fff; background: var(--as-navy-800); box-shadow: 0 12px 34px rgba(10, 22, 64, .3); }
.as-btn--navy::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(120deg, var(--as-navy-700), var(--as-blue));
  opacity: 0; transition: opacity .5s;
}
.as-btn--navy:hover::after { opacity: 1; }
.as-btn--navy:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(77, 111, 255, .35); }
.as-btn__arrow { width: 18px; height: 18px; flex: none; transition: transform .5s var(--as-ease); }
.as-btn:hover .as-btn__arrow { transform: translateX(5px); }
.as-btn__star { width: 16px; height: 16px; flex: none; }

/* ---------- loader ---------- */
.as-loader {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: var(--as-navy-950); color: #fff;
  transition: opacity .9s var(--as-ease), visibility .9s;
}
.as-loader.is-done { opacity: 0; visibility: hidden; }
.as-loader__box { text-align: center; }
.as-loader__svg { width: 220px; height: 140px; margin: 0 auto 18px; overflow: visible; }
.as-loader__svg .l { stroke: rgba(159, 184, 255, .7); stroke-width: 1; fill: none; stroke-dasharray: 700; stroke-dashoffset: 700; animation: as-draw 1.6s var(--as-ease-2) .15s forwards; }
.as-loader__svg .s { fill: #fff; opacity: 0; animation: as-pop .5s var(--as-ease) forwards; filter: drop-shadow(0 0 6px rgba(255, 255, 255, .9)); }
.as-loader__svg .s:nth-child(2) { animation-delay: .2s; }
.as-loader__svg .s:nth-child(3) { animation-delay: .45s; }
.as-loader__svg .s:nth-child(4) { animation-delay: .7s; }
.as-loader__svg .s:nth-child(5) { animation-delay: .95s; }
.as-loader__svg .s:nth-child(6) { animation-delay: 1.2s; }
.as-loader__svg .s:nth-child(7) { animation-delay: 1.45s; }
.as-loader__txt { font-family: var(--as-font-en); font-size: 22px; letter-spacing: .5em; padding-left: .5em; opacity: 0; animation: as-fade .8s .6s forwards; }
@keyframes as-draw { to { stroke-dashoffset: 0; } }
@keyframes as-pop { 0% { opacity: 0; transform: scale(.2); } 100% { opacity: 1; transform: scale(1); } }
@keyframes as-fade { to { opacity: 1; } }

/* ---------- header ---------- */
.as-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--as-header-h); color: #fff;
  transition: background .5s, backdrop-filter .5s, box-shadow .5s, height .4s var(--as-ease);
}
.as-header.is-scrolled {
  height: 68px; background: rgba(5, 12, 36, .72);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08), 0 10px 40px rgba(0, 0, 0, .25);
}
.as-header__inner { width: min(1320px, 94vw); height: 100%; margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.as-header__logo { display: block; flex: none; }
.as-header__logo img { width: clamp(120px, 12vw, 160px); height: auto; }
.as-nav { margin-left: auto; }
.as-nav > ul { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.as-nav a { display: flex; flex-direction: column; align-items: center; line-height: 1.2; padding: 6px 2px; position: relative; }
.as-nav .en { font-family: var(--as-font-en); font-style: italic; font-size: 17px; letter-spacing: .04em; }
.as-nav .ja { font-size: 10px; letter-spacing: .14em; color: rgba(255, 255, 255, .6); margin-top: 3px; }
.as-nav a::after { content: ""; position: absolute; left: 50%; bottom: -2px; width: 4px; height: 4px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px #fff; transform: translateX(-50%) scale(0); transition: transform .4s var(--as-ease); }
.as-nav a:hover::after { transform: translateX(-50%) scale(1); }
.as-header__cta { flex: none; }
.as-header__cta.as-btn--primary { box-shadow: none; }
.as-burger { display: none; position: relative; width: 48px; height: 48px; padding: 0; margin-left: auto; flex: none; z-index: 2; }
.as-burger span { position: absolute; left: 12px; width: 24px; height: 1.5px; background: #fff; transition: transform .5s var(--as-ease), top .5s var(--as-ease); }
.as-burger span:nth-child(1) { top: 19px; }
.as-burger span:nth-child(2) { top: 28px; }
.as-burger.is-open span:nth-child(1) { top: 23.5px; transform: rotate(45deg); }
.as-burger.is-open span:nth-child(2) { top: 23.5px; transform: rotate(-45deg); }
@media (max-width: 1023px) {
  .as-nav, .as-header__cta { display: none; }
  .as-burger { display: block; }
}

/* drawer */
.as-drawer {
  position: fixed; inset: 0; z-index: 90; display: grid; place-items: center;
  background: #050c24; color: #fff; overflow-y: auto; padding: 90px 20px 40px;
  clip-path: circle(0 at calc(100% - 36px) 42px);
  transition: clip-path .8s var(--as-ease-2); visibility: hidden;
}
.as-drawer.is-open { clip-path: circle(150% at calc(100% - 36px) 42px); visibility: visible; }
.as-drawer__inner { text-align: center; }
.as-drawer__nav li { margin: 2px 0; opacity: 0; transform: translateY(18px); transition: opacity .6s var(--as-ease), transform .6s var(--as-ease); }
.as-drawer.is-open .as-drawer__nav li { opacity: 1; transform: none; }
.as-drawer.is-open .as-drawer__nav li:nth-child(1) { transition-delay: .25s; }
.as-drawer.is-open .as-drawer__nav li:nth-child(2) { transition-delay: .3s; }
.as-drawer.is-open .as-drawer__nav li:nth-child(3) { transition-delay: .35s; }
.as-drawer.is-open .as-drawer__nav li:nth-child(4) { transition-delay: .4s; }
.as-drawer.is-open .as-drawer__nav li:nth-child(5) { transition-delay: .45s; }
.as-drawer.is-open .as-drawer__nav li:nth-child(6) { transition-delay: .5s; }
.as-drawer.is-open .as-drawer__nav li:nth-child(7) { transition-delay: .55s; }
.as-drawer__nav a { display: inline-block; padding: 5px 12px; }
.as-drawer__nav .en { display: block; font-family: var(--as-font-en); font-style: italic; font-size: 30px; line-height: 1.1; }
.as-drawer__nav .ja { display: block; font-size: 11px; letter-spacing: .2em; color: rgba(255, 255, 255, .55); margin-top: 4px; }
.as-drawer__cta { margin-top: 22px; }
.as-drawer__tel { margin-top: 16px; font-family: var(--as-font-en); font-size: 22px; letter-spacing: .06em; color: rgba(255, 255, 255, .8); }

/* ---------- hero ---------- */
.as-hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--as-header-h) + 40px) 0 100px; color: #fff; overflow: hidden;
}
.as-hero__glow {
  position: absolute; left: 50%; top: 45%; width: 90vw; max-width: 1100px; aspect-ratio: 1;
  transform: translate(-50%, -50%); pointer-events: none;
  background: radial-gradient(circle, rgba(77, 111, 255, .22) 0%, rgba(77, 111, 255, .06) 35%, transparent 65%);
  filter: blur(10px);
  animation: as-breathe 9s ease-in-out infinite;
}
@keyframes as-breathe { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .9; } 50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; } }
.as-hero__moon {
  position: absolute; right: clamp(-80px, 4vw, 120px); top: 12%; width: clamp(240px, 32vw, 460px); aspect-ratio: 1;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 38% 36%, rgba(255, 255, 255, .10), rgba(159, 184, 255, .05) 45%, transparent 70%);
  box-shadow: inset 0 0 60px rgba(159, 184, 255, .12), 0 0 120px rgba(77, 111, 255, .14);
  border: 1px solid rgba(255, 255, 255, .06);
  animation: as-float 12s ease-in-out infinite;
}
.as-hero__moon::before { content: ""; position: absolute; inset: -18%; border-radius: 50%; border: 1px dashed rgba(255, 255, 255, .12); animation: as-spin 80s linear infinite; }
.as-hero__moon::after { content: ""; position: absolute; left: 50%; top: -18%; width: 8px; height: 8px; margin-left: -4px; border-radius: 50%; background: #fff; box-shadow: 0 0 14px 3px rgba(255, 255, 255, .8); animation: as-orbit 80s linear infinite; transform-origin: 4px calc(50% + 18% * 1); }
@keyframes as-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes as-spin { to { transform: rotate(360deg); } }
@keyframes as-orbit { to { transform: rotate(360deg); } }
.as-hero__moon::after { transform-origin: 4px calc(50% + 18% * 1); }
@media (max-width: 767px) { .as-hero__moon { top: auto; bottom: -8%; right: -30%; opacity: .7; } }

.as-hero__inner { position: relative; width: var(--as-w); margin: 0 auto; }
.as-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--as-font-en); font-style: italic; font-size: clamp(15px, 1.5vw, 19px); letter-spacing: .1em; color: var(--as-glow);
  margin-bottom: clamp(22px, 3vw, 34px);
}
.as-star-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px 2px rgba(255, 255, 255, .8); animation: as-twinkle 2.4s ease-in-out infinite; }
@keyframes as-twinkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.7); } }
.as-hero__title {
  font-family: var(--as-font-min); font-weight: 600;
  font-size: clamp(34px, 5.6vw, 72px); line-height: 1.32; letter-spacing: .04em;
}
.as-line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.as-line > span { display: block; transform: translateY(110%); transition: transform 1.2s var(--as-ease); }
.as-line:nth-child(2) > span { transition-delay: .12s; }
.as-line:nth-child(3) > span { transition-delay: .24s; }
.is-ready .as-line > span { transform: none; }
.as-hero__title em {
  position: relative; display: inline-block; color: #fff;
  background: linear-gradient(90deg, #fff 0%, var(--as-glow) 50%, #fff 100%);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: as-shine 5s linear infinite;
}
@keyframes as-shine { to { background-position: -200% 0; } }
.as-hero__title em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: 1px; background: linear-gradient(90deg, transparent, var(--as-glow), transparent); }
.as-hero__lead {
  margin-top: clamp(24px, 3vw, 36px); max-width: 620px;
  font-size: clamp(15px, 1.35vw, 18px); line-height: 2.1; color: rgba(255, 255, 255, .82);
}
.as-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(30px, 4vw, 44px); }
.as-hero__facts { display: flex; flex-wrap: wrap; gap: clamp(20px, 3.5vw, 48px); margin-top: clamp(40px, 6vw, 72px); padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .14); }
.as-hero__facts li { display: flex; align-items: baseline; gap: 12px; }
.as-hero__facts strong { font-family: var(--as-font-en); font-weight: 500; font-size: clamp(30px, 3.4vw, 44px); line-height: 1; letter-spacing: .02em; }
.as-hero__facts span { font-size: 12px; letter-spacing: .12em; color: rgba(255, 255, 255, .62); }
.as-hero__fade { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--as-ease), transform 1s var(--as-ease); }
.is-ready .as-hero__fade { opacity: 1; transform: none; }
.is-ready .as-hero__fade:nth-of-type(1) { transition-delay: .5s; }
.as-hero__lead.as-hero__fade { transition-delay: .55s; }
.as-hero__cta.as-hero__fade { transition-delay: .7s; }
.as-hero__facts.as-hero__fade { transition-delay: .9s; }
.as-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--as-font-en); font-style: italic; font-size: 13px; letter-spacing: .2em; color: rgba(255, 255, 255, .6);
}
.as-scroll i { display: block; width: 1px; height: 54px; background: rgba(255, 255, 255, .25); position: relative; overflow: hidden; }
.as-scroll i::after { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: #fff; animation: as-scrollline 2.2s var(--as-ease-2) infinite; }
@keyframes as-scrollline { 0% { top: -100%; } 60%, 100% { top: 100%; } }
.as-hero__side {
  position: absolute; right: 28px; bottom: 40px; writing-mode: vertical-rl;
  font-family: var(--as-font-en); font-style: italic; font-size: 13px; letter-spacing: .25em; color: rgba(255, 255, 255, .45);
}
@media (max-width: 767px) {
  .as-hero__side { display: none; }
  .as-hero { padding-bottom: 120px; }
  .as-hero__title { font-size: clamp(28px, 8.4vw, 36px); line-height: 1.4; letter-spacing: .02em; }
  .as-hero__lead { font-size: 14px; line-height: 1.9; }
  .as-hero__cta .as-btn { width: 100%; }
  .as-hero__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .as-hero__facts strong { font-size: 26px; }
  .as-hero__facts span { font-size: 11px; }
}

/* ---------- marquee ---------- */
.as-marquee { position: relative; overflow: hidden; padding: 22px 0; border-top: 1px solid var(--as-line-w); border-bottom: 1px solid var(--as-line-w); color: rgba(255, 255, 255, .8); }
.as-marquee__track { display: flex; width: max-content; animation: as-marquee 40s linear infinite; }
.as-marquee:hover .as-marquee__track { animation-play-state: paused; }
.as-marquee__track ul { display: flex; flex: none; }
.as-marquee li { display: flex; align-items: center; gap: 28px; padding: 0 28px; font-family: var(--as-font-en); font-style: italic; font-size: clamp(18px, 2vw, 24px); letter-spacing: .1em; white-space: nowrap; }
.as-marquee li::after { content: "✦"; font-size: 12px; color: var(--as-glow); }
@keyframes as-marquee { to { transform: translateX(-50%); } }

/* ---------- concept ---------- */
.as-concept { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.as-concept__copy .as-sec__ttl { font-size: clamp(26px, 3.2vw, 40px); }
.as-concept__text { margin-top: 28px; color: var(--as-ink-2); font-size: clamp(14px, 1.2vw, 16px); }
.as-concept__text p + p { margin-top: 1.2em; }
.as-concept__sign { margin-top: 32px; display: flex; align-items: center; gap: 18px; }
.as-concept__sign .en { font-family: var(--as-font-en); font-style: italic; font-size: 26px; color: var(--as-navy-700); }
.as-concept__sign .ja { font-size: 13px; color: var(--as-ink-3); letter-spacing: .1em; }
.as-concept__visual { position: relative; width: min(100%, 460px); aspect-ratio: 1; margin: 0 auto; }
.as-orb {
  position: relative; width: 100%; aspect-ratio: 1; margin: 0 auto; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #1b3487 0%, #0a1640 45%, #050c24 100%);
  box-shadow: 0 40px 100px rgba(10, 22, 64, .35), inset 0 0 80px rgba(159, 184, 255, .15);
  overflow: hidden; isolation: isolate;
}
.as-orb__stars { position: absolute; inset: 0; }
.as-orb__ring { position: absolute; inset: -6%; border-radius: 50%; border: 1px solid rgba(12, 20, 51, .12); animation: as-spin 60s linear infinite; }
.as-orb__ring::before { content: ""; position: absolute; left: 50%; top: -5px; width: 10px; height: 10px; margin-left: -5px; border-radius: 50%; background: var(--as-blue); box-shadow: 0 0 16px var(--as-blue); }
.as-orb__ring--2 { inset: -14%; animation-duration: 95s; animation-direction: reverse; border-style: dashed; }
.as-orb__ring--2::before { background: var(--as-gold); box-shadow: 0 0 16px var(--as-gold); width: 7px; height: 7px; margin-left: -3.5px; top: -3px; }
.as-orb__logo { position: absolute; inset: 0; display: grid; place-items: center; padding: 16%; }
.as-orb__logo img { width: 100%; filter: drop-shadow(0 0 30px rgba(159, 184, 255, .5)); }
.as-orb__cap { position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); padding: 10px 20px; border-radius: 999px; background: #fff; box-shadow: 0 10px 30px rgba(10, 22, 64, .15); font-family: var(--as-font-en); font-style: italic; font-size: 14px; letter-spacing: .14em; color: var(--as-navy-700); white-space: nowrap; }
@media (max-width: 900px) { .as-concept { grid-template-columns: 1fr; } .as-concept__visual { order: -1; width: min(74%, 340px); margin-bottom: 30px; } }

/* ---------- reasons ---------- */
.as-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.as-card {
  position: relative; padding: clamp(28px, 3vw, 40px); border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .03) 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  overflow: hidden; transition: transform .6s var(--as-ease), border-color .5s, box-shadow .6s;
  transform-style: preserve-3d;
}
.as-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(159, 184, 255, .22), transparent 45%);
}
.as-card:hover { border-color: rgba(159, 184, 255, .45); box-shadow: 0 30px 70px rgba(0, 0, 0, .35); }
.as-card:hover::before { opacity: 1; }
.as-card__num { font-family: var(--as-font-en); font-style: italic; font-size: 54px; line-height: 1; color: rgba(159, 184, 255, .5); margin-bottom: 18px; }
.as-card__icon { width: 52px; height: 52px; margin-bottom: 22px; color: var(--as-glow); }
.as-card__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.as-card__ttl { font-family: var(--as-font-min); font-weight: 600; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.5; margin-bottom: 14px; }
.as-card__txt { font-size: 14.5px; line-height: 1.95; color: rgba(255, 255, 255, .75); }
.as-card__tag { display: inline-block; margin-top: 18px; padding: 5px 12px; border-radius: 999px; font-size: 11px; letter-spacing: .12em; border: 1px solid rgba(159, 184, 255, .4); color: var(--as-glow); }
@media (max-width: 900px) { .as-reasons { grid-template-columns: 1fr; } }

.as-reasons__note {
  margin-top: 40px; padding: 28px 32px; border-radius: 18px; display: flex; gap: 22px; align-items: center;
  background: rgba(255, 255, 255, .05); border: 1px dashed rgba(255, 255, 255, .2);
}
.as-reasons__note strong { font-family: var(--as-font-min); font-size: 18px; display: block; margin-bottom: 4px; }
.as-reasons__note p { font-size: 14px; color: rgba(255, 255, 255, .75); }
.as-reasons__note .as-star-dot { flex: none; width: 12px; height: 12px; }
@media (max-width: 767px) { .as-reasons__note { flex-direction: column; align-items: flex-start; padding: 22px; } }

/* ---------- services ---------- */
.as-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.as-svc {
  position: relative; display: block; padding: 34px 30px 30px; border-radius: 20px; background: #fff;
  border: 1px solid var(--as-line); box-shadow: 0 2px 0 rgba(12, 20, 51, .02);
  transition: transform .6s var(--as-ease), box-shadow .6s var(--as-ease), border-color .5s;
  overflow: hidden;
}
.as-svc::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--as-navy-700), var(--as-blue), var(--as-glow)); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--as-ease); }
.as-svc:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(10, 22, 64, .14); border-color: transparent; }
.as-svc:hover::after { transform: scaleX(1); }
.as-svc__icon { width: 50px; height: 50px; margin-bottom: 20px; color: var(--as-navy-700); }
.as-svc__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.as-svc__en { font-family: var(--as-font-en); font-style: italic; font-size: 14px; letter-spacing: .1em; color: var(--as-blue); margin-bottom: 8px; }
.as-svc__ttl { font-family: var(--as-font-min); font-weight: 600; font-size: 21px; line-height: 1.5; margin-bottom: 12px; }
.as-svc__txt { font-size: 14px; color: var(--as-ink-2); line-height: 1.9; }
.as-svc__price { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--as-line); font-size: 12px; color: var(--as-ink-3); letter-spacing: .06em; }
.as-svc__price strong { font-family: var(--as-font-en); font-size: 22px; color: var(--as-navy-700); margin: 0 4px; }
@media (max-width: 1000px) { .as-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .as-services { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.as-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.as-plan {
  position: relative; display: flex; flex-direction: column; padding: clamp(30px, 3vw, 42px) clamp(26px, 2.6vw, 36px); border-radius: 24px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .6s var(--as-ease), border-color .5s, box-shadow .6s;
}
.as-plan:hover { transform: translateY(-8px); border-color: rgba(159, 184, 255, .5); box-shadow: 0 30px 70px rgba(0, 0, 0, .35); }
.as-plan--hot { background: linear-gradient(170deg, rgba(77, 111, 255, .22) 0%, rgba(255, 255, 255, .05) 60%); border-color: rgba(159, 184, 255, .55); }
.as-plan__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 16px; border-radius: 999px; background: #fff; color: var(--as-navy-800); font-size: 11px; font-weight: 700; letter-spacing: .16em; white-space: nowrap; box-shadow: 0 8px 24px rgba(255, 255, 255, .25); }
.as-plan__en { font-family: var(--as-font-en); font-style: italic; font-size: 15px; letter-spacing: .12em; color: var(--as-glow); }
.as-plan__name { font-family: var(--as-font-min); font-size: 24px; font-weight: 600; margin: 6px 0 14px; }
.as-plan__for { font-size: 13px; color: rgba(255, 255, 255, .7); min-height: 3em; }
.as-plan__price { margin: 22px 0 8px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.as-plan__price .yen { font-family: var(--as-font-en); font-size: 20px; }
.as-plan__price .num { font-family: var(--as-font-en); font-weight: 500; font-size: clamp(40px, 3.6vw, 52px); line-height: 1; letter-spacing: .02em; }
.as-plan__price .unit { font-size: 13px; color: rgba(255, 255, 255, .7); }
.as-plan__note { font-size: 11px; color: rgba(255, 255, 255, .5); letter-spacing: .06em; }
.as-plan__list { margin: 24px 0 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); display: grid; gap: 10px; font-size: 14px; }
.as-plan__list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255, 255, 255, .85); }
.as-plan__list li::before { content: "✦"; flex: none; color: var(--as-glow); font-size: 11px; margin-top: 6px; }
.as-plan .as-btn { margin-top: auto; width: 100%; }
@media (max-width: 960px) { .as-plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } .as-plan--hot { order: -1; } }
.as-plans--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.as-plans--4 .as-plan { padding: clamp(28px, 2.4vw, 34px) clamp(20px, 1.8vw, 26px); }
.as-plans--4 .as-plan__name { font-size: 21px; }
.as-plans--4 .as-plan__for { min-height: 4.5em; }
.as-plans--4 .as-plan__price .num { font-size: clamp(34px, 2.8vw, 44px); }
.as-plans--4 .as-plan__price .unit:first-child { font-size: 13px; margin-right: 2px; }
@media (max-width: 1100px) { .as-plans--4 { grid-template-columns: repeat(2, 1fr); max-width: none; } .as-plans--4 .as-plan--hot { order: 0; } }
@media (max-width: 600px) { .as-plans--4 { grid-template-columns: 1fr; max-width: 520px; } }
.as-price__foot { margin-top: 36px; text-align: center; font-size: 13px; color: rgba(255, 255, 255, .6); line-height: 2; }
.as-price__foot a { text-decoration: underline; text-underline-offset: 4px; color: #fff; }

/* ---------- comparison ---------- */
.as-compare { margin-top: clamp(56px, 7vw, 90px); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.as-compare table { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.as-compare th, .as-compare td { padding: 16px 18px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.as-compare th { font-weight: 500; color: rgba(255, 255, 255, .7); font-size: 13px; letter-spacing: .08em; }
.as-compare td:first-child, .as-compare th:first-child { text-align: left; color: #fff; font-weight: 700; }
.as-compare .is-us { background: rgba(77, 111, 255, .16); color: #fff; font-weight: 700; }
.as-compare thead .is-us { border-radius: 14px 14px 0 0; background: rgba(77, 111, 255, .3); color: #fff; font-family: var(--as-font-en); font-style: italic; font-size: 18px; letter-spacing: .1em; }
.as-compare .good { color: var(--as-glow); font-size: 20px; }
.as-compare .so { color: rgba(255, 255, 255, .55); }

/* ---------- flow ---------- */
.as-flow { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.as-flow__line { position: absolute; left: 0; right: 0; top: 46px; height: 2px; pointer-events: none; }
.as-flow__line svg { width: 100%; height: 2px; display: block; overflow: visible; }
.as-flow__line path { stroke: var(--as-blue); stroke-width: 1.5; stroke-dasharray: 6 8; fill: none; opacity: .6; }
.as-step { position: relative; text-align: center; padding-top: 0; }
.as-step__no {
  position: relative; z-index: 1; width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--as-line); box-shadow: 0 10px 30px rgba(10, 22, 64, .08);
  font-family: var(--as-font-en); font-style: italic; font-size: 30px; color: var(--as-navy-700);
  transition: transform .6s var(--as-ease), box-shadow .6s, background .5s, color .5s;
}
.as-step:hover .as-step__no { transform: translateY(-6px); background: var(--as-navy-800); color: #fff; box-shadow: 0 20px 40px rgba(10, 22, 64, .25); }
.as-step__no::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1px dashed rgba(77, 111, 255, .35); transition: transform 1s var(--as-ease); }
.as-step:hover .as-step__no::after { transform: rotate(90deg); }
.as-step__en { font-family: var(--as-font-en); font-style: italic; font-size: 13px; letter-spacing: .08em; color: var(--as-blue); }
.as-step__ttl { font-family: var(--as-font-min); font-weight: 600; font-size: 17px; margin: 6px 0 10px; line-height: 1.5; }
.as-step__txt { font-size: 13px; line-height: 1.8; color: var(--as-ink-2); }
.as-step__where { display: inline-block; margin-top: 10px; padding: 3px 10px; border-radius: 999px; font-size: 10.5px; letter-spacing: .12em; background: var(--as-mist); color: var(--as-navy-700); }
@media (max-width: 1000px) {
  .as-flow { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .as-flow__line { display: none; }
}
@media (max-width: 560px) {
  .as-flow { grid-template-columns: 1fr; row-gap: 0; }
  .as-step { display: grid; grid-template-columns: 72px 1fr; column-gap: 18px; text-align: left; padding-bottom: 34px; }
  .as-step__no { width: 72px; height: 72px; margin: 0; font-size: 24px; grid-row: span 4; }
  .as-step__where { grid-column: 2; justify-self: start; }
  .as-step:not(:last-child)::before { content: ""; position: absolute; left: 36px; top: 72px; bottom: 0; width: 1px; border-left: 1px dashed rgba(77, 111, 255, .4); }
}

/* ---------- area ---------- */
.as-area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.as-area__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.as-area__list li { padding: 7px 14px; border-radius: 999px; font-size: 13px; border: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .85); transition: background .4s, border-color .4s; }
.as-area__list li:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }
.as-area__list li.is-main { background: #fff; color: var(--as-navy-800); font-weight: 700; border-color: #fff; }
.as-area__txt { margin-top: 24px; font-size: 14.5px; color: rgba(255, 255, 255, .75); }
.as-area__map { position: relative; aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; width: 100%; }
.as-area__map svg { width: 100%; height: 100%; overflow: visible; }
.as-area__map .ring { fill: none; stroke: rgba(159, 184, 255, .35); stroke-width: 1; }
.as-area__map .ring--d { stroke-dasharray: 3 6; }
.as-area__map .core { fill: #fff; filter: drop-shadow(0 0 14px rgba(255, 255, 255, .9)); }
.as-area__map .pt { fill: var(--as-glow); filter: drop-shadow(0 0 8px rgba(159, 184, 255, .9)); }
.as-area__map .ln { stroke: rgba(159, 184, 255, .45); stroke-width: 1; }
.as-area__map text { fill: rgba(255, 255, 255, .85); font-family: var(--as-font-ja); font-size: 11px; letter-spacing: .06em; }
.as-area__map .lbl-main { fill: #fff; font-size: 14px; font-weight: 700; }
.as-area__map .pulse { fill: none; stroke: #fff; stroke-width: 1; opacity: 0; transform-origin: 200px 200px; animation: as-pulse 3.5s ease-out infinite; }
.as-area__map .pulse:nth-of-type(2) { animation-delay: 1.2s; }
.as-area__map .pulse:nth-of-type(3) { animation-delay: 2.4s; }
@keyframes as-pulse { 0% { opacity: .8; r: 8; } 100% { opacity: 0; r: 120; } }
@media (max-width: 860px) { .as-area { grid-template-columns: 1fr; } .as-area__map { max-width: 360px; } }

/* ---------- faq ---------- */
.as-faq { display: grid; gap: 16px; }
.as-faq__item { border: 1px solid var(--as-line); border-radius: 18px; background: #fff; overflow: hidden; transition: box-shadow .5s, border-color .5s; }
.as-faq__item.is-open { border-color: rgba(77, 111, 255, .4); box-shadow: 0 20px 50px rgba(10, 22, 64, .08); }
.as-faq__q { width: 100%; display: flex; align-items: center; gap: 20px; padding: 32px 38px; text-align: left; font-weight: 700; font-size: clamp(15px, 1.2vw, 17px); line-height: 1.7; }
.as-faq__q .q { flex: none; font-family: var(--as-font-en); font-style: italic; font-size: 24px; color: var(--as-blue); line-height: 1; }
.as-faq__q .ic { flex: none; margin-left: auto; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--as-line); position: relative; transition: transform .6s var(--as-ease), background .4s, border-color .4s; }
.as-faq__q .ic::before, .as-faq__q .ic::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: var(--as-navy-700); transform: translate(-50%, -50%); transition: transform .5s var(--as-ease), background .4s; }
.as-faq__q .ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.as-faq__item.is-open .ic { background: var(--as-navy-800); border-color: var(--as-navy-800); transform: rotate(180deg); }
.as-faq__item.is-open .ic::before, .as-faq__item.is-open .ic::after { background: #fff; }
.as-faq__item.is-open .ic::after { transform: translate(-50%, -50%) rotate(0); }
.as-faq__a { height: 0; overflow: hidden; transition: height .6s var(--as-ease); }
.as-faq__a > div { padding: 4px 38px 34px 78px; font-size: 14.5px; color: var(--as-ink-2); line-height: 2; }
.as-faq__a > div::before { content: "A."; font-family: var(--as-font-en); font-style: italic; font-size: 22px; color: var(--as-ink-3); margin-right: 10px; }
@media (max-width: 600px) { .as-faq__q { padding: 24px 22px; gap: 14px; } .as-faq__a > div { padding: 2px 22px 28px 22px; } }

/* ---------- news ---------- */
.as-news { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.as-news__list { display: grid; }
.as-news__item { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; align-items: center; padding: 22px 8px; border-bottom: 1px solid rgba(255, 255, 255, .14); transition: background .4s, padding .5s var(--as-ease); }
.as-news__item:first-child { border-top: 1px solid rgba(255, 255, 255, .14); }
.as-news__item:hover { background: rgba(255, 255, 255, .05); padding-left: 16px; }
.as-news__date { font-family: var(--as-font-en); font-style: italic; font-size: 16px; letter-spacing: .06em; color: var(--as-glow); }
.as-news__ttl { font-size: 15.5px; font-weight: 500; }
.as-news__arrow { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); display: grid; place-items: center; transition: background .4s, border-color .4s; }
.as-news__arrow svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 1.5; }
.as-news__item:hover .as-news__arrow { background: #fff; border-color: #fff; }
.as-news__item:hover .as-news__arrow svg { stroke: var(--as-navy-800); }
.as-news__more { margin-top: 28px; }
@media (max-width: 800px) { .as-news { grid-template-columns: 1fr; } .as-news__item { grid-template-columns: 1fr auto; } .as-news__date { grid-column: 1 / -1; font-size: 14px; } }

/* ---------- CTA ---------- */
.as-cta { position: relative; overflow: hidden; }
.as-cta__box {
  position: relative; text-align: center; padding: clamp(60px, 8vw, 110px) clamp(24px, 5vw, 80px);
  border-radius: 32px; border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(160deg, rgba(77, 111, 255, .22) 0%, rgba(255, 255, 255, .04) 55%, rgba(242, 212, 138, .08) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); overflow: hidden;
}
.as-cta__box::before { content: ""; position: absolute; left: 50%; top: -40%; width: 70%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(159, 184, 255, .35), transparent 65%); filter: blur(30px); pointer-events: none; }
.as-cta__en { font-family: var(--as-font-en); font-style: italic; font-size: clamp(40px, 7vw, 92px); line-height: 1; letter-spacing: .04em; color: rgba(255, 255, 255, .9); }
.as-cta__ttl { font-family: var(--as-font-min); font-weight: 600; font-size: clamp(22px, 3vw, 34px); line-height: 1.6; margin-top: 18px; }
.as-cta__txt { margin-top: 18px; font-size: 15px; color: rgba(255, 255, 255, .78); }
.as-cta__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.as-cta__tel { margin-top: 26px; font-size: 13px; color: rgba(255, 255, 255, .65); }
.as-cta__tel a { font-family: var(--as-font-en); font-size: 30px; letter-spacing: .06em; color: #fff; display: inline-block; margin-left: 10px; vertical-align: middle; }

/* ---------- company ---------- */
.as-company { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.as-company__brand { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; }
.as-company__brand img { width: 110px; height: auto; flex: none; }
.as-company__brand p { font-family: var(--as-font-min); font-size: 15px; line-height: 1.8; color: var(--as-navy-700); letter-spacing: .06em; }
.as-company__dl { display: grid; grid-template-columns: 130px 1fr; row-gap: 0; font-size: 14.5px; }
.as-company__dl dt, .as-company__dl dd { padding: 16px 0; border-bottom: 1px solid var(--as-line); }
.as-company__dl dt { font-weight: 700; color: var(--as-navy-700); letter-spacing: .08em; }
.as-company__dl dd { color: var(--as-ink-2); }
.as-company__map { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 30px 60px rgba(10, 22, 64, .15); background: var(--as-mist); }
.as-company__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.05); }
@media (max-width: 800px) { .as-company { grid-template-columns: 1fr; } .as-company__dl { grid-template-columns: 100px 1fr; } }

/* ---------- footer ---------- */
.as-footer { position: relative; z-index: 1; color: #fff; padding: clamp(56px, 7vw, 90px) 0 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.as-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); }
.as-footer__logo img { width: 170px; }
.as-footer__desc { margin-top: 18px; font-size: 13.5px; color: rgba(255, 255, 255, .7); max-width: 380px; }
.as-footer__addr { margin-top: 18px; font-size: 13px; color: rgba(255, 255, 255, .7); line-height: 1.9; font-style: normal; }
.as-footer__h { font-family: var(--as-font-en); font-style: italic; font-size: 18px; letter-spacing: .1em; color: var(--as-glow); margin-bottom: 16px; }
.as-footer__nav li { margin: 8px 0; font-size: 14px; }
.as-footer__nav a { position: relative; display: inline-block; color: rgba(255, 255, 255, .85); transition: color .3s, transform .4s var(--as-ease); }
.as-footer__nav a:hover { color: #fff; transform: translateX(4px); }
.as-footer__bottom { margin-top: clamp(40px, 5vw, 64px); padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255, 255, 255, .55); }
.as-footer__bottom .en { font-family: var(--as-font-en); font-style: italic; letter-spacing: .1em; font-size: 13px; }
.as-totop { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(10px); color: #fff; opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s var(--as-ease), background .4s; }
.as-totop.is-show { opacity: 1; transform: none; }
.as-totop:hover { background: #fff; color: var(--as-navy-900); }
.as-totop svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
@media (max-width: 800px) { .as-footer__grid { grid-template-columns: 1fr; gap: 34px; } }

/* sticky mobile CTA */
.as-mcta { display: none; }
@media (max-width: 767px) {
  .as-mcta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255, 255, 255, .15); backdrop-filter: blur(12px); transform: translateY(100%); transition: transform .5s var(--as-ease); }
  .as-mcta.is-show { transform: none; }
  .as-mcta a { display: flex; align-items: center; justify-content: center; gap: 8px; height: 58px; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
  .as-mcta__tel { background: var(--as-navy-800); color: #fff; }
  .as-mcta__mail { background: #fff; color: var(--as-navy-900); }
  .as-mcta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .as-totop { bottom: 72px; }
  .as-footer { padding-bottom: 58px; }
}

/* ---------- reveal ---------- */
.as-reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--as-ease), transform 1.1s var(--as-ease); transition-delay: calc(var(--i, 0) * .12s); }
.as-reveal.is-in { opacity: 1; transform: none; }
.as-reveal--scale { transform: scale(.94) translateY(20px); }
.as-reveal--left { transform: translateX(-40px); }
.as-reveal--right { transform: translateX(40px); }
.as-reveal--scale.is-in, .as-reveal--left.is-in, .as-reveal--right.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .as-reveal, .as-line > span, .as-hero__fade { opacity: 1; transform: none; }
  .as-loader { display: none; }
}

/* =====================================================================
   ASTERIA — inner pages (subhero, breadcrumb, richtext, forms, etc.)
   ===================================================================== */

/* ---------- subhero (inner page header) ---------- */
.as-subhero {
  position: relative; padding: calc(var(--as-header-h) + 64px) 0 76px; color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 100% at 15% 0%, rgba(77,111,255,.20) 0%, rgba(77,111,255,0) 55%),
    radial-gradient(90% 80% at 100% 100%, rgba(159,184,255,.12) 0%, rgba(159,184,255,0) 60%);
}
.as-subhero__bg { position: absolute; inset: 0; pointer-events: none; opacity: .8;
  background-image:
    radial-gradient(circle at 8% 30%, rgba(255,255,255,.55) 0 1.3px, transparent 2px),
    radial-gradient(circle at 22% 70%, rgba(255,255,255,.4) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 20%, rgba(255,255,255,.5) 0 1.2px, transparent 2px),
    radial-gradient(circle at 65% 55%, rgba(255,255,255,.35) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 15%, rgba(255,255,255,.5) 0 1.3px, transparent 2px),
    radial-gradient(circle at 92% 70%, rgba(255,255,255,.4) 0 1px, transparent 2px);
  background-size: 640px 420px;
}
.as-crumbs { position: relative; margin-bottom: 22px; }
.as-crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .06em; color: rgba(255,255,255,.55); }
.as-crumbs li { display: flex; align-items: center; gap: 8px; }
.as-crumbs li:not(:last-child)::after { content: "/"; color: rgba(255,255,255,.3); }
.as-crumbs a { color: rgba(255,255,255,.75); transition: color .3s; }
.as-crumbs a:hover { color: #fff; }
.as-crumbs li[aria-current] { color: #fff; }
.as-subhero__en { position: relative; display: inline-flex; align-items: center; gap: 12px; font-family: var(--as-font-en); font-style: italic; font-size: clamp(15px, 1.4vw, 18px); letter-spacing: .12em; color: var(--as-glow); margin-bottom: 14px; }
.as-subhero__title { position: relative; font-family: var(--as-font-min); font-weight: 600; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.4; letter-spacing: .04em; }
.as-subhero__title em { color: var(--as-glow); }
.as-subhero__lead { position: relative; margin-top: 20px; max-width: 640px; font-size: clamp(14px, 1.2vw, 16px); line-height: 2; color: rgba(255,255,255,.78); }
@media (max-width: 767px) { .as-subhero { padding: calc(var(--as-header-h) + 40px) 0 52px; } .as-subhero__title { font-size: clamp(26px, 7.5vw, 32px); } }

/* ---------- richtext (the_content / WYSIWYG) ---------- */
.as-richtext { font-size: 15.5px; line-height: 2; color: var(--as-ink-2); }
.as-richtext > *:first-child { margin-top: 0; }
.as-richtext h2 { font-family: var(--as-font-min); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); color: var(--as-ink); margin: 2.2em 0 .8em; letter-spacing: .03em; }
.as-richtext h3 { font-family: var(--as-font-min); font-weight: 600; font-size: clamp(18px, 1.8vw, 21px); color: var(--as-ink); margin: 1.8em 0 .7em; }
.as-richtext h2:first-child, .as-richtext h3:first-child { margin-top: 0; }
.as-richtext p { margin: 1.2em 0; }
.as-richtext a { color: var(--as-blue); text-decoration: underline; text-underline-offset: 3px; }
.as-richtext a:hover { color: var(--as-navy-700); }
.as-richtext ul, .as-richtext ol { margin: 1.2em 0; padding-left: 1.4em; }
.as-richtext ul { list-style: disc; }
.as-richtext ol { list-style: decimal; }
.as-richtext li { margin: .5em 0; }
.as-richtext blockquote { margin: 1.6em 0; padding: 18px 24px; border-left: 3px solid var(--as-blue); background: var(--as-mist); border-radius: 0 12px 12px 0; font-style: normal; }
.as-richtext img { border-radius: 14px; margin: 1.4em 0; }
.as-richtext table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 14px; }
.as-richtext th, .as-richtext td { padding: 12px 14px; border-bottom: 1px solid var(--as-line); text-align: left; }
.as-richtext th { background: var(--as-mist); font-weight: 700; color: var(--as-navy-700); }
.as-richtext hr { border: 0; border-top: 1px solid var(--as-line); margin: 2.4em 0; }
.as-page-content { padding: clamp(56px, 7vw, 90px) 0; }

/* ---------- generic content section wrapper (category/tag/search) ---------- */
.as-list-card { display: block; padding: 22px 24px; border-radius: 16px; background: #fff; border: 1px solid var(--as-line); transition: transform .5s var(--as-ease), box-shadow .5s var(--as-ease); }
.as-list-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(10,22,64,.1); }
.as-list-card + .as-list-card { margin-top: 14px; }
.as-list-card__date { font-family: var(--as-font-en); font-style: italic; font-size: 13px; color: var(--as-blue); }
.as-list-card__ttl { margin-top: 8px; font-size: 16px; font-weight: 700; color: var(--as-ink); }
.as-empty { padding: 60px 0; text-align: center; color: var(--as-ink-3); }

/* ---------- pagination ---------- */
ul.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 44px; padding: 0; list-style: none; }
ul.pagination li { list-style: none; }
ul.pagination a, ul.pagination span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--as-line); font-size: 13px; color: var(--as-ink-2); transition: background .3s, color .3s, border-color .3s; }
ul.pagination a:hover { background: var(--as-navy-800); color: #fff; border-color: var(--as-navy-800); }
ul.pagination span.current { background: var(--as-navy-800); color: #fff; border-color: var(--as-navy-800); }
.as-sec--dark ul.pagination a, .as-sec--dark ul.pagination span { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
.as-sec--dark ul.pagination a:hover { background: #fff; color: var(--as-navy-900); }

/* ---------- timeline (company history) ---------- */
.as-timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 28px; }
.as-timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(180deg, var(--as-blue), var(--as-line)); }
.as-timeline__item { position: relative; padding-bottom: 40px; }
.as-timeline__item:last-child { padding-bottom: 0; }
.as-timeline__item::before { content: ""; position: absolute; left: -28px; top: 4px; width: 11px; height: 11px; border-radius: 50%; background: var(--as-navy-800); box-shadow: 0 0 0 4px var(--as-mist); }
.as-timeline__date { font-family: var(--as-font-en); font-style: italic; font-size: 15px; color: var(--as-blue); }
.as-timeline__ttl { margin-top: 6px; font-size: 16px; font-weight: 700; color: var(--as-ink); }
.as-timeline__txt { margin-top: 6px; font-size: 14px; color: var(--as-ink-2); line-height: 1.85; }

/* ---------- message / greeting (about page) ---------- */
.as-message { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.as-message__photo { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 10; box-shadow: 0 30px 70px rgba(10,22,64,.16); isolation: isolate; }
.as-message__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(18,35,94,.16) 0%, rgba(18,35,94,0) 45%); pointer-events: none; }
.as-message__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.as-message__quote { font-family: var(--as-font-min); font-size: clamp(19px, 2vw, 24px); line-height: 1.9; color: var(--as-ink); font-weight: 600; }
.as-message__body { margin-top: 22px; font-size: 14.5px; line-height: 2; color: var(--as-ink-2); }
.as-message__sign { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.as-message__sign .en { font-family: var(--as-font-en); font-style: italic; font-size: 24px; color: var(--as-navy-700); }
.as-message__sign .ja { font-size: 13px; color: var(--as-ink-3); letter-spacing: .08em; }
@media (max-width: 800px) { .as-message { grid-template-columns: 1fr; text-align: center; } .as-message__sign { justify-content: center; } .as-message__photo { aspect-ratio: 4 / 3; } }

/* ---------- company brand block (logo mark above the dl) ---------- */
.as-company__brand { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; }
.as-company__brand img { width: 92px; height: auto; flex: none; }
.as-company__brand p { font-family: var(--as-font-min); font-size: 15px; line-height: 1.8; color: var(--as-navy-700); letter-spacing: .06em; }

/* ---------- service detail (accordion-ish cards on /service/) ---------- */
.as-svcdetail { display: grid; gap: 18px; }
.as-svcdetail__row { display: grid; grid-template-columns: 74px 1fr auto; gap: 24px; align-items: center; padding: 28px clamp(20px, 2.4vw, 32px); border-radius: 20px; background: #fff; border: 1px solid var(--as-line); transition: box-shadow .5s var(--as-ease), transform .5s var(--as-ease); }
.as-svcdetail__row:hover { transform: translateY(-4px); box-shadow: 0 26px 56px rgba(10,22,64,.1); }
.as-svcdetail__icon { width: 52px; height: 52px; color: var(--as-navy-700); }
.as-svcdetail__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.as-svcdetail__en { font-family: var(--as-font-en); font-style: italic; font-size: 13px; letter-spacing: .1em; color: var(--as-blue); }
.as-svcdetail__ttl { font-family: var(--as-font-min); font-weight: 600; font-size: clamp(18px, 1.8vw, 22px); margin: 4px 0 10px; }
.as-svcdetail__txt { font-size: 14px; line-height: 1.9; color: var(--as-ink-2); }
.as-svcdetail__tags { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.as-svcdetail__tags span { padding: 4px 12px; border-radius: 999px; background: var(--as-mist); color: var(--as-navy-700); font-size: 11.5px; letter-spacing: .04em; }
.as-svcdetail__price { text-align: right; white-space: nowrap; }
.as-svcdetail__price .num { font-family: var(--as-font-en); font-size: clamp(24px, 2vw, 30px); color: var(--as-navy-700); }
.as-svcdetail__price .lbl { display: block; font-size: 11px; color: var(--as-ink-3); letter-spacing: .06em; margin-bottom: 4px; }
@media (max-width: 760px) { .as-svcdetail__row { grid-template-columns: 1fr; text-align: left; } .as-svcdetail__price { text-align: left; margin-top: 6px; } }

/* ---------- price detail: feature matrix ---------- */
.as-matrix { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.as-matrix table { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0; font-size: 13.5px; }
.as-matrix th, .as-matrix td { padding: 15px 16px; text-align: center; border-bottom: 1px solid var(--as-line); }
.as-matrix thead th { font-weight: 700; color: var(--as-navy-700); background: var(--as-mist); font-size: 12.5px; letter-spacing: .05em; }
.as-matrix td:first-child, .as-matrix th:first-child { text-align: left; font-weight: 700; color: var(--as-ink); white-space: nowrap; }
.as-matrix .good { color: var(--as-blue); font-size: 18px; }
.as-matrix .so { color: var(--as-ink-3); font-size: 13px; }
.as-matrix tbody tr:hover { background: rgba(77,111,255,.04); }

/* ---------- policy note cards (price page: payment / cancellation) ---------- */
.as-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.as-note { padding: 26px; border-radius: 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); }
.as-note__ic { width: 34px; height: 34px; margin-bottom: 14px; color: var(--as-glow); }
.as-note__ic svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.as-note__ttl { font-family: var(--as-font-min); font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.as-note__txt { font-size: 13.5px; line-height: 1.9; color: rgba(255,255,255,.75); }
@media (max-width: 800px) { .as-notes { grid-template-columns: 1fr; } }

/* ---------- FAQ grouped (faq page) ---------- */
.as-faqgroup + .as-faqgroup { margin-top: 52px; }
.as-faqgroup__ttl { display: flex; align-items: center; gap: 14px; font-family: var(--as-font-min); font-weight: 600; font-size: clamp(18px, 1.8vw, 21px); margin-bottom: 20px; color: var(--as-ink); }
.as-faqgroup__ttl::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--as-blue); box-shadow: 0 0 10px var(--as-blue); flex: none; }

/* ---------- contact form (Contact Form 7) ---------- */
.as-contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 4vw, 64px); align-items: start; }
.as-contact__info h3 { font-family: var(--as-font-min); font-weight: 600; font-size: 19px; margin: 0 0 14px; color: var(--as-ink); }
.as-contact__info ul { display: grid; gap: 10px; margin-bottom: 30px; }
.as-contact__info li { display: flex; gap: 10px; font-size: 14px; color: var(--as-ink-2); }
.as-contact__info li::before { content: "✦"; color: var(--as-blue); font-size: 11px; margin-top: 4px; flex: none; }
.as-contact__tel { display: inline-flex; align-items: center; gap: 12px; padding: 18px 22px; border-radius: 16px; background: var(--as-mist); margin-bottom: 14px; }
.as-contact__tel svg { width: 22px; height: 22px; color: var(--as-navy-700); flex: none; }
.as-contact__tel a { font-family: var(--as-font-en); font-size: 24px; color: var(--as-navy-800); letter-spacing: .04em; }
.as-contact__tel span { display: block; font-size: 11px; color: var(--as-ink-3); letter-spacing: .06em; }
.as-contact__hours { font-size: 13px; color: var(--as-ink-3); margin-bottom: 30px; }
.as-contact__card { padding: clamp(28px, 3vw, 40px); border-radius: 22px; background: #fff; border: 1px solid var(--as-line); box-shadow: 0 30px 70px rgba(10,22,64,.08); }
.as-form .row { display: grid; grid-template-columns: 160px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--as-line); }
.as-form .row:first-child { padding-top: 0; }
.as-form .row:last-of-type { border-bottom: 0; }
.as-form .left { font-size: 14px; font-weight: 700; color: var(--as-ink); padding-top: 12px; }
.as-form .req { color: #e0576b; margin-left: 2px; }
.as-form input[type="text"], .as-form input[type="tel"], .as-form input[type="email"], .as-form input[type="number"], .as-form input[type="url"], .as-form input[type="date"], .as-form textarea, .as-form select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--as-line); border-radius: 12px; font-family: var(--as-font-ja); font-size: 14.5px; color: var(--as-ink); background: #fbfbfe; transition: border-color .3s, box-shadow .3s;
}
.as-form textarea { min-height: 140px; resize: vertical; }
.as-form input:focus, .as-form textarea:focus, .as-form select:focus { outline: none; border-color: var(--as-blue); box-shadow: 0 0 0 3px rgba(77,111,255,.15); }
.as-form .acceptance { text-align: left; margin: 22px 0 6px; font-size: 13px; color: var(--as-ink-2); display: flex; align-items: flex-start; gap: 10px; }
.as-form .acceptance input { margin-top: 3px; }
.as-form .acceptance .linelink { color: var(--as-blue); text-decoration: underline; }
.as-form p.submit, .as-form .submit { text-align: center; margin-top: 26px; }
.as-form input[type="submit"] {
  appearance: none; border: 0; cursor: pointer; height: 58px; padding: 0 46px; border-radius: 999px;
  background: var(--as-navy-800); color: #fff; font-family: var(--as-font-ja); font-weight: 700; font-size: 15px; letter-spacing: .06em;
  transition: transform .5s var(--as-ease), box-shadow .5s var(--as-ease), background .4s;
}
.as-form input[type="submit"]:hover { transform: translateY(-3px); background: var(--as-blue); box-shadow: 0 20px 44px rgba(77,111,255,.3); }
.as-form input[type="submit"]:disabled { opacity: .6; cursor: wait; }
.as-form .wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: 12px; color: #e0576b; }
.as-form .wpcf7-not-valid { border-color: #e0576b !important; }
.as-form .wpcf7-response-output { margin-top: 22px; padding: 14px 18px; border-radius: 12px; font-size: 13.5px; border: 1px solid var(--as-line); }
.as-form .wpcf7-mail-sent-ok { border-color: #4d9d7a; color: #2e6a51; background: #eef8f3; }
.as-form .wpcf7-validation-errors, .as-form .wpcf7-spam-blocked { border-color: #e0576b; color: #b23a4c; background: #fdeef0; }
.as-form .wpcf7-spinner { margin-left: 10px; }
@media (max-width: 900px) { .as-contact { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .as-form .row { grid-template-columns: 1fr; gap: 8px; } .as-form .left { padding-top: 0; } }

/* ---------- 404 ---------- */
.as-404 { min-height: 80vh; display: flex; align-items: center; padding: calc(var(--as-header-h) + 40px) 0 90px; text-align: center; color: #fff; }
.as-404__inner { width: var(--as-w); margin: 0 auto; }
.as-404__num { font-family: var(--as-font-en); font-style: italic; font-size: clamp(70px, 12vw, 150px); line-height: 1; background: linear-gradient(90deg, #fff, var(--as-glow), #fff); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: as-shine 5s linear infinite; }
.as-404__ttl { margin-top: 18px; font-family: var(--as-font-min); font-weight: 600; font-size: clamp(20px, 2.4vw, 28px); }
.as-404__txt { margin-top: 16px; color: rgba(255,255,255,.72); font-size: 14.5px; }
.as-404__links { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- EC cross-promo banner (homepage bottom) ---------- */
.as-promo { padding-top: clamp(50px, 6vw, 80px); padding-bottom: clamp(70px, 9vw, 110px); border-top: 1px solid rgba(255,255,255,.08); }
.as-promo__box {
  position: relative; overflow: hidden; border-radius: 32px; padding: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 4vw, 60px); align-items: center;
  background: linear-gradient(150deg, rgba(77,111,255,.16) 0%, rgba(255,255,255,.04) 55%, rgba(159,184,255,.1) 100%);
  border: 1px solid rgba(255,255,255,.14);
}
.as-promo__body { min-width: 0; }
.as-promo__box::before { content: ""; position: absolute; right: -10%; top: -30%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(159,184,255,.28), transparent 65%); filter: blur(20px); pointer-events: none; }
.as-promo__tag { position: relative; display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: .1em; color: var(--as-glow); margin-bottom: 16px; }
.as-promo__ttl { position: relative; font-family: var(--as-font-min); font-weight: 600; font-size: clamp(21px, 2.2vw, 28px); line-height: 1.55; }
.as-promo__txt { position: relative; margin-top: 16px; font-size: 13.5px; line-height: 1.95; color: rgba(255,255,255,.75); max-width: 46em; }
.as-promo__cats { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.as-promo__cats li { padding: 6px 14px; border-radius: 999px; font-size: 11.5px; letter-spacing: .04em; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.8); }
.as-promo__btns { position: relative; margin-top: 26px; }
.as-promo__badges { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.as-promo__badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 1; border-radius: 50%; background: rgba(5,12,36,.55); border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 44px rgba(0,0,0,.25); padding: 10px;
}
.as-promo__badge .num { font-family: var(--as-font-en); font-weight: 500; font-size: clamp(30px, 3vw, 40px); line-height: 1; color: #fff; }
.as-promo__badge .unit { font-family: var(--as-font-en); font-style: italic; font-size: 15px; color: var(--as-glow); margin-top: 2px; }
.as-promo__badge .lbl { margin-top: 8px; font-size: 11px; letter-spacing: .06em; color: rgba(255,255,255,.75); }
.as-promo__badge--wide { grid-column: 1 / -1; aspect-ratio: 2.2 / 1; border-radius: 999px; flex-direction: row; gap: 10px; }
.as-promo__badge--wide .lbl { margin-top: 0; }
@media (max-width: 860px) {
  /* CSS Grid's implicit min-width:auto on items can force a 1fr track wider than
     the container when content is long (a real Chromium sizing quirk) — switch
     to a plain block layout on narrow screens instead of fighting grid sizing. */
  .as-promo__box { display: block; text-align: center; }
  .as-promo__body { max-width: 100%; }
  .as-promo__tag, .as-promo__cats { justify-content: center; }
  .as-promo__cats { max-width: 100%; }
  .as-promo__btns { margin-top: 26px; }
  .as-promo__badges { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 420px; margin: 30px auto 0; }
  .as-promo__badge--wide { grid-column: auto; aspect-ratio: 1; flex-direction: column; }
  .as-promo__badge--wide .lbl { margin-top: 8px; }
}
@media (max-width: 480px) {
  .as-promo__badges { grid-template-columns: 1fr 1fr; }
  .as-promo__badge--wide { grid-column: 1 / -1; aspect-ratio: 2.2 / 1; flex-direction: row; }
  .as-promo__badge--wide .lbl { margin-top: 0; }
}
