* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  background: #0f0f1a;
  color: #e0e0e0;
}

/* ヘッダー */
header {
  background: #1a1a2e;
  border-bottom: 1px solid #2a2a4a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #9d8eff;
  letter-spacing: 1px;
}

.logo-img {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-img span {
  font-size: 20px;
  font-weight: bold;
  color: #9d8eff;
  letter-spacing: 1px;
}

nav a {
  color: #aaa;
  text-decoration: none;
  margin-left: 24px;
  font-size: 14px;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

/* ハンバーガーボタン（PC非表示） */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #aaa;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 1px solid #2a2a4a;
    padding: 12px 0;
    z-index: 99;
  }
  nav.open {
    display: flex;
    flex-direction: column;
  }
  nav a {
    margin-left: 0;
    padding: 12px 24px;
    font-size: 15px;
    border-bottom: 1px solid #2a2a4a;
  }
  nav a:last-child {
    border-bottom: none;
  }
  .header-inner {
    position: relative;
  }
}

/* ヒーロー */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hero h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 16px;
}

.hero-tag {
  background: rgba(124, 111, 247, 0.15);
  border: 1px solid #7c6ff7;
  color: #7c6ff7;
  font-size: 14px;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.hero-tag-sep {
  color: #444;
  font-size: 16px;
}

@media (max-width: 600px) {
  .hero-tag { font-size: 12px; padding: 4px 12px; }
  .hero-tag-sep { font-size: 14px; }
  .hero-catchcopy { font-size: 32px !important; letter-spacing: 0.02em !important; line-height: 1.3 !important; }
  .hero-sub-large1 { font-size: 15px !important; line-height: 1.5 !important; }
  .hero-sub-large2 { font-size: 17px !important; line-height: 1.4 !important; }
  .hero-news { font-size: 11px !important; padding: 8px 14px !important; }
}

.hero p {
  font-size: 16px;
  color: #aaa;
}

.hero-sub {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 10px;
  line-height: 1.7;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hero-keywords span {
  font-size: 11px;
  color: #475569;
  background: #0f172a;
  border: 1px solid #1e293b;
  padding: 3px 10px;
  border-radius: 4px;
}

.hero-news {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid #f59e0b;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero .hero-catchcopy {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-shadow: 0 0 40px rgba(124, 111, 247, 0.4);
}

@media (max-width: 600px) {
  .hero .hero-catchcopy {
    font-size: 24px;
  }
}

/* 購入前の確認事項 */
.purchase-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 12px 20px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 13px;
}

.purchase-reassurance span {
  color: #94a3b8;
}

.purchase-reassurance span:last-child {
  color: #94a3b8;
}

/* まずはこれ */
.quickstart-section {
  background: #0f0f1a;
  padding: 48px 24px;
  border-bottom: 1px solid #1e1e3a;
}

.qs-title {
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
}

.qs-desc {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 32px;
}

.quickstart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.quickstart-card {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 24px 20px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quickstart-card:hover {
  border-color: #7c6ff7;
  transform: translateY(-2px);
}

.qs-icon {
  font-size: 28px;
}

.qs-label {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 600;
  line-height: 1.4;
}

.qs-rec {
  font-size: 13px;
  color: #7c6ff7;
  font-weight: 700;
}

.qs-rec::before {
  content: "→ ";
}

.quickstart-card--featured {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #1a1500 0%, #1f1a00 100%);
  position: relative;
}

.quickstart-card--featured::before {
  content: "おすすめ";
  position: absolute;
  top: -10px;
  left: 16px;
  background: #f59e0b;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 4px;
}

.quickstart-card--featured .qs-rec {
  color: #f59e0b;
}

/* プロフィール ストーリー */
.profile-story {
  background: #0f172a;
  border-left: 3px solid #7c6ff7;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  text-align: left;
}

.profile-story p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.8;
}

/* 製品一覧 */
.products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.products h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  display: block;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #7c6ff7;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 12px;
}

