/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ── 漆黒 (Shikkoku) ── 漆器のような深い黒 */
  --navy-deep: #0a0a0a;
  --navy: #141414;
  --navy-mid: #1e1e1e;
  --sumi: #141414;

  /* ── 墨 (Sumi) ── テキスト・本文 */
  --dark-gray: #1a1a1a;
  --mid-gray: #7a7a7a;

  /* ── 白磁 (Hakuji) ── 磁器のような品格ある白 */
  --light-gray: #f7f5f0;
  --border-gray: #e0dcd4;
  --white: #faf8f4;
  --kinari: #f7f5f0;

  /* ── 金 (Kin) ── 金箔のアクセント */
  --gold: #c4a265;
  --gold-dim: rgba(196, 162, 101, 0.10);
  --gold-border: rgba(196, 162, 101, 0.25);

  /* ── 金色 (Kin) ── 旧「深紅」を金に変更し世界観を統一 */
  --shu: #c4a265;
  --shu-dim: rgba(196, 162, 101, 0.07);
  --red-dim: rgba(196, 162, 101, 0.06);
  --red-border: rgba(196, 162, 101, 0.18);

  /* ── 勝色 (Kachi-iro) ── 信頼・誠実を示す極めて深い紺（旧：藍） */
  --ai-iro: #101824;
  --accent: #101824;
  --accent-light: #1c2a3d;
  --accent-dim: rgba(16, 24, 36, 0.4);
  --accent-border: rgba(16, 24, 36, 0.3);
  --blue: #101824;
  --blue-dim: rgba(16, 24, 36, 0.8);
  --tetsu: #3a4856;
  --purple: #5a4872;

  /* ── Typography ── */
  --font-jp: 'Noto Serif JP', 'Noto Sans JP', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
  --font-brush: 'Yuji Boku', serif;

  /* ── Layout ── */
  --container-width: 1080px;
  --section-padding: 140px;
  --transition: all 0.4s cubic-bezier(0.25, 0, 0.1, 1);

  /* ── Shape ── 和の端正さ */
  --radius-xl: 2px;
  --radius-lg: 2px;
  --radius-md: 1px;
  --radius-sm: 0px;

  /* ── Shadow ── 墨のにじみ */
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--white);
  letter-spacing: 0.04em;
}

/* 明朝体を見出しに自動適用 */
h1,
h2,
h3 {
  font-family: var(--font-jp);
  letter-spacing: 0.06em;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only {
  display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 162, 101, 0);
  }

  50% {
    box-shadow: 0 0 24px rgba(196, 162, 101, 0.12);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COLOR UTILITIES ===== */
.text-accent {
  color: var(--shu);
}

.text-accent-bold {
  color: var(--shu);
  font-weight: 700;
  font-size: 1.15em;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 162, 101, 0.08);
  transition: var(--transition);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--kinari);
  letter-spacing: 0.15em;
}

.logo-brush {
  font-family: var(--font-brush);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.6);
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.nav a:hover {
  color: var(--kinari);
}

.nav-cta {
  background: var(--gold) !important;
  color: #0c0c0c !important;
  padding: 8px 24px !important;
  border-radius: 0px;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: #d4af6e !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--kinari);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-jp);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.04em;
  gap: 8px;
}

.btn-primary {
  background: var(--dark-gray);
  color: var(--kinari);
  box-shadow: none;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-ghost {
  background: transparent;
  color: var(--dark-gray);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--dark-gray);
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-arrow {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-dark {
  background: var(--sumi);
}

.section-dark .section-title,
.section-dark .section-title-center {
  color: var(--kinari);
}

.section-dark .section-label {
  color: var(--gold);
}

.section-dark .section-desc {
  color: rgba(247, 245, 240, 0.55);
}

/* White background section */
.section-wa-light {
  background: #fff;
  position: relative;
}

.section-wa-light .section-title,
.section-wa-light .section-title-center {
  color: #1a1a1a;
}

.section-wa-light .section-desc {
  color: #666;
}

.section-wa-light .section-desc strong {
  color: var(--gold);
}

.section-wa-light .tategaki-accent {
  color: rgba(0, 0, 0, 0.04);
}

/* 和ダーク — 漆黒に和紙テクスチャ＋市松模様 */
.section-wa-dark {
  background: #1a1714;
  position: relative;
}

.section-wa-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(rgba(196, 162, 101, 0.03) 0% 25%,
      transparent 0% 50%) 0 0 / 40px 40px;
  pointer-events: none;
}

.section-wa-dark .section-title,
.section-wa-dark .section-title-center {
  color: var(--kinari);
}

.section-wa-dark .section-desc {
  color: rgba(247, 245, 240, 0.55);
}

.section-wa-dark .section-desc strong {
  color: var(--gold);
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-jp);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.section-title-center {
  text-align: center;
}

.section-title-light {
  color: var(--kinari);
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 2.1;
  margin-bottom: 64px;
}

.section-desc-center {
  text-align: center;
}

.section-desc-light {
  color: rgba(247, 245, 240, 0.6);
}

/* ===== HERO — 高級ホテル風 静謐なセンターレイアウト ===== */
.hero {
  min-height: 100vh;
  background: #0c0c0c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 24px;
  overflow: hidden;
  overflow-x: hidden;
}

/* 和紙テクスチャ */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* 市松模様 — 伝統的な和柄を金箔色で極薄に */
.hero-bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg,
      rgba(196, 162, 101, 0.04) 25%, transparent 25%,
      transparent 75%, rgba(196, 162, 101, 0.04) 75%),
    linear-gradient(45deg,
      rgba(196, 162, 101, 0.04) 25%, transparent 25%,
      transparent 75%, rgba(196, 162, 101, 0.04) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* 金箔の縦ライン */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 50%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(196, 162, 101, 0.12) 30%,
      rgba(196, 162, 101, 0.25) 50%,
      rgba(196, 162, 101, 0.12) 70%,
      transparent);
  pointer-events: none;
  z-index: 0;
}

