:root {
  --navy: #071426;
  --navy2: #102540;
  --navy3: #173a5f;
  --gold: #c6a56b;
  --gold2: #e4cc98;
  --white: #ffffff;
  --text: #111827;
  --muted: #5f6875;
  --line: #dfe4ea;
  --shadow: 0 18px 45px rgba(7,20,38,0.14);
}

/* HERO */

.web-hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(55,120,255,0.35), transparent 34%),
    radial-gradient(circle at 90% 70%, rgba(198,165,107,0.22), transparent 28%),
    linear-gradient(135deg, #020916 0%, #071426 45%, #0b1f3a 100%);
}

.web-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(2,9,22,0.96) 0%, rgba(2,9,22,0.9) 42%, rgba(2,9,22,0.18) 100%);
  z-index: 1;
}

.web-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.015), rgba(255,255,255,0.015) 2px, transparent 2px, transparent 18px);
  background-size: 48px 48px, 48px 48px, auto;
  opacity: 0.45;
  z-index: 2;
}

.cursor-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0,132,255,0.28), rgba(0,132,255,0.08) 40%, transparent 70%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.web-hero:hover .cursor-glow {
  opacity: 1;
}

.web-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 42%, rgba(0,132,255,0.35), transparent 26%),
    radial-gradient(circle at 82% 58%, rgba(255,255,255,0.12), transparent 22%);
  z-index: 3;
  pointer-events: none;
}

.web-hero-inner {
  position: relative;
  z-index: 5;
  width: min(1200px, 90%);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.web-hero-inner.show {
  opacity: 1;
  transform: translateY(0);
}

.web-hero-text {
  color: #fff;
}

.web-hero .hero-lead {
  color: var(--gold2);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  margin: 0 0 26px;
}

.web-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.22;
  margin: 0 0 28px;
  letter-spacing: 0.08em;
}

.web-hero h1 span {
  background: linear-gradient(90deg, #ffffff, #7db7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  min-height: 2.2em;
  font-size: 1.12rem;
  line-height: 2;
  color: rgba(255,255,255,0.92);
  margin: 0 0 12px;
}

.typing-cursor {
  color: var(--gold2);
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-subcopy {
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.72);
  margin: 0 0 34px;
}

.hero-icon-row {
  display: flex;
  gap: 16px;
  margin: 0 0 36px;
  flex-wrap: wrap;
}

.hero-icon-box {
  width: 138px;
  min-height: 126px;
  padding: 18px 14px;
  border: 1px solid rgba(198,165,107,0.65);
  background: rgba(7,20,38,0.62);
  clip-path: polygon(25% 0%,75% 0%,100% 28%,100% 72%,75% 100%,25% 100%,0% 72%,0% 28%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 28px rgba(0,132,255,0.3), 0 18px 40px rgba(0,0,0,0.32);
}

.hero-icon-box span {
  color: var(--gold2);
  font-size: 0.78rem;
}

.hero-icon-box strong {
  color: #fff;
  font-size: 0.95rem;
}

.hero-icon-box small {
  color: rgba(255,255,255,0.62);
  font-size: 0.72rem;
}

.web-hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-frame {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%) skewX(-8deg);
  width: 760px;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 80px rgba(0,119,255,0.25);
  border: 1px solid rgba(255,255,255,0.16);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0% { transform: translateY(-50%) skewX(-8deg); }
  50% { transform: translateY(-53%) skewX(-8deg); }
  100% { transform: translateY(-50%) skewX(-8deg); }
}

.visual-frame img {
  width: 115%;
  height: 100%;
  object-fit: cover;
  transform: skewX(8deg) translateX(-40px);
}

/* SCROLL */

.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* COMMON */

.web-intro,
.seo-block,
.web-before-after-section {
  background: #fff;
  border-radius: 24px;
  padding: 72px 42px;
  box-shadow: var(--shadow);
}

.web-intro {
  position: relative;
  z-index: 5;
  margin-top: -70px;
}

.web-intro p,
.seo-inner p {
  max-width: 940px;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 2.1;
  color: #334155;
}

.seo-inner {
  max-width: 940px;
  margin: 0 auto;
}

.seo-box {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid rgba(198,165,107,0.28);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  padding: 26px 28px;
  margin: 34px 0;
  box-shadow: 0 10px 28px rgba(7,20,38,0.06);
}

.seo-box h3 {
  margin: 0 0 16px;
  font-size: 1.28rem;
  color: var(--navy);
}

.seo-box ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
}

.seo-box li {
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.8;
}

