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

:root {
  --orange: #F26419;
  --blue-dark: #0d1f3c;
  --blue: #1A3E6F;
  --blue-banner: #7BAFD4;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --card-bg: #E8EFF9;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--orange);
  letter-spacing: 1.5px; text-align: center; margin-bottom: 8px;
}
.section-title {
  font-size: 40px; font-weight: 900;
  color: var(--blue); text-align: center; margin-bottom: 12px; line-height: 1.4;
}
.section-sub {
  font-size: 16px; color: var(--text-light); text-align: center; margin-bottom: 40px;
}
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 48px; border-radius: 50px;
  font-weight: 700; font-size: 16px; cursor: pointer; border: none;
  transition: opacity .2s, transform .15s; white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-outline-white { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline-orange { background: transparent; border: 2px solid var(--orange); color: var(--orange); }

/* ─── HEADER ─── */
header {
  position: -webkit-sticky;
  position: sticky; top: 0; z-index: 200;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  max-width: 1060px; margin: 0 auto; padding: 10px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; width: 240px; }
.logo-cf-wrap {
  display: flex; align-items: center; gap: 5px;
}
.logo-cf-icon {
  display: inline-block;
  width: 22px; height: 22px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><rect width="32" height="32" rx="4" fill="%23F48120"/><path d="M22 18.5c.2-.6.1-1.2-.2-1.7s-.8-.8-1.4-.8H9.5c-.1 0-.2.1-.3.2s-.1.2 0 .3l.4 1.3c.2.6.8 1 1.4 1H22z" fill="white"/><path d="M24.1 13.5c-.1-.6-.6-1-1.2-1.1l-.5-.1c-.1 0-.2-.1-.3-.2l-.1-.4c-.4-2-2.2-3.5-4.2-3.5-1.5 0-2.9.8-3.7 2-.3-.1-.7-.2-1-.2-1.7 0-3.1 1.3-3.2 2.9-.6.1-1 .6-1 1.2l.1.3h14.9c.1 0 .2-.1.2-.2l.1-.7z" fill="white"/></svg>') center/contain no-repeat;
}
.logo-cf-text {
  font-size: 11px; font-weight: 700; color: #444; letter-spacing: .5px;
}
.logo-x {
  font-size: 13px; color: #999; margin: 0 2px;
}
.logo-domo {
  display: flex; align-items: center; gap: 0;
}
.logo-domo-box {
  background: var(--blue-dark); color: #fff; font-size: 13px; font-weight: 900;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}
.logo-domo-text {
  font-size: 14px; font-weight: 900; color: var(--blue-dark);
  background: #fff; border: 1px solid #ddd;
  padding: 0 6px; height: 28px; display: flex; align-items: center;
  border-left: none;
}
nav { display: flex; gap: 22px; margin-left: auto; }
nav a { font-size: 16px; font-weight: 400; color: var(--text); transition: color .2s; }
nav a:hover { color: var(--orange); }
.header-cta { display: flex; gap: 8px; flex-shrink: 0; }
.header-cta .btn { padding: 10px 20px; font-size: 13px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ─── HERO ─── */
.hero {
  background: #040d20 url('../../mv.png') center/cover no-repeat;
  padding: 72px 0 64px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(4,13,32,.92) 0%, rgba(8,22,55,.80) 50%, rgba(4,13,32,.60) 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { /* text side */ }
.hero-badge {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 5px 16px; border-radius: 2px;
  margin-bottom: 20px; letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(26px, 3.5vw, 40px); color: #fff;
  font-weight: 700; line-height: 1.35; margin-bottom: 24px;
}
.hero-body {
  color: #fff; font-size: 20px;
  line-height: 2.0; margin-bottom: 32px;
}
.hero-num {
  font-size: 1.6em; font-weight: 900; line-height: 1;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-illust {
  display: flex; align-items: center; justify-content: center;
}
.hero-illust-sp { display: none; }
.hero-illust img {
  width: 100%; max-width: 340px;
  -webkit-filter: drop-shadow(0 8px 40px rgba(100,160,255,.35));
          filter: drop-shadow(0 8px 40px rgba(100,160,255,.35));
}

/* ─── RISK ─── */
.risk-section { padding: 80px 0 60px; background: #fff; }
.risk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 56px;
  padding-top: 90px; /* イラストのはみ出し分を確保 */
  max-width: 1180px; margin-left: auto; margin-right: auto;
}
.risk-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 80px 24px 32px; /* 上部はイラスト分の余白 */
  position: relative;
  overflow: visible; /* はみ出しを許可 */
}
.risk-icon-wrap {
  width: 160px; height: 160px;
  position: absolute;
  top: -80px;
  left: 50%; transform: translateX(-50%);
  display: flex; align-items: flex-end; justify-content: center;
}
.risk-icon-wrap img {
  width: 160px; height: 160px;
  object-fit: contain;
  object-position: center bottom;
}
.risk-icon-ddos img {
  transform: scale(1.4);
  transform-origin: center bottom;
}

.risk-card h3 { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 16px; text-align: center; white-space: nowrap; }
.risk-card p { font-size: 16px; color: var(--text-light); line-height: 1.9; text-align: left; }

.check-bg {
  background: radial-gradient(ellipse at 60% 100%, #dde3ef 0%, #eef0f6 40%, #ffffff 75%);
  margin: 0 -24px;
  padding: 48px 24px 120px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}
.check-row {
  display: flex; justify-content: center;
  align-items: center; max-width: 780px; margin: 0 auto;
}
.check-list { list-style: none; margin: 0 auto; }
.check-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 22px; font-weight: 700; color: #222;
  margin-bottom: 18px; line-height: 1.5;
}
.check-list li img {
  width: 28px; height: 28px; flex-shrink: 0;
  object-fit: contain;
}
.man-fig {
  width: 120px;
}
.man-fig img {
  width: 100%; height: auto;
}

.bridge-wrap { text-align: center; margin-top: 56px; }
.bridge-wrap p { font-size: 22px; line-height: 2.1; }
.sp-only { display: none; }
.pc-only { display: inline; }
.bridge-wrap strong { color: var(--orange); font-size: 32px; }

/* ─── SERVICES ─── */
.service-section { padding: 60px 0 80px; background: #fff; }
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center; margin-bottom: 64px;
}
.svc-row:last-child { margin-bottom: 0; }
.svc-photo {
  width: 100%; aspect-ratio: 16/10; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.4);
  box-shadow: 0 6px 24px rgba(0,0,0,.14);
  overflow: hidden; padding: 0; background: none;
}
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 0;
}
.svc-photo.p1 { background: linear-gradient(135deg,#071535,#1a4a8a); }
.svc-photo.p2 { background: linear-gradient(135deg,#c8d8e8,#dfe8f0); color: #bbb; }
.svc-photo.p3 { background: linear-gradient(135deg,#050505,#111122); }
.svc-content h3 {
  font-size: 20px; font-weight: 700;
  color: var(--blue); margin-bottom: 14px; line-height: 1.55;
}
.svc-content p { font-size: 16px; color: var(--text-light); line-height: 1.95; }

/* ─── REASONS ─── */
.reasons-section { padding: 80px 0; background: #fff; }
.client-logos { margin: 48px 0 64px; text-align: center; }
.client-logos img { width: 90%; height: auto; display: block; margin: 0 auto 80px; }
.reasons-grid {
  display: grid; grid-template-columns: repeat(4, 239px);
  gap: 16px; margin-bottom: 36px; justify-content: center;
}
.reason-card { border-radius: 8px; overflow: hidden; border: 1px solid #e8e8e8; }
a.reason-card { display: block; color: inherit; transition: box-shadow .2s, transform .2s; }
a.reason-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); transform: translateY(-2px); }
.reason-thumb {
  width: 239px; height: 114px;
  overflow: hidden;
}
.reason-thumb img {
  width: 100%; height: 100%; object-fit: contain; background: #f5f5f5;
}
.reason-thumb.reason-thumb-logo {
  background: #f0f4f8;
  display: flex; align-items: center; justify-content: center;
}
.reason-thumb.reason-thumb-logo img {
  width: auto; height: auto; max-width: 70%; max-height: 100px; object-fit: contain;
}
.reason-body { padding: 14px 12px; }
.reason-logo { height: 40px; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; }
.reason-logo img { height: 40px; width: auto; max-width: 140px; object-fit: contain; }
.reason-logo-text { font-size: 24px; font-weight: 700; color: var(--orange); margin-bottom: 6px; display: flex; align-items: center; height: 40px; }
.reason-body h4 { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.reason-body p { font-size: 16px; color: var(--text-light); line-height: 1.7; }
.reasons-cta { text-align: center; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 24px
    ),
    linear-gradient(120deg, #2d6aad 0%, #4a8ec2 50%, #7BAFD4 100%);
  padding: 52px 0;
}
.cta-banner-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
}
.cta-banner p { font-size: clamp(18px, 2vw, 24px); font-weight: 700; color: #fff; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-pill { border-radius: 50px; }
.btn-pill-white {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 48px; border-radius: 50px;
  font-weight: 700; font-size: 16px; cursor: pointer;
  background: #fff; color: var(--orange);
  transition: opacity .2s, transform .15s; white-space: nowrap;
}
.btn-pill-white:hover { opacity: .88; transform: translateY(-1px); }

/* ─── COMPARE ─── */
.compare-section { padding: 80px 0; background: #fff; }
.cmp-table { width: 100%; border-collapse: collapse; outline: 1px solid #eee; }
.cmp-table th { padding: 20px 16px; font-weight: 700; text-align: center; font-size: 16px; border-top: 1px solid #eee; border-left: 1px solid #eee; }
.cmp-feat-head { width: 34%; background: #fff; }
.h-cf { background: var(--orange); color: #fff; width: 22%; }
.h-gen { background: #c0c0c0; color: #fff; width: 22%; }
.h-glo { background: #a8a8a8; color: #fff; width: 22%; }
.cmp-table td { border: 1px solid #eee; vertical-align: middle; }
.cmp-feat {
  padding: 22px 24px; text-align: left; background: #fff;
}
.cmp-feat strong { display: block; font-size: 18px; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; }
.cmp-feat-sub { font-size: 13px; font-weight: 400; color: var(--text-light); }
.cmp-feat span { display: block; font-size: 13px; color: var(--text-light); }
.d-cf { background: #FFF8F5; text-align: center; padding: 20px 12px; }
.d-gen { background: #F7F7F7; text-align: center; padding: 20px 12px; }
.d-glo { background: #F2F2F2; text-align: center; padding: 20px 12px; }
.sym-ok, .sym-ok-neu, .sym-tri, .sym-ng { display: block; font-size: 30px; line-height: 1; margin-bottom: 8px; }
.sym-ok { color: var(--orange); }
.sym-ok-neu { color: #999; }
.sym-tri { color: #bbb; }
.sym-ng { color: #ccc; }
.sym-desc { display: block; font-size: 13px; color: var(--text-light); line-height: 1.5; }
.cmp-table tr:last-child td { border-bottom: 1px solid #eee; }

/* ─── PRICING ─── */
.pricing-section { padding: 80px 0; background: #F9F9F9; }
.price-table { width: 100%; border-collapse: collapse; border: 1px solid #e0e0e0; background: #fff; }
.pt-feat-head { width: 34%; background: #fff; border-bottom: 1px solid #eee; }
.pt-head-pro  { background: #fff;            color: #333; text-align: center; padding: 18px 12px; font-size: 15px; font-weight: 700; width: 22%; border: 1px solid #e0e0e0; }
.pt-head-biz  { background: var(--orange);   color: #fff; text-align: center; padding: 18px 12px; font-size: 15px; font-weight: 700; width: 22%; }
.pt-head-ent  { background: #E0E0E0;         color: #444; text-align: center; padding: 18px 12px; font-size: 15px; font-weight: 700; width: 22%; }

/* feature column */
.pt-feat { padding: 22px 24px; text-align: left; border-bottom: 1px solid #eee; background: #fff; vertical-align: middle; }
.pt-feat strong { display: block; font-size: 18px; font-weight: 600; color: #1a1a1a; }
.pt-feat span   { display: block; font-size: 13px; color: var(--text-light); margin-top: 4px; }
.pt-note { font-size: 11px !important; color: #aaa !important; }

/* data columns */
.pt-pro-col, .pt-biz-col, .pt-ent-col {
  text-align: center; vertical-align: middle;
  border-bottom: 1px solid #eee; border-left: 1px solid #eee;
  padding: 14px 8px;
}
.pt-pro-col { background: #fff; }
.pt-biz-col { background: #fff; }
.pt-ent-col { background: #fff; }

/* price row */
.pt-price-row .pt-pro-col,
.pt-price-row .pt-biz-col,
.pt-price-row .pt-ent-col { padding: 20px 8px; }
.pt-price-val { font-size: 32px; font-weight: 700; color: #1a1a1a; }
.pt-price-val.pt-estimate { font-size: 22px; }
.pt-price-unit { font-size: 14px; font-weight: 400; }

/* symbols */
.pt-ok  { font-size: 26px; color: var(--orange); }
.pt-ng  { font-size: 22px; color: #ccc; }
.pt-addon { font-size: 14px; color: #555; font-weight: 600; }

.price-table tr:last-child .pt-feat,
.price-table tr:last-child .pt-pro-col,
.price-table tr:last-child .pt-biz-col,
.price-table tr:last-child .pt-ent-col { border-bottom: none; }
.price-cta { text-align: center; margin-top: 36px; }

/* ─── BONUS ─── */
.bonus-section { padding: 80px 0; background: #fff; }
.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-bottom: 40px;
}
.bonus-card { text-align: center; padding: 12px 16px; }
.bonus-icon {
  width: 150px; height: 150px; border-radius: 50%; background: #e9e9e9;
  margin: 0 auto 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.bonus-icon img { width: 100px; height: 100px; object-fit: contain; }
.bonus-num {
  font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1;
  margin-top: -18px; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.bonus-card h3 { font-size: 24px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.bonus-card p  { font-size: 16px; color: var(--text-light); line-height: 1.85; }
.bonus-cta { text-align: center; }

/* ─── BOTTOM BANNER ─── */
.bottom-banner {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 24px
    ),
    linear-gradient(120deg, #2d6aad 0%, #4a8ec2 50%, #7BAFD4 100%);
  padding: 52px 0;
}
.bottom-banner p { font-size: clamp(18px, 2vw, 24px); font-weight: 700; color: #fff; }

/* ─── FOOTER ─── */
footer { background: #fff; border-top: 1px solid #eee; padding: 28px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: 20px;
}
.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-logo img { height: 32px; width: auto; }
.footer-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 14px; color: var(--text); transition: color .2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-btn .btn { padding: 12px 24px; font-size: 14px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .logo { width: 180px; }
  .hero-badge { font-size: 14px; padding: 1px 16px; }
  .hero-body { font-size: 14px; }
  .section-title { font-size: 25px; font-weight: 700; }
  .section-sub { font-size: 15px; text-align: left; }
  .check-list li { font-size: 16px; }
  .reason-body h4 { font-size: 18px; }
  .bridge-wrap p { font-size: 17px; }
  .bridge-wrap strong { font-size: 22px; }
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .footer-desc { font-size: 12px; }
  .svc-content h3 { font-size: 20px; font-weight: 700; }
  .risk-card p { font-size: 15px; }
  .svc-content p { font-size: 15px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-illust-pc { display: none; }
  .hero-illust-sp { display: flex; justify-content: center; margin: 20px 0 16px; }
  .hero-illust-sp img { max-width: 170px; }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .risk-grid { grid-template-columns: 1fr; gap: 100px; }
  .check-row { grid-template-columns: 1fr; }
  .man-fig { display: none; }
  .svc-row { grid-template-columns: 1fr; gap: 24px; display: flex; flex-direction: column; }
  .svc-row .svc-photo { order: -1; }
  .svc-row .svc-content { order: 1; }
  .cmp-feat strong { display: block; font-size: 16px; }
  .sym-desc { display: block; font-size: 12px; }
  .pt-feat strong { display: block; font-size: 16px; }
  .bonus-card h3 { font-size: 20px; }
  .pt-price-val.pt-estimate { font-size: 15px; }
  .pt-price-val { font-size: 32px; font-weight: 700; display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
  .pt-price-unit { font-size: 14px; font-weight: 400; }
  .pt-addon { font-size: 13px; color: #555; font-weight: 400; }
  .reasons-grid { grid-template-columns: repeat(2, 239px); justify-content: center; }
  .bonus-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; align-items: center; }
  .footer-left { flex-direction: column; align-items: center; gap: 12px; }
  .footer-logo img { height: 48px; }
  .footer-nav { flex-wrap: wrap; gap: 12px; justify-content: center; width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  .reasons-grid { grid-template-columns: 100%; justify-content: center; }
  .reason-thumb { width: 100%; height: 180px; }
  .cmp-table th, .cmp-table td { padding: 10px 8px; font-size: 12px; }
  .price-table th, .price-table td { padding: 10px 6px; font-size: 11px; }
  .p-val { font-size: 20px; }
}