/* 底部の金箔ライン */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(196, 162, 101, 0.2) 30%,
      rgba(196, 162, 101, 0.4) 50%,
      rgba(196, 162, 101, 0.2) 70%,
      transparent);
  z-index: 1;
}

/* 軍師キャラクター — 背景として薄く配置 */
.hero-character-bg {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 100%;
  width: 45%;
  max-width: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-character-bg-img {
  height: 80%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  opacity: 0;
  filter: grayscale(1) brightness(2.5);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.08) 60%, transparent 90%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.08) 60%, transparent 90%);
  animation: heroCharFade 2.5s ease 0.5s forwards;
}

@keyframes heroCharFade {
  to {
    opacity: 0.06;
  }
}

/* 金箔パーティクル */
.hero-gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-gold-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: goldFloat 8s ease-in-out infinite;
}

.hero-gold-particles span:nth-child(1) {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.hero-gold-particles span:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 3s;
  width: 2px;
  height: 2px;
}

.hero-gold-particles span:nth-child(3) {
  top: 40%;
  left: 70%;
  animation-delay: 5.5s;
  width: 2px;
  height: 2px;
}

@keyframes goldFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  20% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.3;
    transform: translateY(-30px) scale(1);
  }

  80% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: translateY(-60px) scale(0.5);
  }
}

/* センターレイアウトのコンテンツ */
.hero-content-luxury {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

/* アイブロウ（上部のキャッチ） */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: rgba(196, 162, 101, 0.35);
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
}

/* メインタイトル */
.hero-title-luxury {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.hero-title-luxury-line {
  display: block;
  font-family: var(--font-jp);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--kinari);
  line-height: 1.6;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title-luxury-line:nth-child(1) {
  animation-delay: 0.4s;
}

.hero-title-luxury-line:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-title-luxury-accent {
  color: var(--gold);
  position: relative;
}

.hero-title-luxury-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
}

/* サブタイトル */
.hero-subtitle-luxury {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(247, 245, 240, 0.7);
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 1s forwards;
}

/* 説明文 */
.hero-desc-luxury {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(247, 245, 240, 0.6);
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 1.2s forwards;
}

/* CTAボタン */
.hero-cta-luxury {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 1.4s forwards;
}

.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(196, 162, 101, 0.4);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-luxury-primary:hover {
  background: var(--gold);
  color: #0c0c0c;
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(196, 162, 101, 0.15);
}

.btn-luxury-primary svg {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.btn-luxury-primary:hover svg {
  transform: translateX(4px);
  opacity: 1;
}

.btn-luxury-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: rgba(247, 245, 240, 0.35);
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.btn-luxury-ghost::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: rgba(247, 245, 240, 0.12);
  transition: background 0.4s ease;
}

.btn-luxury-ghost:hover {
  color: rgba(247, 245, 240, 0.7);
}

.btn-luxury-ghost:hover::after {
  background: rgba(247, 245, 240, 0.35);
}


/* ── 和の装飾要素 ── */

/* 霞（かすみ）グラデーション — 上部の霧 */
.hero-kasumi-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom,
      rgba(12, 12, 12, 1) 0%,
      rgba(12, 12, 12, 0.6) 40%,
      transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* 霞 — 底部の余韻 */
.hero-kasumi-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top,
      rgba(12, 12, 12, 1) 0%,
      rgba(12, 12, 12, 0.4) 50%,
      transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* 家紋パターン（中央装飾） */
.hero-kamon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(196, 162, 101, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: kamonReveal 3s ease 1s forwards;
}

.hero-kamon::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(196, 162, 101, 0.04);
  border-radius: 50%;
}

.hero-kamon::after {
  content: '';
  position: absolute;
  inset: 45px;
  border: 1px solid rgba(196, 162, 101, 0.03);
  border-radius: 50%;
}

@keyframes kamonReveal {
  to {
    opacity: 1;
  }
}

/* 墨流し装飾ライン（左右） */
.hero-sumi-line-left,
.hero-sumi-line-right {
  position: absolute;
  width: 1px;
  height: 40%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: sumiLineReveal 2s ease 1.5s forwards;
}

.hero-sumi-line-left {
  left: 12%;
  top: 30%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(196, 162, 101, 0.08) 30%,
      rgba(196, 162, 101, 0.15) 50%,
      rgba(196, 162, 101, 0.08) 70%,
      transparent);
}

.hero-sumi-line-right {
  right: 12%;
  top: 25%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(196, 162, 101, 0.06) 20%,
      rgba(196, 162, 101, 0.12) 50%,
      rgba(196, 162, 101, 0.06) 80%,
      transparent);
}

@keyframes sumiLineReveal {
  to {
    opacity: 1;
  }
}

/* 金箔散らし — 追加の浮遊パーティクル */
.hero-gold-particles span:nth-child(4) {
  top: 15%;
  right: 30%;
  animation-delay: 2s;
  width: 1.5px;
  height: 1.5px;
}

.hero-gold-particles span:nth-child(5) {
  bottom: 30%;
  left: 25%;
  animation-delay: 4s;
  width: 2.5px;
  height: 2.5px;
}

.hero-gold-particles span:nth-child(6) {
  top: 70%;
  right: 10%;
  animation-delay: 6.5s;
  width: 1px;
  height: 1px;
}




















































































/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(247, 245, 240, 0.3);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(196, 162, 101, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ===== MANGA PANELS — 和風マンガパネル ===== */
.manga-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
  align-items: stretch;
}

.manga-panel {
  position: relative;
  display: flex;
  flex-direction: column;
}

.manga-panel-frame {
  position: relative;
  background: #faf6f0;
  border: 3px solid #2c2520;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 4px 4px 0 rgba(44, 37, 32, 0.15);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.manga-panel-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 8px 8px 0 rgba(44, 37, 32, 0.2);
}

/* パネル番号 — 其ノ壱/弐/参 */
.manga-panel-number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--font-jp);
  font-size: 0.85rem;
  font-weight: 700;
  color: #141414;
  background: var(--shu);
  padding: 4px 14px;
  border-radius: 2px;
  letter-spacing: 0.15em;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* イラスト部分 */
