@charset "utf-8";
/* ==================================================
   pages.css（整理版 / 2026-03）
   - ページ固有スタイル
   - コンポーネントは components.css
   - HOME hero は背景スライド + 右スクリーン構造
================================================== */
/* ==================================================
   1) 共通（全ページ）
================================================== */
/* ---------------------------------
   Section spacing
---------------------------------- */
.section {
  padding-top: clamp(20px, 3.5vw, 35px);
  padding-bottom: clamp(30px, 4vw, 30px);
  position: relative;
  z-index: 1;
}
/* hero 基本 */
.hero {
  position: relative;
}
/* Ghost Button */
.btn--ghost {
  border: 1px solid rgba(11, 15, 26, .12);
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .85);
}
/* ==================================================
   Global polish / section atmosphere
================================================== */
.section-head {
  position: relative;
  margin-bottom: 26px;
}
/* =========================
  section-head ネオンライン（青系）
========================= */
.section-head .eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* 左（短い） */
.section-head .eyebrow::before {
  content: "";
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(10, 92, 255, .0) 0%, #38d8ff 50%, #0a5cff 100%);
  box-shadow:
    0 0 6px rgba(56, 216, 255, .4), 0 0 12px rgba(10, 92, 255, .25);
  animation: sectionLineBlue 3.2s linear infinite, sectionGlow 2.4s ease-in-out infinite;
  opacity: .88;
}
/* 右（長い） */
.section-head .eyebrow::after {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a5cff 0%, #38d8ff 40%, #b9f2ff 70%, #0a5cff 100%);
  background-size: 200% 100%;
  box-shadow:
    0 0 6px rgba(10, 92, 255, .6), 0 0 14px rgba(56, 216, 255, .5), 0 0 24px rgba(185, 242, 255, .45);
  animation: sectionLineBlue 3.2s linear infinite, sectionGlow 2.4s ease-in-out infinite;
}
@keyframes sectionGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5);
  }
}
.section-title {
  margin-top: 2px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: .01em;
}
.section-lead {
  max-width: 62ch;
  margin-top: 10px;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  pointer-events: none;
  opacity: .9;
}
.section > .container, .section > .container-fluid {
  position: relative;
  z-index: 1;
}
/* ==================================================
   Global polish / surface consistency
================================================== */
.info-box, .contact-panel, .final-cta__inner, .page-service .service-card, .page-service .price-card, .page-service .precta-card, .page-service .trust-card, .page-service .works-mini-card, .strength-card, .works-guide, .works-consult, .trust-bar__inner {
  box-shadow:
    0 14px 34px rgba(11, 15, 26, .08), 0 3px 10px rgba(11, 15, 26, .04);
}
.info-box:hover, .page-service .service-card:hover, .page-service .precta-card:hover, .page-service .trust-card:hover, .strength-card:hover, .page-service .works-mini-card:hover {
  box-shadow:
    0 20px 42px rgba(11, 15, 26, .10), 0 6px 16px rgba(11, 15, 26, .05);
}
.page-service .works-mini-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 52px rgba(11, 15, 26, .14), 0 10px 24px rgba(11, 15, 26, .08);
}
.section .btn {
  transition:
    transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.section .btn:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .section-head {
    margin-bottom: 22px;
  }
  .section-head::before {
    width: 44px;
    height: 4px;
    margin-bottom: 12px;
  }
  .section::before {
    height: 90px;
  }
}
/* ==================================================
   2) HOME
================================================== */
/* --------------------------------------------------
   2-1 HERO LAYOUT
-------------------------------------------------- */
.page-home .hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(40px, 6vw, 70px);
}
.page-home .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(245, 247, 251, 0) 0%, rgba(245, 247, 251, .75) 60%, rgba(245, 247, 251, 1) 100%);
  z-index: 1;
}
/* ---------------------------------
   Hero grid
---------------------------------- */
.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  column-gap: 0;
  margin-inline: auto;
  max-width: 1100px;
}
.hero-lead, .hero-area {
  margin: 10px 0;
  font-weight: 600;
  color: #0b0f1a;
}
/* ---------------------------------
   Hero text card
---------------------------------- */
.page-home .hero-copy {
  position: relative;
  isolation: isolate;
  z-index: 3;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow:
    0 28px 60px rgba(11, 15, 26, .18), 0 0 30px rgba(56, 216, 255, .10);
}
.page-home .hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  /* ネオンライン */
  box-shadow:
    0 0 0 1px rgba(56, 216, 255, .35), 0 0 12px rgba(56, 216, 255, .25), 0 0 28px rgba(10, 92, 255, .18);
  opacity: .85;
  z-index: -1;
  animation: heroCopyGlow 3.6s ease-in-out infinite;
}
.page-home .hero-title, .page-home .hero-lead .page-home .hero-area {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}
/* CTA layout */
.hero-copy .hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 16px;
}
/* --------------------------------------------------
   2-2 HERO BACKGROUND SLIDER
-------------------------------------------------- */
.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .95;
  isolation: isolate;
}
.page-home .hero-bg__slide {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--burst-w, 320px);
  aspect-ratio: 16 / 10;
  transform:
    translate3d(var(--burst-x, 50vw), var(--burst-y, 50%), 0) translate(-50%, -50%) rotate(var(--burst-rotate, 0deg)) scale(.22);
  transform-origin: center center;
  background-image: var(--burst-image, none);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter:
    blur(1.5px) saturate(1.16) brightness(1.1);
  will-change: transform, opacity, filter;
}
.page-home .hero-bg__slide::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, .18) 0%, rgba(185, 225, 255, .12) 30%, rgba(185, 225, 255, 0) 72%);
  filter: blur(18px);
  opacity: .9;
  z-index: -1;
}
.page-home .hero-bg__slide.is-burst {
  animation: heroImageBurst var(--burst-duration, 1600ms) cubic-bezier(.18, .7, .18, 1) both;
}
@keyframes heroImageBurst {
  0% {
    opacity: 0;
    transform:
      translate3d(var(--burst-x, 50vw), var(--burst-y, 50%), 0) translate(-50%, -50%) rotate(var(--burst-rotate, 0deg)) scale(.22);
    filter:
      blur(2px) saturate(1.06) brightness(1.04);
  }
  14% {
    opacity: .34;
    transform:
      translate3d(var(--burst-x, 50vw), var(--burst-y, 50%), 0) translate(-50%, -50%) rotate(var(--burst-rotate, 0deg)) scale(.56);
  }
  36% {
    opacity: .52;
    transform:
      translate3d(var(--burst-x, 50vw), var(--burst-y, 50%), 0) translate(-50%, -50%) rotate(var(--burst-rotate, 0deg)) scale(.96);
  }
  100% {
    opacity: 0;
    transform:
      translate3d(var(--burst-x, 50vw), var(--burst-y, 50%), 0) translate(-50%, -50%) rotate(var(--burst-rotate, 0deg)) scale(1.72);
    filter:
      blur(2px) saturate(1.14) brightness(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-bg__slide {
    animation: none !important;
    opacity: 0 !important;
    transform:
      translate3d(50%, 50%, 0) translate(-50%, -50%) scale(.3) !important;
  }
}
/* ---------------------------------
   readability overlay
---------------------------------- */
.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(185, 205, 255, .15), transparent 60%), radial-gradient(820px 480px at 82% 30%, rgba(255, 255, 255, .18), transparent 58%), linear-gradient(rgba(255, 255, 255, .40), rgba(255, 255, 255, .25) 45%, rgba(255, 255, 255, .45)), linear-gradient(90deg, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, .18) 55%, rgba(255, 255, 255, .08) 100%);
}
/* --------------------------------------------------
   2-3 HERO SCREEN FRAME
-------------------------------------------------- */
/* 右スクリーン */
.page-home .hero-frame {
  position: relative;
  z-index: 2;
  justify-self: end;
  aspect-ratio: 16 / 9;
  width: min(800px, 60vw);
  transform: translate(-80px, 6px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .26);
  backdrop-filter: blur(8px);
  box-shadow: 0 28px 60px rgba(11, 15, 26, .18);
}
/* screenshot layers */
.page-home .hero-frame__layer {
  position: absolute;
  inset: 0;
  background: var(--hero-image) center / contain no-repeat;
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(1.08);
  transition:
    opacity .55s ease, transform 7s ease;
  will-change: transform;
}
.page-home .hero-frame__layer.is-show {
  opacity: 1;
  transform: scale(1.07);
}
/* glass highlight */
.page-home .hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(56, 216, 255, .32), 0 0 14px rgba(56, 216, 255, .22), 0 0 32px rgba(10, 92, 255, .16);
  opacity: .8;
  z-index: 2;
  animation: heroFrameGlow 4.2s ease-in-out infinite;
}

/* 紙を裂いたようなHeroフレーム演出 */
.page-home .hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;

  background-image: url("../img/works/paper_full.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* Hero上のテキスト類は紙演出より前面へ */
.page-home .hero-copy {
  z-index: 6;
}

.page-home .hero-note {
  z-index: 7;
}


@keyframes heroCopyGlow {
  0%, 100% {
    opacity: .75;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.35);
  }
}
@keyframes heroFrameGlow {
  0%, 100% {
    opacity: .7;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.4);
  }
}
/* ---------------------------------
   motion reduction
---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-bg__slide, .page-home .hero-frame__layer {
    transition: none;
  }
}
/* --------------------------------------------------
   2-4 HERO NOTE
-------------------------------------------------- */
.hero-note {
  position: absolute;
  right: 40px;
  bottom: 28px;
  z-index: 3;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(11, 15, 26, .65);
  box-shadow: 0 18px 40px rgba(11, 15, 26, .18);
}
/* --------------------------------------------------
   2-5) Trust Bar
-------------------------------------------------- */
.trust-bar {
  position: relative;
  margin-top: -20px;
  padding: 20px 0 0;
  z-index: 2;
}
.page-home .trust-bar {
  margin-top: -20px;
  padding-top: 0;
  padding-bottom: 0;
}
.page-home .trust-bar.section {
  padding-bottom: 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 16px 40px rgba(11, 15, 26, .08), inset 0 1px 0 rgba(255, 255, 255, .82);
  overflow: hidden;
  padding-bottom: 0px;
}
.trust-item {
  position: relative;
  min-height: 138px;
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color .22s ease, transform .22s ease;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: linear-gradient(to bottom, transparent, rgba(11, 15, 26, .10) 20%, rgba(11, 15, 26, .10) 80%, transparent);
}
.trust-item:hover {
  background: rgba(255, 255, 255, .18);
}
.trust-number {
  display: block;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}
