/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --c-primary: #1168B6;        /* ブランドブルー（ロゴ準拠） */
  --c-primary-dark: #0B4F8F;
  --c-primary-pale: #EAF3FC;   /* 淡ブルー背景 */
  --c-navy: #0C2A4D;           /* 濃紺（CTA帯・見出し） */
  --c-navy-deep: #081D37;      /* フッター */
  --c-accent: #FF9B00;         /* オレンジ = CTA・成果・強調（ロゴ準拠） */
  --c-accent-dark: #E88900;
  --c-accent-pale: #FFF4E2;
  --c-accent-text: #B45600;   /* 淡背景上のオレンジ文字用（AA準拠） */
  --c-text: #1B2A3B;
  --c-text-weak: #5C7186;
  --c-white: #FFFFFF;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F4F7FB;         /* 淡グレー背景 */
  --c-border: #DCE5EF;

  /* Typography */
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'Outfit', 'Noto Sans JP', sans-serif;
  --fs-h1: clamp(2rem, 1.05rem + 4vw, 3.5rem);        /* 32 -> 56px */
  --fs-h2: clamp(1.5rem, 1.14rem + 1.8vw, 2.375rem);  /* 24 -> 38px */
  --fs-h3: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);
  --fs-lead: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem);
  --fs-body: clamp(0.9375rem, 0.92rem + 0.15vw, 1rem);
  --fs-note: 0.78125rem; /* 12.5px */
  --lh-heading: 1.4;
  --lh-body: 1.9;

  /* Spacing (8px scale) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 40px;
  --sp-5: 64px;
  --sp-6: 96px;
  --section-pad: clamp(88px, 7vw + 48px, 148px);

  /* Layout */
  --inner-w: 1120px;
  --header-h: 64px;

  /* Radius / Shadow */
  --r-card: 12px;   /* カード角丸は12pxで統一 */
  --r-btn: 999px;
  --shadow-card: 0 8px 28px rgba(12, 42, 77, .10);
  --shadow-float: 0 18px 44px rgba(12, 42, 77, .18);

  /* z-index scale */
  --z-header: 100;
  --z-banner: 90;
  --z-drawer: 1000;
}
@media (min-width: 1024px) {
  :root { --header-h: 76px; }
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; padding: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.l-inner { width: min(100% - 40px, var(--inner-w)); margin-inline: auto; }
.section { padding-block: var(--section-pad); }
.section--alt { background: var(--c-bg-alt); }
.section--pale { background: var(--c-primary-pale); }

/* ---------- Section Head ---------- */
.sec-head { margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head--center { text-align: center; }
.sec-head__en {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-en); font-weight: 700; font-size: 0.875rem;
  letter-spacing: .18em; color: var(--c-primary); text-transform: uppercase;
}
.sec-head__en::before {
  content: ''; width: 14px; height: 14px; flex: none;
  background: var(--c-accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.sec-head__ja {
  margin-top: 10px;
  font-size: var(--fs-h2); font-weight: 900; line-height: var(--lh-heading);
  color: var(--c-navy);
}
.sec-head__lead { margin-top: 16px; color: var(--c-text-weak); font-size: var(--fs-lead); }
.sec-head__lead--center { margin-inline: auto; max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 14px 34px;
  border-radius: var(--r-btn);
  font-weight: 700; font-size: 1rem; line-height: 1.4; white-space: nowrap;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease;
}
.btn__arrow { flex: none; width: 18px; height: 18px; transition: transform .3s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--accent {
  background: var(--c-accent); color: var(--c-white);
  box-shadow: 0 8px 20px rgba(255, 155, 0, .35);
}
.btn--accent:hover { background: var(--c-accent-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 155, 0, .42); }
.btn--outline {
  background: var(--c-white); color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: var(--c-white); transform: translateY(-2px); }
.btn--ghost-white {
  background: transparent; color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, .8);
}
.btn--ghost-white:hover { background: var(--c-white); color: var(--c-navy); transform: translateY(-2px); }
.btn--sm { min-height: 44px; padding: 10px 22px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ---------- Reveal Animation ---------- */
.u-reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
.u-reveal--left { transform: translateX(-36px); }
.u-reveal--right { transform: translateX(36px); }
.u-reveal.is-inview { opacity: 1; transform: none; }
.u-reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.u-reveal-group.is-inview > * { opacity: 1; transform: none; }
.u-reveal-group.is-inview > *:nth-child(1) { transition-delay: 0s; }
.u-reveal-group.is-inview > *:nth-child(2) { transition-delay: .12s; }
.u-reveal-group.is-inview > *:nth-child(3) { transition-delay: .24s; }
.u-reveal-group.is-inview > *:nth-child(4) { transition-delay: .36s; }
.u-reveal-group.is-inview > *:nth-child(5) { transition-delay: .48s; }
.u-reveal-group.is-inview > *:nth-child(6) { transition-delay: .6s; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.header.is-scrolled { border-color: var(--c-border); box-shadow: 0 4px 20px rgba(12, 42, 77, .07); }
.header__inner {
  width: min(100% - 32px, 1280px); margin-inline: auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header__logo { display: inline-flex; align-items: center; }
.header__logo img { width: auto; height: 30px; }
.header__nav { display: none; }
.header__actions { display: none; }
.header__burger {
  position: relative; z-index: calc(var(--z-drawer) + 1);
  width: 48px; height: 48px; display: grid; place-items: center;
}
.header__burger-lines { position: relative; width: 24px; height: 16px; }
.header__burger-lines span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--c-navy); transition: transform .35s ease, opacity .25s ease, top .35s ease;
}
.header__burger-lines span:nth-child(1) { top: 0; }
.header__burger-lines span:nth-child(2) { top: 7px; }
.header__burger-lines span:nth-child(3) { top: 14px; }
.is-menu-open .header__burger-lines span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.is-menu-open .header__burger-lines span:nth-child(2) { opacity: 0; }
.is-menu-open .header__burger-lines span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

@media (min-width: 1024px) {
  .header__burger { display: none; }
  .header__nav { display: block; }
  .header__nav-list { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); }
  .header__nav-link {
    position: relative; display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 2px; font-size: 0.9375rem; font-weight: 500; color: var(--c-text);
  }
  .header__nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
    background: var(--c-primary); transform: scaleX(0); transform-origin: right;
    transition: transform .3s ease;
  }
  .header__nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
  .header__nav-item--dropdown { position: relative; }
  .header__nav-link--dropdown::before {
    content: ''; width: 8px; height: 8px; order: 2;
    border-right: 2px solid var(--c-text-weak); border-bottom: 2px solid var(--c-text-weak);
    transform: rotate(45deg) translateY(-2px); transition: transform .3s ease;
  }
  .header__nav-item--dropdown:hover .header__nav-link--dropdown::before { transform: rotate(-135deg) translateY(-3px); }
  .header__dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%;
    width: 300px; padding: 10px;
    background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-card);
    box-shadow: var(--shadow-card);
    opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .header__nav-item--dropdown:hover .header__dropdown,
  .header__nav-item--dropdown:focus-within .header__dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .header__dropdown-link {
    display: flex; flex-direction: column; gap: 2px;
    padding: 12px 14px; border-radius: 8px; transition: background-color .25s ease;
  }
  .header__dropdown-link:hover { background: var(--c-primary-pale); }
  .header__dropdown-link strong { font-size: 0.9375rem; color: var(--c-navy); }
  .header__dropdown-link span { font-size: var(--fs-note); color: var(--c-text-weak); }
  .header__actions { display: flex; align-items: center; gap: 12px; }
  .header__actions .btn { flex: 0 0 auto; width: 168px; justify-content: center; padding-inline: 10px; }
}

/* ---------- Drawer (SP) ---------- */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  visibility: hidden; transition: visibility .45s;
}
.drawer__overlay {
  position: absolute; inset: 0; background: rgba(8, 29, 55, .5);
  opacity: 0; transition: opacity .45s ease;
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(84%, 340px); padding: calc(var(--header-h) + 16px) 24px 32px;
  background: var(--c-white); overflow-y: auto;
  transform: translateX(100%); transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.is-menu-open .drawer { visibility: visible; }
.is-menu-open .drawer__overlay { opacity: 1; }
.is-menu-open .drawer__panel { transform: translateX(0); }
.drawer__group + .drawer__group { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--c-border); }
.drawer__label { font-family: var(--font-en); font-size: 0.75rem; font-weight: 700; letter-spacing: .16em; color: var(--c-primary); text-transform: uppercase; }
.drawer__link { display: flex; align-items: center; justify-content: space-between; padding: 12px 4px; font-weight: 500; }
.drawer__link::after { content: ''; width: 7px; height: 7px; border-top: 2px solid var(--c-primary); border-right: 2px solid var(--c-primary); transform: rotate(45deg); }
.drawer__cta { display: grid; gap: 12px; margin-top: 28px; }
body.is-menu-open { overflow: hidden; }