.seo-keywords {
  background: linear-gradient(135deg, rgba(7,20,38,0.96), rgba(23,58,95,0.96));
  color: #fff !important;
  border-radius: 18px;
  padding: 26px 30px;
  text-align: center;
  font-weight: 700;
}

/* SERVICE */

.web-service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.web-service-item {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(198,165,107,0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.web-service-item:hover {
  transform: translateY(-8px);
}

.web-service-item h3 {
  margin: 0 0 14px;
  color: var(--navy);
}

.web-service-item p {
  color: var(--muted);
  line-height: 1.9;
}

/* FEATURE / FLOW */

.web-feature-section,
.flow-section,
.web-cta {
  background: linear-gradient(135deg, rgba(7,20,38,0.98), rgba(22,53,86,0.96));
  border-radius: 24px;
  padding: 84px 34px;
  color: #fff;
  box-shadow: var(--shadow);
}

.web-feature-section .section-title,
.flow-section .section-title {
  color: #fff;
}

.web-feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 40px;
}

.web-feature-item,
.flow-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 22px;
  transition: transform 0.35s ease;
}

.web-feature-item:hover,
.flow-item:hover {
  transform: translateY(-8px);
}

.feature-num,
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 18px;
}

.web-feature-item h3,
.flow-item h3 {
  color: #fff;
}

.web-feature-item p,
.flow-item p {
  color: rgba(255,255,255,0.74);
  line-height: 1.8;
}

.flow-wrap {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
  margin-top: 36px;
}

/* BEFORE AFTER */

.before-after-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.before-after-image-box {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(7,20,38,0.24), 0 0 40px rgba(0,132,255,0.12);
  border: 1px solid rgba(198,165,107,0.22);
}

.before-after-image-box img {
  width: 100%;
  display: block;
}

/* PRICE */

.web-price-section {
  border-radius: 24px;
  padding: 90px 40px;
  background:
    radial-gradient(circle at 15% 50%, rgba(0,119,255,0.22), transparent 26%),
    radial-gradient(circle at 85% 50%, rgba(198,165,107,0.14), transparent 30%),
    linear-gradient(135deg, #020916 0%, #071426 45%, #102540 100%);
  box-shadow: var(--shadow);
}

.web-price-section .section-title,
.web-price-section .section-kicker {
  color: #fff;
}

.web-price-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin-top: 40px;
}

.web-price-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 24px;
  padding: 36px 30px;
  text-align: center;
  border: 1px solid rgba(198,165,107,0.22);
  overflow: hidden;
  transition: transform 0.35s ease;
}

.web-price-card:hover {
  transform: translateY(-10px);
}

.web-price-card:nth-child(2) {
  transform: scale(1.04);
}

.web-price-card:nth-child(2):hover {
  transform: scale(1.04) translateY(-10px);
}

.price-label {
  display: inline-block;
  background: rgba(198,165,107,0.16);
  color: var(--gold2);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
}

.web-price-card h3 {
  color: #fff;
  font-size: 1.5rem;
}

.price-main {
  font-size: 3rem;
  font-weight: 700;
}

.web-price-card:nth-child(1) .price-main {
  color: #9fd8ff;
}

.web-price-card:nth-child(2) .price-main {
  color: #e7c98c;
}

.web-price-card:nth-child(3) .price-main {
  color: #d7d3ff;
}

.web-price-card p,
.price-note {
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
}

.price-note {
  max-width: 860px;
  margin: 34px auto 0;
  text-align: center;
}

/* SITE TYPE */

.web-type-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,132,255,0.16), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(198,165,107,0.14), transparent 30%),
    linear-gradient(135deg, #020916 0%, #071426 48%, #102540 100%);
  border-radius: 24px;
  padding: 84px 40px;
  box-shadow: var(--shadow);
}

.web-type-section .section-kicker,
.web-type-section .section-title {
  color: #fff;
}

.web-type-section::before {
  content: "SITE TYPE";
  position: absolute;
  right: -20px;
  top: 20px;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
}

.web-type-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 44px;
}

.web-type-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(198,165,107,0.18);
  border-radius: 26px;
  padding: 38px 32px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.web-type-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 42px rgba(0,132,255,0.16), 0 30px 80px rgba(0,0,0,0.32);
}

.web-type-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 24px;
}

.web-type-card h3 {
  color: #fff;
  font-size: 1.45rem;
}

.web-type-card p {
  color: rgba(255,255,255,0.74);
  line-height: 2;
}

/* CTA */

.web-cta {
  text-align: center;
  padding: 90px 34px;
}

.web-cta h2 {
  font-size: clamp(1.9rem,3vw,2.7rem);
}