.trust-label {
  display: block;
  margin-top: 10px;
  padding-bottom: 2px;
  font-size: .9rem;
  line-height: 1.6;
  letter-spacing: .04em;
  color: rgba(11, 15, 26, .62);
}
.trust-item:last-child .trust-number {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: .01em;
}
/* --------------------------------------------------
   2-5.5) Problems
-------------------------------------------------- */
.problems {
  position: relative;
  padding: 18px 0 28px;
  background:
    radial-gradient(760px 220px at 12% 120px, rgba(184, 201, 251, .18), transparent 62%), radial-gradient(680px 220px at 88% 140px, rgba(0, 92, 255, .05), transparent 58%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 250, 255, .96) 24%, rgba(241, 246, 255, .92) 52%, rgba(247, 250, 255, .96) 82%, rgba(255, 255, 255, 1) 100%);
}
.problems__inner {
  position: relative;
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 28px;
  padding: 34px 30px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(250, 252, 255, .82));
  box-shadow:
    0 18px 40px rgba(11, 15, 26, .08), 0 4px 12px rgba(11, 15, 26, .04), inset 0 1px 0 rgba(255, 255, 255, .88);
  overflow: hidden;
}
.problems__inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
  opacity: .95;
}
.problems__head {
  margin-bottom: 26px;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.problem-card {
  position: relative;
  min-height: 100%;
  padding: 24px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(11, 15, 26, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .86));
  box-shadow:
    0 12px 30px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition:
    transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
}
.problem-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 201, 251, .20), transparent 70%);
  opacity: 0;
  transition: opacity .26s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 92, 255, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 250, 255, .90));
  box-shadow:
    0 20px 42px rgba(11, 15, 26, .10), inset 0 1px 0 rgba(255, 255, 255, .92);
}
.problem-card:hover::after {
  opacity: 1;
}
.problem-card__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 92, 255, .08);
  border: 1px solid rgba(0, 92, 255, .10);
  color: rgba(11, 15, 26, .62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.problem-card h3 {
  margin: 14px 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .01em;
}
.problem-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(11, 15, 26, .70);
}
.problems__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 15, 26, .08);
  flex-wrap: wrap;
}
.problems__message {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  font-weight: 700;
  color: rgba(11, 15, 26, .82);
}
.problems__message strong {
  color: var(--primary-text);
}
.problems__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .problems__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .problems {
    padding: 10px 0 18px;
  }
  .problems__inner {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }
  .problems__head {
    margin-bottom: 20px;
  }
  .problem-card {
    padding: 20px 18px 18px;
    border-radius: 18px;
  }
  .problem-card h3 {
    margin: 12px 0 8px;
    font-size: 17px;
  }
  .problems__footer {
    margin-top: 20px;
    padding-top: 18px;
  }
  .problems__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .problems__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
  Problems ネオン順番発光（軽量・安定版）
