@charset "UTF-8";
/* ============================================================
   デジサポ天理 - メインスタイル
   Phase 2: 全ページ共通スタイル
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Variables - ブランドトークン
   ------------------------------------------------------------ */
:root {
    /* Brand colors */
    --c-purple:        #9333EA;
    --c-purple-deep:   #6D28D9;
    --c-purple-soft:   #A855F7;
    --c-cyan:          #38BDF8;
    --c-cyan-deep:     #0EA5E9;
    --c-pink:          #EC4899;

    /* Neumorphism palette */
    --c-bg:            #EEF0F6;
    --c-bg-alt:        #E6E9F2;
    --c-bg-dark:       #0B0B14;
    --c-bg-deep:       #060611;
    --c-surface:       #EEF0F6;

    /* Text */
    --c-text:          #1F2238;
    --c-text-mid:      #4B4F66;
    --c-text-soft:     #74798F;

    /* Borders / lines */
    --c-border:        #DDE1ED;
    --c-line:          rgba(95, 110, 160, 0.14);

    /* Neumorphic tones */
    --neu-light:       rgba(255, 255, 255, 0.95);
    --neu-dark:        rgba(163, 177, 210, 0.55);
    --neu-dark-strong: rgba(143, 158, 196, 0.7);

    /* Brand gradient */
    --grad-brand:      linear-gradient(135deg, #9333EA 0%, #C026D3 50%, #38BDF8 100%);
    --grad-brand-soft: linear-gradient(135deg, rgba(147,51,234,0.08) 0%, rgba(56,189,248,0.08) 100%);

    /* Neumorphic shadow tokens */
    --neu-out-sm: -3px -3px 8px var(--neu-light), 3px 3px 8px var(--neu-dark);
    --neu-out-md: -6px -6px 16px var(--neu-light), 6px 6px 16px var(--neu-dark);
    --neu-out-lg: -10px -10px 30px var(--neu-light), 10px 10px 30px var(--neu-dark);
    --neu-out-xl: -14px -14px 40px var(--neu-light), 14px 14px 40px var(--neu-dark-strong);
    --neu-in-sm:  inset 2px 2px 5px var(--neu-dark), inset -2px -2px 5px var(--neu-light);
    --neu-in-md:  inset 4px 4px 10px var(--neu-dark), inset -4px -4px 10px var(--neu-light);
    --neu-in-lg:  inset 6px 6px 14px var(--neu-dark), inset -6px -6px 14px var(--neu-light);
    --shadow-sm:   var(--neu-out-sm);
    --shadow-md:   var(--neu-out-md);
    --shadow-lg:   var(--neu-out-lg);
    --shadow-glow: -8px -8px 20px var(--neu-light), 10px 10px 30px rgba(147, 51, 234, 0.28);

    /* Radius (デザインルール: ニューモ要素のみ10px、それ以外0px、ボタンpill 999px) */
    --r-sm:   10px;
    --r-md:   16px;
    --r-lg:   24px;
    --r-xl:   32px;
    --r-pill: 999px;

    /* Spacing */
    --space-section: clamp(72px, 10vw, 140px);

    /* Typography */
    --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
    --font-en: "Outfit", "Noto Sans JP", sans-serif;
}

/* ------------------------------------------------------------
   2. Base typography (SWELLの<body>を上書き)
   ------------------------------------------------------------ */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-jp);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ------------------------------------------------------------
   3. Layout
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}
.section { padding: var(--space-section) 0; position: relative; }
.section--alt { background: var(--c-bg-alt); position: relative; }
.section--alt::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neu-dark), transparent);
    opacity: 0.4;
}
.section--dark { background: var(--c-bg-dark); color: #fff; }

/* ------------------------------------------------------------
   4. Section heading
   ------------------------------------------------------------ */
.eyebrow {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-purple);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: currentColor;
}
.section--dark .eyebrow { color: #C4B5FD; }

.h-section {
    font-family: var(--font-jp);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    text-wrap: pretty;
}
.h-section .accent {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lead {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--c-text-mid);
    max-width: 640px;
    text-wrap: pretty;
}
.section--dark .lead { color: rgba(255,255,255,0.75); }

/* ------------------------------------------------------------
   5. Neumorphism utilities
   ------------------------------------------------------------ */
.neu-card {
    background: var(--c-bg);
    border-radius: var(--r-lg);
    box-shadow: var(--neu-out-md);
}
.neu-inset {
    background: var(--c-bg);
    border-radius: var(--r-lg);
    box-shadow: var(--neu-in-md);
}

/* ------------------------------------------------------------
   6. Buttons (shared across all pages)
   ------------------------------------------------------------ */

/* Header CTA / 各種コンパクトCTA */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--grad-brand);
    color: #fff !important;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 700;
    box-shadow:
        -3px -3px 8px var(--neu-light),
        4px 4px 12px var(--neu-dark),
        inset 1px 1px 2px rgba(255,255,255,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        -2px -2px 6px var(--neu-light),
        6px 6px 18px rgba(147, 51, 234, 0.4);
}
.btn-cta:active { box-shadow: var(--neu-in-sm); transform: translateY(0); }