.manga-panel-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 3px solid #2c2520;
}

.manga-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.manga-panel-frame:hover .manga-panel-img img {
  transform: scale(1.05);
}

/* 集中線エフェクト（ホバー時） */
.manga-panel-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      transparent 40%,
      rgba(250, 246, 240, 0.3) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.manga-panel-frame:hover .manga-panel-img::after {
  opacity: 1;
}

/* テキスト（吹き出し）部分 */
.manga-panel-text {
  padding: 20px 20px 24px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(196, 162, 101, 0.04) 0%, transparent 50%),
    #faf6f0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 吹き出し風デザイン */
.manga-fukidashi {
  position: relative;
}

.manga-fukidashi::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #faf6f0;
  z-index: 2;
}

.manga-fukidashi h3 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 800;
  color: #2c2520;
  margin-bottom: 8px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.manga-fukidashi p {
  font-size: 0.88rem;
  color: #5a524a;
  line-height: 1.85;
}

.manga-fukidashi p strong {
  color: var(--shu);
  font-weight: 700;
}

/* 和紙テクスチャ（パネル背景） */
.manga-panel-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Problems Conclusion */
.problems-conclusion {
  text-align: center;
  margin-top: 64px;
}

.conclusion-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  color: var(--accent);
  animation: float 3s ease-in-out infinite;
}

.problems-conclusion p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--mid-gray);
}

.conclusion-brand {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
}

.conclusion-brand .logo-brush {
  font-size: 1.8rem;
  color: var(--shu);
  text-shadow: none;
}

/* ===== STRENGTH SHOWCASE ===== */
.strength-showcase {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 60px;
}

.strength-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.strength-item:nth-child(even) {
  direction: rtl;
}

.strength-item:nth-child(even)>* {
  direction: ltr;
}

.strength-visual {
  position: relative;
}

.strength-screen-frame {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44, 36, 22, 0.08), 0 0 0 1px var(--border-gray);
  max-width: 520px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.strength-item:hover .strength-screen-frame {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 60px rgba(44, 36, 22, 0.12), 0 0 0 1px var(--border-gray);
}

.strength-screen-dots {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #f0f1f3;
  border-bottom: 1px solid #e2e4e8;
}

.strength-screen-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.strength-screen-dots span:nth-child(1) {
  background: #ff5f57;
}

.strength-screen-dots span:nth-child(2) {
  background: #febc2e;
}

.strength-screen-dots span:nth-child(3) {
  background: #28c840;
}

.strength-screen-frame img {
  width: 100%;
  display: block;
}

/* キャラクターイラストフレーム */
.strength-chara-frame {
  position: relative;
  background: #faf6f0;
  border: 3px solid #2c2520;
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: 6px 6px 0 rgba(44, 37, 32, 0.15);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.strength-item:hover .strength-chara-frame {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 10px 10px 0 rgba(44, 37, 32, 0.2);
}

.strength-chara-frame img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.strength-item:hover .strength-chara-frame img {
  transform: scale(1.03);
}

.strength-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(30, 77, 120, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.strength-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strength-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: var(--sumi);
  color: var(--kinari);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-en);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.15);
}

.strength-content h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sumi);
  letter-spacing: -0.01em;
}

.section-wa-dark .strength-content h3 {
  color: var(--kinari);
}

.strength-content h3 .text-accent {
  color: var(--shu);
}

.strength-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mid-gray);
  font-weight: 400;
}

.section-wa-dark .strength-content p {
  color: rgba(247, 245, 240, 0.55);
}

.section-wa-dark .strength-number {
  background: var(--shu);
  color: #141414;
  box-shadow: 0 8px 24px rgba(196, 162, 101, 0.25);
}

.strength-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.strength-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--ai-iro);
  font-weight: 500;
}

.strength-tag svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.section-wa-dark .strength-tag {
  background: rgba(196, 162, 101, 0.1);
  border-color: rgba(196, 162, 101, 0.25);
  color: var(--gold);
}

/* ===== MECHANISM GRID (HOW IT WORKS) ===== */
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mechanism-step-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mechanism-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 162, 101, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.mechanism-step-highlight {
  border-color: var(--ai-iro);
  box-shadow: 0 4px 24px rgba(30, 77, 120, 0.15);
}

.mechanism-step-highlight:hover {
  border-color: var(--ai-iro);
  box-shadow: 0 12px 32px rgba(30, 77, 120, 0.25);
}

.mechanism-step-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  background: #000;
}

.mechanism-step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mechanism-step-card:hover .mechanism-step-img-wrap img {
  transform: scale(1.05);
}

.mechanism-step-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mechanism-step-number {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.mechanism-step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kinari);
  margin-bottom: 12px;
}

.mechanism-step-content p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
}

.mechanism-step-content p strong {
  color: var(--gold);
}

/* ===== FEATURES (新デザイン: 2カラム) ===== */
.features-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.features-col {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.features-col:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.features-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.features-col-header-ai {
  background: var(--sumi);
}

.features-col-header-crm {
  background: var(--ai-iro);
}

.features-col-body {
  padding: 8px 24px 24px;
}

.feature-mini {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-gray);
}

.feature-mini:last-child {
  border-bottom: none;
}

.feature-mini-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 2px;
  flex-shrink: 0;
}

.feature-mini-icon svg {
  stroke: var(--ai-iro);
  width: 20px;
  height: 20px;
}

.feature-mini h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.feature-mini p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ===== RESULTS ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.result-card {
  text-align: center;
  padding: 48px 28px;
  background: linear-gradient(145deg, rgba(16, 24, 36, 0.5), rgba(16, 24, 36, 0.2));
  border: 1px solid rgba(44, 64, 96, 0.3);
  border-radius: 4px;
  transition: var(--transition);
}