========================================= */
.problem-card {
  isolation: isolate;
}
.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    0 0 0 1px rgba(56, 216, 255, .24), 0 0 10px rgba(56, 216, 255, .18), 0 0 18px rgba(10, 92, 255, .12);
}
.problem-card h3 {
  transition: color .25s ease, text-shadow .25s ease;
}
@keyframes problemRingGlow {
  0%, 18%, 100% {
    opacity: 0;
  }
  6%, 12% {
    opacity: 1;
  }
}
@keyframes problemTitleGlow {
  0%, 18%, 100% {
    color: #0b0f1a;
    text-shadow: none;
  }
  6%, 12% {
    color: #0a5cff;
    text-shadow:
      0 0 6px rgba(56, 216, 255, .32), 0 0 12px rgba(10, 92, 255, .18);
  }
}
.problem-card:nth-child(1)::before {
  animation: problemRingGlow 8s linear infinite;
}
.problem-card:nth-child(1) h3 {
  animation: problemTitleGlow 8s linear infinite;
}
.problem-card:nth-child(2)::before {
  animation: problemRingGlow 8s linear infinite 2s;
}
.problem-card:nth-child(2) h3 {
  animation: problemTitleGlow 8s linear infinite 2s;
}
.problem-card:nth-child(3)::before {
  animation: problemRingGlow 8s linear infinite 4s;
}
.problem-card:nth-child(3) h3 {
  animation: problemTitleGlow 8s linear infinite 4s;
}
.problem-card:nth-child(4)::before {
  animation: problemRingGlow 8s linear infinite 6s;
}
.problem-card:nth-child(4) h3 {
  animation: problemTitleGlow 8s linear infinite 6s;
}
@media (prefers-reduced-motion: reduce) {
  .problem-card::before, .problem-card h3 {
    animation: none !important;
  }
}
/* --------------------------------------------------
   2-6) Strengths / Works
-------------------------------------------------- */
#strengths {
  padding: 96px 0 110px;
}
.strengths {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 248, 255, .92) 12%, rgba(232, 239, 252, .82) 24%, rgba(226, 234, 250, .88) 50%, rgba(232, 239, 252, .82) 76%, rgba(245, 248, 255, .92) 88%, rgba(255, 255, 255, 1) 100%);
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 32px;
}
.strength-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(11, 15, 26, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(250, 252, 255, .80));
  box-shadow:
    0 12px 30px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .88);
  transition:
    transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.strength-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .96), transparent);
  opacity: .9;
}
.strength-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 201, 251, .22), transparent 70%);
  opacity: 0;
  transition: opacity .28s ease;
}
.strength-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 92, 255, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 251, 255, .88));
  box-shadow:
    0 22px 46px rgba(11, 15, 26, .10), inset 0 1px 0 rgba(255, 255, 255, .92);
}
.strength-card:hover::after {
  opacity: 1;
}
.strength-no {
  position: absolute;
  top: 18px;
  left: 20px;
  opacity: .6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, .55);
}
.strength-card h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 18px;
}
.strength-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, .65);
}
/* =========================================
  Strengths 順番発光（軽量・安定版）
========================================= */
.strength-card {
  transition:
    transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.strength-card h3 {
  transition:
    color .25s ease, text-shadow .25s ease;
}
@keyframes strengthCardGlow {
  0%, 18%, 100% {
    border-color: rgba(11, 15, 26, .08);
    box-shadow:
      0 12px 30px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .88), inset 0 0 0 0 rgba(56, 216, 255, 0);
  }
  6%, 12% {
    border-color: rgba(56, 216, 255, .42);
    box-shadow:
      0 12px 30px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .88), inset 0 0 0 1px rgba(56, 216, 255, .24), 0 0 12px rgba(56, 216, 255, .16), 0 0 22px rgba(10, 92, 255, .10);
  }
}
@keyframes strengthTitleGlow {
  0%, 18%, 100% {
    color: #0b0f1a;
    text-shadow: none;
  }
  6%, 12% {
    color: #0a5cff;
    text-shadow:
      0 0 6px rgba(56, 216, 255, .30), 0 0 12px rgba(10, 92, 255, .16);
  }
}
.strength-card:nth-child(1) {
  animation: strengthCardGlow 6s linear infinite;
}
.strength-card:nth-child(1) h3 {
  animation: strengthTitleGlow 6s linear infinite;
}
.strength-card:nth-child(2) {
  animation: strengthCardGlow 6s linear infinite 2s;
}
.strength-card:nth-child(2) h3 {
  animation: strengthTitleGlow 6s linear infinite 2s;
}
.strength-card:nth-child(3) {
  animation: strengthCardGlow 6s linear infinite 4s;
}
.strength-card:nth-child(3) h3 {
  animation: strengthTitleGlow 6s linear infinite 4s;
}
@media (prefers-reduced-motion: reduce) {
  .strength-card, .strength-card h3 {
    animation: none !important;
  }
}
.page-home #works {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 88px;
  background:
    radial-gradient(900px 300px at 12% 12%, rgba(184, 201, 251, .30), transparent 62%), radial-gradient(760px 240px at 88% 18%, rgba(0, 92, 255, .05), transparent 58%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 249, 255, .94) 16%, rgba(239, 245, 255, .90) 52%, rgba(246, 249, 255, .94) 84%, rgba(255, 255, 255, 1) 100%);
}
.page-home #works::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .28), rgba(255, 255, 255, 0)), repeating-linear-gradient(90deg, rgba(11, 15, 26, .018) 0 1px, transparent 1px 120px);
  opacity: .42;
}
.page-home #works .container, .page-home .works-list {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin-inline: auto;
}
.page-home #works::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(250, 251, 255, .72) 45%, rgba(255, 255, 255, 1) 100%);
}
/* --------------------------------------------------
   2-7) Works Guide
-------------------------------------------------- */
.works-guide {
  margin: 24px 0 32px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(80, 140, 255, .08), transparent 62%), rgba(255, 255, 255, .72);
  box-shadow:
    0 14px 34px rgba(11, 15, 26, .08), 0 3px 10px rgba(11, 15, 26, .04);
}
.works-guide__title {
  margin: 0 0 12px;
  font-size: .95rem;
  font-weight: 700;
  color: rgba(11, 15, 26, .78);
}
.works-guide__text, .works-guide__note {
  margin: 0;
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(11, 15, 26, .72);
}
@media (max-width: 768px) {
  .works-guide {
    margin: 20px 0 28px;
    padding: 18px 16px;
    border-radius: 18px;
  }
}
/* ==================================================
   3) SERVICEページ
================================================== */
/* --------------------------------------------------
   3-1) Page Base
-------------------------------------------------- */
body.page-service {
  --bg: #f5f8fd;
  background: var(--bg);
}
.page-service main {
  background:
    radial-gradient(1100px 420px at 12% 0%, rgba(184, 201, 251, .14), transparent 58%), radial-gradient(900px 380px at 88% 12%, rgba(0, 92, 255, .035), transparent 56%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 249, 255, .96) 28%, rgba(241, 246, 255, .92) 58%, rgba(246, 249, 255, .96) 82%, rgba(255, 255, 255, 1) 100%);
}
body.page-service .section {
  padding-block: clamp(40px, 5.2vw, 74px);
}
.page-service #pricing {
  margin-top: -20px;
}
.page-service .section--soft {
  background:
    radial-gradient(900px 260px at 88% 120px, rgba(0, 92, 255, .05), transparent 60%), radial-gradient(900px 280px at 12% calc(100% - 120px), rgba(184, 201, 251, .16), transparent 60%), linear-gradient(180deg, rgba(238, 244, 255, .90) 0%, rgba(243, 248, 255, .92) 28%, rgba(246, 250, 255, .94) 50%, rgba(243, 248, 255, .92) 72%, rgba(238, 244, 255, .90) 100%);
  border-block: none;
}
.page-service .service-precta {
  background:
    radial-gradient(900px 280px at 12% 120px, rgba(184, 201, 251, .16), transparent 60%), linear-gradient(180deg, rgba(238, 244, 255, .90) 0%, rgba(243, 248, 255, .92) 24%, rgba(248, 251, 255, .96) 58%, rgba(238, 244, 255, .90) 100%);
}
/* --------------------------------------------------
   3-2) Hero / Section Head
-------------------------------------------------- */
.page-service .service-hero {
  padding-top: 40px;
  padding-bottom: 0px;
}
.page-service .service-hero__title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #0b0f1a;
  text-shadow:
    0 0 0 rgba(10, 92, 255, 0), 0 0 0 rgba(56, 216, 255, 0);
  animation: serviceTitleNeon 3.6s ease-in-out infinite;
}
@keyframes serviceTitleNeon {
  0%, 100% {
    color: #0b0f1a;
    text-shadow:
      0 0 0 rgba(10, 92, 255, 0), 0 0 0 rgba(56, 216, 255, 0);
    filter: brightness(1);
  }
  50% {
    color: #0a5cff;
    text-shadow:
      0 0 8px rgba(10, 92, 255, .38), 0 0 18px rgba(56, 216, 255, .30), 0 0 30px rgba(185, 242, 255, .20);
    filter: brightness(1.04);
  }
}
.page-service .service-hero__lead {
  margin-top: 14px;
  max-width: 640px;
  color: rgba(11, 15, 26, .70);
  line-height: 1.8;
}
.page-service .service-hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-service .service-hero__chips {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.page-service .service-hero {
  overflow: hidden;
}
.page-service .service-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 34px;
  align-items: center;
}
.page-service .service-hero__content {
  position: relative;
  z-index: 2;
}
.page-service .service-hero__visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-service .service-hero__image {
  display: block;
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  opacity: .22;
  filter: blur(1.4px) brightness(.90) contrast(1.02);
  transform: translate(10px, 8px);
  user-select: none;
  pointer-events: none;
}
.page-service .service-hero__panel {
  position: absolute;
  right: 10px;
  bottom: 14px;
  z-index: 2;
  width: min(400px, 92%);
  padding: 18px 18px 16px;
  border: 1px solid rgba(0, 92, 255, .12);
  border-radius: 24px;
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(184, 201, 251, .20), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .86));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 18px 40px rgba(11, 15, 26, .10), 0 4px 12px rgba(11, 15, 26, .05), inset 0 1px 0 rgba(255, 255, 255, .88);
}
.page-service .service-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .96), transparent);
  opacity: .9;
}
.page-service .service-hero__panel-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(0, 92, 255, .78);
}
.page-service .service-hero__panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.page-service .service-hero__panel-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(11, 15, 26, .78);
}
.page-service .service-hero__panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 92, 255, .42);
  box-shadow: 0 0 8px rgba(56, 216, 255, .32);
}
.page-service .service-hero__panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.page-service .service-hero__panel-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 92, 255, .10);
  background: rgba(255, 255, 255, .72);
  color: rgba(11, 15, 26, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
@media (max-width: 1100px) {
  .page-service .service-hero__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .page-service .service-hero__visual {
    min-height: auto;
    width: min(100%, 760px);
    margin: 6px auto 0;
  }
  /* ★ここ追加 */
  .page-service .service-hero__image {
    display: none;
  }
  /* ★ここ調整（重要） */
  .page-service .service-hero__panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 560px);
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page-service .service-hero {
    padding-bottom: 18px;
  }
  .page-service .service-hero__title {
    font-size: clamp(32px, 8vw, 40px);
  }
  .page-service .service-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .page-service .service-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .page-service .service-hero__chips {
    gap: 10px 8px;
  }
  .page-service .service-hero__visual {
    width: 100%;
    margin-top: 12px;
  }
  .page-service .service-hero__panel {
    width: min(100%, 520px);
    padding: 18px 16px 16px;
    border-radius: 20px;
    margin: -18px auto 0;
  }
}
@media (max-width: 640px) {
  .page-service .service-hero__visual {
    display: block;
    margin-top: 18px;
    min-height: auto;
  }
  .page-service .service-hero__panel {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 18px 16px 16px;
  }
  .page-service .service-hero__panel-list {
    gap: 12px;
  }
  .page-service .service-hero__panel-list li {
    font-size: 14px;
    line-height: 1.8;
  }
  .page-service .service-hero__panel-meta {
    gap: 10px 8px;
  }
}
.page-service .section-head {
  display: grid;
  /*gap: 6px;*/
  margin-bottom: 26px;
  max-width: none;
}
.page-service .section-head .eyebrow::after {
  opacity: .88;
}
.page-service .section-lead {
  max-width: 520px;
  color: rgba(11, 15, 26, .70);
  line-height: 1.85;
  margin-top: 0;
}
.page-service .pricing-intro-note {
  margin-top: 10px;
  max-width: 720px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 92, 255, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  color: rgba(11, 15, 26, .70);
  line-height: 1.8;
  box-shadow: 0 8px 22px rgba(11, 15, 26, .05);
}
/* --------------------------------------------------
   3-3) Layout Grid
-------------------------------------------------- */
.page-service .service-grid, .page-service .precta-grid, .page-service .trust-grid, .page-service .works-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.page-service .price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.page-service .service-grid, .page-service .price-grid {
  align-items: stretch;
  margin-top: 18px;
}
/* --------------------------------------------------
   3-4) Shared Card Base
-------------------------------------------------- */
.page-service .service-card, .page-service .price-card, .page-service .process-item, .page-service .faq-item {
  border: 1px solid rgba(11, 15, 26, .16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 15, 26, .08);
}
/* --------------------------------------------------
   3-5) Service Card
-------------------------------------------------- */
.page-service .service-card {
  padding: 22px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 249, 255, .94));
}
.page-service .service-card h3 {
  font-size: 16px;
  font-weight: 900;
}
.page-service .service-card p {
  margin-top: 8px;
  line-height: 1.8;
  color: rgba(11, 15, 26, .70);
}
/* --------------------------------------------------
   3-6) Process
-------------------------------------------------- */
.page-service .process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
  counter-reset: step;
}
.page-service .process-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  padding: 22px 18px 18px;
}
.page-service .process-item::before {
  counter-increment: step;
  content: "0"counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  border-radius: 999px;
  background: rgba(0, 92, 255, .08);
  color: var(--primary-text);
  font-weight: 900;
  letter-spacing: .04em;
}
.page-service .process-item h3 {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}
.page-service .process-item p {
  grid-column: 1 / -1;
  margin-top: 0;
  color: rgba(11, 15, 26, .70);
  line-height: 1.8;
}
/* --------------------------------------------------
   3-7) FAQ
-------------------------------------------------- */
.page-service .faq {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.page-service .faq-item {
  padding: 16px 20px;
  border-radius: 22px;
  border: 1px solid rgba(11, 15, 26, .08);
  background: #fff;
  box-shadow: 0 10px 26px rgba(11, 15, 26, .06);
  transition: box-shadow .2s ease, transform .15s ease;
}
.page-service .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(11, 15, 26, .10);
}
.page-service .faq-q {
  position: relative;
  padding-right: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 900;
}
.page-service .faq-q::-webkit-details-marker {
  display: none;
}
.page-service .faq-q::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 900;
  opacity: .5;
}
.page-service .faq-item[open] .faq-q::after {
  content: "−";
}
.page-service .faq-a {
  margin-top: 10px;
}
.page-service .faq-a p {
  color: rgba(11, 15, 26, .70);
  line-height: 1.8;
}
/* --------------------------------------------------
   3-8) Price Card
-------------------------------------------------- */
.page-service .price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 22px 22px;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(184, 201, 251, .18), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 255, .98));
}
.page-service .price-card--starter {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 182, 193, .35);
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(184, 201, 251, .14), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 252, 255, .98));
  box-shadow:
    0 12px 30px rgba(11, 15, 26, .08), 0 10px 28px rgba(255, 182, 193, .08);
  transition:
    transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.page-service .price-card--starter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/start/sakura-starter.webp") right bottom / cover no-repeat;
  opacity: .05;
  filter: blur(1px);
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity .25s ease, filter .25s ease;
}
.page-service .price-card--starter > * {
  position: relative;
  z-index: 1;
}
.page-service .price-card--starter:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 182, 193, .65);
  box-shadow:
    0 14px 34px rgba(11, 15, 26, .10), 0 12px 32px rgba(255, 182, 193, .18);
}
.page-service .price-card--starter:hover::before {
  opacity: .09;
  filter: blur(.6px);
}
.page-service .price-grid {
  align-items: stretch;
}
.page-service .price-card {
  transition:
    transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, opacity .24s ease, filter .24s ease;
}
/* おすすめカードを主役化 */
.page-service .price-card--accent {
  z-index: 2;
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(0, 92, 255, .28);
  background:
    radial-gradient(600px 260px at 50% -40%, rgba(0, 92, 255, .18), transparent 65%), linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 249, 255, .98));
  box-shadow:
    0 28px 64px rgba(0, 92, 255, .18), 0 12px 28px rgba(11, 15, 26, .10);
}
/* 上からのハイライト */
.page-service .price-card--accent::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .96), transparent);
  opacity: .95;
}
/* うっすらリング */
.page-service .price-card--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}
/* badgeも少し強く */
.page-service .price-card--accent .price-card__badge {
  background: rgba(0, 92, 255, .14);
  border: 1px solid rgba(0, 92, 255, .18);
  box-shadow: 0 8px 20px rgba(0, 92, 255, .10);
}
/* 両端カードは少し控えめに */
.page-service .price-grid:has(.price-card--accent) > .price-card:not(.price-card--accent) {
  transform: translateY(6px);
  opacity: 1;
  filter: none;
}
/* hover時の役割分担 */
.page-service .price-grid:has(.price-card--accent) > .price-card:not(.price-card--accent):hover {
  transform: translateY(0);
  opacity: 1;
  box-shadow:
    0 18px 38px rgba(11, 15, 26, .10), 0 6px 16px rgba(11, 15, 26, .05);
}
.page-service .price-card--accent:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 30px 62px rgba(0, 92, 255, .20), 0 12px 28px rgba(11, 15, 26, .10);
}
@media (max-width: 768px) {
  .page-service .price-grid:has(.price-card--accent) > .price-card:not(.price-card--accent) {
    transform: none;
    opacity: 1;
  }
  .page-service .price-card--accent {
    transform: translateY(-4px) scale(1.01);
  }
  .page-service .price-card--accent:hover {
    transform: translateY(-6px) scale(1.01);
  }
  .page-service .price-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  .page-service .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page-service .price-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 92, 255, .10);
  color: var(--primary-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 6px 14px rgba(0, 92, 255, .15);
}
.page-service .price-card__kicker {
  color: rgba(11, 15, 26, .58);
  font-size: 12px;
  letter-spacing: .08em;
}
.page-service .price-card__title {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .01em;
}
.page-service .price-card__price {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  color: #005CFF;
  letter-spacing: .02em;
}
.page-service .price-card__price small {
  font-size: 14px;
  font-weight: 700;
  color: rgba(11, 15, 26, .56);
}
.page-service .price-card__lead {
  margin-top: 6px;
  min-height: 3.2em;
  color: rgba(11, 15, 26, .72);
  line-height: 1.8;
}
.page-service .price-card__list {
  display: grid;
  gap: 3px;
  margin-top: 16px;
  padding-left: 1.2em;
  color: rgba(11, 15, 26, .78);
}
/* =====================
   Web Partner Plan
===================== */
.page-service .price-card--partner {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  border-color: rgba(0, 92, 255, .18);
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 216, 255, .18), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 246, 255, .88));
}
.page-service .price-card--partner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 92, 255, .16), transparent 34%, rgba(56, 216, 255, .14));
  opacity: .45;
}
.page-service .price-card--partner > * {
  position: relative;
  z-index: 1;
}
.page-service .price-card__partner-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}
.page-service .price-card__list--partner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}
.page-service .price-card--partner .price-card__actions {
  max-width: 360px;
  margin-left: auto;
}
@media (max-width: 900px) {
  .page-service .price-card__partner-main {
    grid-template-columns: 1fr;
  }
  .page-service .price-card__list--partner {
    margin-top: 4px;
  }
  .page-service .price-card--partner .price-card__actions {
    max-width: none;
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .page-service .price-card__list--partner {
    grid-template-columns: 1fr;
  }
}
.page-service .pricing-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.page-service .pricing-meta__item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(11, 15, 26, .08);
  background: rgba(255, 255, 255, .75);
  z-index: 5
}
.page-service .pricing-meta__label {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(11, 15, 26, .52);
}
.page-service .pricing-meta__value {
  display: block;
  margin-top: 3px;
  font-weight: 800;
  color: rgba(11, 15, 26, .88);
}
.page-service .price-note {
  margin-top: 14px;
  color: rgba(11, 15, 26, .58);
  line-height: 1.8;
}
.page-service .price-card__note {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #005CFF;
}
.page-service .price-card__actions {
  margin-top: auto;
  padding-top: 16px;
}
.page-service .price-card__actions .btn {
  width: 100%;
  justify-content: center;
}
.page-service .price-card__price small {
  font-size: 13px;
  font-weight: 700;
  color: rgba(11, 15, 26, .52);
  white-space: nowrap;
}
/* =====================
   PRICE CARD ANIMATIONS
===================== */
@keyframes badgeShake {
  0% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(-2px, -3px) scale(1.05);
  }
  40% {
    transform: translate(2px, -5px) scale(1.05);
  }
  60% {
    transform: translate(-2px, -3px) scale(1.04);
  }
  80% {
    transform: translate(2px, -2px) scale(1.02);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes softBlink {
  0% {
    color: #005CFF;
  }
  50% {
    color: rgba(0, 92, 255, .45);
  }
  100% {
    color: #005CFF;
  }
}
/* badge：通常はゆっくり点滅 */
.page-service .price-card__badge {
  transform-origin: center;
  animation: softBlink 3.2s ease-in-out infinite;
}
/* badge：hover時にプルプル追加 */
.page-service .price-card:hover .price-card__badge {
  animation:
    softBlink 3.2s ease-in-out infinite, badgeShake .5s ease .08s 1;
}
.page-service .price-card__actions .btn.btn--primary {
  animation: softBlink 3.6s ease-in-out infinite;
}
.page-service .price-card:hover .price-card__actions .btn.btn--primary {
  animation: softBlink 2s ease-in-out infinite;
}
/* --------------------------------------------------
   3-9) Pre CTA / Trust Card
-------------------------------------------------- */
.page-service .precta-card, .page-service .trust-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(11, 15, 26, .08);
  box-shadow: 0 10px 26px rgba(11, 15, 26, .06);
}
.page-service .precta-card {
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 28px rgba(11, 15, 26, .06);
}
.page-service .trust-card {
  background: rgba(255, 255, 255, .90);
}
.page-service .precta-card h3, .page-service .trust-card h3 {
  font-size: 16px;
  font-weight: 900;
}
.page-service .precta-card p {
  margin-top: 4px;
  line-height: 1.8;
  color: rgba(11, 15, 26, .68);
}
.page-service .trust-card p {
  margin-top: 8px;
  line-height: 1.8;
  color: rgba(11, 15, 26, .70);
}
/* --------------------------------------------------
   3-10) Works Mini Card
-------------------------------------------------- */
.page-service .works-mini-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: visible;
  border: 1px solid rgba(11, 15, 26, .08);
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 15, 26, .08);
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.page-service .works-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 92, 255, .14);
  box-shadow: 0 18px 36px rgba(11, 15, 26, .10);
}
.page-service .works-mini-card__media {
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.page-service .works-mini-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .6s ease;
}
.page-service .works-mini-card:hover img {
  transform: scale(1.05);
}
.page-service .works-mini-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 18px;
}
.page-service .works-mini-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}
.page-service .works-mini-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11, 15, 26, .68);
}
/* ==================================================
   SERVICE page atmosphere rhythm
================================================== */
.page-service .section:nth-of-type(odd) {
  background:
    radial-gradient(900px 280px at 12% 120px, rgba(184, 201, 251, .16), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, .96) 18%, rgba(243, 248, 255, .92) 58%, rgba(238, 244, 255, .90) 100%);
}
.page-service .section:nth-of-type(even) {
  background:
    radial-gradient(900px 260px at 88% 120px, rgba(0, 92, 255, .05), transparent 60%), linear-gradient(180deg, rgba(238, 244, 255, .90) 0%, rgba(243, 248, 255, .92) 42%, rgba(248, 251, 255, .96) 78%, rgba(255, 255, 255, 1) 100%);
}
.page-service .section + .section {
  margin-top: -2px;
}
/* =====================
   SERVICE section background fix
===================== */
.page-service .section.section--soft {
  background:
    radial-gradient(900px 260px at 88% 120px, rgba(0, 92, 255, .05), transparent 60%), radial-gradient(900px 280px at 12% calc(100% - 120px), rgba(184, 201, 251, .16), transparent 60%), linear-gradient(180deg, rgba(238, 244, 255, .90) 0%, rgba(243, 248, 255, .92) 28%, rgba(246, 250, 255, .94) 50%, rgba(243, 248, 255, .92) 72%, rgba(238, 244, 255, .90) 100%);
}
.page-service .section.service-precta {
  background:
    radial-gradient(900px 280px at 12% 120px, rgba(184, 201, 251, .16), transparent 60%), radial-gradient(760px 220px at 88% calc(100% - 120px), rgba(0, 92, 255, .05), transparent 58%), linear-gradient(180deg, rgba(238, 244, 255, .90) 0%, rgba(243, 248, 255, .92) 24%, rgba(248, 251, 255, .96) 58%, rgba(243, 248, 255, .92) 78%, rgba(238, 244, 255, .90) 100%);
}
.page-service #pricing {
  position: relative;
  overflow: hidden;
  background: /* 上：左右とも薄く広く */ radial-gradient(1100px 320px at 8% 0%, rgba(184, 201, 251, .065), transparent 64%), radial-gradient(1100px 320px at 92% 0%, rgba(0, 92, 255, .018), transparent 64%), /* 下：上と同じ濃度でそろえる */ radial-gradient(1100px 320px at 8% 100%, rgba(184, 201, 251, .09), transparent 62%), radial-gradient(1100px 320px at 92% 100%, rgba(0, 92, 255, .028), transparent 62%), /* ベースは淡い青白 */ linear-gradient(180deg, rgba(240, 246, 255, .90) 0%, rgba(245, 249, 255, .94) 22%, rgba(247, 250, 255, .95) 50%, rgba(245, 249, 255, .94) 78%, rgba(240, 246, 255, .90) 100%);
}
/* =====================
   Service Sticky CTA
===================== */
.page-service {
  padding-bottom: 96px;
}
.page-home {
  padding-bottom: 96px;
}
.page-service .service-sticky {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 900;
  width: min(1040px, calc(100% - 32px));
  transform: translateX(-50%);
  pointer-events: none;
}
.page-home .service-sticky {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 900;
  width: min(1040px, calc(100% - 32px));
  transform: translateX(-50%);
  pointer-events: none;
}
.page-service .service-sticky__inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(0, 92, 255, .20);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, rgba(56, 216, 255, .18), transparent 34%), linear-gradient(135deg, rgba(222, 239, 255, .96), rgba(205, 230, 255, .90));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 18px 42px rgba(11, 15, 26, .16), 0 0 24px rgba(56, 216, 255, .18), inset 0 1px 0 rgba(255, 255, 255, .92);
}
.page-home .service-sticky__inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(0, 92, 255, .20);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, rgba(56, 216, 255, .18), transparent 34%), linear-gradient(135deg, rgba(222, 239, 255, .96), rgba(205, 230, 255, .90));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 18px 42px rgba(11, 15, 26, .16), 0 0 24px rgba(56, 216, 255, .18), inset 0 1px 0 rgba(255, 255, 255, .92);
}
.page-service .service-sticky__label {
  margin: 0;
  color: rgba(11, 15, 26, .64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}
.page-home .service-sticky__label {
  margin: 0;
  color: rgba(11, 15, 26, .64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}
.page-service .service-sticky__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}
.page-service .service-sticky__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(0, 92, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: rgba(11, 15, 26, .78);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 4px 10px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition:
    transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.page-home .service-sticky__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}
.page-home .service-sticky__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(0, 92, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: rgba(11, 15, 26, .78);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 4px 10px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition:
    transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.page-service .service-sticky__links a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 92, 255, .22);
  background: #fff;
  color: #005CFF;
  box-shadow:
    0 10px 22px rgba(11, 15, 26, .10), 0 0 14px rgba(56, 216, 255, .18);
}
.page-service .service-sticky__link--partner {
  color: #fff !important;
  border-color: rgba(56, 216, 255, .34) !important;
  background:
    linear-gradient(120deg, #0a5cff 0%, #38d8ff 52%, #7f9cff 100%) !important;
  box-shadow:
    0 0 16px rgba(56, 216, 255, .24), 0 8px 20px rgba(0, 92, 255, .16);
}
.page-home .service-sticky__link--partner {
  color: #fff !important;
  border-color: rgba(56, 216, 255, .34) !important;
  background:
    linear-gradient(120deg, #0a5cff 0%, #38d8ff 52%, #7f9cff 100%) !important;
  box-shadow:
    0 0 16px rgba(56, 216, 255, .24), 0 8px 20px rgba(0, 92, 255, .16);
}
.page-service .service-sticky__inner, .page-service .service-sticky__links {
  min-width: 0;
}
.page-home .service-sticky__inner, .page-home .service-sticky__links {
  min-width: 0;
}
/* tablet */
@media (max-width: 900px) {
  .page-service {
    padding-bottom: 118px;
  }
  .page-service .service-sticky {
    bottom: 12px;
    width: min(720px, calc(100% - 24px));
  }
  .page-service .service-sticky__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 24px;
    padding: 10px;
  }
  .page-service .service-sticky__label {
    text-align: center;
  }
  .page-service .service-sticky__links {
    grid-template-columns: repeat(5, max-content);
    justify-content: start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .page-service .service-sticky__links::-webkit-scrollbar {
    display: none;
  }
  .page-service .service-sticky__links a {
    min-width: 104px;
  }
  .page-home {
    padding-bottom: 118px;
  }
  .page-home .service-sticky {
    bottom: 12px;
    width: min(720px, calc(100% - 24px));
  }
  .page-home .service-sticky__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 24px;
    padding: 10px;
  }
  .page-home .service-sticky__label {
    text-align: center;
  }
  .page-home .service-sticky__links {
    grid-template-columns: repeat(5, max-content);
    justify-content: start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .page-home .service-sticky__links::-webkit-scrollbar {
    display: none;
  }
  .page-home .service-sticky__links a {
    min-width: 104px;
  }
}
/* SP */
@media (max-width: 640px) {
  .page-service {
    padding-bottom: 178px;
  }
  .page-service .site-footer {
    padding-bottom: 70px;
  }
  .page-service .service-sticky {
    width: calc(100% - 18px);
    bottom: 8px;
  }
  .page-service .service-sticky__inner {
    border-radius: 22px;
    padding: 9px 10px 10px;
    overflow: visible;
  }
  .page-service .service-sticky__label {
    font-size: 11px;
    text-align: center;
  }
  .page-service .service-sticky__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 0;
  }
  .page-service .service-sticky__links::after {
    content: none;
  }
  .page-service .service-sticky__links a {
    min-width: 0;
    min-height: 34px;
    padding-inline: 8px;
    font-size: 10.5px;
  }
  .page-service .service-sticky__link--partner {
    grid-column: 1 / -1;
    min-width: 0;
  }
  .page-home {
    padding-bottom: 178px;
  }
  .page-home .site-footer {
    padding-bottom: 70px;
  }
  .page-home .service-sticky {
    width: calc(100% - 18px);
    bottom: 8px;
  }
  .page-home .service-sticky__inner {
    border-radius: 22px;
    padding: 9px 10px 10px;
    overflow: visible;
  }
  .page-home .service-sticky__label {
    font-size: 11px;
    text-align: center;
  }
  .page-home .service-sticky__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 0;
  }
  .page-home .service-sticky__links::after {
    content: none;
  }
  .page-home .service-sticky__links a {
    min-width: 0;
    min-height: 34px;
    padding-inline: 8px;
    font-size: 10.5px;
  }
  .page-home .service-sticky__link--partner {
    grid-column: 1 / -1;
    min-width: 0;
  }
}
/* ==================================================
   4) CONTACTページ
================================================== */
/* --------------------------------------------------
   4-1) Page Base
-------------------------------------------------- */
.page-contact {
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(184, 201, 251, .22), transparent 58%), radial-gradient(760px 260px at 92% 8%, rgba(0, 92, 255, .08), transparent 52%), linear-gradient(180deg, #fdfefe 0%, #f8fbff 100%);
}
.page-contact .section {
  padding-block: clamp(44px, 5.5vw, 76px);
}
/* --------------------------------------------------
   4-2) Hero
-------------------------------------------------- */
.page-contact .contact-hero {
  padding-bottom: 22px;
  /*border-bottom: 1px solid rgba(11,15,26,.08);*/
  /*background:
    radial-gradient(780px 220px at 50% 0%, rgba(184,201,251,.18), transparent 68%);*/
}
.contact-hero .contact-hero__title {
  letter-spacing: .01em;
  margin-bottom: 15px;
}
.contact-hero .contact-hero__lead {
  color: rgba(11, 15, 26, .74);
}
.contact-hero .contact-hero__note {
  color: rgba(11, 15, 26, .58);
  margin-bottom: 15px;
}
/* --------------------------------------------------
   4-3) Body Layout
-------------------------------------------------- */
.page-contact .contact-body {
  padding-top: 28px;
  padding-bottom: 28px;
}
.page-contact .contact-body .container {
  display: grid;
  gap: 24px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.contact-form-wrap {
  width: 100%;
}
.contact-form-wrap .contact-panel {
  width: 100%;
}
/* --------------------------------------------------
   4-4) Contact Panel
-------------------------------------------------- */
.page-contact .contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(248, 251, 255, .94) 100%);
  box-shadow:
    0 18px 46px rgba(20, 40, 90, .10), 0 4px 14px rgba(11, 15, 26, .04);
}
.page-contact .contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
  opacity: .85;
}
.page-contact .contact-panel__title {
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: .01em;
}
.page-contact .contact-panel__lead {
  margin-top: 8px;
  color: rgba(11, 15, 26, .62);
}
.page-contact .contact-panel .form-actions {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 15, 26, .08);
}
.page-contact .form-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  align-items: center;
}
.page-contact .form-actions .btn {
  width: fit-content;
  min-width: 260px;
  max-width: 100%;
  justify-content: center;
  justify-self: start;
  box-shadow: 0 12px 28px rgba(0, 92, 255, .16);
}
.page-contact .form-actions .btn:hover {
  box-shadow: 0 16px 34px rgba(0, 92, 255, .22);
}
.page-contact .form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-contact .form-submit__lead {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgba(11, 15, 26, .6);
}
.page-contact .form-note {
  margin: 0;
}
@media (max-width: 768px) {
  .page-contact .form-reassure {
    max-width: none;
  }
  .page-contact .form-actions .btn {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
  .page-contact .form-actions {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .page-contact .form-submit {
    width: 100%;
    align-items: stretch;
  }
}
.page-contact .form-reassure {
  max-width: 420px;
  margin-bottom: 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 92, 255, .10);
  border-radius: 18px;
  background:
    radial-gradient(420px 140px at 0% 0%, rgba(184, 201, 251, .18), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .94));
  box-shadow: 0 10px 24px rgba(20, 40, 90, .05);
}
.page-contact .form-reassure__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(11, 15, 26, .88);
}
.page-contact .form-reassure__list {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 4px;
  color: rgba(11, 15, 26, .68);
  line-height: 1.8;
  font-size: 13px;
}
.page-contact .message-help {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(11, 15, 26, .56);
}
.page-contact .contact-panel .form-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(11, 15, 26, .56);
}
/* --------------------------------------------------
   4-5) Form Base
-------------------------------------------------- */
.page-contact .form-label {
  font-weight: 800;
  letter-spacing: .01em;
  color: rgba(11, 15, 26, .92);
}
.page-contact .req {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 92, 255, .10);
  background: rgba(0, 92, 255, .08);
  color: var(--primary-text);
  font-size: 11px;
  font-weight: 800;
}
.page-contact .form-input, .page-contact .form-textarea {
  border: 1px solid rgba(11, 15, 26, .10);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 252, 255, .96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82), 0 1px 2px rgba(11, 15, 26, .02);
  transition:
    border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}
