:root {
  --bg-top: #f3f9ff;
  --bg-mid: #eef6ff;
  --bg-bottom: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --line: #d4e3f3;
  --line-strong: #bdd6ec;
  --text: #1a2b3d;
  --muted: #536579;
  --brand: #1f8bd8;
  --brand-deep: #0c5f9a;
  --accent: #06b6d4;
  --ok: #0d8f57;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(31, 139, 216, 0.16), transparent 70%),
    radial-gradient(900px 500px at -5% 10%, rgba(6, 182, 212, 0.14), transparent 65%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-bottom) 100%);
}

a {
  color: var(--brand-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(12, 95, 154, 0.12);
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.header-row {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.top-nav a {
  text-decoration: none;
}

.hero {
  padding: 56px 0 28px;
}

.badge {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(31, 139, 216, 0.25);
  background: rgba(31, 139, 216, 0.08);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  margin: 16px 0 10px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.2;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 900px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 139, 216, 0.18);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.jump-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jump-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(12, 95, 154, 0.06);
  border: 1px solid rgba(12, 95, 154, 0.12);
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #24a3e2 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 139, 216, 0.28);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--brand-deep);
}

.breadcrumb {
  margin: 12px 0 24px;
  font-size: 13px;
  color: #5f7288;
}

.breadcrumb a {
  color: inherit;
}

.summary-band {
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(14, 48, 79, 0.06);
}

.summary-band h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.section-intro {
  margin: 0 0 16px;
  color: var(--muted);
}

.content-stack {
  display: grid;
  gap: 18px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.panel {
  grid-column: span 12;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 8px 20px rgba(14, 48, 79, 0.06);
}

.panel h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.3;
}

.panel p {
  margin: 0 0 10px;
  color: var(--muted);
}

.panel ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--text);
}

.panel li + li {
  margin-top: 6px;
}

.panel:nth-child(odd) {
  background: var(--surface-soft);
}

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

.feature-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mini-card {
  background: rgba(31, 139, 216, 0.04);
  border: 1px solid rgba(31, 139, 216, 0.12);
  border-radius: 14px;
  padding: 16px 15px;
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.step-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 16px 18px 16px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(31, 139, 216, 0.10);
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.35;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.timeline-day {
  margin-bottom: 6px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.note-box {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31, 139, 216, 0.08) 0%, rgba(6, 182, 212, 0.10) 100%);
  border: 1px solid rgba(31, 139, 216, 0.14);
}

.note-box strong {
  display: block;
  margin-bottom: 8px;
}

.note-box p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  margin: 16px 0 0;
  padding-left: 1.1em;
}

.check-list li + li {
  margin-top: 8px;
}

.panel-note {
  margin: 16px 0 0;
  color: var(--muted);
}

@media (min-width: 900px) {
  .panel {
    grid-column: span 6;
  }
}

.faq {
  margin-top: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
}

.faq h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-q {
  font-weight: 700;
}

.faq-a {
  color: var(--muted);
  margin-top: 2px;
}

.related {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
}