/* ---------- CTA Band（中間CTA / 使い回しパーツ） ---------- */
.cta-band {
  position: relative; overflow: clip;
  padding-block: clamp(56px, 7vw, 80px);
  background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-primary-dark) 55%, var(--c-primary) 100%);
  color: var(--c-white);
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .12), transparent 70%);
}
.cta-band::before { width: 420px; height: 420px; left: -140px; top: -220px; }
.cta-band::after { width: 520px; height: 520px; right: -180px; bottom: -300px; }
.cta-band__star { position: absolute; pointer-events: none; color: var(--c-accent); opacity: .9; animation: twinkle 3.4s ease-in-out infinite; }
.cta-band__star svg { width: 100%; height: 100%; display: block; }
.cta-band__star--1 { width: 20px; left: 8%; top: 22%; }
.cta-band__star--2 { width: 13px; right: 12%; top: 30%; animation-delay: 1.1s; }
.cta-band__star--3 { width: 15px; right: 22%; bottom: 20%; animation-delay: 2.2s; }
@keyframes twinkle { 0%, 100% { opacity: .25; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.1); } }
.cta-band__inner { position: relative; text-align: center; }
.cta-band__title { font-size: clamp(1.375rem, 3.4vw, 2rem); font-weight: 900; line-height: 1.5; }
.cta-band__title em { font-style: normal; color: var(--c-accent); }
.cta-band__lead { margin-top: 12px; font-size: var(--fs-lead); color: rgba(255, 255, 255, .82); }
.cta-band__buttons { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-band__buttons .btn { flex: 0 1 448px; width: 448px; max-width: 100%; height: 75px; min-height: 75px; justify-content: center; }

/* ---------- Blog ---------- */
.blog__list { display: grid; gap: 24px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-card);
  overflow: clip; box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.post-card__thumb { position: relative; aspect-ratio: 16 / 9; overflow: clip; background: var(--c-primary-pale); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.post-card:hover .post-card__thumb img { transform: scale(1.06); }
.post-card__cat {
  position: absolute; left: 12px; bottom: 12px;
  padding: 4px 12px; border-radius: var(--r-btn);
  background: var(--c-primary); color: var(--c-white);
  font-size: 0.6875rem; font-weight: 700;
}
.post-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-family: var(--font-en); font-size: 0.75rem; font-weight: 600; letter-spacing: .06em; color: var(--c-text-weak); }
.post-card__title { margin-top: 8px; font-size: 0.9765rem; font-weight: 700; line-height: 1.7; color: var(--c-navy); flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.post-card:hover .post-card__title { color: var(--c-primary); }
.blog__foot { margin-top: 36px; text-align: center; }
@media (min-width: 768px) {
  .blog__list { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- News ---------- */
.news__list { border-top: 1px solid var(--c-border); }
.news__item { border-bottom: 1px solid var(--c-border); }
.news__link {
  display: grid; grid-template-columns: auto auto 1fr; gap: 12px 18px; align-items: center;
  padding: 20px 8px; transition: background-color .3s ease;
}
.news__link:hover { background: var(--c-white); }
.news__date { font-family: var(--font-en); font-weight: 600; font-size: 0.875rem; letter-spacing: .04em; color: var(--c-text-weak); }
.news__cat {
  min-width: 92px; text-align: center;
  padding: 3px 12px; border-radius: var(--r-btn);
  border: 1px solid var(--c-primary); color: var(--c-primary);
  font-size: 0.6875rem; font-weight: 700;
}
.news__cat--update { border-color: var(--c-accent-dark); color: var(--c-accent-dark); }
.news__title { font-size: 0.9375rem; font-weight: 500; }
.news__link:hover .news__title { color: var(--c-primary); text-decoration: underline; text-underline-offset: 4px; }
.news__foot { margin-top: 32px; text-align: center; }
@media (max-width: 767.98px) {
  .news__link { grid-template-columns: auto auto; }
  .news__title { grid-column: 1 / -1; }
  /* 追従バナー: スマホ幅では横幅200px */
  .fbanner { right: 12px; bottom: 12px; width: 200px; }
  .fbanner__body { padding: 12px 12px 14px; }
  .fbanner__title { font-size: 0.8125rem; }
  .fbanner__text { margin-top: 5px; font-size: 0.6875rem; line-height: 1.6; }
  .fbanner__btn { margin-top: 10px; }
  .fbanner__btn.btn { min-height: 40px; padding: 9px 12px; font-size: 0.75rem; }
}

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq__item { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-card); overflow: clip; transition: box-shadow .3s ease; }
.faq__item:has(.faq__q[aria-expanded="true"]) { box-shadow: var(--shadow-card); }
.faq__q {
  width: 100%; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 20px 22px; text-align: left; font-weight: 700; font-size: 0.9765rem; color: var(--c-navy);
  transition: background-color .25s ease;
}
.faq__q:hover { background: var(--c-primary-pale); }
.faq__q-mark { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--c-primary); color: var(--c-white); font-family: var(--font-en); font-weight: 700; font-size: 0.9375rem; flex: none; }
.faq__toggle { position: relative; width: 22px; height: 22px; flex: none; }
.faq__toggle::before, .faq__toggle::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 2.5px; border-radius: 2px;
  background: var(--c-accent); transform: translate(-50%, -50%);
  transition: transform .35s ease;
}
.faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.22,.61,.36,1); }
.faq__a-inner { overflow: hidden; }
.faq__a-body { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 4px 22px 22px; }
.faq__a-mark { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--c-accent); color: var(--c-white); font-family: var(--font-en); font-weight: 700; font-size: 0.9375rem; flex: none; }
.faq__a-text { font-size: 0.9075rem; color: var(--c-text-weak); padding-top: 4px; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__foot { margin-top: 36px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--c-navy-deep); color: rgba(255, 255, 255, .78); padding: clamp(48px, 6vw, 72px) 0 0; }
.footer__grid { display: grid; gap: 36px; padding-bottom: clamp(40px, 5vw, 56px); }
.footer__logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer__company { margin-top: 20px; max-width: 380px; }
.footer__company-name { font-size: 0.84375rem; font-weight: 700; }
.footer__company-addr { margin-top: 8px; font-size: 0.78125rem; line-height: 1.8; color: rgba(255, 255, 255, .72); }
.footer__company-desc { margin-top: 12px; font-size: 0.78125rem; line-height: 1.9; color: rgba(255, 255, 255, .72); }
.footer__company-link { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 700; color: var(--c-white); text-decoration: underline; text-underline-offset: 3px; transition: opacity .25s ease; }
.footer__company-link:hover { opacity: .78; }
.footer__company-link svg { width: 15px; height: 15px; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.footer__col-title { font-size: 0.8125rem; font-weight: 700; color: var(--c-white); letter-spacing: .08em; }
.footer__links { margin-top: 14px; display: grid; gap: 10px; }
.footer__links a { font-size: 0.8125rem; transition: color .25s ease; }
.footer__links a:hover { color: var(--c-accent); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .14); padding: 20px 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.75rem; }
.footer__legal a:hover { color: var(--c-accent); }
.footer__copy { font-family: var(--font-en); font-size: 0.71875rem; letter-spacing: .06em; color: rgba(255, 255, 255, .5); }
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.1fr 2fr; gap: 48px; }
  .footer__nav { grid-template-columns: repeat(4, 1fr); }
}