.page-contact .form-input:hover, .page-contact .form-textarea:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 92, 255, .16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88), 0 10px 20px rgba(20, 40, 90, .05);
}
.page-contact .form-input:focus, .page-contact .form-textarea:focus {
  transform: translateY(-2px);
  border-color: rgba(0, 92, 255, .30);
  box-shadow:
    0 0 0 4px rgba(0, 92, 255, .10), 0 14px 30px rgba(20, 40, 90, .10);
}
/* --------------------------------------------------
   4-6) Estimate Box
-------------------------------------------------- */
.page-contact .estimate-box {
  padding: 22px;
  border: 1px solid rgba(0, 92, 255, .10);
  border-radius: 24px;
  background:
    radial-gradient(620px 180px at 0% 0%, rgba(184, 201, 251, .20), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(249, 252, 255, .94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 28px rgba(20, 40, 90, .06);
}
.page-contact .estimate-box__lead {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(11, 15, 26, .66);
}
.page-contact .estimate-group {
  padding: 14px;
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}
.page-contact .estimate-group + .estimate-group {
  margin-top: 14px;
  padding-top: 14px;
}
.page-contact .estimate-group__title {
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: none;
  color: rgba(11, 15, 26, .62);
}
.page-contact .estimate-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.page-contact .estimate-group__head .estimate-group__title {
  margin: 0;
}
.page-contact .estimate-clear {
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(11, 15, 26, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: rgba(11, 15, 26, .58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88), 0 4px 10px rgba(11, 15, 26, .04);
  transition:
    transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.page-contact .estimate-clear:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 92, 255, .18);
  background: rgba(184, 201, 251, .16);
  color: rgba(11, 15, 26, .86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 18px rgba(20, 40, 90, .08);
}
.page-contact .estimate-clear:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(0, 92, 255, .12), 0 8px 18px rgba(20, 40, 90, .08);
}
.page-contact .estimate-result {
  position: relative;
  overflow: hidden;
}
.page-contact .estimate-result::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 92, 255, .92), rgba(95, 146, 255, .42));
}
.page-contact .estimate-result__label {
  font-weight: 800;
}
.page-contact .estimate-result__price {
  letter-spacing: -.02em;
}
.page-contact .estimate-result__note {
  font-size: 13px;
}
.page-contact .estimate-group.is-disabled, .page-contact .estimate-group:disabled {
  opacity: .48;
  filter: saturate(.7);
}
/* --------------------------------------------------
   4-7) Estimate Choice UI
-------------------------------------------------- */
.page-contact .estimate-radio label, .page-contact .estimate-checks label {
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 255, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84);
  transition:
    transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.page-contact .estimate-checks input:disabled + span {
  color: rgba(11, 15, 26, .42);
}
.page-contact .estimate-checks label:has(input:disabled) {
  opacity: .58;
  cursor: not-allowed;
  background:
    linear-gradient(180deg, rgba(248, 249, 251, .96), rgba(243, 245, 248, .94));
  box-shadow: none;
  transform: none;
}
.page-contact .estimate-radio label:hover:not(:has(input:disabled)), .page-contact .estimate-checks label:hover:not(:has(input:disabled)) {
  transform: translateY(-1px);
  border-color: rgba(0, 92, 255, .16);
  box-shadow: 0 12px 24px rgba(20, 40, 90, .07);
}
.page-contact .estimate-radio input:checked + span, .page-contact .estimate-checks input:checked + span {
  color: rgba(11, 15, 26, .96);
}
.page-contact .estimate-radio label:has(input:checked), .page-contact .estimate-checks label:has(input:checked) {
  border-color: rgba(0, 92, 255, .24);
  background:
    linear-gradient(180deg, rgba(184, 201, 251, .18), rgba(255, 255, 255, .98));
  box-shadow:
    0 10px 24px rgba(0, 92, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .90);
}
.contact-form-wrap .estimate-checks label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
}
.contact-form-wrap .estimate-radio label {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-form-wrap input[type="radio"], .contact-form-wrap input[type="checkbox"] {
  margin: 0;
  flex: 0 0 auto;
  position: relative;
  top: 0;
}
.page-contact .estimate-radio, .page-contact .estimate-checks {
  display: grid;
  gap: 12px;
  align-items: stretch;
}
@media (min-width: 961px) {
  .page-contact .estimate-radio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-contact #estimate-base-group .estimate-radio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-contact #estimate-pages-group .estimate-checks, .page-contact #estimate-options-group .estimate-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) and (min-width: 769px) {
  .page-contact .estimate-radio, .page-contact #estimate-base-group .estimate-radio, .page-contact #estimate-pages-group .estimate-checks, .page-contact #estimate-options-group .estimate-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .page-contact .estimate-radio, .page-contact #estimate-base-group .estimate-radio, .page-contact #estimate-pages-group .estimate-checks, .page-contact #estimate-options-group .estimate-checks {
    grid-template-columns: 1fr;
  }
}
/* --------------------------------------------------
   4-8) Estimate Quantity Row
-------------------------------------------------- */
.page-contact .estimate-qty-row {
  margin-top: 12px;
  padding: 14px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 255, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84);
}
.page-contact .estimate-qty-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.page-contact .estimate-qty-row__label {
  font-weight: 700;
  color: rgba(11, 15, 26, .92);
}
.page-contact .estimate-qty-row__price {
  font-size: 13px;
  color: rgba(11, 15, 26, .58);
}
.page-contact .estimate-qty-row__control {
  max-width: 180px;
}
.page-contact .estimate-qty-select {
  min-height: 48px;
  font-weight: 600;
  border-radius: 14px;
  border: 1px solid rgba(11, 15, 26, .12);
}
/* --------------------------------------------------
   4-9) Estimate Utility
-------------------------------------------------- */
.page-contact .estimate-result__label {
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(11, 15, 26, .50);
}
.page-contact .estimate-result__price {
  margin-top: 6px;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  color: #005CFF;
}
.page-contact .estimate-result__note {
  margin-top: 10px;
  line-height: 1.75;
  color: rgba(11, 15, 26, .60);
}
/* --------------------------------------------------
   4-10) Info Boxes
-------------------------------------------------- */
.page-contact .info-box {
  padding: 18px;
  border: 1px solid rgba(11, 15, 26, .10);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(249, 252, 255, .92));
  box-shadow: 0 14px 34px rgba(11, 15, 26, .08);
}
.page-contact .info-box__title {
  color: rgba(11, 15, 26, .90);
}
.page-contact .info-box__text, .page-contact .info-steps {
  line-height: 1.85;
  color: rgba(11, 15, 26, .72);
}
.page-contact .info-box--accent {
  border: 1px solid rgba(0, 92, 255, .20);
  background:
    radial-gradient(620px 180px at 10% 0%, rgba(184, 201, 251, .34), transparent 58%), linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 250, 255, .95));
}
/* --------------------------------------------------
   4-11) Desktop Form Width
-------------------------------------------------- */
@media (min-width: 769px) {
  .page-contact .contact-form .form-row:not(.form-row--stack) {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    column-gap: 22px;
    align-items: center;
  }
  .page-contact .contact-form .form-label {
    min-width: 0;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .page-contact .contact-form .form-row:not(.form-row--stack) {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    align-items: start;
  }
}
/* --------------------------------------------------
   4-12) Final CTA (Contact only)
-------------------------------------------------- */
.page-contact .final-cta {
  margin-top: 24px;
  padding-top: 36px;
  padding-bottom: 56px;
}
.page-contact .final-cta__inner {
  padding: 36px 40px;
}
/* --------------------------------------------------
   4-13) Toast
-------------------------------------------------- */
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  width: min(360px, calc(100vw - 32px));
  padding: 16px 18px 16px;
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(20, 40, 90, .16);
  animation: toastIn .28s ease both;
}
.toast--ok {
  border-color: rgba(0, 92, 255, .18);
  background:
    radial-gradient(320px 120px at 0% 0%, rgba(184, 201, 251, .28), transparent 60%), rgba(255, 255, 255, .96);
}
.toast--ng {
  border-color: rgba(220, 70, 70, .18);
  background:
    radial-gradient(320px 120px at 0% 0%, rgba(255, 214, 214, .55), transparent 60%), rgba(255, 255, 255, .97);
}
.toast__title {
  margin: 0 28px 4px 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 900;
}
.toast__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(11, 15, 26, .66);
}
.toast__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(11, 15, 26, .54);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.toast__close:hover {
  background: rgba(11, 15, 26, .06);
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==================================================
  5) Final CTA（全ページ共通）