.result-card:hover {
  background: linear-gradient(145deg, rgba(16, 24, 36, 0.8), rgba(16, 24, 36, 0.4));
  border-color: rgba(196, 162, 101, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(16, 24, 36, 0.8);
}

.result-number {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--kinari);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--kinari), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-unit {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 700;
  -webkit-text-fill-color: var(--gold);
}

.result-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--kinari);
  margin-bottom: 12px;
}

.result-card p {
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.4);
  line-height: 1.8;
}

/* ===== COMPARISON ===== */
.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  background: var(--white);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  background: var(--sumi);
}

.comparison-header .comparison-col {
  padding: 18px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--kinari);
}

.comparison-header .comparison-col-us {
  background: rgba(30, 77, 120, 0.3);
  color: var(--gold);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  border-bottom: 1px solid var(--border-gray);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-col {
  padding: 16px 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.comparison-col-item {
  font-weight: 500;
  color: var(--dark-gray);
}

.comparison-col-other {
  color: var(--mid-gray);
  justify-content: center;
}

.comparison-col-us {
  color: var(--ai-iro);
  font-weight: 600;
  justify-content: center;
  background: var(--accent-dim);
}

/* ===== PRICING ===== */
/* -- 2 column layout -- */
.pricing-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 48px auto 0;
}

@media (max-width: 768px) {
  .pricing-2col {
    grid-template-columns: 1fr;
  }
}

.p2-card {
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.p2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(44, 36, 22, 0.1);
}

.p2-header {
  background: linear-gradient(135deg, #1a1714 0%, #2c2520 100%);
  padding: 40px 32px;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p2-header-unit {
  background: linear-gradient(135deg, #2c2520 0%, #3a332c 100%);
}

.p2-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #1a1714;
  background: var(--gold);
  padding: 4px 16px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.p2-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.p2-price {
  font-family: var(--font-en);
  font-size: 3.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.p2-yen {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  vertical-align: top;
  position: relative;
  top: 8px;
  margin-right: 2px;
}

.p2-per {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 4px;
}

.p2-per small {
  font-size: 0.8rem;
  margin-left: 4px;
}

.p2-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.p2-tagline svg {
  stroke: var(--gold);
}

.p2-body {
  padding: 28px 28px 32px;
}

/* Unlimited chips */
.p2-unlimited-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.p2-unlimited-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(196, 162, 101, 0.08);
  border: 1px solid rgba(196, 162, 101, 0.25);
  padding: 7px 16px;
  border-radius: 6px;
}

.p2-unlimited-chip svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Feature tags */
.p2-feat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}

.p2-feat-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.p2-feat-tags span {
  font-size: 0.78rem;
  color: #555;
  background: #f8f7f5;
  border: 1px solid #e8e4de;
  padding: 6px 13px;
  border-radius: 4px;
  transition: var(--transition);
}

.p2-feat-tags span:hover {
  background: #f0ece3;
  border-color: rgba(196, 162, 101, 0.3);
  color: #333;
}

/* Tier table */
.p2-tier-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p2-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #f8f7f5;
  border: 1px solid #e8e4de;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.p2-tier-row:hover {
  background: #f0ece3;
  border-color: rgba(196, 162, 101, 0.3);
}

.p2-tier-range {
  font-size: 1.05rem;
  color: #555;
  font-weight: 600;
}

.p2-tier-price {
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1a1a;
}

.p2-tier-price small {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  font-weight: 500;
  color: #999;
  margin-left: 2px;
}

.p2-tier-best {
  border-color: rgba(196, 162, 101, 0.4);
  background: #faf7f0;
}

.p2-tier-best .p2-tier-price {
  color: #8b6914;
}

.p2-tier-badge {
  position: absolute;
  top: -9px;
  left: 20px;
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: #1a1714;
  padding: 2px 12px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(196, 162, 101, 0.25);
}

/* CTA */
.p2-cta {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: center;
}

.p2-cta .btn {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.p2-cta-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #999;
}


/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-jp);
  cursor: pointer;
  text-align: left;
  color: var(--dark-gray);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--ai-iro);
}

.faq-q-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--dark-gray);
  color: var(--kinari);
  border-radius: 0px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mid-gray);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 24px 72px;
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.9;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.06);
}

/* ===== CLOSING CTA ===== */
.closing {
  text-align: center;
  padding: 160px 0;
}

/* 金箔のライン装飾 */
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(196, 162, 101, 0.3) 30%,
      rgba(196, 162, 101, 0.5) 50%,
      rgba(196, 162, 101, 0.3) 70%,
      transparent);
}