/* Primary / Secondary 標準 */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: var(--r-pill);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s;
    text-decoration: none;
}
.btn-primary {
    background: var(--grad-brand);
    color: #fff !important;
    box-shadow:
        -4px -4px 10px var(--neu-light),
        6px 6px 18px var(--neu-dark-strong),
        inset 1px 1px 2px rgba(255,255,255,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        -2px -2px 8px var(--neu-light),
        10px 10px 28px rgba(147, 51, 234, 0.45);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--neu-in-md), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.btn-secondary {
    background: var(--c-bg);
    color: var(--c-text);
    box-shadow: var(--neu-out-sm);
}
.btn-secondary:hover {
    color: var(--c-purple);
    box-shadow: var(--neu-out-md);
    transform: translateY(-2px);
}
.btn-secondary:active { box-shadow: var(--neu-in-sm); transform: translateY(0); }

/* LINE / TEL */
.btn-line {
    background: #06C755;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 15px;
    box-shadow:
        inset 1px 1px 2px rgba(255,255,255,0.25),
        8px 8px 24px rgba(0,0,0,0.5),
        -2px -2px 8px rgba(255,255,255,0.04);
    transition: transform 0.2s;
    text-decoration: none;
}
.btn-line:hover { transform: translateY(-3px); }

.btn-tel {
    background: var(--c-bg);
    color: var(--c-text) !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 15px;
    box-shadow:
        inset 1px 1px 2px rgba(255,255,255,0.5),
        8px 8px 24px rgba(0,0,0,0.5);
    transition: transform 0.2s;
    text-decoration: none;
}
.btn-tel:hover { background: #F5F7FB; transform: translateY(-3px); }

/* Large variants (subpage / CTAブロックで使用) */
.btn-primary-lg, .btn-line-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}
.btn-primary-lg {
    background: var(--grad-brand);
    color: #fff;
    box-shadow:
        4px 4px 12px var(--neu-dark),
        inset 1px 1px 1px rgba(255,255,255,0.3);
}
.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow:
        6px 6px 16px var(--neu-dark),
        inset 1px 1px 1px rgba(255,255,255,0.3);
}
.btn-line-lg {
    background: #06C755;
    color: #fff;
    box-shadow:
        4px 4px 12px var(--neu-dark),
        inset 1px 1px 1px rgba(255,255,255,0.3);
}
.btn-line-lg:hover {
    transform: translateY(-2px);
    box-shadow:
        6px 6px 16px var(--neu-dark),
        inset 1px 1px 1px rgba(255,255,255,0.3);
}

/* ------------------------------------------------------------
   7. Reveal animations (IntersectionObserver で .in を付与)
   ------------------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* prefers-reduced-motion: アニメーション抑制 */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal, .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ------------------------------------------------------------
   8. Floating CTA (mobileのみ表示)
   ------------------------------------------------------------ */