================================================== */
.final-cta {
  margin-top: clamp(48px, 6vw, 62px);
  padding: clamp(48px, 6vw, 62px) 0;
}
.final-cta__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
}
.final-cta__text {
  margin-top: 10px;
  color: rgba(11, 15, 26, .72);
  line-height: 1.85;
}
.final-cta__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* ==================================================
   FINAL CTA polish
================================================== */
.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid rgba(11, 15, 26, .06);
  box-shadow:
    0 20px 50px rgba(11, 15, 26, .08), inset 0 1px 0 rgba(255, 255, 255, .6);
  position: relative;
  overflow: hidden;
}
.final-cta__inner::before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(circle, rgba(120, 160, 255, .25), transparent 70%);
  pointer-events: none;
}
.final-cta__logo {
  flex: 0 0 auto;
  opacity: .9;
}
.final-cta__logo img {
  width: 220px;
  height: auto;
}
.final-cta__logo img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .12));
}
@media (max-width: 900px) {
  .final-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .final-cta__logo img {
    width: 160px;
  }
}
/* ==================================================
  6) Privacy Page
================================================== */
.page-privacy .policy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: .95rem;
}
.page-privacy h2 {
  margin-top: 40px;
  font-size: 1.1rem;
}
.page-privacy ul {
  padding-left: 20px;
}
/* ==================================================
   8) Responsive
================================================== */
/* --------------------------------------------------
   8-1) Tablet / Small Desktop
-------------------------------------------------- */
@media (max-width: 980px) {
  .page-home .hero-inner {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .page-home .hero-copy {
    order: 1;
  }
  .page-home .hero-frame {
    order: 2;
    width: 100%;
    transform: translate(0, 0);
  }
  .hero-copy .hero-actions {
    grid-template-columns: 1fr 1fr;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  .page-service .process {
    grid-template-columns: 1fr;
  }
}
/* --------------------------------------------------
   8-2) Tablet
-------------------------------------------------- */
@media (max-width: 900px) {
  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2)::after {
    display: none;
  }
  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(11, 15, 26, .08);
  }
  .page-service .service-grid, .page-service .price-grid, .page-service .precta-grid, .page-service .trust-grid, .page-service .works-mini-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* --------------------------------------------------
   8-3) Small Tablet