/* ---------- Lower: 下層共通 ---------- */
.page-top { padding-top: calc(var(--header-h) + 22px); }
.bc { font-size: 0.75rem; color: var(--c-text-weak); }
.bc ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; }
.bc li { display: inline-flex; align-items: center; }
.bc li + li::before { content: ""; width: 5px; height: 5px; margin: 0 10px; border-top: 1.5px solid #B7C4D4; border-right: 1.5px solid #B7C4D4; transform: rotate(45deg); flex: none; }
.bc a { color: var(--c-text-weak); transition: color .25s ease; }
.bc a:hover { color: var(--c-primary); }
.bc [aria-current] { color: var(--c-text); font-weight: 500; }

.bg-soft {
  background:
    radial-gradient(rgba(17, 104, 182, .10) 1.2px, transparent 1.2px) 0 0 / 26px 26px,
    linear-gradient(180deg, #F0F6FC 0%, #FBFDFF 70%, #FFFFFF 100%);
}
.phero { padding: 34px 0 clamp(40px, 6vw, 56px); }
.phero .sec-head { margin-bottom: 0; }
.phero__lead { margin-top: 16px; font-size: 0.9375rem; line-height: 2; color: var(--c-text-weak); max-width: 640px; }
.phero__updated { margin-top: 14px; font-size: 0.75rem; color: var(--c-text-weak); }
.phero h1.sec-head__ja { font-size: clamp(1.625rem, 4.4vw, 2.25rem); }

/* 絞り込みチップ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
.chip {
  display: inline-flex; align-items: center; padding: 9px 20px;
  border: 1.5px solid var(--c-border); border-radius: var(--r-btn);
  background: #fff; font-size: 0.8125rem; font-weight: 700; color: var(--c-text);
  cursor: pointer; font-family: inherit; transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease;
}
.chip:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-1px); }
.chip.is-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

/* ページネーション（静的ダミー） */
.pager { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 52px; }
.pager__item {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1.5px solid var(--c-border); border-radius: 10px; background: #fff;
  font-family: var(--font-en); font-weight: 700; font-size: 0.9375rem; color: var(--c-text);
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.pager__item:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); }
.pager__item.is-current { background: var(--c-primary); border-color: var(--c-primary); color: #fff; pointer-events: none; }
.pager__item svg { width: 16px; height: 16px; }

/* アーカイブ共通グリッド */
.grid-3 { display: grid; gap: 28px 24px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.arc-foot { margin-top: 40px; text-align: center; font-size: 0.75rem; color: var(--c-text-weak); }
.is-filter-hidden { display: none !important; }

/* お客様の声カード（一覧） */
.vcard {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--r-card);
  overflow: hidden; box-shadow: 0 4px 24px rgba(12, 42, 77, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.vcard:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(12, 42, 77, .14); }
.vcard__thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.vcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vcard:hover .vcard__thumb img { transform: scale(1.05); }
.vcard__cat {
  position: absolute; left: 12px; bottom: 12px; padding: 4px 12px;
  background: var(--c-navy); color: #fff; font-size: 0.6875rem; font-weight: 700;
  border-radius: var(--r-btn); letter-spacing: .04em;
}
.vcard__body { display: flex; flex-direction: column; gap: 10px; padding: 20px 22px 22px; flex: 1; }
.vcard__title { font-size: 1.0625rem; font-weight: 700; line-height: 1.6; }
.vcard__meta { font-size: 0.78125rem; color: var(--c-text-weak); }
.vcard__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 700; color: var(--c-primary); }
.vcard__more svg { width: 15px; height: 15px; transition: transform .3s ease; }
.vcard:hover .vcard__more svg { transform: translateX(4px); }

/* 資料カード（一覧） */
.dcard {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--r-card);
  overflow: hidden; box-shadow: 0 4px 24px rgba(12, 42, 77, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.dcard:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(12, 42, 77, .14); }
.dcard__thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-alt); }
.dcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dcard:hover .dcard__thumb img { transform: scale(1.04); }
.dcard__cat { position: absolute; left: 12px; bottom: 12px; padding: 4px 12px; background: rgba(255,255,255,.94); color: var(--c-primary); font-size: 0.6875rem; font-weight: 700; border-radius: var(--r-btn); }
.dcard__body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 22px; flex: 1; }
.dcard__title { font-size: 1rem; font-weight: 700; line-height: 1.6; }
.dcard__desc { font-size: 0.8125rem; line-height: 1.8; color: var(--c-text-weak); }
.dcard__link { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 700; color: var(--c-accent-text); }
.dcard__link svg { width: 15px; height: 15px; }