.related h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-band {
  margin: 28px 0 46px;
  border-radius: 16px;
  border: 1px solid rgba(31, 139, 216, 0.22);
  background: linear-gradient(135deg, rgba(31, 139, 216, 0.10) 0%, rgba(6, 182, 212, 0.12) 100%);
  padding: 24px 20px;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.cta-band .hero-actions {
  margin-top: 16px;
}

.page-fast-website {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 18%, #ffffff 100%);
}

.page-fast-website .hero {
  padding: 72px 0 36px;
}

.page-fast-website h1 {
  max-width: 12ch;
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-fast-website .lead {
  max-width: 42rem;
  font-size: 17px;
  line-height: 1.85;
}

.page-fast-website .badge {
  background: transparent;
  border-color: rgba(12, 95, 154, 0.18);
}

.page-fast-website .fast-hero {
  display: block;
}

.page-fast-website .fast-hero-copy {
  max-width: 42rem;
}

.page-fast-website .breadcrumb {
  margin: 4px 0 0;
}

.page-fast-website .section-block {
  padding: 42px 0;
  border-top: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.page-fast-website .section-label {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-fast-website .section-head h2,
.page-fast-website .faq h2,
.page-fast-website .related h2,
.page-fast-website .cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.page-fast-website .section-copy {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
}

.page-fast-website .value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-fast-website .value-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-fast-website .service-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.page-fast-website .service-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(12, 95, 154, 0.12);
  background: rgba(248, 251, 255, 0.92);
}

.page-fast-website .service-panel-label {
  margin: 0;
  color: rgba(12, 95, 154, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-fast-website .service-panel p:last-of-type {
  margin: 0;
  color: var(--muted);
}

.page-fast-website .service-panel .text-link {
  margin-top: auto;
  padding-top: 12px;
}

.page-fast-website .plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.page-fast-website .plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(12, 95, 154, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(14, 48, 79, 0.06);
}

.page-fast-website .plan-card-featured {
  border: 2px solid rgba(31, 139, 216, 0.34);
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(14, 48, 79, 0.10);
}

.page-fast-website .plan-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 139, 216, 0.10);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-fast-website .plan-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-fast-website .plan-price {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-fast-website .plan-copy {
  margin: 0;
  color: var(--muted);
}

.page-fast-website .plan-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.page-fast-website .plan-list li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-top: 1px solid rgba(12, 95, 154, 0.10);
  line-height: 1.8;
}

.page-fast-website .plan-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 14px;
  color: var(--brand);
  font-weight: 700;
}

.page-fast-website .plan-notes {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-fast-website .plan-notes li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(31, 139, 216, 0.06);
  color: var(--muted);
}

.page-fast-website .support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.page-fast-website .support-summary {
  display: grid;
  gap: 22px;
}

.page-fast-website .support-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(12, 95, 154, 0.12);
  background: linear-gradient(135deg, rgba(31, 139, 216, 0.08) 0%, rgba(6, 182, 212, 0.10) 100%);
}

.page-fast-website .support-price-label {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.page-fast-website .support-price {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-fast-website .support-copy {
  margin: 0;
  color: var(--muted);
}

.page-fast-website .support-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.page-fast-website .support-list li {
  padding: 13px 0;
  border-top: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .support-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-fast-website .support-option {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(12, 95, 154, 0.10);
}

.page-fast-website .support-option h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.page-fast-website .support-option p {
  margin: 0;
  color: var(--muted);
}

.page-fast-website .value-item {
  padding-top: 18px;
  border-top: 2px solid rgba(12, 95, 154, 0.16);
}

.page-fast-website .value-item h3,
.page-fast-website .text-item h3,
.page-fast-website .flow-step h3,
.page-fast-website .subheading {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.page-fast-website .value-item p,
.page-fast-website .text-item p,
.page-fast-website .flow-step p,
.page-fast-website .side-note p {
  margin: 0;
  color: var(--muted);
}

.page-fast-website .split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.page-fast-website .split-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-fast-website .text-list {
  border-top: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .text-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .side-note {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(12, 95, 154, 0.12);
  background: rgba(246, 250, 255, 0.92);
}

.page-fast-website .side-note-title {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.page-fast-website .side-note .text-link {
  margin-top: 16px;
}

.page-fast-website .subheading {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.page-fast-website .simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-fast-website .simple-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .simple-list li:last-child {
  border-bottom: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .flow-list {
  border-top: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .flow-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .flow-no {
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(12, 95, 154, 0.72);
}

.page-fast-website .inline-links {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.page-fast-website .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
}

.page-fast-website .text-link::after {
  content: "→";
}

.page-fast-website .faq,
.page-fast-website .related,
.page-fast-website .cta-band {
  margin-top: 0;
  padding: 42px 0 0;
  border: 0;
  border-top: 1px solid rgba(12, 95, 154, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-fast-website .faq h2,
.page-fast-website .related h2,
.page-fast-website .cta-band h2 {
  margin-bottom: 16px;
}

.page-fast-website .faq-item {
  padding: 18px 0;
  border-top: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .faq-item + .faq-item {
  margin-top: 0;
}

.page-fast-website .faq-item:first-of-type {
  border-top: 0;
}

.page-fast-website .faq-q {
  font-size: 18px;
}

.page-fast-website .faq-a {
  margin-top: 6px;
  max-width: 52rem;
}

.page-fast-website .related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}

.page-fast-website .related-links .text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(12, 95, 154, 0.12);
}

.page-fast-website .cta-band {
  margin-bottom: 56px;
  border-top-width: 2px;
  border-top-color: rgba(26, 43, 61, 0.9);
}

.page-fast-website .cta-band p {
  max-width: 42rem;
}

.page-fast-website .cta-band .hero-actions {
  margin-top: 20px;
}

.page-pricing {
  background: #ffffff;
}

.page-pricing .pricing-hero {
  padding: 86px 0 56px;
  background: linear-gradient(180deg, rgba(73, 162, 222, 0.12) 0%, rgba(73, 162, 222, 0.05) 100%);
}

.page-pricing h1 {
  margin: 16px 0 14px;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-pricing .lead {
  max-width: 760px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.9;
}

.page-pricing .pricing-hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-pricing .breadcrumb {
  margin-top: 24px;
}

.page-pricing .pricing-section {
  padding: 110px 0;
}

.page-pricing .pricing-section-soft {
  background: rgba(73, 162, 222, 0.13);
}

.page-pricing .pricing-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.page-pricing .pricing-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.page-pricing .pricing-heading p {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.page-pricing .pricing-cards,
.page-pricing .comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.page-pricing .option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.page-pricing .pricing-card,
.page-pricing .comparison-card,
.page-pricing .option-card {
  background: #ffffff;
  padding: 38px 32px;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 40, 120, 0.06);
  border: 1px solid rgba(21, 120, 181, 0.08);
}

.page-pricing .pricing-card-featured {
  position: relative;
  border: 2px solid #4da3ff;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 40, 120, 0.10);
}

.page-pricing .pricing-badge {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4da3ff, #6fb1ff);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.page-pricing .pricing-card h3,
.page-pricing .comparison-card h3,
.page-pricing .option-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.25;
  color: #1b2d40;
}

.page-pricing .pricing-price {
  margin: 10px 0 6px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-pricing .pricing-sub,
.page-pricing .comparison-card p,
.page-pricing .option-card p,
.page-pricing .timing-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.page-pricing .pricing-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.page-pricing .pricing-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid rgba(21, 120, 181, 0.12);
  line-height: 1.8;
}

.page-pricing .pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #1578b5;
  font-weight: 700;
}

.page-pricing .pricing-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.page-pricing .comparison-grid {
  margin-bottom: 30px;
}

.page-pricing .scope-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
}

.page-pricing .scope-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 40, 120, 0.06);
}

.page-pricing .scope-table th,
.page-pricing .scope-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(21, 120, 181, 0.10);
  text-align: left;
  vertical-align: top;
}

.page-pricing .scope-table thead th {
  background: rgba(73, 162, 222, 0.10);
  color: #1b2d40;
}

.page-pricing .scope-table tbody th {
  width: 22%;
  color: #1b2d40;
  font-weight: 700;
}

.page-pricing .faq {
  padding-top: 80px;
}

.page-pricing .faq-item {
  padding: 22px 0;
  border-top: 1px solid rgba(21, 120, 181, 0.12);
}

.page-pricing .faq-item + .faq-item {
  margin-top: 0;
}

.page-pricing .related {
  padding-top: 46px;
}

.page-pricing .cta-band {
  margin: 48px 0 56px;
}

.page-works {
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(1000px 520px at 88% -10%, rgba(31, 139, 216, 0.16), transparent 72%),
    radial-gradient(820px 420px at -6% 12%, rgba(6, 182, 212, 0.10), transparent 68%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 30%, #ffffff 100%);
}

.page-works [hidden] {
  display: none !important;
}

.page-works .works-hero {
  padding: 88px 0 26px;
}

.page-works .works-kicker {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-works .works-kicker-sub {
  margin-bottom: 10px;
}

.page-works h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-works .lead {
  max-width: 44rem;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.95;
  color: #415567;
}

.page-works .breadcrumb {
  margin: 0 0 26px;
}

.page-works .works-controls {
  padding-bottom: 18px;
}

.page-works .works-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-works .works-filter-chip {
  appearance: none;
  border: 1px solid rgba(12, 95, 154, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-deep);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(14, 48, 79, 0.05);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.page-works .works-filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(14, 48, 79, 0.08);
}

.page-works .works-filter-chip.is-active {
  background: #111b28;
  border-color: #111b28;
  color: #ffffff;
}

.page-works .works-archive {
  padding: 18px 0 0;
}

.page-works .works-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
}

.page-works .works-headline h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-works .works-result-count {
  margin: 0;
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  white-space: nowrap;
  text-transform: uppercase;
}

.page-works .works-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
}

.page-works .work-archive-card {
  min-width: 0;
}

.page-works .work-archive-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 95, 154, 0.10);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(14, 48, 79, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-works .work-archive-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(14, 48, 79, 0.10);
}

.page-works .work-archive-card.is-static .work-archive-link {
  cursor: default;
}

.page-works .work-archive-card.is-static .work-archive-link:hover {
  transform: none;
  box-shadow: 0 16px 34px rgba(14, 48, 79, 0.06);
}

.page-works .work-archive-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 220px;
  padding: 22px;
  color: #ffffff;
  overflow: hidden;
}

.page-works .work-archive-thumb::before,
.page-works .work-archive-thumb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.page-works .work-archive-thumb::before {
  width: 160px;
  height: 160px;
  right: -36px;
  top: -30px;
}

.page-works .work-archive-thumb::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -110px;
}

.page-works .work-thumb-kind,
.page-works .work-archive-thumb strong,
.page-works .work-thumb-caption {
  position: relative;
  z-index: 1;
}

.page-works .work-thumb-kind {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-works .work-archive-thumb strong {
  font-family: "Avenir Next Condensed", "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.page-works .work-thumb-caption {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.92;
}

.page-works .thumb-01 {
  background: linear-gradient(135deg, #264c89 0%, #56a2f5 100%);
}

.page-works .thumb-02 {
  background: linear-gradient(135deg, #174a56 0%, #27b0c6 100%);
}

.page-works .thumb-03 {
  background: linear-gradient(135deg, #1d4d8f 0%, #4d86f7 100%);
}

.page-works .thumb-04 {
  background: linear-gradient(135deg, #165056 0%, #21b4a7 100%);
}

.page-works .thumb-05 {
  background: linear-gradient(135deg, #37436b 0%, #7b82d9 100%);
}

.page-works .thumb-06 {
  background: linear-gradient(135deg, #22607a 0%, #6bbfd5 100%);
}

.page-works .thumb-07 {
  background: linear-gradient(135deg, #744578 0%, #e47fc5 100%);
}

.page-works .thumb-08 {
  background: linear-gradient(135deg, #6d5a2e 0%, #c9a654 100%);
}

.page-works .thumb-09 {
  background: linear-gradient(135deg, #103251 0%, #2979c8 100%);
}

.page-works .thumb-10 {
  background: linear-gradient(135deg, #174b3d 0%, #47b98a 100%);
}

.page-works .thumb-11 {
  background: linear-gradient(135deg, #145275 0%, #3ca4de 100%);
}

.page-works .thumb-12 {
  background: linear-gradient(135deg, #3f3d63 0%, #8d86ff 100%);
}

.page-works .work-archive-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.page-works .work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.page-works .work-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(12, 95, 154, 0.06);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-works .work-archive-body h3 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.page-works .work-archive-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.88;
}

.page-works .works-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 8px;
}

.page-works .works-page-button {
  appearance: none;
  border: 1px solid rgba(12, 95, 154, 0.12);
  background: #ffffff;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  color: var(--brand-deep);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(14, 48, 79, 0.05);
}

.page-works .works-page-button.is-current {
  background: #111b28;
  border-color: #111b28;
  color: #ffffff;
}

.page-works .works-contact {
  margin: 68px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 26px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111a28 0%, #1f3047 100%);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(10, 22, 40, 0.18);
}

.page-works .works-contact-kicker,
.page-works .works-contact-label {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.70);
  text-transform: uppercase;
}

.page-works .works-contact h2 {
  margin: 0 0 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-works .works-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-works .works-contact .hero-actions {
  margin-top: 22px;
}

.page-works .works-contact .btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.page-works .works-contact-side {
  display: grid;
  gap: 14px;
}

.page-works .works-contact-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.page-works .works-contact-card a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(12, 95, 154, 0.16);
  padding: 24px 0 36px;
  color: #6a7b8d;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .page-works .works-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-works .works-contact {
    grid-template-columns: 1fr;
  }

  .page-fast-website .section-head,
  .page-fast-website .split-grid,
  .page-fast-website .split-grid-wide,
  .page-fast-website .value-grid,
  .page-fast-website .value-grid-compact,
  .page-fast-website .service-menu-grid,
  .page-fast-website .plan-grid,
  .page-fast-website .support-layout,
  .page-fast-website .support-option-grid {
    grid-template-columns: 1fr;
  }

  .page-fast-website .breadcrumb {
    margin-top: 8px;
  }

  .page-fast-website .plan-card-featured {
    transform: none;
  }

  .page-pricing .pricing-cards,
  .page-pricing .comparison-grid,
  .page-pricing .option-grid {
    grid-template-columns: 1fr;
  }

  .page-pricing .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .header-row {
    align-items: flex-start;
    padding: 10px 0;
    flex-direction: column;
  }

  .top-nav {
    gap: 10px;
  }

  .logo-link img {
    height: 36px;
  }

  .page-works .works-hero {
    padding: 58px 0 18px;
  }

  .page-works h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .page-works .works-headline {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-works .works-card-grid {
    grid-template-columns: 1fr;
  }

  .page-works .work-archive-thumb,
  .page-works .work-archive-body,
  .page-works .works-contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-fast-website .hero {
    padding: 54px 0 28px;
  }

  .page-fast-website h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .page-fast-website .section-block,
  .page-fast-website .faq,
  .page-fast-website .related,
  .page-fast-website .cta-band {
    padding-top: 34px;
  }

  .page-fast-website .flow-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .page-fast-website .flow-no {
    font-size: 28px;
  }

  .page-fast-website .related-links {
    grid-template-columns: 1fr;
  }

  .page-pricing .pricing-section {
    padding: 78px 0;
  }

  .page-pricing .pricing-card,
  .page-pricing .comparison-card,
  .page-pricing .option-card {
    padding: 28px 22px;
  }

  .page-pricing .scope-table th,
  .page-pricing .scope-table td {
    padding: 14px 14px;
  }
}