-------------------------------------------------- */
@media (max-width: 720px) {
  .page-service .pricing-meta {
    grid-template-columns: 1fr;
  }
}
.work-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .work-card {
  position: relative;
  isolation: isolate;
}
.page-home .work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 30%);
  opacity: 0;
  transition: opacity .28s ease;
}
.page-home .work-card:hover::after {
  opacity: 1;
}
.page-home .work-card:hover .work-card__cta {
  transform: translateX(4px);
}
.page-home .work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .22s ease, color .22s ease;
}
.work-card__price {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(11, 15, 26, .55);
}
.page-home .final-cta__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 28px;
  border-radius: 30px;
  z-index: 1;
  background:
    radial-gradient(560px 180px at 100% 100%, rgba(184, 201, 251, .20), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 248, 255, .94));
  border: 1px solid rgba(11, 15, 26, .08);
  box-shadow:
    0 18px 46px rgba(11, 15, 26, .08), 0 4px 14px rgba(11, 15, 26, .04);
}
.page-home .final-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 92, 255, .92), rgba(95, 146, 255, .40));
}
.page-home .final-cta__content {
  position: relative;
  z-index: 1;
}
.page-home .final-cta__brand {
  justify-self: end;
  opacity: .92;
  filter: drop-shadow(0 10px 20px rgba(11, 15, 26, .10));
}
.page-home .final-cta__brand img {
  width: min(300px, 22vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .12));
}
@media (max-width: 900px) {
  .page-home .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    justify-items: center;
  }
  .page-home .final-cta__content {
    width: 100%;
  }
  .page-home .final-cta__actions {
    justify-content: center;
  }
  .page-home .final-cta__brand {
    justify-self: center;
  }
  .page-home .final-cta__brand img {
    width: 160px;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .page-contact .estimate-box {
    padding: 18px;
  }
  .page-contact .estimate-group {
    padding: 12px;
    border-radius: 18px;
  }
  .page-contact .estimate-group__head {
    align-items: flex-start;
  }
  .page-contact .estimate-clear {
    height: 30px;
  }
  .page-contact .estimate-result {
    padding: 16px 16px 16px 18px;
  }
}
/* ==================================================
   9) Reveal Motion
================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 少しだけ遅らせる */
.reveal[data-delay="1"] {
  transition-delay: .08s;
}
.reveal[data-delay="2"] {
  transition-delay: .16s;
}
.reveal[data-delay="3"] {
  transition-delay: .24s;
}
/* 横並びカード用の軽い差 */
.reveal[data-delay="4"] {
  transition-delay: .32s;
}
/* モーションを控えたい環境では無効化 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ===============================
   HOME final-cta atmosphere
================================ */
.page-home .final-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
  /*background:
    linear-gradient(
      180deg,
      rgba(255,255,255,1) 0%,
      rgba(252,253,255,.98) 24%,
      rgba(248,250,255,.96) 68%,
      rgba(255,255,255,1) 100%
    );*/
  background: #FFFFFF;
}
/* ===============================
   page ending space
================================ */
.section-meta {
  display: inline-block;
  margin: 8px 0 16px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 92, 255, .18);
  background: rgba(0, 92, 255, .07);
  color: rgba(0, 92, 255, .82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 6px 14px rgba(0, 92, 255, .08);
}
/* --------------------------------------------------
   Official SNS
-------------------------------------------------- */
.home-social {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  padding-bottom: 76px;
  margin-top: -2px;
  background:
    radial-gradient(900px 280px at 12% 120px, rgba(184, 201, 251, .14), transparent 62%), radial-gradient(760px 240px at 88% 160px, rgba(0, 92, 255, .05), transparent 58%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 72px, rgba(246, 249, 255, .94) 24%, rgba(239, 245, 255, .90) 52%, rgba(246, 249, 255, .94) 84%, rgba(255, 255, 255, 1) 100%);
}
.home-social__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.home-social__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .86));
  box-shadow:
    0 14px 34px rgba(11, 15, 26, .08), 0 3px 10px rgba(11, 15, 26, .04);
}
/* =====================
   HOME SOCIAL HOVER
===================== */
@keyframes socialCardShake {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }
  20% {
    transform: translateY(-4px) rotate(-0.4deg);
  }
  40% {
    transform: translateY(-4px) rotate(0.4deg);
  }
  60% {
    transform: translateY(-4px) rotate(-0.3deg);
  }
  80% {
    transform: translateY(-4px) rotate(0.3deg);
  }
  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}