.web-cta p {
  max-width: 780px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.82);
  line-height: 2;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .cursor-glow {
    display: none;
  }

  .web-hero-inner {
    grid-template-columns: 1fr;
    padding: 120px 0 80px;
  }

  .visual-frame {
    position: relative;
    right: auto;
    top: auto;
    transform: skewX(-5deg);
    width: 100%;
    height: 360px;
    animation: none;
  }

  .visual-frame img {
    transform: skewX(5deg) translateX(-20px);
  }

  .web-service-grid,
  .web-price-grid,
  .web-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .web-feature-grid,
  .flow-wrap {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .web-service-grid,
  .web-price-grid,
  .web-feature-grid,
  .flow-wrap,
  .web-type-grid {
    grid-template-columns: 1fr;
  }

  .seo-box ul {
    columns: 1;
  }

  .web-price-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 560px) {
  .web-hero-inner {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .web-hero h1 {
    font-size: 2.55rem;
  }

  .hero-icon-box {
    width: 30%;
    min-width: 100px;
    min-height: 104px;
    padding: 14px 10px;
  }

  .visual-frame {
    height: 260px;
    border-radius: 18px;
  }

  .web-intro,
  .seo-block,
  .web-feature-section,
  .web-before-after-section,
  .flow-section,
  .web-price-section,
  .web-type-section,
  .web-cta {
    padding: 56px 22px;
    border-radius: 18px;
  }

  .price-main {
    font-size: 2.45rem;
  }
}
/* =========================================================
   SITE TYPE DECORATION
========================================================= */

/* 背景英字 */

.web-type-section::before {
  content: "WEB DESIGN";
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  z-index: 1;
}

/* 薄グリッド */

.web-type-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 1;
}

/* グリッドを前面へ */

.web-type-grid {
  position: relative;
  z-index: 2;
}

/* カード */

.web-type-card {
  position: relative;
  overflow: hidden;
}

/* 軽い発光 */

.web-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(0,132,255,0.12),
      transparent 40%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.web-type-card:hover::before {
  opacity: 1;
}

/* 角装飾 */

.web-type-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-top: 1px solid rgba(198,165,107,0.45);
  border-right: 1px solid rgba(198,165,107,0.45);
  opacity: 0.7;
}

/* hover */

.web-type-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 30px rgba(0,132,255,0.12),
    0 20px 55px rgba(0,0,0,0.22);
}
/* =========================================================
   EXTRA WEB EFFECTS
========================================================= */

/* 背景の微粒子 */
.web-hero-bg .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 14px rgba(0,132,255,0.7);
  animation: particleFloat 9s ease-in-out infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0);
    opacity: 0.25;
  }

  50% {
    transform: translateY(-28px);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0);
    opacity: 0.25;
  }
}

/* CTA発光 */
.web-cta {
  position: relative;
  overflow: hidden;
}

.web-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,132,255,0.18), transparent 34%),
    radial-gradient(circle at 70% 40%, rgba(198,165,107,0.16), transparent 28%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0% {
    transform: translateX(-3%) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translateX(3%) scale(1.08);
    opacity: 0.9;
  }

  100% {
    transform: translateX(-3%) scale(1);
    opacity: 0.55;
  }
}

.web-cta > * {
  position: relative;
  z-index: 2;
}

/* CTAボタン発光 */
.web-cta .cta-btn {
  box-shadow:
    0 0 24px rgba(198,165,107,0.28),
    0 12px 28px rgba(0,0,0,0.18);
}

.web-cta .cta-btn:hover {
  box-shadow:
    0 0 34px rgba(198,165,107,0.46),
    0 18px 38px rgba(0,0,0,0.26);
}

/* 数字カウンター */
.web-count-section {
  background: #fff;
  border-radius: 24px;
  padding: 72px 42px;
  box-shadow: var(--shadow);
}

.web-count-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 960px;
  margin: 44px auto 0;
}

.web-count-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 24px;
  padding: 38px 26px;
  background:
    linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid rgba(198,165,107,0.18);
  box-shadow: 0 18px 45px rgba(7,20,38,0.08);
}

.web-count-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(198,165,107,0.5);
  border-right: 1px solid rgba(198,165,107,0.5);
}

.count-number {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.count-unit {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
  margin-left: 4px;
}

.web-count-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

  .web-count-section {
    padding: 56px 22px;
    border-radius: 18px;
  }
}
/* =========================================================
   WEB FAQ
========================================================= */

.web-faq-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  padding: 76px 42px;
  box-shadow: var(--shadow);
}

.web-faq-section::before {
  content: "FAQ";
  position: absolute;
  right: 26px;
  top: 18px;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(7,20,38,0.035);
  pointer-events: none;
}

.web-faq-list {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 44px auto 0;
  display: grid;
  gap: 18px;
}