/* 2カラムレイアウト */
.cols { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) {
  .cols--article { grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; }
  .cols--form { grid-template-columns: minmax(0, 1fr) minmax(360px, 420px); gap: 48px; }
}
.side-stick { display: grid; gap: 24px; }
@media (min-width: 1024px) { .side-stick { position: sticky; top: calc(var(--header-h) + 24px); } }

/* 記事タイポグラフィ */
.article { font-size: 0.9375rem; line-height: 2.05; }
.article > * + * { margin-top: 1.1em; }
.article h2 { margin-top: 2.4em; padding-left: 16px; border-left: 4px solid var(--c-primary); font-size: 1.3125rem; font-weight: 900; line-height: 1.5; }
.article h3 { margin-top: 1.8em; font-size: 1.0625rem; font-weight: 700; color: var(--c-primary-dark); }
.article ul { padding-left: 4px; display: grid; gap: 8px; }
.article ul li { position: relative; padding-left: 22px; }
.article ul li::before { content: ""; position: absolute; left: 2px; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary); opacity: .55; }
.article img { border-radius: var(--r-card); }
.article figure figcaption { margin-top: 8px; font-size: 0.75rem; color: var(--c-text-weak); text-align: center; }
.article a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }

.a-head { margin-bottom: 28px; }
.a-head__cat { display: inline-flex; padding: 5px 14px; background: var(--c-primary-pale); color: var(--c-primary); font-size: 0.75rem; font-weight: 700; border-radius: var(--r-btn); }
.a-head__title { margin-top: 14px; font-size: clamp(1.5rem, 3.6vw, 2rem); font-weight: 900; line-height: 1.6; }
.a-head__meta { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 0.78125rem; color: var(--c-text-weak); }
.a-eyecatch { margin-bottom: 36px; }
.a-eyecatch img { width: 100%; height: auto; border-radius: var(--r-card); box-shadow: 0 10px 36px rgba(12, 42, 77, .12); }