.home-social__card {
  transition:
    transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  transform-origin: center center;
}
.home-social__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 92, 255, .14);
  box-shadow:
    0 18px 36px rgba(11, 15, 26, .10), 0 6px 16px rgba(11, 15, 26, .05);
  animation: socialCardShake .42s ease 1;
}
.home-social__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  color: rgba(11, 15, 26, .52);
}
.home-social__name {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}
.home-social__text {
  margin: 0;
  line-height: 1.95;
  color: rgba(11, 15, 26, .72);
}
.home-social__actions {
  margin-top: auto;
  padding-top: 22px;
}
.home-social__actions .btn {
  min-width: 190px;
  justify-content: center;
}
@media (max-width: 900px) {
  .home-social__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .home-social {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .home-social__card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .home-social__actions .btn {
    width: 100%;
  }
}
/* ======================
 Trust（index用）
====================== */
.home-trust {
  padding: 50px 0;
  background:
    radial-gradient(900px 280px at 12% 120px, rgba(184, 201, 251, .16), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, .94) 40%, rgba(255, 255, 255, 1) 100%);
}
/* grid */
.home-trust__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* card */
.home-trust__item {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(11, 15, 26, .08);
  background: #fff;
  text-align: center;
  box-shadow:
    0 10px 24px rgba(11, 15, 26, .06), 0 2px 6px rgba(11, 15, 26, .04);
  transition: transform .2s ease;
}
.home-trust__item:hover {
  transform: translateY(-4px);
}
.home-trust__item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
/* SP */
@media (max-width: 900px) {
  .home-trust__grid {
    grid-template-columns: 1fr;
  }
}
/* ======================
 Offer（調整版）
====================== */
.home-offer {
  margin-top: 20px;
  position: relative;
  padding-top: 56px;
  padding-bottom: 72px;
  background:
    radial-gradient(900px 260px at 12% 120px, rgba(184, 201, 251, .14), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, .94) 42%, rgba(243, 248, 255, .90) 70%, rgba(255, 255, 255, 1) 100%);
}
.home-offer__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 30px;
  border-radius: 24px;
  border: 1px solid rgba(11, 15, 26, .06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(249, 251, 255, .94));
  box-shadow: 0 12px 32px rgba(11, 15, 26, .08);
  text-align: center;
}
.home-offer__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(11, 15, 26, .55);
}
.home-offer__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.45;
  font-weight: 900;
}
.home-offer__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(11, 15, 26, .74);
}
.home-offer__note {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(11, 15, 26, .60);
}
.home-offer__list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.home-offer__list li {
  display: flex;
  justify-content: center;
}
.home-offer__list li span {
  display: inline-block;
}
.home-offer__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.home-offer__sample-link {
  margin-top: 14px;
  text-align: center;
}
.home-offer__sample-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #005CFF;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.home-offer__sample-link a::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
}
.home-offer__sample-link a:hover {
  opacity: .78;
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .home-offer {
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .home-offer__inner {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .home-offer__title {
    font-size: 22px;
  }
  .home-offer__list li span {
    width: 100%;
    text-align: center;
  }
  .home-offer__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-offer__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.page-home .home-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.page-home .home-offer__subnote {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(11, 15, 26, .58);
}
@media (max-width: 820px) {
  .page-home .home-offer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .page-home .home-offer__media img {
    max-width: 220px;
  }
}
/* ======================
   Offer（整理版）
====================== */
.page-home .home-offer {
  position: relative;
  z-index: 1;
  margin-top: 0px;
  padding-top: 20px;
  padding-bottom: 72px;
  background:
    radial-gradient(900px 260px at 12% 120px, rgba(184, 201, 251, .14), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, .94) 42%, rgba(243, 248, 255, .90) 70%, rgba(255, 255, 255, 1) 100%);
}
.page-home .home-offer__inner {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 44px;
  border-radius: 24px;
  border: 1px solid rgba(11, 15, 26, .06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .92));
  box-shadow: 0 12px 32px rgba(11, 15, 26, .08);
}
.page-home .home-offer__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/start/sakura-starter.webp") right 60% center / cover no-repeat;
  opacity: .08;
  filter: blur(0.8px);
  transform: scale(1.02);
  pointer-events: none;
}
.page-home .home-offer__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.page-home .home-offer__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(11, 15, 26, .55);
}
.page-home .home-offer__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.45;
  font-weight: 900;
}
.page-home .home-offer__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(11, 15, 26, .74);
}
.page-home .home-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.page-home .home-offer .btn--primary {
  box-shadow: 0 10px 24px rgba(0, 92, 255, .25);
}
.page-home .home-offer__subnote {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(11, 15, 26, .58);
}
@media (max-width: 820px) {
  .page-home .home-offer {
    margin-top: -20px;
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .page-home .home-offer__inner {
    padding: 28px 20px;
    gap: 18px;
  }
}
/* =========================================
   Works intro : pitch-strip + works-guide
========================================= */
.page-home .works-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}
.page-home .works-intro > * {
  min-width: 0;
  height: 100%;
}
/* ===== Sakura background ===== */
.page-home .home-offer__inner {
  position: relative;
  overflow: hidden;
}
.page-home .home-offer__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/start/sakura-starter.webp") right center / cover no-repeat;
  opacity: .08; /* ← まずはこれ */
  filter: blur(0.8px); /* ← 少しだけぼかす */
  transform: scale(1.02); /* ← 端の切れ防止 */
  pointer-events: none;
}
.page-home .pitch-strip, .page-home .works-guide {
  height: 100%;
  margin: 0;
}
.page-home .works-guide__title {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 980px) {
  .page-home .works-intro {
    grid-template-columns: 1fr;
  }
}
.page-contact .estimate-checks {
  display: grid;
  gap: 16px;
}
/* ===== Starter sakura background (service) ===== */
.page-service .price-card--starter {
  position: relative;
  overflow: hidden;
}
.page-service .price-card--starter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/start/sakura-starter.webp") right bottom / cover no-repeat;
  opacity: .06; /* ← indexより弱く */
  filter: blur(1px);
  transform: scale(1.02);
  pointer-events: none;
}
.page-service .price-card--starter > * {
  position: relative;
  z-index: 1;
}
.page-service .price-card--starter {
  border: 1px solid rgba(255, 182, 193, .35);
  box-shadow: 0 10px 28px rgba(255, 182, 193, .08);
}
/* ===== Starter hover effect ===== */
.page-service .price-card--starter {
  transition: border-color .25s ease, box-shadow .25s ease;
}
.page-service .price-card--starter::before {
  transition: opacity .25s ease, filter .25s ease;
}
.page-service .price-card--starter:hover {
  border-color: rgba(255, 182, 193, .65); /* 少し強く */
  box-shadow: 0 12px 32px rgba(255, 182, 193, .18);
}
.page-service .price-card--starter:hover::before {
  opacity: .09; /* ← 少しだけ見える */
  filter: blur(0.6px); /* ← ほんの少しシャープに */
}
.estimate-help {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(11, 15, 26, .6);
}
.page-contact .estimate-checks input:disabled + span {
  color: rgba(11, 15, 26, .42);
}
.page-contact .estimate-checks label:has(input:disabled) {
  opacity: .58;
  cursor: not-allowed;
  background: linear-gradient(180deg, rgba(248, 249, 251, .96), rgba(243, 245, 248, .94));
  box-shadow: none;
  transform: none;
}
.page-contact .estimate-checks input:disabled + span {
  color: rgba(11, 15, 26, .42);
}
.page-contact .estimate-checks label:has(input:disabled) {
  opacity: .58;
  cursor: not-allowed;
  background: linear-gradient(180deg, rgba(248, 249, 251, .96), rgba(243, 245, 248, .94));
  box-shadow: none;
  transform: none;
}
/* =========================================================
   Works Consult CTA
========================================================= */
.works-consult-wrap {
  margin-top: 40px;
}
.works-consult {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(900px 260px at 12% 0%, rgba(80, 140, 255, .08), transparent 62%), rgba(255, 255, 255, .72);
  box-shadow:
    0 14px 34px rgba(11, 15, 26, .08), 0 3px 10px rgba(11, 15, 26, .04);
}
.works-consult__inner {
  display: grid;
  gap: 18px;
  align-items: center;
}
.works-consult__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(11, 15, 26, .48);
}
.works-consult__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: .02em;
}
.works-consult__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(11, 15, 26, .72);
}
.works-consult__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (min-width: 901px) {
  .works-consult__inner {
    grid-template-columns: 1.4fr auto;
  }
}
@media (max-width: 900px) {
  .works-consult {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .works-consult__actions {
    flex-direction: column;
  }
  .works-consult__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.price-note {
  font-size: 12px;
  opacity: .6;
}
/* ==================================================
   HOME WORKS FILTER
================================================== */
.page-home .works-filter {
  margin: 22px 0 26px;
  padding: 18px;
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .94));
  box-shadow:
    0 14px 34px rgba(11, 15, 26, .08), 0 3px 10px rgba(11, 15, 26, .04);
}
.page-home .works-filter__group + .works-filter__group {
  margin-top: 14px;
}
.page-home .works-filter__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(11, 15, 26, .72);
}
.page-home .works-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .works-filter__chip {
  appearance: none;
  border: 1px solid rgba(11, 15, 26, .12);
  background: rgba(255, 255, 255, .88);
  color: rgba(11, 15, 26, .78);
  border-radius: 999px;
  padding: 10px 14px;
  min-height: 42px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.page-home .works-filter__chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 92, 255, .20);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 22px rgba(11, 15, 26, .06);
}
.page-home .works-filter__chip.is-active {
  color: #005cff;
  border-color: rgba(0, 92, 255, .24);
  background:
    linear-gradient(180deg, rgba(232, 240, 255, .96), rgba(244, 248, 255, .96));
  box-shadow:
    inset 0 0 0 1px rgba(0, 92, 255, .06), 0 10px 22px rgba(0, 92, 255, .08);
}
.page-home .works-filter__chip:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(0, 92, 255, .14), 0 10px 22px rgba(11, 15, 26, .06);
}
.works-filter__chip[data-filter="starter"] {
  border-color: rgba(139, 92, 246, .35);
  color: #5b3aa3;
}
.works-filter__chip[data-filter="starter"].is-active {
  background: rgba(139, 92, 246, .12);
  border-color: rgba(139, 92, 246, .55);
}
.works-filter__chip[data-filter="standard"] {
  border-color: rgba(0, 92, 255, .28);
  color: #005cff;
}
.works-filter__chip[data-filter="standard"].is-active {
  background: rgba(0, 92, 255, .10);
  border-color: rgba(0, 92, 255, .52);
}