.float-cta {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 90;
    display: none;
    gap: 8px;
}
@media (max-width: 720px) {
    .float-cta { display: flex; }
}
.float-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow:
        -2px -2px 8px rgba(255,255,255,0.6),
        4px 4px 16px rgba(143,158,196,0.6);
}
.float-cta .fc-line { background: #06C755; color: #fff !important; }
.float-cta .fc-tel  { background: var(--c-bg); color: var(--c-text) !important; }
.float-cta .fc-form { background: var(--grad-brand); color: #fff !important; }

/* ------------------------------------------------------------
   9. Back to top button (digisapo.js が動的に挿入)
   ------------------------------------------------------------ */
.to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    background: var(--c-bg);
    box-shadow:
        8px 8px 18px rgba(163, 177, 198, 0.55),
        -6px -6px 14px rgba(255, 255, 255, 0.95),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    color: var(--c-purple);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.2s ease,
        visibility 0.25s;
}
.to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.to-top-btn:hover {
    box-shadow:
        10px 10px 22px rgba(163, 177, 198, 0.6),
        -8px -8px 18px rgba(255, 255, 255, 1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.to-top-btn:active {
    box-shadow:
        inset 4px 4px 10px rgba(163, 177, 198, 0.5),
        inset -4px -4px 10px rgba(255, 255, 255, 0.9);
}
.to-top-btn svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
    .to-top-btn { right: 14px; bottom: 14px; width: 46px; height: 46px; }
}

/* ------------------------------------------------------------
   10. Site main wrapper (fixed-header オフセット)
   ------------------------------------------------------------ */
.site-main {
    padding-top: 96px;
    min-height: 50vh;
}

/* ------------------------------------------------------------
   11. Header
   ------------------------------------------------------------ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(238, 240, 246, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    background: rgba(238, 240, 246, 0.92);
    padding: 12px 0;
    box-shadow: 0 6px 18px rgba(143, 158, 196, 0.25);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
}
.brand__logo {
    height: 44px;
    width: auto;
    display: block;
    transition: height 0.3s;
}
.site-header.scrolled .brand__logo { height: 38px; }
.brand__logo--footer {
    height: 48px;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav a {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    border-radius: var(--r-pill);
    transition: color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.nav a:hover { color: var(--c-purple); box-shadow: var(--neu-in-sm); }
.nav a.is-active { color: var(--c-purple); box-shadow: var(--neu-in-sm); }

.menu-btn { display: none; }

@media (max-width: 1080px) {
    .nav { display: none; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--c-bg);
        padding: 16px;
        border-top: 1px solid var(--c-line);
        box-shadow: var(--shadow-lg);
        align-items: stretch;
    }
    .nav.open a { padding: 12px 16px; }
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px; height: 44px;
        border-radius: 14px;
        border: none;
        background: var(--c-bg);
        box-shadow: var(--neu-out-sm);
        color: var(--c-text);
        cursor: pointer;
    }
    .menu-btn:active { box-shadow: var(--neu-in-sm); }
}
@media (min-width: 1081px) and (max-width: 1180px) {
    .nav a { padding: 8px 10px; font-size: 12.5px; }
    .nav { gap: 2px; }
    .btn-cta { padding: 10px 16px; font-size: 13px; }
}

/* ------------------------------------------------------------
   12. Footer
   ------------------------------------------------------------ */
.site-footer {
    background: var(--c-bg-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand p {
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.85;
    max-width: 280px;
}
.footer__col h4 {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 16px;
}
.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    text-decoration: none;
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { color: #fff; }

/* ------------------------------------------------------------
   13. Tabs / FAQ utility (Phase 4 で動的に表示切替)
   ------------------------------------------------------------ */
.audience-fade.is-hidden,
.faq-item.is-hidden,
.qa-item.is-hidden,
.news-item.is-hidden { display: none !important; }

/* ============================================================
   Phase 4: Front page sections (Hero ~ Office)
   styles.css 258-1705 行から移植
   ============================================================ */
/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 20%, rgba(147,51,234,0.10), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(56,189,248,0.10), transparent 50%),
              linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147,51,234,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,51,234,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}
.hero__orb--1 { width: 420px; height: 420px; background: var(--c-purple); top: -120px; left: -100px; }
.hero__orb--2 { width: 340px; height: 340px; background: var(--c-cyan); bottom: -120px; right: -80px; animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero[data-layout="split"] .hero__inner { grid-template-columns: 1.05fr 1fr; }
.hero[data-layout="center"] .hero__inner { grid-template-columns: 1fr; text-align: center; max-width: 880px; margin: 0 auto; }
.hero[data-layout="center"] .hero__visual { display: none; }
.hero[data-layout="fullbleed"] .hero__inner { grid-template-columns: 1fr; padding: 0; max-width: 100%; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr !important; gap: 40px; }
  .hero[data-layout="split"] .hero__visual { order: -1; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: var(--c-bg);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  box-shadow: var(--neu-out-sm);
  margin-bottom: 24px;
}
.hero__badge .pill {
  background: var(--grad-brand);
  color: white;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.hero__title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__title .line {
  display: block !important;
  white-space: nowrap;
}
.hero__title .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero__title .underline {
  position: relative;
  display: inline-block;
}
.hero__title .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: linear-gradient(90deg, rgba(56,189,248,0.4), rgba(147,51,234,0.4));
  z-index: -1;
  border-radius: 4px;
  animation: drawLine 1.4s 0.8s ease-out backwards;
  transform-origin: left;
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--c-text-mid);
  margin-bottom: 36px;
  line-height: 1.85;
  max-width: 540px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--grad-brand);
  color: white !important;
  box-shadow:
    -4px -4px 10px var(--neu-light),
    6px 6px 18px var(--neu-dark-strong),
    inset 1px 1px 2px rgba(255,255,255,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: -2px -2px 8px var(--neu-light), 10px 10px 28px rgba(147,51,234,0.45); }
.btn-primary:active { transform: translateY(0); box-shadow: var(--neu-in-md), inset 0 0 0 1px rgba(255,255,255,0.1); }
.btn-secondary {
  background: var(--c-bg);
  color: var(--c-text);
  box-shadow: var(--neu-out-sm);
}
.btn-secondary:hover { color: var(--c-purple); box-shadow: var(--neu-out-md); transform: translateY(-2px); }
.btn-secondary:active { box-shadow: var(--neu-in-sm); transform: translateY(0); }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--c-bg);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-mid);
  box-shadow: var(--neu-out-sm);
}
.chip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-purple);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero__card {
  position: absolute;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--neu-out-lg);
  padding: 18px;
  animation: floatCard 8s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__card--main {
  inset: 5% 8% 8% 5%;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2D1B4E 0%, #1E1B4B 100%);
  animation-delay: -2s;
}
.hero__card--main .ai-chat {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: white;
  position: relative;
}
.ai-chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ai-chat__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.ai-chat__name { font-size: 13px; font-weight: 600; }
.ai-chat__status { font-size: 11px; color: #38BDF8; }
.ai-chat__messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  overflow: hidden;
}
.bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 85%;
  opacity: 0;
  animation: bubbleIn 0.5s ease-out forwards;
}
.bubble--user {
  align-self: flex-end;
  background: var(--grad-brand);
  border-bottom-right-radius: 4px;
  animation-delay: 0.5s;
}
.bubble--ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom-left-radius: 4px;
  animation-delay: 1.4s;
}
.bubble--ai-2 { animation-delay: 2.5s; }
.bubble .typing {
  display: inline-flex;
  gap: 4px;
}
.bubble .typing span {
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  animation: typing 1.2s infinite;
}
.bubble .typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble .typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__card--stat {
  width: 200px;
  top: 4%;
  right: -8px;
  animation-delay: -4s;
}
.hero__card--stat .label {
  font-size: 11px;
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__card--stat .value {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 4px 0;
  line-height: 1;
}
.hero__card--stat .desc { font-size: 12px; color: var(--c-text-mid); }

.hero__card--floating {
  width: 220px;
  bottom: 0; left: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__card--floating .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.hero__card--floating .label { font-size: 11px; color: var(--c-text-soft); font-weight: 600; }
.hero__card--floating .value { font-size: 14px; font-weight: 700; color: var(--c-text); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-text-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--c-purple), transparent);
  animation: scrollCue 2s infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ Marquee ============ */
.marquee {
  padding: 28px 0;
  background: var(--c-bg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--neu-in-sm);
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.marquee__item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-brand);
}

/* ============ Concern Section ============ */
.concern {
  background: var(--c-bg);
  position: relative;
}
.concern__head {
  text-align: center;
  margin-bottom: 60px;
}
.concern__head .h-section { max-width: 800px; margin-left: auto; margin-right: auto; }

.concern-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .concern-cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .concern-cards { grid-template-columns: 1fr !important; }
}
.concern-card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--neu-out-md);
}
.concern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neu-out-lg);
}
.concern-card .quote {
  font-size: 32px;
  color: var(--c-purple);
  opacity: 0.3;
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 8px;
}
.concern-card .text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--c-text);
}
.concern-card .answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  margin-top: 16px;
  border-radius: 12px;
  box-shadow: var(--neu-in-sm);
  font-size: 13.5px;
  color: var(--c-text-mid);
  line-height: 1.7;
}
.concern-card .answer-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--grad-brand);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 2px;
}

.concern__cta {
  text-align: center;
  padding: 48px 40px;
  background: var(--c-bg);
  border-radius: var(--r-xl);
  box-shadow: var(--neu-in-md);
}
.concern__cta strong {
  font-size: 22px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}
.concern__cta p {
  color: var(--c-text-mid);
  font-size: 14.5px;
  margin-bottom: 24px;
}