.closing-bg-lines {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.closing-character-wrapper {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.closing-character {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  height: 85%;
  width: auto;
  opacity: 0.04;
  -webkit-mask-image: radial-gradient(ellipse at center bottom, black 20%, transparent 65%);
  mask-image: radial-gradient(ellipse at center bottom, black 20%, transparent 65%);
  filter: grayscale(1) brightness(2);
}

.closing .container {
  position: relative;
  z-index: 1;
}

.closing-message {
  margin-bottom: 56px;
}

.closing-quote {
  font-family: var(--font-jp);
  font-size: 1.15rem;
  color: rgba(247, 245, 240, 0.35);
  line-height: 2.2;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.closing-title {
  font-family: var(--font-jp);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--kinari);
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.closing-brand {
  font-size: 1.2rem;
  color: rgba(247, 245, 240, 0.5);
  margin-top: 24px;
}

.closing-brand strong {
  color: var(--gold);
  font-family: var(--font-brush);
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-shadow: none;
}

.closing-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.closing-cta .btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}

.closing-cta .btn-primary:hover {
  background: #d4af6e;
}

.closing-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(247, 245, 240, 0.25);
}

/* ===== CORE BG ===== */
.core-bg-lines {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

/* ===== SERVICE PREVIEW ===== */
.service-preview {
  margin-top: 64px;
  text-align: center;
}

.service-preview-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* MECHANISM STORY (HOW IT WORKS) */
.mechanism-story-frame {
  position: relative;
  background: #faf6f0;
  border: 3px solid #2c2520;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(44, 37, 32, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mechanism-story-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 10px 10px 0 rgba(44, 37, 32, 0.2);
}

.mechanism-story-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mechanism-story-frame:hover .mechanism-story-img {
  transform: scale(1.03);
}

.service-preview-frame {
  background: var(--sumi);
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(44, 36, 22, 0.15),
    0 0 0 1px var(--border-gray);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.service-preview-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 32px 80px rgba(44, 36, 22, 0.2),
    0 0 0 1px var(--border-gray);
}

.service-preview-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(245, 240, 232, 0.06);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.service-preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.service-preview-dots span:nth-child(1) {
  background: #ff5f57;
}

.service-preview-dots span:nth-child(2) {
  background: #ffbd2e;
}

.service-preview-dots span:nth-child(3) {
  background: #28c840;
}

.service-preview-img {
  width: 100%;
  height: auto;
  display: block;
}

.service-preview-caption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  padding: 56px 0 28px;
  color: rgba(247, 245, 240, 0.35);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(196, 162, 101, 0.2) 30%,
      rgba(196, 162, 101, 0.4) 50%,
      rgba(196, 162, 101, 0.2) 70%,
      transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(247, 245, 240, 0.06);
}

.footer-brand p {
  font-size: 0.82rem;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  text-align: center;
  padding-top: 28px;
  font-size: 0.72rem;
  color: rgba(247, 245, 240, 0.2);
}

/* ========================================
   SCREEN GALLERY
   ======================================== */
.screen-gallery {
  margin-top: 80px;
}

.screen-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.screen-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  background: rgba(245, 240, 232, 0.05);
  color: rgba(245, 240, 232, 0.55);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-jp);
  letter-spacing: 0.02em;
}

.screen-tab:hover {
  background: rgba(245, 240, 232, 0.1);
  color: rgba(245, 240, 232, 0.9);
  border-color: rgba(245, 240, 232, 0.3);
}

.screen-tab.active {
  background: var(--ai-iro);
  color: var(--kinari);
  border-color: var(--ai-iro);
  box-shadow: 0 4px 20px rgba(30, 77, 120, 0.3);
}

.screen-tab svg {
  opacity: 0.75;
  flex-shrink: 0;
}

.screen-tab.active svg {
  opacity: 1;
}

.screen-gallery-frame {
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(44, 36, 22, 0.2),
    0 0 0 1px rgba(245, 240, 232, 0.08);
  position: relative;
}

.screen-gallery-dots {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.screen-gallery-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.screen-gallery-dots span:nth-child(1) {
  background: #ff5f56;
}

.screen-gallery-dots span:nth-child(2) {
  background: #ffbd2e;
}

.screen-gallery-dots span:nth-child(3) {
  background: #27c93f;
}

.screen-gallery-panels {
  position: relative;
  min-height: 200px;
}

.screen-panel {
  display: none;
  animation: screenFadeIn 0.4s ease;
}

.screen-panel.active {
  display: block;
}

@keyframes screenFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.screen-gallery-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.screen-gallery-frame:hover .screen-gallery-img {
  transform: scale(1.01);
}

.screen-panel {
  position: relative;
}

.screen-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, rgba(26, 31, 46, 0.85));
  pointer-events: none;
  z-index: 2;
}

.screen-gallery-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin-top: 20px;
  letter-spacing: 0.02em;
}

.screen-blur {
  transition: transform 0.5s ease;
}