/* 記事内CTA */
.incta { margin-top: 2.2em; padding: clamp(24px, 4vw, 36px); background: var(--c-accent-pale); border: 1.5px solid #F5D9A8; border-radius: var(--r-card); text-align: center; }
.incta__title { font-size: 1.0625rem; font-weight: 900; }
.incta__text { margin-top: 8px; font-size: 0.8125rem; color: var(--c-text-weak); }
.incta .btn { margin-top: 16px; }
.incta .btn--accent { color: #fff; text-decoration: none; }
.incta .btn--outline { color: var(--c-primary); text-decoration: none; }

/* 目次 */
.toc { background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r-card); padding: 22px 24px; }
.toc__title { display: flex; align-items: center; gap: 8px; font-family: var(--font-en); font-size: 0.75rem; font-weight: 800; letter-spacing: .14em; color: var(--c-primary); }
.toc__title::before { content: ""; width: 12px; height: 12px; background: var(--c-accent); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.toc ol { margin-top: 12px; counter-reset: toc; display: grid; gap: 2px; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 10px; padding: 7px 2px; font-size: 0.84375rem; font-weight: 500; color: var(--c-text); border-radius: 6px; transition: color .25s ease, background .25s ease; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-en); font-weight: 700; color: var(--c-primary); opacity: .7; }
.toc a:hover { color: var(--c-primary); background: var(--c-primary-pale); }

/* サイド追従CTA */
.scta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-primary-dark) 100%); border-radius: var(--r-card); padding: 26px 24px; text-align: center; color: #fff; }
.scta__star { position: absolute; color: var(--c-accent); }
.scta__star svg { width: 100%; height: 100%; display: block; }
.scta__title { font-size: 1rem; font-weight: 900; line-height: 1.7; }
.scta__text { margin-top: 8px; font-size: 0.78125rem; color: rgba(255,255,255,.75); line-height: 1.8; }
.scta .btn { margin-top: 14px; }