/* ============ Stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  border-radius: 0;
  border: none;
  overflow: visible;
  box-shadow: none;
  margin-top: 60px;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border: none;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--neu-out-md);
  position: relative;
}
.stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: none; }
}
.stat .num {
  font-family: var(--font-en);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .num .small { font-size: 0.5em; margin-left: 4px; -webkit-text-fill-color: var(--c-text); color: var(--c-text); }
.stat .label {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-mid);
  letter-spacing: 0.04em;
}

/* ============ Service Grid ============ */
.services {
  background: var(--c-bg-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(147,51,234,0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(56,189,248,0.2), transparent 40%);
  pointer-events: none;
}
.services > * { position: relative; z-index: 1; }

.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 720px) {
  .services__head { grid-template-columns: 1fr; }
}
.services__head .lead { color: rgba(255,255,255,0.7); }
.services__head .h-section { color: white; margin-bottom: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.06),
    inset -1px -1px 2px rgba(0,0,0,0.3),
    8px 8px 24px rgba(0,0,0,0.4),
    -4px -4px 12px rgba(255,255,255,0.02);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(147,51,234,0.08));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.08),
    inset -1px -1px 2px rgba(0,0,0,0.4),
    12px 12px 32px rgba(0,0,0,0.5),
    -6px -6px 16px rgba(147,51,234,0.08);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; }
.service-card .num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.service-card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: white;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.3),
    inset -1px -1px 2px rgba(0,0,0,0.2),
    4px 4px 12px rgba(0,0,0,0.4);
}
.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
}
.service-card .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 16px;
}
.service-card .tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.25);
  color: var(--c-cyan);
  border-radius: var(--r-pill);
  font-weight: 600;
}

/* ============ Day Schedule ============ */
.schedule__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) {
  .schedule__layout { grid-template-columns: 1fr; gap: 40px; }
}
.schedule-timeline {
  position: relative;
  padding-left: 20px;
}
.schedule-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-purple), var(--c-cyan));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding: 0 0 28px 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-bg);
  box-shadow:
    -2px -2px 4px var(--neu-light),
    2px 2px 4px var(--neu-dark),
    inset 0 0 0 3px var(--c-purple);
}
.timeline-item .time {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-purple);
  margin-bottom: 4px;
}
.timeline-item .title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.timeline-item .desc {
  font-size: 14px;
  color: var(--c-text-mid);
  line-height: 1.75;
}

.schedule-note {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--neu-out-md);
}
.schedule-note .ribbon {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-brand);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.schedule-note h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}
.schedule-note ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.schedule-note li {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--c-bg);
  border-radius: 14px;
  box-shadow: var(--neu-in-sm);
  font-size: 14px;
  line-height: 1.7;
}
.schedule-note li strong {
  display: block;
  font-weight: 800;
  color: var(--c-purple);
  margin-bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.schedule-note li .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 2px;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.3),
    2px 2px 6px var(--neu-dark);
}

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 60px;
}
.gallery-item.is-feature,
.gallery-item.is-wide,
.gallery-item.is-tall { grid-column: span 1; grid-row: span 1; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg);
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: var(--neu-out-md);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--neu-out-lg); }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(11,11,20,0.85));
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay strong {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 4px;
}
.gallery-item .overlay span { font-size: 14px; font-weight: 600; }

/* ============ Why ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  border: none;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  padding: 36px 32px;
  border: none;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--neu-out-md);
  transition: all 0.3s;
  position: relative;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--neu-out-lg);
}
.why-item .num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-purple);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-item .num::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}
.why-item h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}
.why-item p {
  font-size: 14px;
  color: var(--c-text-mid);
  line-height: 1.85;
}

/* ============ Story ============ */
.story {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(147,51,234,0.06), transparent 60%);
  pointer-events: none;
}
.story__container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.story__head {
  text-align: center;
  margin-bottom: 56px;
}
.story__pullquote {
  position: relative;
  margin: 0 auto 56px;
  padding: 56px 48px 40px;
  background: var(--c-bg);
  border-radius: var(--r-xl);
  box-shadow: var(--neu-out-lg);
  text-align: center;
}
.story__pullquote .quote-mark {
  position: absolute;
  top: -10px; left: 32px;
  font-family: var(--font-en);
  font-size: 160px;
  line-height: 1;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.85;
  pointer-events: none;
}
.story__pullquote blockquote {
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.story__pullquote figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 10px 10px;
  border-radius: var(--r-pill);
  background: var(--c-bg);
  box-shadow: var(--neu-in-sm);
}
.story__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: inset 1px 1px 2px rgba(255,255,255,0.3), 2px 2px 6px var(--neu-dark);
}
.story__author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.story__author strong { font-size: 15px; font-weight: 700; color: var(--c-text); }
.story__author small { font-size: 12px; color: var(--c-text-soft); }
.story__body p {
  font-size: 16px;
  color: var(--c-text-mid);
  line-height: 2;
  margin-bottom: 22px;
}
.story__body p:last-child { margin-bottom: 0; }
.story__body p strong { color: var(--c-text); font-weight: 700; background: linear-gradient(180deg, transparent 70%, rgba(147,51,234,0.18) 70%); padding: 0 2px; }
@media (max-width: 720px) {
  .story__pullquote { padding: 48px 24px 32px; }
  .story__pullquote .quote-mark { font-size: 110px; left: 16px; }
}

/* ============ Mission Vision ============ */
.mvv {
  background: var(--c-bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(147,51,234,0.2), transparent 50%);
}
.mvv > * { position: relative; }
.mvv .h-section { color: white; }
.mvv__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 720px) { .mvv__row { grid-template-columns: 1fr; } }
.mvv-card {
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
}
.mvv-card .tag {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-cyan);
  margin-bottom: 16px;
}
.mvv-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.5;
}
.mvv-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
}

/* ============ Flow ============ */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 880px) { .flow-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .flow-list { grid-template-columns: 1fr; } }

.flow-item {
  padding: 32px 24px;
  background: var(--c-bg);
  border: none;
  border-radius: var(--r-lg);
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--neu-out-md);
}
.flow-item:hover { transform: translateY(-4px); box-shadow: var(--neu-out-lg); }
.flow-item .step {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-text-soft);
  margin-bottom: 8px;
}
.flow-item .step strong {
  font-size: 36px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.flow-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.flow-item p { font-size: 13px; color: var(--c-text-mid); line-height: 1.75; }

/* ============ For Whom ============ */
.audience-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  padding: 12px 24px;
  background: var(--c-bg);
  border: none;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-mid);
  transition: all 0.2s;
  box-shadow: var(--neu-out-sm);
}
.tab-btn.active {
  background: var(--grad-brand);
  color: white;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.3),
    4px 4px 12px var(--neu-dark-strong);
}
.tab-btn:hover:not(.active) { color: var(--c-purple); box-shadow: var(--neu-out-md); }
.tab-btn:active:not(.active) { box-shadow: var(--neu-in-sm); }

