/* ===========================
   STAFF START - 機能一覧ページ共通CSS
   function-pages.css
   =========================== */

/* アンカーリンクのスクロールオフセット
   header(60px) + func-nav(48px) + 余白(24px) = 132px */
[id] {
  scroll-margin-top: 132px;
}

/* HERO */
.func-hero-section {
  position: relative;
  overflow: hidden;
  background: #162034;
}
.func-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 32, 52, 0.52);
  z-index: 1;
  pointer-events: none;
}
.func-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #f8f9fb;
  border-top-right-radius: 56px;
  z-index: 3;
  pointer-events: none;
}
.func-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 48px 40px 72px;
}
.func-hero-text {
  text-align: center;
  padding: 0;
  max-width: 700px;
}
.func-hero-cat {
  display: inline-block;
  background: #FDC700;
  color: #162034;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.func-hero-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}
.func-hero-title span { color: #FDC700; }
.func-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.func-hero-btn-dl {
  background: #FDC700;
  color: #162034;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}
.func-hero-btn-contact {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
}
.func-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.func-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}
.func-hero-img-ph {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

/* 機能内ナビ */
.func-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 60px;
  z-index: 99;
}
.func-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.func-nav-inner::-webkit-scrollbar { display: none; }
.func-nav::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 1px;
  width: 48px;
  background: linear-gradient(to left, #fff 40%, transparent);
  pointer-events: none;
  z-index: 1;
}
.func-nav-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .1em;
  padding: 16px 16px 16px 0;
  border-right: 1px solid #e5e7eb;
  margin-right: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.func-nav a {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  padding: 16px 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  display: inline-block;
  flex-shrink: 0;
}
.func-nav a:hover { color: #162034; border-bottom-color: #FDC700; }

/* 他カテゴリバー */
.other-cat-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}
.other-cat-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.other-cat-label {
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
  white-space: nowrap;
}
.other-cat-inner a {
  font-size: 12px;
  font-weight: 700;
  color: #162034;
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  background: #fff;
}
.other-cat-inner a:hover { background: #162034; color: #FDC700; border-color: #162034; }

/* 機能セクション */
.func-item-section {
  padding: 72px 0;
  border-bottom: 1px solid #e5e7eb;
}
.func-item-section:nth-child(even) { background: #f8f9fb; }
.func-item-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
}
.func-item-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.func-item-inner.reverse { direction: rtl; }
.func-item-inner.reverse > * { direction: ltr; }
/* アコーディオン展開エリア：gridの外でフル幅 */
.func-item-acc {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.func-item-cat {
  display: inline-flex;
  align-items: center;
  background: #162034;
  color: #FDC700;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.func-item-cat--sub {
  background: #4a6080;
  color: #fff;
}
.func-item-cat-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.func-item-cat-wrap .func-item-cat {
  margin-bottom: 0;
}
.func-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.func-name-row .func-item-cat {
  margin-bottom: 0;
  align-self: center;
}
.func-name-row .func-item-cat-wrap {
  margin-bottom: 0;
  align-self: center;
}
.func-item-name {
  font-size: 30px;
  font-weight: 900;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 0;
}
.func-item-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 24px;
}
.func-item-points { margin-bottom: 28px; }
.func-item-points ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.func-item-points li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  line-height: 1.65;
}
.func-item-points li::before {
  content: attr(data-num);
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #FDC700;
  color: #162034;
  font-size: 11px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.func-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #162034;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
}
.func-item-link:hover { opacity: 0.85; }

/* 画像側 */
.func-item-img {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 4/3;
}
.func-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.func-item-img--snap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.snap-vd {
  display: grid;
  grid-template-areas: "a";
  aspect-ratio: 0.48913;
  width: 15.75rem;
  margin: 1.25rem auto 2.5rem;
  pointer-events: none;
}
.snap-vd__frame,
.snap-vd__video {
  grid-area: a;
}
.snap-vd__frame {
  z-index: 1;
  position: relative;
}
.snap-vd__frame img {
  display: block;
  width: 100%;
}
.snap-vd__video {
  z-index: 0;
  border-radius: 3.125rem;
  overflow: hidden;
  padding: 9.861% 1.528% 4.583% 2.639%;
}
.snap-vd--matome .snap-vd__video {
  padding: 8.472% 1.528% 5.972% 2.639%;
}
.snap-vd--staffreview .snap-vd__video {
  padding: 3.333%;
}
.snap-vd__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.func-item-img-ph {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.func-item-img-ph .ph-e { font-size: 48px; }
.func-item-img-ph .ph-l { color: #FDC700; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.func-item-img-ph .ph-s { color: rgba(255,255,255,0.35); font-size: 11px; }

/* フッターCTA */
.func-footer-cta {
  background: #162034;
  padding: 64px 40px;
  text-align: center;
}
.func-footer-cta h2 {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.func-footer-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.8;
}
.func-footer-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Sticky CTA Bar ---- */
.func-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #162034;
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  z-index: 900;
  padding: 14px 40px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.func-sticky-cta.is-visible {
  transform: translateY(0);
}
.func-sticky-cta-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.func-sticky-cta-text {
  flex: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.func-sticky-cta-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.func-sticky-cta-btns .func-hero-btn-dl,
.func-sticky-cta-btns .func-hero-btn-contact {
  padding: 10px 20px;
  font-size: 13px;
}
.func-sticky-cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.func-sticky-cta-close:hover { color: #fff; }
@media (max-width: 768px) {
  .func-sticky-cta { padding: 12px 16px; }
  .func-sticky-cta-inner { gap: 12px; }
  .func-sticky-cta-text { font-size: 12px; white-space: normal; }
  .func-sticky-cta-btns .func-hero-btn-dl,
  .func-sticky-cta-btns .func-hero-btn-contact { padding: 9px 14px; font-size: 12px; }
}
@media (max-width: 480px) {
  .func-sticky-cta-text { display: none; }
}

/* レスポンシブ */
@media (max-width: 900px) {
  .func-hero-inner { grid-template-columns: 1fr; }
  .func-hero-img { display: none; }
  .func-hero-text { padding: 48px 24px; }
  .func-hero-title { font-size: 28px; }
}
@media (max-width: 768px) {
  .func-item-inner { grid-template-columns: 1fr !important; direction: ltr !important; padding: 0 24px; gap: 32px; }
  .func-item-name { font-size: 22px; }
  .func-nav-inner { padding: 0 16px; }
  .other-cat-inner { padding: 0 16px; }
  .func-item-section { padding: 48px 0; }
  .func-hero-inner { padding: 60px 24px 90px; min-height: 280px; }
  .func-hero-title { font-size: 26px; }
}

/* ===== アコーディオン ===== */
.acc-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #162034;
  cursor: pointer;
  margin-top: 16px;
  width: 100%;
  text-align: left;
  transition: background 0.15s;
}
.acc-toggle-btn:hover { background: #e5e7eb; }
.acc-toggle-btn .acc-arrow {
  font-size: 10px;
  color: #162034;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.acc-toggle-btn.is-open .acc-arrow { transform: rotate(180deg); }
.acc-body {
  display: none;
  padding: 24px 0 0;
}
.acc-body.is-open { display: block; padding-bottom: 32px; }
.acc-screens {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.acc-screens--cases {
  grid-template-columns: repeat(4,1fr);
}
.acc-screens--pairs {
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.acc-screens--single {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.acc-case-pair-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
}
.acc-case-pair-imgs img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.acc-img-tall {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  max-height: 480px;
}
.acc-img-caption {
  font-size: 11px;
  font-weight: 700;
  color: #162034;
  margin: 6px 0 2px;
}
.acc-img-sub {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.acc-cases-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #162034;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.acc-case img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.acc-case-industry {
  font-size: 11px;
  font-weight: 700;
  color: #162034;
  margin: 6px 0 2px;
}
.acc-case-desc {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.acc-screen-ph {
  background: #162034;
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.acc-screen-ph .ph-icon { font-size: 28px; }
.acc-screen-ph .ph-label { color: #FDC700; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.acc-screen-ph .ph-sub { color: rgba(255,255,255,0.4); font-size: 9px; text-align: center; padding: 0 6px; }
.acc-screens img { width: 100%; height: auto; border-radius: 8px; display: block; }
.acc-screens--single img { width: auto; max-height: 390px; margin: 0 auto; }
.acc-screens--pairs img { height: 260px; object-fit: contain; width: 100%; }
.acc-effect { margin-bottom: 24px; }
.acc-extra .acc-inner-block {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}
/* effect-grid内のCSSが引き継がれるよう上書き */
.acc-effect .effect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}
.acc-effect .effect-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.acc-effect .effect-card::before { display: none; }
.acc-effect .effect-num { display: none; }
.acc-effect .effect-card h3 { margin-top: 0; }
.acc-effect .effect-card h3 { font-size: 13px; font-weight: 700; color: #111827; margin-bottom: 6px; line-height: 1.5; }
.acc-effect .effect-card p { font-size: 12px; line-height: 1.75; color: #4b5563; }
.acc-effect .effect-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #1d4ed8;
}
/* 展開部分のpoints-eyebrow等のリセット */
.acc-inner-block .points-eyebrow { font-size: 10px; }
.acc-inner-block .points-heading { font-size: 18px; margin-bottom: 16px; }
.acc-inner-block h2.func-heading { font-size: 18px; margin-bottom: 16px; }
@media(max-width:768px) {
  .acc-effect .effect-grid { grid-template-columns: 1fr !important; }
  .acc-screens { grid-template-columns: 1fr 1fr !important; }
  .acc-screens--cases { grid-template-columns: 1fr 1fr !important; }
  .acc-screens--pairs { grid-template-columns: 1fr !important; }
}

/* アコーディオン展開時：全幅表示 */
.func-item-inner:has(.acc-body.is-open) {
  grid-template-columns: 1fr;
}
.func-item-inner:has(.acc-body.is-open) .func-item-img {
  display: none;
}
.func-item-inner:has(.acc-body.is-open).reverse {
  direction: ltr;
}
/* :has非対応ブラウザ向けフォールバック（JSで付与） */
.func-item-inner.acc-expanded {
  grid-template-columns: 1fr !important;
  direction: ltr !important;
}
.func-item-inner.acc-expanded .func-item-img {
  display: none !important;
}

/* ===== acc-inner-block内の個別ページCSSを再定義 ===== */
.acc-inner-block {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
}
.acc-inner-block .points-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #162034;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.acc-inner-block .points-heading {
  font-size: 18px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}
/* app-measure-grid */
.acc-inner-block .app-measure-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
.acc-inner-block .app-measure-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.acc-inner-block .app-measure-head {
  background: #162034;
  color: #FDC700;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
}
.acc-inner-block .app-measure-body {
  font-size: 11px;
  color: #4b5563;
  padding: 10px 12px;
  line-height: 1.6;
}
/* admin-grid */
.acc-inner-block .admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.acc-inner-block .admin-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.acc-inner-block .admin-card-head {
  background: #162034;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 18px;
}
.acc-inner-block .admin-card-head span { color: #FDC700; }
.acc-inner-block .admin-card-body { padding: 16px 18px; }
.acc-inner-block .admin-items { display: flex; flex-direction: column; gap: 10px; }
.acc-inner-block .admin-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; background: #f8f9fb; border-radius: 6px; }
.acc-inner-block .admin-item-icon { font-size: 16px; flex-shrink: 0; }
.acc-inner-block .admin-item-label { font-size: 12px; font-weight: 700; color: #111827; margin-bottom: 2px; }
.acc-inner-block .admin-item-desc { font-size: 11px; color: #6b7280; line-height: 1.5; }
/* eval-flow / matome-steps */
.acc-inner-block .eval-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px 20px;
  overflow-x: auto;
}
.acc-inner-block .eval-node { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.acc-inner-block .eval-node-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.acc-inner-block .eval-node-icon.stores,.acc-inner-block .eval-node-icon.post { background: #FDC700; }
.acc-inner-block .eval-node-icon.ec,.acc-inner-block .eval-node-icon.result { background: #162034; }
.acc-inner-block .eval-node-label { font-size: 11px; font-weight: 700; color: #111827; }
.acc-inner-block .eval-node-desc { font-size: 10px; color: #6b7280; line-height: 1.5; }
.acc-inner-block .eval-arrow { padding: 0 8px; font-size: 18px; color: #9ca3af; margin-top: 11px; flex-shrink: 0; }
/* func-card/func-grid */
.acc-inner-block .func-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 16px;
}
.acc-inner-block .func-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 18px;
}
.acc-inner-block .func-icon { font-size: 24px; margin-bottom: 8px; }
.acc-inner-block .func-title { font-size: 12px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.acc-inner-block .func-desc { font-size: 11px; color: #6b7280; line-height: 1.6; }
/* measure-grid */
.acc-inner-block .measure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.acc-inner-block .measure-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.acc-inner-block .measure-card-head { padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.acc-inner-block .measure-card-head.direct { background: #162034; }
.acc-inner-block .measure-card-head.indirect { background: #1e3a70; }
.acc-inner-block .measure-badge { padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 700; }
.acc-inner-block .measure-badge.direct { background: #FDC700; color: #162034; }
.acc-inner-block .measure-badge.indirect { background: #fff; color: #162034; }
.acc-inner-block .measure-card-head h3 { font-size: 12px; font-weight: 700; color: #fff; }
.acc-inner-block .measure-card-body { padding: 16px; font-size: 11px; color: #4b5563; line-height: 1.7; }
/* matome-steps */
.acc-inner-block .matome-steps {
  display: flex;
  gap: 0;
  margin-top: 16px;
}
.acc-inner-block .matome-step {
  flex: 1;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: none;
}
.acc-inner-block .matome-step:first-child { border-left: 1px solid #e5e7eb; border-radius: 8px 0 0 8px; }
.acc-inner-block .matome-step:last-child { border-radius: 0 8px 8px 0; }
.acc-inner-block .matome-step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.acc-inner-block .matome-step-num { width: 28px; height: 28px; background: #162034; color: #FDC700; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; flex-shrink: 0; }
.acc-inner-block .matome-step-head h3 { font-size: 13px; font-weight: 700; color: #111827; }
.acc-inner-block .matome-step-body p { font-size: 11px; color: #6b7280; line-height: 1.6; }
.acc-inner-block .matome-step-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.acc-inner-block .matome-step-tag { font-size: 10px; background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; padding: 2px 7px; border-radius: 3px; }
/* snap-step */
.acc-inner-block .snap-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.acc-inner-block .snap-step { padding: 18px; background: #fff; border: 1px solid #e5e7eb; border-left: none; position: relative; }
.acc-inner-block .snap-step:first-child { border-left: 1px solid #e5e7eb; border-radius: 8px 0 0 8px; }
.acc-inner-block .snap-step:last-child { border-radius: 0 8px 8px 0; }
.acc-inner-block .snap-step-num { width: 28px; height: 28px; background: #162034; color: #FDC700; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; margin-bottom: 8px; }
.acc-inner-block .snap-step-label { font-size: 10px; font-weight: 700; color: #162034; letter-spacing: .08em; }
.acc-inner-block .snap-step h3 { font-size: 13px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.acc-inner-block .snap-step p { font-size: 11px; color: #6b7280; line-height: 1.6; }
/* karte-grid */
.acc-inner-block .karte-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
.acc-inner-block .karte-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
.acc-inner-block .karte-card-head { background: #162034; color: #FDC700; font-size: 11px; font-weight: 700; padding: 8px 14px; }
.acc-inner-block .karte-card-body { padding: 12px 14px; font-size: 11px; color: #4b5563; line-height: 1.6; }
/* points-grid内のpoint-card */
.acc-inner-block .points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.acc-inner-block .point-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 18px; display: flex; gap: 12px; align-items: flex-start; }
.acc-inner-block .point-card-num { font-size: 20px; font-weight: 900; color: #e5e7eb; font-family: 'Poppins',sans-serif; line-height: 1; flex-shrink: 0; }
.acc-inner-block .point-card-title { font-size: 12px; font-weight: 700; color: #111827; margin-bottom: 5px; }
.acc-inner-block .point-card-desc { font-size: 11px; color: #6b7280; line-height: 1.6; }
/* flow-steps */
.acc-inner-block .flow-steps { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.acc-inner-block .flow-step { flex: 1; min-width: 120px; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 14px; text-align: center; }
.acc-inner-block .flow-step-badge { display: inline-block; background: #162034; color: #FDC700; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 3px; margin-bottom: 6px; }
.acc-inner-block .flow-step-icon { font-size: 22px; margin-bottom: 6px; }
.acc-inner-block .flow-step-desc { font-size: 10px; color: #6b7280; line-height: 1.5; }
/* flow-arrow-steps: one-directional right arrow style */
.acc-inner-block .flow-arrow-steps { display: flex; gap: 8px; margin-top: 20px; border-radius: 12px; }
.acc-inner-block .flow-arrow-card { flex: 1; background: #EDF2F8; padding: 22px 36px 22px 22px; }
.acc-inner-block .flow-arrow-card:first-child { clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%); border-radius: 10px 0 0 10px; }
.acc-inner-block .flow-arrow-card:not(:first-child):not(:last-child) { clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%); }
.acc-inner-block .flow-arrow-card:last-child { border-radius: 0 10px 10px 0; padding-right: 22px; }
.acc-inner-block .flow-arrow-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.acc-inner-block .flow-arrow-num { font-size: 18px; font-weight: 900; color: #2A8C8C; font-family: 'Poppins', sans-serif; line-height: 1; }
.acc-inner-block .flow-arrow-title { font-size: 14px; font-weight: 700; color: #111827; }
.acc-inner-block .flow-arrow-list { list-style: none; padding: 0; margin: 0; }
.acc-inner-block .flow-arrow-list li { font-size: 12px; color: #374151; padding-left: 14px; position: relative; margin-bottom: 5px; line-height: 1.6; }
.acc-inner-block .flow-arrow-list li::before { content: '●'; position: absolute; left: 0; color: #2A8C8C; font-size: 7px; top: 4px; }
@media (max-width: 768px) {
  .acc-inner-block .flow-arrow-steps { flex-direction: column; padding: 0; background: transparent; gap: 8px; }
  .acc-inner-block .flow-arrow-card,
  .acc-inner-block .flow-arrow-card:first-child,
  .acc-inner-block .flow-arrow-card:not(:first-child):not(:last-child),
  .acc-inner-block .flow-arrow-card:last-child { clip-path: none; border-radius: 10px; padding: 18px 20px; }
}
/* eval-circle-grid */
.acc-inner-block .eval-circle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 32px auto 0; }
.acc-inner-block .eval-circle-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.acc-inner-block .eval-circle-icon { width: 100px; height: 100px; border-radius: 50%; background: #6AB8CB; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.acc-inner-block .eval-circle-icon svg { width: 40px; height: 40px; }
.acc-inner-block .eval-circle-title { font-size: 16px; font-weight: 700; color: #2A8C8C; margin-bottom: 10px; }
.acc-inner-block .eval-circle-desc { font-size: 13px; color: #4B5563; line-height: 1.75; }
@media (max-width: 768px) {
  .acc-inner-block .eval-circle-grid { grid-template-columns: 1fr; gap: 32px; }
  .acc-inner-block .eval-circle-icon { width: 80px; height: 80px; }
}
/* feature-icon-grid (outline icon + title + divider + desc) */
.acc-inner-block .feature-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 32px; }
.acc-inner-block .feature-icon-grid--3col { grid-template-columns: repeat(3, 1fr); }
.acc-inner-block .feature-icon-grid--6col { grid-template-columns: repeat(3, 1fr); }
.acc-inner-block .feature-icon-card { display: flex; flex-direction: column; }
.acc-inner-block .feature-icon-icon { width: 72px; height: 72px; margin-bottom: 20px; }
.acc-inner-block .feature-icon-icon svg { width: 72px; height: 72px; }
.acc-inner-block .feature-icon-title { font-size: 15px; font-weight: 700; color: #111827; line-height: 1.55; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 2px solid #e5e7eb; }
.acc-inner-block .feature-icon-desc { font-size: 13px; color: #4B5563; line-height: 1.85; }
@media (max-width: 768px) {
  .acc-inner-block .feature-icon-grid,
  .acc-inner-block .feature-icon-grid--3col,
  .acc-inner-block .feature-icon-grid--6col { grid-template-columns: 1fr 1fr; gap: 24px; }
}
/* scene-cards */
.acc-inner-block .scene-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.acc-inner-block .scene-card { display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 14px; }
.acc-inner-block .scene-num { width: 24px; height: 24px; background: #FDC700; color: #162034; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.acc-inner-block .scene-card h4 { font-size: 13px; font-weight: 700; color: #111827; margin-bottom: 4px; }
.acc-inner-block .scene-card p { font-size: 11px; color: #6b7280; line-height: 1.6; }
/* acc-bodyの下マージン */
.acc-body.is-open {
  padding-bottom: 32px;
}
/* レスポンシブ */
@media(max-width:768px) {
  .acc-inner-block .app-measure-grid { grid-template-columns: 1fr 1fr !important; }
  .acc-inner-block .admin-grid { grid-template-columns: 1fr !important; }
  .acc-inner-block .measure-grid { grid-template-columns: 1fr !important; }
  .acc-inner-block .func-grid { grid-template-columns: 1fr 1fr !important; }
  .acc-inner-block .matome-steps { flex-direction: column !important; }
  .acc-inner-block .snap-steps { grid-template-columns: 1fr !important; }
  .acc-inner-block .points-grid { grid-template-columns: 1fr !important; }
}

/* acc-inner-block見出し */
.acc-block-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #162034;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.acc-block-heading {
  font-size: 17px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* ===== PoC Section (ありがとうポスト 海老名実証) ===== */
.kansha-poc { margin: 0 0 8px; }
.kansha-poc__advance {
  display: inline-block;
  background: #FDC700;
  color: #162034;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.kansha-poc__box {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: start;
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.kansha-poc__box h3 {
  font-size: 15px;
  font-weight: 700;
  color: #162034;
  margin: 0 0 12px;
  line-height: 1.5;
}
.kansha-poc__box p {
  font-size: 13px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0 0 10px;
}
.kansha-poc__box p:last-child { margin-bottom: 0; }
.kansha-poc__box-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.kansha-poc__comments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.kansha-poc__comment {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}
.kansha-poc__people {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.kansha-poc__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.kansha-poc__person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.kansha-poc__person span {
  font-size: 9px;
  color: #6b7280;
  text-align: center;
  line-height: 1.3;
}
.kansha-poc__arrow {
  font-size: 18px;
  color: #FDC700;
  flex-shrink: 0;
}
.kansha-poc__txt {
  font-size: 11.5px;
  line-height: 1.85;
  color: #374151;
  margin: 0;
}
.kansha-poc__note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin: 8px 0 0;
}
@media(max-width:768px) {
  .kansha-poc__box { grid-template-columns: 1fr; }
  .kansha-poc__box-img { order: -1; }
  .kansha-poc__box-img img { max-width: 180px; margin: 0 auto; }
  .kansha-poc__comments { grid-template-columns: 1fr; }
}

/* ── STAT BAR ── */
.func-stat-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #f5f6f9;
  border-radius: 10px;
  padding: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #e4e6eb;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* Gold left accent bar */
.func-stat-bar::before {
  content: '';
  display: block;
  width: 4px;
  background: #FDC700;
  flex-shrink: 0;
}

.func-stat-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

/* vertical rule when multiple items */
.func-stat-item + .func-stat-item {
  border-left: 1px solid #dde0e7;
}

.func-stat-num {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #e6001d;
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}

.func-stat-label {
  font-size: 11.5px;
  color: #555;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .01em;
  min-width: 0;
}

@media (max-width: 768px) {
  .func-stat-num  { font-size: 1rem; }
  .func-stat-item { padding: 12px 14px; }
}

/* FUNCTION LINK */
.func-item-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #162034;
  text-decoration: none;
  border-bottom: 1px solid #162034;
  padding-bottom: 2px;
  transition: opacity .2s;
}
.func-item-link:hover { opacity: .6; }
@media(max-width:768px) {
  .func-stat-bar { padding: 14px 20px; }
  .func-stat-num { font-size: 1.4rem; }
}

/* ── CHALLENGE LABEL (横並び用) ── */
.func-challenge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #e6001d;
  background: rgba(230,0,29,.07);
  border: 1px solid rgba(230,0,29,.22);
  border-radius: 999px;
  padding: 4px 12px;
  line-height: 1.5;
  letter-spacing: .02em;
  white-space: normal;
  flex-shrink: 0;
  margin-bottom: 8px;
}

/* ── EFFECT CARDS ── */
.func-effects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.func-effects--2 {
  grid-template-columns: repeat(2, 1fr);
}
.func-effects--4 {
  grid-template-columns: repeat(4, 1fr);
}
.func-effects--4 .func-effect-num {
  font-size: 1.25rem;
  white-space: nowrap;
}
.func-effects--4 .func-effect-label {
  font-size: 11px;
}
.func-effect-card {
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, #0f2143 0%, #1c3460 100%);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 10px;
  gap: 7px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15,33,67,.18);
}
.func-effect-card::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,192,45,.18) 0%, transparent 70%);
  pointer-events: none;
}
.func-effect-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FDC700, rgba(253,192,45,.3));
}
.func-effect-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .04em;
  position: relative;
}
.func-effect-note {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.func-effect-num {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #FDC700;
  line-height: 1;
  letter-spacing: -.02em;
  position: relative;
  text-shadow: 0 0 22px rgba(253,192,45,.5);
}
@media (max-width: 768px) {
  .func-effects { gap: 8px; }
  .func-effect-num { font-size: 1.6rem; }
  .func-effect-label { font-size: 11.5px; }
}