/* フォーム（HubSpot想定のダミー） */
.form-card { background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r-card); padding: clamp(24px, 3.4vw, 32px); box-shadow: 0 10px 36px rgba(12, 42, 77, .08); }
.form-card__title { text-align: center; font-size: 1rem; font-weight: 900; }
.form-card__sub { margin-top: 6px; text-align: center; font-size: 0.75rem; color: var(--c-text-weak); }
.field { margin-top: 18px; }
.field__label { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; font-weight: 700; margin-bottom: 7px; }
.field__req { padding: 2px 8px; background: var(--c-accent-pale); color: var(--c-accent-text); font-size: 0.625rem; font-weight: 700; border-radius: var(--r-btn); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--c-border); border-radius: 8px;
  font: inherit; font-size: 0.9375rem; color: var(--c-text); background: #FBFDFF;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-primary); background: #fff; box-shadow: 0 0 0 3px var(--c-primary-pale); }
.field textarea { min-height: 120px; resize: vertical; }
.form-card .btn { margin-top: 24px; }
.form-card__note { margin-top: 14px; font-size: 0.71875rem; line-height: 1.8; color: var(--c-text-weak); }

/* 仕様テーブル（導入企業概要） */
.spec-wrap { border: 1.5px solid var(--c-border); border-radius: var(--r-card); overflow: hidden; }
.spec { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.spec th { width: 96px; padding: 14px 16px; background: var(--c-primary-pale); font-weight: 700; text-align: left; color: var(--c-primary-dark); vertical-align: top; white-space: nowrap; }
.spec td { padding: 14px 16px; background: #fff; line-height: 1.8; }
.spec tr + tr th, .spec tr + tr td { border-top: 1px solid var(--c-border); }

/* Q&A ブロック（事例詳細） */
.qa { background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r-card); padding: clamp(22px, 3.4vw, 30px); }
.qa + .qa, .qa-media + .qa, .qa + .qa-media { margin-top: 22px; }
.qa__q { display: flex; gap: 12px; align-items: flex-start; font-size: 1.0625rem; font-weight: 900; line-height: 1.6; }
.qmark { flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--c-primary); color: #fff; font-family: var(--font-en); font-size: 0.8125rem; font-weight: 700; }
.qa__a { margin-top: 14px; padding-left: 40px; font-size: 0.9375rem; line-height: 2; }
.qa__a p + p { margin-top: .8em; }
.qa-media img { width: 100%; height: auto; border-radius: var(--r-card); }
.qa-media figcaption { margin-top: 8px; font-size: 0.75rem; color: var(--c-text-weak); text-align: center; }

/* 機能ページ: FV */
.ffv { padding: 30px 0 clamp(48px, 6vw, 72px); }
.ffv__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 1024px) { .ffv__grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.ffv__label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: #fff; border: 1.5px solid var(--c-primary); color: var(--c-primary); font-family: var(--font-en); font-size: 0.75rem; font-weight: 800; letter-spacing: .16em; border-radius: var(--r-btn); }
.ffv__label::before { content: ""; width: 11px; height: 11px; background: var(--c-accent); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.ffv__title { margin-top: 18px; font-size: clamp(1.75rem, 4.6vw, 2.5rem); font-weight: 900; line-height: 1.5; letter-spacing: .02em; }
.ffv__title em { font-style: normal; color: var(--c-primary); }
.ffv__lead { margin-top: 18px; font-size: 0.9375rem; line-height: 2.1; color: var(--c-text-weak); }
.ffv__buttons { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }
.demo { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: 0 18px 48px rgba(12, 42, 77, .16); }
.demo img { width: 100%; height: auto; display: block; }
.demo__tag { position: absolute; left: 14px; top: 14px; padding: 5px 12px; background: rgba(255,255,255,.92); color: var(--c-navy); font-size: 0.6875rem; font-weight: 700; border-radius: var(--r-btn); }

/* 機能ページ: ポイント行 */
.fpoint { display: grid; gap: 28px; align-items: center; }
.fpoint + .fpoint { margin-top: clamp(56px, 8vw, 88px); }
@media (min-width: 1024px) {
  .fpoint { grid-template-columns: 1fr 1fr; gap: 60px; }
  .fpoint--rev .fpoint__body { order: 2; }
  .fpoint--rev .fpoint__shot { order: 1; }
}
.fpoint__num { display: inline-flex; align-items: center; padding: 5px 14px; background: var(--c-accent-pale); color: var(--c-accent-text); font-family: var(--font-en); font-size: 0.71875rem; font-weight: 800; letter-spacing: .16em; border-radius: var(--r-btn); }
.fpoint__title { margin-top: 14px; font-size: clamp(1.25rem, 2.6vw, 1.5rem); font-weight: 900; line-height: 1.6; }
.fpoint__desc { margin-top: 14px; font-size: 0.9375rem; line-height: 2.05; color: var(--c-text-weak); }
.fpoint__quote { margin-top: 20px; position: relative; padding: 16px 18px 16px 46px; background: var(--c-bg-alt); border-radius: var(--r-card); font-size: 0.84375rem; line-height: 1.9; }
.fpoint__quote::before { content: ""; position: absolute; left: 16px; top: 18px; width: 18px; height: 18px; background: var(--c-primary); opacity: .8; clip-path: path("M0 6.5C0 2.9 2.9 0 6.5 0H8v4.5H5.5c-.6 0-1 .4-1 1V7H8v7H0V6.5zm10 0C10 2.9 12.9 0 16.5 0H18v4.5h-2.5c-.6 0-1 .4-1 1V7H18v7h-8V6.5z"); }
.fpoint__quote b { display: block; margin-bottom: 4px; font-size: 0.71875rem; color: var(--c-primary); letter-spacing: .06em; }
.fpoint__shot img { width: 100%; height: auto; border-radius: var(--r-card); box-shadow: 0 14px 40px rgba(12, 42, 77, .14); }

/* 機能ページ: 特長アイコンカード */
.ficon-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .ficon-grid { grid-template-columns: repeat(2, 1fr); } }
.ficon { background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r-card); padding: 26px 24px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.ficon:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 14px 36px rgba(12, 42, 77, .12); }
.ficon__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--c-primary-pale); color: var(--c-primary); }
.ficon__icon svg { width: 26px; height: 26px; }
.ficon__title { margin-top: 16px; font-size: 1rem; font-weight: 700; }
.ficon__text { margin-top: 8px; font-size: 0.84375rem; line-height: 1.9; color: var(--c-text-weak); }