.audience-content {
  background: var(--c-bg);
  border: none;
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--neu-out-md);
}
@media (max-width: 720px) { .audience-content { padding: 28px; } }
.audience-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.audience-content > p {
  color: var(--c-text-mid);
  margin-bottom: 28px;
  line-height: 1.85;
}
.audience-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 560px) { .audience-checklist { grid-template-columns: 1fr; } }
.audience-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--c-bg);
  border-radius: 14px;
  box-shadow: var(--neu-in-sm);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}
.audience-checklist .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.3),
    2px 2px 6px var(--neu-dark);
}

.audience-fade {
  animation: fade 0.4s ease-out;
}
@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ News ============ */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 50px;
}
.news-item {
  display: grid;
  grid-template-columns: 110px 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
  transition: padding 0.2s;
}
.news-item:hover { padding-left: 12px; }
@media (max-width: 720px) {
  .news-item { grid-template-columns: 1fr; gap: 6px; }
}
.news-item .date {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-soft);
}
.news-item .cat {
  display: inline-flex;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  width: fit-content;
}
.news-item .cat--news { background: rgba(147,51,234,0.1); color: var(--c-purple); }
.news-item .cat--event { background: rgba(56,189,248,0.1); color: var(--c-cyan-deep); }
.news-item .cat--col { background: rgba(236,72,153,0.1); color: var(--c-pink); }
.news-item .cat--ach { background: rgba(34,197,94,0.1); color: #16A34A; }
.news-item .title {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.6;
}
.news-item .arrow { color: var(--c-text-soft); transition: transform 0.2s; }
.news-item:hover .arrow { transform: translateX(4px); color: var(--c-purple); }
@media (max-width: 720px) {
  .news-item .arrow { display: none; }
}

/* ============ FAQ ============ */
.faq {
  background: var(--c-bg-alt);
}
.faq-item {
  background: var(--c-bg);
  border: none;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--neu-out-sm);
}
.faq-item.open { box-shadow: var(--neu-out-md); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-text);
}
.faq-q .marker {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--grad-brand);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.3),
    3px 3px 8px var(--neu-dark);
}
.faq-q .toggle {
  margin-left: auto;
  transition: transform 0.3s;
  color: var(--c-purple);
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a {
  padding: 24px 24px 24px 72px;
  color: var(--c-text-mid);
  font-size: 14.5px;
  line-height: 1.85;
  display: none;
  position: relative;
  white-space: pre-line;
}
.faq-item.open .faq-a { display: block; animation: fade 0.3s; }
.faq-a::before {
  content: "A";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-cyan-deep));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.3),
    3px 3px 8px var(--neu-dark);
}
.faq-a strong { color: var(--c-purple); font-weight: 700; }

.faq-cats {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ============ Big CTA ============ */
.big-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-bg-deep);
  color: white;
  overflow: hidden;
  text-align: center;
}
.big-cta::before, .big-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.big-cta::before {
  width: 600px; height: 600px;
  background: var(--c-purple);
  opacity: 0.5;
  top: -200px; left: -200px;
}
.big-cta::after {
  width: 500px; height: 500px;
  background: var(--c-cyan);
  opacity: 0.4;
  bottom: -200px; right: -200px;
}
.big-cta > * { position: relative; }
.big-cta h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.big-cta h2 .grad {
  background: linear-gradient(90deg, #C4B5FD, #7DD3FC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.big-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.85;
}
.big-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-line {
  background: #06C755;
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.25),
    8px 8px 24px rgba(0,0,0,0.5),
    -2px -2px 8px rgba(255,255,255,0.04);
  transition: transform 0.2s;
}
.btn-line:hover { transform: translateY(-3px); }
.btn-tel {
  background: var(--c-bg);
  color: var(--c-text) !important;
  box-shadow:
    inset 1px 1px 2px rgba(255,255,255,0.5),
    8px 8px 24px rgba(0,0,0,0.5);
}
.btn-tel:hover { background: #F5F7FB; transform: translateY(-3px); }

.big-cta__contacts {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.big-cta__contacts strong {
  display: block;
  font-family: var(--font-en);
  font-size: 22px;
  color: white;
  font-weight: 700;
}

/* ============ Office ============ */
.office__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .office__layout { grid-template-columns: 1fr; } }

.office-info {
  display: grid;
  gap: 0;
  background: var(--c-bg);
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--neu-out-md);
}
.office-info > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
  align-items: start;
}
.office-info > div:last-child { border-bottom: none; }
.office-info .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.office-info .value { font-weight: 600; line-height: 1.7; }

.office-map {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F4ECFF 0%, #E0F2FE 100%);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--neu-in-md);
}
.office-map .pin {
  position: absolute;
  top: 45%; left: 45%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--grad-brand);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: 0 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}
.office-map .pin span { transform: rotate(45deg); font-size: 11px; }
.office-map .pin::before {
  content: ""; position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.office-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(147,51,234,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,51,234,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.office-map-label {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--c-bg);
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--neu-out-sm);
}

/* ============================================================
   Phase 5: Subpage shared + per-page styles
   styles-sub.css 全行を移植
   ============================================================ */
/* ============ Subpage shared styles ============ */

/* Readability: respect newlines in long-form Japanese copy */
.page-hero__lead,
.section-lead,
.work-card .lead-txt,
.work-card ul.bullets li,
.spc-card .desc,
.spt-row__card p,
.case-block p,
.case-quote p,
.feat-card p,
.eq-card p,
.step-card p,
.cond-panel li,
.access-info .addr,
.access-info p,
.office-table dd,
.qa-a__inner p,
.contact-side p,
.glance-card .desc,
.voice-card p,
.privacy-doc p,
.privacy-doc li,
.form-note {
  white-space: pre-line;
}