.web-faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f7f9fc
    );
  border: 1px solid rgba(198,165,107,0.18);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: 0 12px 32px rgba(7,20,38,0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.web-faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0,132,255,0.22);
  box-shadow:
    0 0 28px rgba(0,132,255,0.08),
    0 20px 48px rgba(7,20,38,0.12);
}

.web-faq-item::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(198,165,107,0.45);
  border-right: 1px solid rgba(198,165,107,0.45);
}

.web-faq-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.7;
}

.web-faq-item h3::before {
  content: "Q.";
  color: var(--gold);
  font-size: 1.25rem;
  margin-right: 8px;
}

.web-faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.web-faq-item p::before {
  content: "A.";
  color: rgba(0,132,255,0.85);
  font-weight: 700;
  margin-right: 8px;
}

@media (max-width: 560px) {
  .web-faq-section {
    padding: 56px 22px;
    border-radius: 18px;
  }

  .web-faq-item {
    padding: 24px 22px;
  }
}
/* =========================================================
   FLOATING CTA / SCROLL PROGRESS
========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(7,20,38,0.18);
  z-index: 9999;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(0,132,255,0.95),
      var(--gold2)
    );
  box-shadow:
    0 0 16px rgba(0,132,255,0.45),
    0 0 18px rgba(198,165,107,0.35);
}

/* 固定CTA */

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(7,20,38,0.86);
  border: 1px solid rgba(198,165,107,0.35);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.28),
    0 0 30px rgba(0,132,255,0.16);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.floating-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold2)
    );
  color: var(--navy);
  box-shadow:
    0 0 22px rgba(198,165,107,0.28);
}

.floating-cta-main:hover {
  box-shadow:
    0 0 32px rgba(198,165,107,0.48);
}

.floating-cta-tel,
.floating-cta-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 54px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.floating-cta-line {
  background: rgba(0,185,0,0.82);
  border-color: rgba(0,185,0,0.55);
}

.floating-cta-tel {
  background: rgba(255,255,255,0.08);
}

/* スマホ */

@media (max-width: 560px) {
  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: center;
    border-radius: 18px;
  }

  .floating-cta-main {
    flex: 1;
    padding: 0 12px;
    font-size: 0.9rem;
  }

.floating-cta-tel,
.floating-cta-line,
.floating-cta-instagram {
    min-width: 48px;
    padding: 0 10px;
    font-size: 0.82rem;
  }
.floating-cta-instagram {
  background:
    linear-gradient(
      135deg,
      #833ab4,
      #fd1d1d,
      #fcb045
    );
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
}
/* Instagram */

.floating-cta-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 54px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  background:
    linear-gradient(
      135deg,
      #833ab4,
      #fd1d1d,
      #fcb045
    );
  box-shadow:
    0 0 22px rgba(253,29,29,0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.floating-cta-instagram:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 34px rgba(253,29,29,0.42);
}
/* =========================================================
   ADVANCED WEB EFFECTS
========================================================= */

/* マウス追従ライト強化 */
.cursor-glow {
  mix-blend-mode: screen;
}

.web-hero::before {
  transition: background 0.3s ease;
}

/* ガラス感強化 */
.web-service-item,
.web-type-card,
.web-price-card,
.web-faq-item,
.web-count-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* カード傾き */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card > * {
  transform: translateZ(18px);
}

/* カード上を光が追う */
.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(255,255,255,0.18),
      transparent 34%
    );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.tilt-card:hover::before {
  opacity: 1;
}

/* パララックス感を強化 */
.parallax-item {
  will-change: transform;
}

/* SVGラインアニメ用 */
.web-line-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.45;
}

.web-line-path {
  fill: none;
  stroke: rgba(198,165,107,0.42);
  stroke-width: 1.4;
  stroke-dasharray: 8 10;
  animation: svgLineMove 14s linear infinite;
}

.web-line-path-blue {
  stroke: rgba(0,132,255,0.34);
  animation-duration: 18s;
}

@keyframes svgLineMove {
  to {
    stroke-dashoffset: -260;
  }
}

/* HEROの中だけSVGを配置 */
.web-hero {
  isolation: isolate;
}

/* カード浮遊感 */
.web-service-item:hover,
.web-type-card:hover,
.web-price-card:hover,
.web-faq-item:hover,
.web-count-card:hover {
  filter: saturate(1.05);
}

/* スマホでは重い演出を弱める */
@media (max-width: 768px) {
  .tilt-card {
    transform: none !important;
  }

  .tilt-card > * {
    transform: none;
  }

  .web-line-svg {
    opacity: 0.22;
  }
}