.works-filter__chip[data-filter="custom"] {
  border-color: rgba(167, 139, 250, .42);
  color: #6b46c1;
  background:
    linear-gradient(
      120deg,
      rgba(255, 134, 223, .10) 0%,
      rgba(167, 139, 250, .12) 32%,
      rgba(79, 220, 255, .10) 68%,
      rgba(255, 216, 106, .10) 100%
    );
}

.works-filter__chip[data-filter="custom"].is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, .76);
  background:
    linear-gradient(
      120deg,
      #ff86df 0%,
      #a78bfa 30%,
      #4fdcff 62%,
      #ffd86a 100%
    );
  box-shadow:
    0 8px 18px rgba(139, 92, 246, .16),
    0 0 12px rgba(56, 216, 255, .16);
}



.page-home .works-filter__foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 15, 26, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.page-home .works-filter__result {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(11, 15, 26, .62);
}
.page-home .works-filter__reset {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: rgba(0, 92, 255, .88);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-home .works-filter__reset:hover {
  color: rgba(0, 92, 255, 1);
}
.page-home .works-list {
  transition: opacity .22s ease;
}
.page-home .work-card.is-hidden {
  display: none !important;
}
/* ---------------------------------
   Works filter responsive
---------------------------------- */
@media (max-width: 820px) {
  .page-home .works-filter {
    margin: 18px 0 22px;
    padding: 16px;
    border-radius: 20px;
  }
  .page-home .works-filter__chips {
    gap: 8px;
  }
  .page-home .works-filter__chip {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }
  .page-home .works-filter__foot {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .page-home .works-filter__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .page-home .works-filter__chip {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   Works Empty State
========================================= */
.page-home .works-empty {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
  border-radius: 24px;
  border: 1px dashed rgba(11, 15, 26, .12);
  background: rgba(255, 255, 255, .6);
}
.page-home .works-empty[hidden] {
  display: none !important;
}
.page-home .works-empty__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(11, 15, 26, .5);
}
.page-home .works-empty__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}
.page-home .works-empty__text {
  margin: 0;
  font-size: 14px;
  color: rgba(11, 15, 26, .6);
}
/* =========================================
   Works Sort
========================================= */
.page-home .works-filter__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-home .works-filter__sort-label {
  font-size: 12px;
  color: rgba(11, 15, 26, .5);
}
.page-home .works-filter__sort-select {
  appearance: none;
  border: 1px solid rgba(11, 15, 26, .12);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
/* =========================
  セクションタイトル 微グラデ
========================= */
.section-title {
  background: linear-gradient(180deg, #0f172a 0%, #0a5cff 45%, #38d8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* =========================================
  カード順番発光（共通ロジック）
========================================= */
@keyframes cardFlowGlow {
  0%, 18%, 100% {
    border-color: rgba(11, 15, 26, .08);
    box-shadow:
      0 12px 30px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .88);
  }
  6%, 12% {
    border-color: rgba(56, 216, 255, .35);
    box-shadow:
      0 12px 30px rgba(11, 15, 26, .06), inset 0 1px 0 rgba(255, 255, 255, .88), 0 0 10px rgba(56, 216, 255, .18), 0 0 20px rgba(10, 92, 255, .10);
  }
}
@keyframes cardTitleGlow {
  0%, 18%, 100% {
    color: inherit;
    text-shadow: none;
  }
  6%, 12% {
    color: #0a5cff;
    text-shadow:
      0 0 6px rgba(56, 216, 255, .25), 0 0 10px rgba(10, 92, 255, .15);
  }
}
.price-card:nth-child(1) {
  animation: cardFlowGlow 8s linear infinite;
}
.price-card:nth-child(1) h3 {
  animation: cardTitleGlow 8s linear infinite;
}
.price-card:nth-child(2) {
  animation: cardFlowGlow 8s linear infinite 2s;
}
.price-card:nth-child(2) h3 {
  animation: cardTitleGlow 8s linear infinite 2s;
}
.price-card:nth-child(3) {
  animation: cardFlowGlow 8s linear infinite 4s;
}
.price-card:nth-child(3) h3 {
  animation: cardTitleGlow 8s linear infinite 4s;
}
.price-card:nth-child(4) {
  animation: cardFlowGlow 8s linear infinite 6s;
}
.price-card:nth-child(4) h3 {
  animation: cardTitleGlow 8s linear infinite 6s;
}
.precta-card:nth-child(1) {
  animation: cardFlowGlow 6s linear infinite;
}
.precta-card:nth-child(1) h3 {
  animation: cardTitleGlow 6s linear infinite;
}
.precta-card:nth-child(2) {
  animation: cardFlowGlow 6s linear infinite 2s;
}
.precta-card:nth-child(2) h3 {
  animation: cardTitleGlow 6s linear infinite 2s;
}
.precta-card:nth-child(3) {
  animation: cardFlowGlow 6s linear infinite 4s;
}
.precta-card:nth-child(3) h3 {
  animation: cardTitleGlow 6s linear infinite 4s;
}
.process-item:nth-child(1) {
  animation: cardFlowGlow 8s linear infinite;
}
.process-item:nth-child(1) h3 {
  animation: cardTitleGlow 8s linear infinite;
}
.process-item:nth-child(2) {
  animation: cardFlowGlow 8s linear infinite 2s;
}
.process-item:nth-child(2) h3 {
  animation: cardTitleGlow 8s linear infinite 2s;
}
.process-item:nth-child(3) {
  animation: cardFlowGlow 8s linear infinite 4s;
}
.process-item:nth-child(3) h3 {
  animation: cardTitleGlow 8s linear infinite 4s;
}
.process-item:nth-child(4) {
  animation: cardFlowGlow 8s linear infinite 6s;
}
.process-item:nth-child(4) h3 {
  animation: cardTitleGlow 8s linear infinite 6s;
}
.trust-card:nth-child(1) {
  animation: cardFlowGlow 6s linear infinite;
}
.trust-card:nth-child(1) h3 {
  animation: cardTitleGlow 6s linear infinite;
}
.trust-card:nth-child(2) {
  animation: cardFlowGlow 6s linear infinite 2s;
}
.trust-card:nth-child(2) h3 {
  animation: cardTitleGlow 6s linear infinite 2s;
}
.trust-card:nth-child(3) {
  animation: cardFlowGlow 6s linear infinite 4s;
}
.trust-card:nth-child(3) h3 {
  animation: cardTitleGlow 6s linear infinite 4s;
}