/* Active nav state */
.site-header .nav a.is-active {
  color: var(--c-purple);
  font-weight: 700;
}
.site-header .nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.site-header .nav a { position: relative; }

/* Page hero — common header band */
.page-hero {
  position: relative;
  padding: 50px 0 50px;
  margin-bottom: 40px;
  overflow: hidden;
  background: var(--c-bg);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(147, 51, 234, 0.10), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.10), transparent 50%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero__title {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
}
.page-hero__lead {
  font-size: 17px;
  line-height: 2;
  color: var(--c-text-mid);
}
@media (max-width: 720px) {
  .page-hero { padding: 50px 0 50px; margin-bottom: 24px; }
}

/* Section title for subpages */
.subpage-section {
  padding: 80px 0;
}
.subpage-section .section-head {
  text-align: center;
  margin-bottom: 60px;
}

/* Cards used on subpages */
.spc-card {
  background: var(--c-bg);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--neu-out-md);
  transition: all 0.3s;
}
.spc-card:hover {
  box-shadow: var(--neu-out-lg);
  transform: translateY(-2px);
}
.spc-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.spc-card .desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text-mid);
  margin-bottom: 18px;
}
.spc-card ul.bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.spc-card ul.bullets li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: var(--c-text-mid);
  line-height: 1.7;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.spc-card ul.bullets li:last-child { border-bottom: none; }
.spc-card ul.bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-brand);
}
.spc-card .meta {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--c-bg);
  box-shadow: var(--neu-in-sm);
  font-size: 12px;
  color: var(--c-text-mid);
  font-weight: 600;
}
.spc-card .meta strong { color: var(--c-purple); margin-right: 6px; }

/* Big CTA block (subpage) */
.big-cta-sub {
  padding: 80px 0;
}
.bigcta-card {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: 60px 40px;
  box-shadow: var(--neu-out-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bigcta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.08), transparent 50%);
  pointer-events: none;
}
.bigcta-card > * { position: relative; }
.bigcta-card h2 {
  font-family: var(--font-jp);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.bigcta-card p {
  font-size: 16px;
  color: var(--c-text-mid);
  margin-bottom: 32px;
}
.bigcta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary-lg, .btn-line-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary-lg {
  background: var(--grad-brand);
  color: white;
  box-shadow: 4px 4px 12px var(--neu-dark), inset 1px 1px 1px rgba(255,255,255,0.3);
}
.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 16px var(--neu-dark), inset 1px 1px 1px rgba(255,255,255,0.3);
}
.btn-line-lg {
  background: #06C755;
  color: white;
  box-shadow: 4px 4px 12px var(--neu-dark), inset 1px 1px 1px rgba(255,255,255,0.3);
}
.btn-line-lg:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 16px var(--neu-dark), inset 1px 1px 1px rgba(255,255,255,0.3);
}

/* ============ About page ============ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .work-grid { grid-template-columns: 1fr; }
}
.work-card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--neu-out-md);
  transition: all 0.3s;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--neu-out-lg); }
.work-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--c-bg);
  box-shadow: var(--neu-in-sm);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-purple);
  margin-bottom: 18px;
}
.work-card .badge.is-new {
  background: var(--grad-brand);
  color: white;
  box-shadow: 2px 2px 6px var(--neu-dark);
}
.work-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.work-card .lead-txt {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text-mid);
  margin-bottom: 24px;
}
.work-card .sec-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  text-transform: uppercase;
  margin: 20px 0 10px;
}
.work-card .sec-label::before {
  content: "";
  width: 4px; height: 14px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.work-card .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-card .pill-list span {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(124, 92, 255, 0.18);
  box-shadow: none;
  font-size: 12px;
  color: var(--c-text-mid);
  font-weight: 600;
}

/* Schedule timeline used on subpages */
.subpage-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.subpage-timeline::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-purple), var(--c-cyan));
  opacity: 0.2;
}
@media (max-width: 720px) {
  .subpage-timeline::before { left: 70px; }
}
.spt-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}
@media (max-width: 720px) {
  .spt-row { grid-template-columns: 70px 1fr; gap: 20px; }
}
.spt-row__time {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-purple);
  letter-spacing: -0.02em;
  position: relative;
  text-align: right;
}
.spt-row__time::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 12px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-bg);
  box-shadow: inset 1px 1px 2px var(--neu-dark), 1px 1px 3px rgba(147,51,234,0.4);
  border: 2px solid var(--c-purple);
}
@media (max-width: 720px) {
  .spt-row__time { font-size: 18px; }
  .spt-row__time::after { right: -22px; top: 6px; }
}
.spt-row__card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--neu-out-md);
}
.spt-row__card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.spt-row__card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text-mid);
}

/* Case study card */
.case-card {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--neu-out-lg);
  max-width: 880px;
  margin: 0 auto;
}
.case-card__title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--c-bg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  letter-spacing: -0.01em;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 720px) { .case-grid { grid-template-columns: 1fr; } }
.case-block h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-purple);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.case-block p, .case-block ol, .case-block ul {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-text-mid);
}
.case-block ol, .case-block ul {
  padding-left: 20px;
  margin: 0;
}
.case-block li { margin-bottom: 4px; }
.case-quote {
  background: var(--c-bg);
  box-shadow: var(--neu-in-md);
  padding: 24px 28px;
  border-radius: var(--r-lg);
  margin-top: 28px;
}
.case-quote .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-text-soft);
  margin-bottom: 8px;
}
.case-quote p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text);
}
@media (max-width: 720px) { .case-card { padding: 32px 24px; } }

/* ============ Tenri page ============ */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .glance-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .glance-grid { grid-template-columns: repeat(2, 1fr); } }
.glance-card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--neu-out-md);
  transition: all 0.3s;
}
.glance-card:hover { transform: translateY(-2px); box-shadow: var(--neu-out-lg); }
.glance-card .num {
  font-family: var(--font-en);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.glance-card .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.glance-card .desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-mid);
}