/* 機能ページ: ご利用の流れ */
.steps { display: grid; gap: 30px; counter-reset: step; }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(5, 1fr); gap: 26px; } }
.step { position: relative; background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r-card); padding: 22px 18px; }
.step__no { display: inline-flex; padding: 4px 12px; background: var(--c-primary); color: #fff; font-family: var(--font-en); font-size: 0.6875rem; font-weight: 800; letter-spacing: .12em; border-radius: var(--r-btn); }
.step__title { margin-top: 12px; font-size: 0.9375rem; font-weight: 700; }
.step__text { margin-top: 8px; font-size: 0.78125rem; line-height: 1.8; color: var(--c-text-weak); }
.step:not(:last-child)::after { content: ""; position: absolute; left: 50%; bottom: -21px; transform: translateX(-50%) rotate(135deg); width: 10px; height: 10px; border-top: 2.5px solid var(--c-primary); border-right: 2.5px solid var(--c-primary); opacity: .6; }
@media (min-width: 1024px) {
  .step:not(:last-child)::after { left: auto; right: -19px; bottom: auto; top: 50%; transform: translateY(-50%) rotate(45deg); }
}

/* シーン写真 */
.scenes { display: grid; gap: 24px; }
@media (min-width: 768px) { .scenes { grid-template-columns: repeat(3, 1fr); } }
.scene img { width: 100%; height: auto; border-radius: var(--r-card); }
.scene figcaption { margin-top: 12px; }
.scene__sub { font-size: 0.6875rem; font-weight: 700; letter-spacing: .1em; color: var(--c-primary); font-family: var(--font-en); }
.scene__title { margin-top: 4px; font-size: 0.9375rem; font-weight: 700; }

/* 他の機能カード */
.relf { display: grid; gap: 18px; }
@media (min-width: 768px) { .relf { grid-template-columns: repeat(2, 1fr); } }
.relf__card { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r-card); padding: 22px 24px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.relf__card:hover { transform: translateY(-3px); border-color: transparent; box-shadow: 0 14px 36px rgba(12, 42, 77, .12); }
.relf__label { display: block; font-family: var(--font-en); font-size: 0.65625rem; font-weight: 800; letter-spacing: .14em; color: var(--c-primary); }
.relf__title { display: block; margin-top: 4px; font-size: 1rem; font-weight: 700; }
.relf__desc { display: block; margin-top: 4px; font-size: 0.78125rem; color: var(--c-text-weak); }
.relf__arrow { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--c-primary-pale); color: var(--c-primary); transition: background .3s ease, color .3s ease; }
.relf__arrow svg { width: 16px; height: 16px; }
.relf__card:hover .relf__arrow { background: var(--c-primary); color: #fff; }

/* FAQページ */
.faqsec + .faqsec { margin-top: clamp(48px, 7vw, 64px); }
.faqsec__title { display: flex; align-items: baseline; gap: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--c-navy); font-size: 1.25rem; font-weight: 900; }
.faqsec__en { font-family: var(--font-en); font-size: 0.71875rem; font-weight: 800; letter-spacing: .14em; color: var(--c-primary); }
.faqsec .faq__list { margin-top: 22px; }