.price {
  display: inline-block;
  background: #5b4ec7;
  color: #fff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-free {
  display: inline-block;
  background: #14532d;
  color: #4ade80;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}

.section-desc {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-bottom: 32px;
  margin-top: -16px;
}

.product-grid-sm {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Fintokei 特別コーナー */
.fintokei-corner {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 100%);
  border: 1px solid #1e4080;
  border-radius: 16px;
  padding: 28px 28px 20px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.fintokei-corner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #1a6dcc, #4db8ff, #1a6dcc);
}

.fintokei-corner-header {
  margin-bottom: 16px;
}

.fintokei-corner-badge {
  display: inline-block;
  background: #4db8ff22;
  border: 1px solid #4db8ff66;
  color: #4db8ff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.fintokei-corner-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.fintokei-corner-desc {
  font-size: 14px;
  color: #aac8e8;
  line-height: 1.6;
}

.fintokei-rule-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.fintokei-rule-badge {
  font-size: 11px;
  background: #0d2040;
  border: 1px solid #1e4080;
  color: #88bbdd;
  padding: 3px 10px;
  border-radius: 8px;
}

.fintokei-grid {
  margin-bottom: 16px;
}

.fintokei-card {
  border-color: #1e4080 !important;
  background: #0d1f3c !important;
}

.fintokei-card:hover {
  border-color: #4db8ff !important;
  transform: translateY(-4px);
}

.fintokei-card-icon {
  font-size: 40px;
  text-align: center;
  padding: 20px 0 8px;
  background: #0a1628;
}

.price-fintokei {
  display: inline-block;
  background: #1a4d8a;
  color: #4db8ff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-top: 8px;
  border: 1px solid #4db8ff44;
}

.fintokei-corner-note {
  font-size: 12px;
  color: #557799;
  text-align: center;
  padding-top: 4px;
}

.webview-free-title {
  font-size: 18px;
  color: #aaa;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 4px;
}

/* WebViewとは */
.webview-about {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.webview-about h3 {
  font-size: 18px;
  color: #7c6ff7;
  margin-bottom: 12px;
}

.webview-about > p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.webview-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.webview-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.webview-point-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.webview-point strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}

.webview-point p {
  color: #999;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* 対応プラットフォーム */
.webview-platform-box {
  background: #13131f;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.webview-platform-title,
.webview-value-title {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 14px;
}

.platform-lead {
  color: #aaa;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.platform-lead strong {
  color: #7c6ff7;
}

.webview-platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.webview-platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 10px 16px;
  min-width: 200px;
}

.webview-platform-item strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.webview-platform-item span {
  font-size: 12px;
  color: #888;
}

.platform-check {
  font-size: 16px;
  color: #4ade80;
  font-weight: bold;
  flex-shrink: 0;
}

.platform-cross {
  font-size: 16px;
  color: #555;
  font-weight: bold;
  flex-shrink: 0;
}

.webview-platform-item.unavail strong,
.webview-platform-item.unavail span {
  color: #555;
}

.platform-note {
  font-size: 12px;
  color: #888888;
  margin: 0;
}

/* WebViewの利用価値 */
.webview-value-box {
  background: #13131f;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.webview-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.webview-value-item {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 16px;
}

.webview-value-item strong {
  display: block;
  color: #7c6ff7;
  font-size: 13px;
  margin-bottom: 6px;
}

.webview-value-item p {
  color: #999;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.webview-setup-note {
  background: #13131f;
  border-left: 3px solid #7c6ff7;
  padding: 10px 16px;
  color: #ccc;
  font-size: 13px;
  border-radius: 0 6px 6px 0;
  margin: 0;
}

/* なぜcTraderか */
.why-section {
  background: #13131f;
  padding: 60px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-section h2,
.profile-section h2,
.faq-section h2 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.compare-card {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.compare-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.compare-card h3 {
  color: #7c6ff7;
  font-size: 16px;
  margin-bottom: 8px;
}

.compare-card p {
  color: #999;
  font-size: 13px;
  line-height: 1.7;
}

.broker-title {
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.broker-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.broker-badge {
  background: #1a1a2e;
  border: 1px solid #7c6ff7;
  color: #7c6ff7;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
}

/* 運営者プロフィール */
.profile-section {
  background: #0f0f1a;
  padding: 60px 24px;
}

.profile-card-new {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7c6ff7;
  margin-bottom: 16px;
}

.profile-name {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
}

.profile-title {
  font-size: 13px;
  color: #7c6ff7;
  margin-bottom: 20px;
}

.profile-yt-btn {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background 0.2s;
}

.profile-yt-btn:hover {
  background: #aa0000;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.profile-stat {
  background: #13131f;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 12px;
}

.stat-num {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: #888;
}

.profile-stat-highlight {
  border-color: #7c6ff7;
  background: rgba(124, 111, 247, 0.1);
  box-shadow: 0 0 12px rgba(124, 111, 247, 0.25);
}

.profile-stat-highlight .stat-num {
  color: #7c6ff7;
}

.profile-stat-highlight .stat-label {
  color: #a89ef9;
}

.profile-achievements {
  background: #13131f;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.profile-ach-title {
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 14px;
}

.profile-ach-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #2a2a4a;
}

.profile-ach-item:last-child {
  border-bottom: none;
}

.ach-icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.ach-sub {
  font-size: 10px;
  color: #888;
  margin-bottom: 2px;
}

.ach-main {
  font-size: 13px;
  color: #7c6ff7;
  font-weight: bold;
}

.profile-ach-highlight {
  border-bottom: none;
  background: rgba(124, 111, 247, 0.08);
  border-radius: 8px;
  padding: 10px 8px;
  margin-top: 4px;
  box-shadow: 0 0 10px rgba(124, 111, 247, 0.2);
}

.profile-ach-highlight .ach-sub {
  color: #a89ef9;
}

.profile-footer-note {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
}

/* FAQ */
.faq-section {
  background: #13131f;
  padding: 60px 24px;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "＋";
  color: #9d8eff;
  font-size: 18px;
}

.faq-item[open] summary::after {
  content: "－";
}

.faq-item p {
  padding: 0 20px 16px;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

/* プラグイン個別ページ */
.plugin-hero {
  text-align: center;
  padding: 60px 24px 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-bottom: 1px solid #2a2a4a;
}

.plugin-hero h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}

.plugin-hero .subtitle {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 20px;
}

.badge-lang {
  display: inline-block;
  background: #7c6ff7;
  color: #fff;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-right: 8px;
}

.badge-free-sm {
  display: inline-block;
  background: #14532d;
  color: #4ade80;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
}

.plugin-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

.plugin-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

@media (max-width: 700px) {
  .plugin-main { grid-template-columns: 1fr; }
  .plugin-hero h1 { font-size: 24px; }
}

.plugin-main img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2a2a4a;
}

.plugin-features h2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.plugin-features ul {
  list-style: none;
}

.plugin-features ul li {
  color: #ccc;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a4a;
  line-height: 1.6;
}

.plugin-features ul li::before {
  content: "✓ ";
  color: #7c6ff7;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #2a2a4a;
  font-size: 14px;
}

.compare-table th {
  background: #1a1a2e;
  color: #7c6ff7;
}

.compare-table td:first-child {
  text-align: left;
  color: #ccc;
}

.compare-table .check { color: #4ade80; }
.compare-table .cross { color: #888888; }

.purchase-box {
  background: #1a1a2e;
  border: 1px solid #7c6ff7;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.purchase-box h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
}

.purchase-box .price-tag {
  font-size: 36px;
  font-weight: bold;
  color: #7c6ff7;
  margin: 16px 0;
}

.purchase-box .price-note {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

.btn-purchase {
  display: inline-block;
  background: #7c6ff7;
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-purchase:hover {
  background: #6358d4;
}

.setup-section {
  background: #13131f;
  padding: 60px 24px;
}

.setup-section .section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.setup-section h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
}

.setup-steps {
  list-style: none;
  counter-reset: step;
}

.setup-steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.setup-steps li::before {
  content: counter(step);
  background: #7c6ff7;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

.setup-steps li span {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
  padding-top: 4px;
}

.breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 13px;
  color: #888888;
}

.breadcrumb a {
  color: #7c6ff7;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

/* メルマガ登録バナー */
.newsletter-section {
  background: linear-gradient(135deg, #1a1e2e 0%, #0f1220 100%);
  border-top: 1px solid #f59e0b40;
  border-bottom: 1px solid #f59e0b40;
  padding: 48px 24px;
  margin: 40px 0;
}

.newsletter-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.newsletter-text {
  flex: 1;
}

.newsletter-label {
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.newsletter-text h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.4;
}

.newsletter-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.newsletter-text ul li {
  font-size: 13px;
  color: #94a3b8;
  padding: 4px 0;
}

.newsletter-text ul li::before {
  content: '✓ ';
  color: #f59e0b;
  font-weight: 700;
}

.newsletter-form-wrap {
  flex: 0 0 300px;
}

.newsletter-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form-wrap input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #f1f5f9;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
}

.newsletter-form-wrap input[type="email"]:focus {
  border-color: #f59e0b;
}

.newsletter-form-wrap button {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: none;
  background: #f59e0b;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form-wrap button:hover {
  background: #d97706;
}

.newsletter-note {
  font-size: 11px;
  color: #94a3b8;
  margin: 8px 0 0;
  text-align: center;
}

.newsletter-success {
  display: none;
  background: #052e16;
  border: 1px solid #16a34a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.newsletter-success p {
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 12px;
}

.newsletter-success a {
  display: inline-block;
  color: #fff;
  background: #16a34a;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .newsletter-inner {
    flex-direction: column;
    gap: 24px;
  }
  .newsletter-form-wrap {
    flex: none;
    width: 100%;
  }
}

/* スクールハイライト */
.school-highlight {
  background: linear-gradient(135deg, #1c1a10 0%, #1a1e2e 100%);
  border: 1px solid #f59e0b60;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 40px;
}

.school-highlight-badge {
  display: inline-block;
  background: #f59e0b;
  color: #0f0f1a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.school-highlight h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
}

.school-highlight > p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0 0 28px;
}

.school-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.school-ex-item {
  background: #0f0f1a;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  padding: 16px 18px;
}

.school-ex-label {
  font-size: 12px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 8px;
}

.school-ex-names {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.7;
}

.school-ex-names span {
  display: inline-block;
  background: #1a1e2e;
  color: #94a3b8;
  border: 1px solid #334155;
  border-radius: 4px;
  padding: 2px 8px;
  margin: 2px 3px 2px 0;
  font-size: 11px;
}

/* お問い合わせフォーム */
.contact-field {
  margin-bottom: 20px;
}

.contact-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 6px;
}

.contact-required {
  display: inline-block;
  background: #5b4ec7;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #f1f5f9;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #7c6ff7;
}

.contact-field select option {
  background: #0f172a;
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.contact-charcount {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #475569;
  margin-top: 4px;
}

/* ミニメルマガCTA */
.nl-mini {
  background: linear-gradient(135deg, #131826 0%, #0f1220 100%);
  border-top: 1px solid #f59e0b30;
  border-bottom: 1px solid #f59e0b30;
  padding: 32px 24px;
  text-align: center;
}

.nl-mini-inner {
  max-width: 560px;
  margin: 0 auto;
}

.nl-mini p {
  font-size: 15px;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 16px;
}

.nl-mini p span {
  color: #f59e0b;
}

.nl-mini form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nl-mini input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 11px 16px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #f1f5f9;
  font-size: 14px;
  outline: none;
}

.nl-mini input[type="email"]:focus {
  border-color: #f59e0b;
}

.nl-mini button {
  padding: 11px 24px;
  background: #f59e0b;
  color: #0f0f1a;
  font-size: 13px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.nl-mini button:hover {
  background: #d97706;
}

.nl-mini-note {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
}

.nl-mini-success {
  display: none;
  color: #4ade80;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 0 0;
}

/* フッター */
footer {
  text-align: center;
  padding: 32px;
  color: #94a3b8;
  font-size: 13px;
  border-top: 1px solid #2a2a4a;
  margin-top: 40px;
}

/* ─────────────────────────────────────────
   販売ページ共通コンポーネント（pp- prefix）
   各販売ページの個別<style>を最小化するための共通クラス
   ───────────────────────────────────────── */

.pp-feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}
.pp-feature-list li .ico { flex-shrink: 0; }

.pp-buy-btn {
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: opacity 0.15s;
}
.pp-buy-btn:hover { opacity: 0.85; }

.pp-panel-mock {
  background: #050a10;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 20px 24px;
  font-family: 'Consolas','Courier New',monospace;
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 8px;
}
.pp-panel-mock .pm-sep   { color: #334155; }
.pp-panel-mock .pm-title { color: #94a3b8; font-weight: 700; }
.pp-panel-mock .pm-label { color: #94a3b8; }
.pp-panel-mock .pm-val   { color: #e2e8f0; font-weight: 700; }
.pp-panel-mock .pm-green { color: #4ade80; font-weight: 800; }
.pp-panel-mock .pm-amber { color: #fbbf24; font-weight: 800; }
.pp-panel-mock .pm-red   { color: #f87171; font-weight: 800; }
.pp-panel-mock .pm-warn  { color: #ff5555; font-weight: 800; animation: pp-blink 1s step-end infinite; }
@keyframes pp-blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.pp-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 32px;
}
.pp-flow-step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 10px;
  background: #0d1117;
  border: 1px solid #1e293b;
  border-radius: 10px;
}
.pp-flow-step .fs-icon  { font-size: 26px; margin-bottom: 8px; }
.pp-flow-step .fs-label { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pp-flow-step .fs-desc  { font-size: 11px; color: #94a3b8; line-height: 1.5; }

.pp-cta-box {
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  margin: 40px 0;
}
.pp-cta-box h2 { color: #fff; font-size: 20px; margin-bottom: 12px; }
.pp-cta-box p  { color: #94a3b8; font-size: 13px; margin-bottom: 24px; }

/* デフォルトのフォーカス可視化（アクセシビリティ） */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #7c6ff7;
  outline-offset: 2px;
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* === V3 mobile fine-tune (2026-04-30) === */
@media (max-width: 480px) {
  /* Hero 法的免責バナー */
  [role="note"][aria-label="重要なご注意"] {
    margin-left: 8px;
    margin-right: 8px;
    padding: 10px 14px !important;
  }
  [role="note"][aria-label="重要なご注意"] p {
    font-size: 11.5px !important;
    line-height: 1.7 !important;
  }
  /* KPI 実績ブロックのカード */
  .hero-catchcopy {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
  .hero-sub {
    font-size: 14px !important;
  }
  /* product-grid を1カラムに */
  .product-grid-sm {
    grid-template-columns: 1fr !important;
  }
  /* 比較表は横スクロール推奨 */
  table {
    font-size: 11.5px !important;
  }
}
@media (max-width: 360px) {
  .hero-catchcopy {
    font-size: 28px !important;
  }
}