/* Voice card */
.voice-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--neu-out-lg);
  position: relative;
}
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 30px;
  font-size: 120px;
  font-family: var(--font-en);
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.7;
  pointer-events: none;
  line-height: 1;
}
.voice-card p {
  position: relative;
  font-size: 17px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 24px;
  font-weight: 500;
}
.voice-card .author {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--c-bg);
  box-shadow: var(--neu-in-sm);
  font-size: 13px;
  color: var(--c-text-soft);
  font-weight: 600;
}
@media (max-width: 720px) { .voice-card { padding: 32px 24px; } }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--neu-out-md);
  transition: all 0.3s;
}
.feat-card:hover { transform: translateY(-2px); box-shadow: var(--neu-out-lg); }
.feat-card .icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-bg);
  box-shadow: var(--neu-out-sm), inset 1px 1px 2px rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-purple);
  margin-bottom: 18px;
}
.feat-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-text-mid);
}

/* Conditions panel */
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 720px) { .conditions-grid { grid-template-columns: 1fr; } }
.cond-panel {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--neu-out-md);
}
.cond-panel h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.cond-panel h3::before {
  content: "";
  width: 4px; height: 18px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.cond-panel ul { list-style: none; padding: 0; margin: 0; }
.cond-panel li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-mid);
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.cond-panel li:last-child { border-bottom: none; }
.cond-panel li::before {
  content: "";
  position: absolute;
  left: 4px; top: 16px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-bg);
  box-shadow: inset 1px 1px 2px var(--neu-dark);
}
.cond-panel li::after {
  content: "";
  position: absolute;
  left: 8px; top: 20px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
}

/* Equipment cards */
.eq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .eq-grid { grid-template-columns: 1fr; } }
.eq-card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--neu-out-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.eq-card .eq-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-bg);
  box-shadow: var(--neu-out-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-purple);
}
.eq-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.eq-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-mid);
}

/* Step flow */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 880px) { .step-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .step-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  box-shadow: var(--neu-out-md);
  position: relative;
}
.step-card .step-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--c-bg);
  box-shadow: var(--neu-in-sm);
  color: var(--c-purple);
  margin-bottom: 14px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-text-mid);
}

/* Access map */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) { .access-grid { grid-template-columns: 1fr; } }
.access-info {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--neu-out-md);
}
.access-info h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.access-info .addr {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-text);
  margin-bottom: 18px;
}
.access-info .station {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 2px 2px 6px var(--neu-dark);
}
.access-info h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 18px 0 6px;
  letter-spacing: 0.04em;
  color: var(--c-purple);
}
.access-info p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--c-text-mid);
}
.access-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--neu-in-md);
  background: var(--c-bg);
  min-height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.access-map iframe { width: 100%; flex: 1; border: 0; min-height: 380px; }
.access-map .map-link {
  display: block;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-purple);
  background: var(--c-bg);
  border-top: 1px solid rgba(124, 92, 255, 0.15);
  text-decoration: none;
  transition: background 0.2s;
}
.access-map .map-link:hover { background: rgba(124, 92, 255, 0.06); }

/* Office info table */
.office-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 8px 24px;
  box-shadow: var(--neu-out-md);
}
.office-table dl {
  margin: 0;
}
.office-table dl > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.office-table dl > div:last-child { border-bottom: none; }
@media (max-width: 720px) {
  .office-table dl > div { grid-template-columns: 1fr; }
}
.office-table dt {
  padding: 18px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-purple);
  letter-spacing: 0.04em;
}
.office-table dd {
  padding: 18px 16px;
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-text);
}
@media (max-width: 720px) {
  .office-table dt { padding-bottom: 4px; }
  .office-table dd { padding-top: 4px; }
}

/* Instagram grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
@media (max-width: 880px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
.insta-card {
  aspect-ratio: 1;
  background: var(--c-bg);
  border-radius: var(--r-md);
  box-shadow: var(--neu-in-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--c-text-soft);
  text-align: center;
  padding: 8px;
}

/* ============ QA page ============ */
.qa-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.qa-tabs button {
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: var(--c-bg);
  box-shadow: var(--neu-out-sm);
  border: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--c-text-mid);
  transition: all 0.2s;
}
.qa-tabs button.active {
  background: var(--grad-brand);
  color: white;
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2), 2px 2px 6px var(--neu-dark);
}

.qa-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qa-item {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--neu-out-md);
  overflow: hidden;
}
.qa-q {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.6;
}
.qa-q::before {
  content: "Q";
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  box-shadow: inset 1px 1px 2px rgba(255,255,255,0.3), 2px 2px 4px var(--neu-dark);
}
.qa-q .chev {
  margin-left: auto;
  color: var(--c-text-soft);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.qa-item.open .qa-q .chev { transform: rotate(180deg); color: var(--c-purple); }
.qa-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.qa-item.open .qa-a { max-height: 600px; }
.qa-a__inner {
  padding: 0 28px 24px 76px;
  display: flex;
  gap: 12px;
}
.qa-a__inner::before {
  content: "A";
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-bg);
  box-shadow: var(--neu-in-sm);
  color: var(--c-cyan);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-left: -32px;
  margin-top: 2px;
}
.qa-a__inner p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text-mid);
}

/* ============ News page (page-news.php archive のみ) ============ */
[data-news-list] {
  max-width: 880px;
  margin: 0 auto;
}
[data-news-list] .news-item {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--neu-out-md);
  display: grid;
  grid-template-columns: 110px 100px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  border-bottom: none;
}
[data-news-list] .news-item:hover { transform: translateY(-2px); box-shadow: var(--neu-out-lg); padding-left: 28px; }
@media (max-width: 720px) {
  [data-news-list] .news-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 22px; }
}
[data-news-list] .news-item .date {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-soft);
  letter-spacing: 0.02em;
}
[data-news-list] .news-item .cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  width: fit-content;
}
[data-news-list] .news-item .cat.news { background: rgba(147,51,234,0.1); color: var(--c-purple); }
[data-news-list] .news-item .cat.event { background: rgba(56,189,248,0.1); color: var(--c-cyan); }
[data-news-list] .news-item .cat.col { background: rgba(34,197,94,0.1); color: #16a34a; }
[data-news-list] .news-item .cat.ach { background: rgba(245,158,11,0.1); color: #d97706; }
[data-news-list] .news-item .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c-text);
}