/* 戻るリンク・チェックリスト・小物 */
.back-wrap { margin-top: 48px; }
.checks { display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; font-size: 0.9375rem; font-weight: 500; line-height: 1.8; }
.checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--c-accent); }
.checks li::after { content: ""; position: absolute; left: 5px; top: 10px; width: 10px; height: 6px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg); }
.panel { background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r-card); padding: clamp(22px, 3.4vw, 30px); }
.panel + .panel { margin-top: 24px; }
.panel__title { display: flex; align-items: center; gap: 10px; font-size: 1.0625rem; font-weight: 900; margin-bottom: 18px; }
.panel__title::before { content: ""; width: 5px; height: 20px; border-radius: 3px; background: var(--c-primary); }
.mini-flow { display: grid; gap: 10px; }
.mini-flow li { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; font-weight: 500; }
.mini-flow__no { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--c-primary-pale); color: var(--c-primary); font-family: var(--font-en); font-size: 0.75rem; font-weight: 800; }
.mini-flow__note { margin-top: 14px; font-size: 0.78125rem; color: var(--c-text-weak); }

/* お知らせカテゴリ追加分 */
.news__cat--media { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }

/* 現在地ナビ */
.header__nav-link.is-current { color: var(--c-primary); }
.header__nav-link.is-current::after { transform: scaleX(1); }


/* HubSpot 埋め込みフォーム枠 */
.hs-form-embed { min-height: 40px; }
/* 実フォーム（HubSpot生成）が入ったらプレースホルダーを隠す */
.hs-form-embed:has(.hs-form) .hs-placeholder,
.hs-form-embed:has(form) .hs-placeholder,
.hs-form-embed:has(iframe) .hs-placeholder { display: none; }
.hs-placeholder { display: grid; gap: 16px; }
.hs-placeholder__row { display: grid; gap: 7px; }
.hs-placeholder__label { font-size: 0.8125rem; font-weight: 700; color: var(--c-text); }
.hs-placeholder__field { height: 46px; border: 1.5px dashed var(--c-border); border-radius: 8px; background: repeating-linear-gradient(135deg, #F7FAFD, #F7FAFD 10px, #FBFDFF 10px, #FBFDFF 20px); }
.hs-placeholder__field--area { height: 96px; }
.hs-placeholder__btn { margin-top: 4px; height: 52px; display: grid; place-items: center; border-radius: var(--r-btn); background: var(--c-accent); color: #fff; font-weight: 700; font-size: 0.9375rem; opacity: .55; }
.hs-placeholder__caption { margin-top: 4px; font-size: 0.6875rem; line-height: 1.7; color: var(--c-text-weak); text-align: center; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .u-reveal, .u-reveal-group > *, .hero__copy > *, .mock, .float-card { opacity: 1 !important; transform: none !important; }
  .stars__fill { width: var(--fill, 96%) !important; }
  .mock__graph-line { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  .mock__graph-area, .mock__graph-dot { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
}