.service-preview-frame:hover .screen-blur {
  transform: scale(1.01);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }

  :root {
    --section-padding: 80px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-title-luxury-line {
    font-size: 2rem;
    letter-spacing: 0.04em;
    white-space: normal;
  }

  .hero-content-luxury {
    padding: 0 8px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-desc-luxury {
    font-size: 0.82rem;
    line-height: 2.2;
  }

  .hero-subtitle-luxury {
    font-size: 0.95rem;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.active {
    transform: translateY(0);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-catch {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }

  .hero-character {
    height: 340px;
  }

  .hero-metric {
    display: none;
  }

  .hero-title-main {
    font-size: 2rem;
    align-items: center;
  }

  .hero-title-sub {
    font-size: 1rem;
  }

  .hero-trust {
    justify-content: center;
    gap: 16px;
  }

  .hero-badges {
    flex-direction: column;
    gap: 16px;
    padding: 20px 28px;
  }

  .hero-badge-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }

  .hero-badge-accent {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .manga-panels {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .strength-showcase {
    gap: 60px;
    margin-top: 40px;
  }

  .strength-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .strength-item:nth-child(even) {
    direction: ltr;
  }

  .strength-content {
    display: contents;
  }

  .strength-content .strength-number {
    order: 1;
    margin: 0 auto;
  }

  .strength-content h3 {
    order: 2;
    font-size: 1.3rem;
  }

  .strength-visual {
    order: 3;
  }

  .strength-chara-frame {
    max-width: 100%;
    margin: 0 auto;
  }

  .strength-content p {
    order: 4;
  }

  .strength-content .strength-tags {
    order: 5;
    justify-content: center;
  }

  .mechanism-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-two-col {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-number {
    font-size: 2.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .closing {
    padding: 80px 0;
  }

  .closing-title {
    font-size: 1.5rem;
  }

  .closing-character-wrapper {
    display: none;
  }

  .closing-cta {
    flex-direction: column;
    align-items: center;
  }

  .screen-gallery {
    margin-top: 48px;
  }

  .screen-gallery-tabs {
    gap: 6px;
    margin-bottom: 20px;
  }

  .screen-tab {
    padding: 8px 14px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .screen-tab svg {
    width: 12px;
    height: 12px;
  }

  .screen-gallery-frame {
    border-radius: 12px;
  }

  .screen-gallery-dots {
    padding: 10px 14px;
    gap: 5px;
  }

  .screen-gallery-dots span {
    width: 8px;
    height: 8px;
  }
}

/* ========== INTEGRATION FEATURE ========== */
.integration-feature {
  max-width: 960px;
  margin: 100px auto 0;
  background: var(--kinari);
  border: 1px solid rgba(44, 37, 32, 0.1);
  border-radius: 4px;
  padding: 56px;
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 56px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.feature-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  margin-bottom: 24px;
}

.integration-title {
  font-family: var(--font-jp);
  color: var(--sumi);
  line-height: 1.4;
  margin-bottom: 32px;
}

.integration-title .title-line1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-gray);
  display: inline-block;
  white-space: nowrap;
}

.integration-title .title-line2 {
  font-size: 2.1rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  /* 赤などアクセントカラーに */
  white-space: nowrap;
}

.integration-desc p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.integration-desc .text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.integration-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(44, 37, 32, 0.15);
}

.integration-note p {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 4px;
  line-height: 1.5;
}

.integration-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
  gap: 12px;
  align-content: center;
}

.software-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 10px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sumi);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  height: 100%;
}

.software-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.primary-badge {
  color: var(--accent);
  border-color: rgba(200, 75, 49, 0.2);
  background: rgba(200, 75, 49, 0.02);
}

@media (max-width: 991px) {
  .integration-feature {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }
}

/* ========== CREATIVE UI MOCKUP ========== */
.creative-ui-mockup {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #f7f9fc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.creative-ui-mockup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 2px;
  background: rgba(45, 120, 255, 0.4);
  transform: translate(-50%, -50%) rotate(-15deg);
  z-index: 1;
  pointer-events: none;
  border-top: 1px dashed #2d78ff;
}

.mockup-header {
  height: 32px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.mockup-header i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mockup-body {
  display: flex;
  padding: 24px;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.mockup-receipt {
  flex: 1;
  background: #fff;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid rgba(44, 37, 32, 0.1);
  font-family: monospace, sans-serif;
}

.receipt-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 8px;
}

.receipt-line {
  font-size: 0.75rem;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
}

.highlight-target {
  font-weight: 700;
}

.highlight-text {
  display: inline-block;
  background: rgba(45, 120, 255, 0.15);
  border: 1.5px solid #2d78ff;
  border-radius: 2px;
  padding: 0 4px;
  color: #1a56cc;
}

.receipt-barcode {
  margin-top: 16px;
  height: 24px;
  background: repeating-linear-gradient(90deg,
      #333,
      #333 2px,
      transparent 2px,
      transparent 4px,
      #333 4px,
      #333 5px,
      transparent 5px,
      transparent 8px);
  opacity: 0.5;
}

.mockup-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-scan {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: #10b981;
  padding: 4px 8px;
  border-radius: 12px;
  align-self: flex-start;
  margin-bottom: 4px;
}

.panel-item {
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.panel-label {
  font-size: 0.65rem;
  color: #666;
  margin-bottom: 4px;
}

.panel-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.highlight-link {
  border-color: #2d78ff;
  box-shadow: 0 0 0 1px #2d78ff;
  background: rgba(45, 120, 255, 0.02);
}

@media (max-width: 991px) {
  .mockup-body {
    flex-direction: column;
  }

  .creative-ui-mockup::before {
    display: none;
  }
}

/* ========== INTERACTIVE DEMO TABS ========== */
.demo-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.demo-tabs {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-tab {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.demo-tab svg {
  width: 16px;
  height: 16px;
}

.demo-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.demo-tab.active {
  background: #3470cc;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.demo-window {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.demo-window-header {
  height: 38px;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid #ccc;
}

.demo-window-header i {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-window-header i:nth-child(1) {
  background: #ff5f56;
}

.demo-window-header i:nth-child(2) {
  background: #ffbd2e;
}

.demo-window-header i:nth-child(3) {
  background: #27c93f;
}

.demo-content {
  display: none;
  flex: 1;
}

.demo-content.active {
  display: flex;
  flex-direction: column;
}

.demo-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #888;
  gap: 16px;
  background: #f9f9f9;
}

.demo-placeholder svg {
  width: 48px;
  height: 48px;
  color: #ccc;
}

/* ================= 伝票一覧 (AI仕訳) モックアップ ================= */
.demo-list-layout {
  display: flex;
  flex: 1;
  background: #fff;
}

.demo-list-sidebar {
  width: 200px;
  background: #fcfcfc;
  border-right: 1px solid #eee;
  padding: 20px 0;
}

.demo-list-logo {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.demo-list-menu {
  padding: 12px 24px;
  font-size: 0.85rem;
  color: #555;
}

.demo-list-menu.active {
  background: #edf2ff;
  color: #2d78ff;
  font-weight: 600;
}

.demo-list-main {
  flex: 1;
  padding: 24px 32px;
}

.demo-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.demo-list-head h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.demo-list-btn {
  border: 1px solid #ccc;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.demo-list-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.demo-list-filter input,
.demo-list-filter select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
  min-width: 150px;
}

.demo-list-table {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.demo-list-th {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1.5fr;
  background: #f9f9f9;
  padding: 12px 16px;
  font-size: 0.75rem;
  color: #666;
  border-bottom: 1px solid #eee;
}

.demo-list-td {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1.5fr;
  padding: 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid #f1f1f1;
  align-items: center;
}

.tag-green,
.tag-blue {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
}

.tag-green {
  background: #d1fae5;
  color: #065f46;
}

.tag-blue {
  background: #e0e7ff;
  color: #3730a3;
}

/* ========== DASHBOARD MOCKUP (目視チェック画面) ========== */
.dashboard-mockup {
  display: flex;
  background: #f6f8fb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-top: 40px;
  color: #333;
}

.dash-sidebar {
  width: 200px;
  background: #f9f9f9;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.dash-logo {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.dash-menu {
  padding: 16px 0;
}

.dash-menu-title {
  font-size: 0.7rem;
  color: #888;
  padding: 8px 24px;
}

.dash-menu-item {
  font-size: 0.85rem;
  padding: 10px 24px;
  color: #444;
  cursor: pointer;
}

.dash-menu-item.active {
  background: #e6edff;
  color: #1a56cc;
  font-weight: 600;
}

.dash-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-header-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-status-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.dash-status-type {
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
}

.dash-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
}

.dash-tag.blue {
  background: #e0e7ff;
  color: #3730a3;
}

.dash-tag.green {
  background: #d1fae5;
  color: #065f46;
}

.dash-tag.lightblue {
  background: #e0f2fe;
  color: #0369a1;
}

.dash-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-form-group label {
  font-size: 0.7rem;
  color: #666;
}

.dash-input {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #111;
  background: #fff;
}

.dash-split {
  display: flex;
  gap: 20px;
}

.dash-viewer-col {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.dash-viewer-header {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.75rem;
  color: #666;
}

.dash-page-badge {
  background: #e0e7ff;
  color: #3730a3;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 4px;
}

.dash-receipt-scroll {
  background: #f1f5f9;
  padding: 16px;
  flex: 1;
}

.dash-receipt-img {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: monospace;
  font-size: 0.7rem;
  color: #333;
}

.dash-mock-text-area {
  padding: 16px;
  border-bottom: 1px dashed #ccc;
  opacity: 0.7;
}

.dash-receipt-highlight {
  padding: 16px;
  border: 2px solid rgba(45, 120, 255, 0.4);
  background: rgba(45, 120, 255, 0.05);
}

.dash-journal-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.dash-balance {
  font-size: 0.75rem;
  font-weight: 700;
  background: #d1fae5;
  color: #065f46;
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-table-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px;
}

.dash-table-row {
  display: grid;
  grid-template-columns: 20px 2fr 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.75rem;
}

.dash-btn-primary {
  background: #2d78ff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
}

@media (max-width: 991px) {
  .dashboard-mockup {
    flex-direction: column;
  }

  .dash-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .dash-menu {
    display: flex;
    overflow-x: auto;
  }

  .dash-menu-title {
    display: none;
  }

  .dash-split {
    flex-direction: column;
  }

  .dash-form-row {
    grid-template-columns: 1fr;
  }

  .dash-table-header,
  .dash-table-row {
    grid-template-columns: 1fr;
  }

  .demo-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========== MOCKUP UI FOR SCREEN GALLERY ========== */
.dashboard-mockup {
  display: flex;
  background: #f6f8fb;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  width: 100%;
  height: 100%;
  min-height: 480px;
  text-align: left;
}

.dash-sidebar {
  width: 200px;
  background: #f9f9f9;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.dash-logo {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.dash-menu {
  padding: 16px 0;
}

.dash-menu-title {
  font-size: 0.7rem;
  color: #888;
  padding: 8px 24px;
}

.dash-menu-item {
  font-size: 0.85rem;
  padding: 10px 24px;
  color: #444;
  cursor: pointer;
}

.dash-menu-item.active {
  background: #e6edff;
  color: #1a56cc;
  font-weight: 600;
}

.dash-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f6f8fb;
}

.dash-header-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-status-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.dash-status-type {
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
}

.dash-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
}

.dash-tag.blue {
  background: #e0e7ff;
  color: #3730a3;
}

.dash-tag.green {
  background: #d1fae5;
  color: #065f46;
}

.dash-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-form-group label {
  font-size: 0.7rem;
  color: #666;
}

.dash-input {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #111;
  background: #fff;
}

.dash-split {
  display: flex;
  gap: 20px;
  flex: 1;
}

.dash-viewer-col {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.dash-viewer-header {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.75rem;
  color: #666;
}

.dash-page-badge {
  background: #e0e7ff;
  color: #3730a3;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 4px;
}

.dash-receipt-scroll {
  background: #f1f5f9;
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.dash-receipt-img {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: monospace;
  font-size: 0.7rem;
  color: #333;
}

.dash-mock-text-area {
  padding: 16px;
  border-bottom: 1px dashed #ccc;
  opacity: 0.7;
}

.dash-receipt-highlight {
  padding: 16px;
  border: 2px solid rgba(45, 120, 255, 0.4);
  background: rgba(45, 120, 255, 0.05);
}

.dash-journal-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.dash-balance {
  font-size: 0.75rem;
  font-weight: 700;
  background: #d1fae5;
  color: #065f46;
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.dash-table-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-table-row {
  display: grid;
  grid-template-columns: 20px 1fr 1fr;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
}

.dash-btn-primary {
  background: #2d78ff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
}

@media (max-width: 991px) {
  .dashboard-mockup {
    flex-direction: column;
    min-height: auto;
  }

  .dash-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

/* ========== 1.5 INTEGRATIONS BANNER ========== */
.integrations-banner {
  background: var(--kinari);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-gray);
  text-align: center;
}

.integrations-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.integrations-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.integration-badge {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sumi);
  box-shadow: 0 4px 12px rgba(44, 36, 22, 0.05);
}

.integrations-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ========== TARGET BENEFITS ========== */
.benefit-targets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.target-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
}

.target-card.boss {
  border-top: 4px solid var(--shu);
}

.target-card.staff {
  border-top: 4px solid var(--ai-iro);
}

.target-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.target-card.boss .target-badge {
  background: rgba(196, 162, 101, 0.1);
  color: var(--shu);
}

.target-card.staff .target-badge {
  background: rgba(30, 77, 120, 0.1);
  color: var(--ai-iro);
}

.target-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sumi);
  margin-bottom: 24px;
}

.target-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.target-list li {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.target-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.target-list li strong {
  color: var(--dark-gray);
}

/* ========== FLOW STEPS ========== */
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.flow-step {
  flex: 1;
  background: var(--kinari);
  border: 1px solid var(--border-gray);
  padding: 32px 24px;
  border-radius: 6px;
  text-align: center;
  position: relative;
}

.flow-num {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.flow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sumi);
  margin-bottom: 16px;
}

.flow-desc {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.flow-arrow {
  color: var(--gold);
  flex-shrink: 0;
}

/* ========== SECURITY CARD ========== */
.security-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 162, 101, 0.2);
  padding: 40px;
  border-radius: 8px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2);
}

.security-icon {
  flex-shrink: 0;
  background: rgba(196, 162, 101, 0.1);
  padding: 16px;
  border-radius: 50%;
}

.security-title {
  font-size: 1.35rem;
  color: var(--kinari);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
}

.security-desc {
  color: rgba(247, 245, 240, 0.7);
  font-size: 0.95rem;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .benefit-targets {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }

  .security-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ========== 8. SCREEN GALLERY DESCRIPTIONS ========== */
.screen-gallery-descriptions {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  padding: 24px 32px;
  box-shadow: 0 4px 12px rgba(44, 36, 22, 0.05);
  text-align: left;
  min-height: 120px;
}

.screen-desc {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.screen-desc.active {
  display: block;
}

.screen-desc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sumi);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-desc-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--ai-iro);
  border-radius: 2px;
}

.screen-desc p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ========== MICRO ANIMATIONS ENHANCEMENTS ========== */
/* 墨が滲むエフェクトのアニメーション追加 */
.hero-sumi-line-left,
.hero-sumi-line-right {
  filter: blur(2px);
  transition: filter 1s ease, opacity 2s ease;
}

.hero:hover .hero-sumi-line-left,
.hero:hover .hero-sumi-line-right {
  filter: blur(0px);
}

/* 金箔のきらめき効果をより複雑に（ホバー時に動きを加速） */
.hero:hover .hero-gold-particles span {
  animation-duration: 4s;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

/* カード要素の浮遊アニメーションの洗練 */
.target-card,
.flow-step,
.features-col {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.target-card:hover,
.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.1);
  border-color: rgba(196, 162, 101, 0.3);
}

@media (max-width: 768px) {
  .screen-gallery-descriptions {
    padding: 20px;
  }
}

/* ========== 9. VERTICAL MESSAGE & ACCENTS ========== */
.tategaki-accent {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-jp);
  color: rgba(250, 248, 244, 0.08);
  /* Dark sections (faint white) */
  font-size: 3.5rem;
  letter-spacing: 0.6em;
  font-weight: 300;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}

.tategaki-accent.dark-text {
  color: rgba(44, 36, 22, 0.03);
  /* Light sections (faint black) */
}

.tategaki-accent.left-top {
  left: 4%;
  top: 10%;
}

.tategaki-accent.right-bottom {
  right: 4%;
  bottom: 10%;
}

.tategaki-accent.right-center {
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
}

.tategaki-accent.left-center {
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .tategaki-accent {
    font-size: 2.2rem;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .tategaki-accent {
    display: none;
  }
}

.hero-vertical-message {
  position: absolute;
  top: 15%;
  right: 12%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-jp);
  color: rgba(250, 248, 244, 0.45);
  font-size: 2.5rem;
  letter-spacing: 0.8em;
  line-height: 2.2;
  z-index: 10;
  pointer-events: none;
  animation: fadeInSlow 3s ease 1s both;
  font-weight: 300;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-vertical-message p {
  margin-left: 0.5em;
}

@keyframes fadeInSlow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .hero-vertical-message {
    display: none;
  }
}

/* ========== 10. SIMULATOR ========== */
.simulator-wrapper {
  background: #faf8f4;
  background-image: linear-gradient(180deg, #faf8f4 0%, rgba(28, 42, 61, 0.03) 100%);
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0 60px;
  box-shadow: 0 8px 32px rgba(16, 24, 36, 0.08);
  border: 1px solid var(--border-gray);
  position: relative;
  overflow: hidden;
}

.simulator-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #e8d098);
}

.simulator-title {
  font-size: 1.5rem;
  font-family: var(--font-jp);
  color: var(--sumi);
  text-align: center;
  margin-bottom: 8px;
  font-weight: 700;
}

.simulator-desc {
  text-align: center;
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.simulator-body {
  display: flex;
  gap: 40px;
  align-items: center;
}

.simulator-controls {
  flex: 1;
}

.control-group {
  margin-bottom: 24px;
}

.control-group label {
  display: block;
  font-weight: 700;
  color: var(--sumi);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.range-current {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  margin-top: -10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: var(--border-gray);
  border-radius: 2px;
}

.simulator-results-panel {
  flex: 1;
  background: rgba(247, 245, 240, 0.5);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gray);
}

.sim-result-box {
  text-align: center;
  width: 100%;
}

.sim-label {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 4px;
  font-weight: 700;
}

.sim-value {
  color: var(--sumi);
}

.sim-value .num {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-en);
}

.sim-value .unit {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 4px;
}

.sim-highlight .sim-label {
  color: var(--accent);
}

.sim-highlight .sim-value {
  color: var(--accent);
}

.sim-highlight .sim-value .num {
  font-size: 3.5rem;
}

@media (max-width: 768px) {
  .simulator-body {
    flex-direction: column;
  }
}

/* ========== 11. VOICE ========== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.voice-card {
  background: rgba(250, 248, 244, 0.05);
  border: 1px solid rgba(234, 179, 8, 0.2);
  padding: 32px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease;
}

.voice-card:hover {
  transform: translateY(-5px);
  background: rgba(250, 248, 244, 0.08);
}

.voice-header {
  border-bottom: 1px dashed rgba(250, 248, 244, 0.2);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.voice-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voice-role {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
}

.voice-scale {
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0.8;
}

.voice-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 24px;
  font-style: italic;
}

.voice-client {
  text-align: right;
  font-family: var(--font-en);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

/* ========== 12. SUPPORT ========== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.support-item {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(16, 24, 36, 0.04);
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(16, 24, 36, 0.08);
  border-color: var(--kin);
}

.support-icon {
  width: 64px;
  height: 64px;
  background: rgba(234, 179, 8, 0.1);
  color: var(--kin);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.support-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--sumi);
}

.support-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--mid-gray);
  text-align: justify;
}

/* ========== SECURITY BADGES ========== */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(250, 248, 244, 0.1);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(250, 248, 244, 0.2);
  color: var(--white);
}

.badge-icon {
  color: var(--kin);
  display: flex;
}

@media (max-width: 991px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .security-badges {
    flex-direction: column;
  }
}