/* ============ Contact page ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-side {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--neu-out-md);
}
.contact-side h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-side p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-text-mid);
  margin-bottom: 20px;
}
.quick-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.quick-actions a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--c-bg);
  box-shadow: var(--neu-out-sm);
  text-decoration: none;
  color: var(--c-text);
  font-weight: 700;
  transition: all 0.2s;
}
.quick-actions a:hover { transform: translateX(2px); box-shadow: var(--neu-out-md); }
.quick-actions a .ico {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.quick-actions a .ico.line { background: #06C755; }
.quick-actions a .ico.tel { background: var(--grad-brand); }
.quick-actions a .ico.mail { background: linear-gradient(135deg, var(--c-cyan), var(--c-purple)); }
.quick-actions a .meta-txt { display: flex; flex-direction: column; gap: 2px; }
.quick-actions a .meta-txt .lbl { font-size: 11px; color: #5A5F75; font-weight: 700; letter-spacing: 0.08em; }
.quick-actions a .meta-txt .val { font-size: 16px; font-weight: 800; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.contact-form label .required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--grad-brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 0;
  background: var(--c-bg);
  box-shadow: var(--neu-in-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--c-text);
  transition: all 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: var(--neu-in-md), 0 0 0 2px rgba(147,51,234,0.25);
}
.contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
.contact-form button[type="submit"] {
  margin-top: 8px;
  padding: 18px 36px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 4px 4px 12px var(--neu-dark), inset 1px 1px 1px rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 16px var(--neu-dark), inset 1px 1px 1px rgba(255,255,255,0.3);
}
.form-note {
  font-size: 12px;
  color: var(--c-text-soft);
  line-height: 1.7;
}

/* ============ Privacy page ============ */
.privacy-doc {
  max-width: 820px;
  margin: 0 auto;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: 56px;
  box-shadow: var(--neu-out-md);
}
@media (max-width: 720px) { .privacy-doc { padding: 36px 28px; } }
.privacy-doc h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 4px solid;
  border-image: var(--grad-brand) 1;
  letter-spacing: -0.01em;
}
.privacy-doc h2:first-child { margin-top: 0; }
.privacy-doc p, .privacy-doc li {
  font-size: 14px;
  line-height: 1.95;
  color: var(--c-text);
  margin-bottom: 12px;
}
.privacy-doc ul, .privacy-doc ol { padding-left: 24px; }
.privacy-doc strong { color: var(--c-purple); font-weight: 700; }

/* ============================================================
   Snow Monkey Forms (SMF) - デジサポ向けニューモ調デザイン
   ============================================================ */
.smf-form {
    margin-top: 18px;
}
.smf-item {
    margin-bottom: 18px;
}
.smf-item__col--label {
    margin-bottom: 8px;
}
.smf-item__label {
    display: block;
}
.smf-item__label__text {
    font-weight: 700;
    font-size: 14px;
    color: var(--c-text);
    letter-spacing: 0.02em;
}

/* テキスト / メール / 電話 / テキストエリア / select 入力欄 */
.smf-text-control__control,
.smf-textarea-control__control,
.smf-select-control__control,
.smf-select-control select {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--r-sm);
    background: var(--c-bg);
    box-shadow: var(--neu-in-sm);
    font-family: var(--font-jp);
    font-size: 14.5px;
    color: var(--c-text);
    line-height: 1.7;
    transition: box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.smf-textarea-control__control {
    min-height: 140px;
    resize: vertical;
}
.smf-text-control__control:focus,
.smf-textarea-control__control:focus,
.smf-select-control__control:focus,
.smf-select-control select:focus {
    outline: none;
    box-shadow: var(--neu-in-md), 0 0 0 3px rgba(147, 51, 234, 0.15);
}
.smf-text-control__control::placeholder,
.smf-textarea-control__control::placeholder {
    color: var(--c-text-soft);
    opacity: 1;
}

/* セレクトボックス用カスタム矢印 */
.smf-select-control {
    position: relative;
}
.smf-select-control::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--c-purple);
    border-bottom: 2px solid var(--c-purple);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}
.smf-select-control select {
    padding-right: 40px;
    cursor: pointer;
}

/* チェックボックス・ラジオ */
.smf-checkboxes-control__control,
.smf-radio-buttons-control__control {
    accent-color: var(--c-purple);
    margin-right: 8px;
}

/* 送信ボタン */
.smf-action {
    margin-top: 32px;
    text-align: center;
}
.smf-action button,
.smf-button-control__control,
.smf-action input[type="submit"],
.smf-action input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 44px;
    border: none;
    cursor: pointer;
    background: var(--grad-brand);
    color: #fff;
    font-family: var(--font-jp);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.04em;
    border-radius: var(--r-pill);
    box-shadow:
        -4px -4px 10px var(--neu-light),
        6px 6px 18px var(--neu-dark-strong),
        inset 1px 1px 2px rgba(255, 255, 255, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.smf-action button:hover,
.smf-button-control__control:hover,
.smf-action input[type="submit"]:hover,
.smf-action input[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow:
        -2px -2px 8px var(--neu-light),
        10px 10px 28px rgba(147, 51, 234, 0.45);
}
.smf-action button:active,
.smf-button-control__control:active,
.smf-action input[type="submit"]:active,
.smf-action input[type="button"]:active {
    transform: translateY(0);
    box-shadow: var(--neu-in-md);
}

/* 必須バッジ（SMFのバッジ + 過去の[必須]タグ風 共用） */
.smf-required-badge,
.smf-item__label__text .required {
    display: inline-block;
    background: var(--grad-brand);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: var(--r-pill);
    margin-left: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    vertical-align: middle;
}

/* バリデーションエラー */
.smf-validation-error,
[data-validation-error] {
    color: #DC2626;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 600;
}

/* 完了画面 */
.smf-completed-content,
.smf-screen.--done {
    text-align: center;
    padding: 48px 24px;
    background: var(--c-bg);
    border-radius: var(--r-lg);
    box-shadow: var(--neu-in-md);
}
