﻿/* MyTurn — Product Site */
:root {
  --bg: #ffffff;
  --bg-soft: #f3fbf7;
  --bg-mist: #e6f7f1;
  --ink: #0b1320;
  --ink-2: #1c2536;
  --muted: #5a6477;
  --muted-2: #8a93a4;
  --line: #e6ecf5;
  --line-2: #eef2f9;

  --blue: #00cc99;
  --blue-2: #1de4b4;
  --blue-deep: #00a37b;
  --blue-soft: #d4f7ec;
  --blue-mist: #effbf6;

  --green: #2bb673;
  --green-soft: #e3f6ec;
  --yellow: #f5b800;
  --yellow-soft: #fff5d6;
  --magenta: #e94090;
  --magenta-soft: #ffe6f1;
  --pink: #ff7dbb;

  --shadow-sm: 0 2px 8px rgba(20, 40, 90, 0.06);
  --shadow-md: 0 12px 40px rgba(20, 40, 90, 0.08);
  --shadow-lg: 0 30px 70px rgba(20, 40, 90, 0.12);
  --shadow-phone: 0 40px 80px rgba(20, 40, 90, 0.18);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --font-jp: 'Kosugi Maru', "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-en: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  overflow-x: hidden;
}
img { max-width: 130%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  padding: 16px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, padding .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  /* background: linear-gradient(135deg, #1de4b4, #00cc99); */
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-en);
  font-size: 16px;
  /* box-shadow: 0 4px 12px rgba(0, 204, 153, 0.35); */
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-family: auto;
}
.brand-tag {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
  font-family: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--blue); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

/* ---- nav dropdown ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s ease;
  position: relative;
}
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:focus { color: var(--blue); }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: scaleX(1); }
.nav-dd-arrow {
  width: 10px;
  height: 10px;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  margin: 0;
  z-index: 200;
  white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-menu li a:hover {
  background: var(--bg-mist);
  color: var(--blue-deep);
}
.nav-dropdown-menu li a::after { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-pill);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 204, 153, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 204, 153, 0.4);
  background: var(--blue-deep);
}
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--ink-2);
  font-size: 14px;
}
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn .ico { width: 16px; height: 16px; }

/* ========== HERO ========== */
@keyframes heroGradFlow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
@keyframes heroGlowDrift {
  0%   { transform: translate(0px, 0px) scale(1); opacity: 0.55; }
  33%  { transform: translate(-30px, 20px) scale(1.06); opacity: 0.65; }
  66%  { transform: translate(20px, -15px) scale(0.97); opacity: 0.50; }
  100% { transform: translate(0px, 0px) scale(1); opacity: 0.55; }
}
.hero {
  position: relative;
  padding: 52px 0 20px;
  overflow: hidden;
  background: #ffffff;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    115deg,
    #ffffff    0%,
    #edfbf5    4%,
    #b8efd6   14%,
    #b8efd6   22%,
    #edfbf5   29%,
    #ffffff   33.33%,
    #edfbf5   37.33%,
    #b8efd6   47.33%,
    #b8efd6   55.33%,
    #edfbf5   62.33%,
    #ffffff   66.66%,
    #edfbf5   70.66%,
    #b8efd6   80.66%,
    #b8efd6   88.66%,
    #edfbf5   95.66%,
    #ffffff  100%
  );
  animation: heroGradFlow 5s linear infinite;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 80%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 80%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 252, 239, 0.55) 0%, rgba(255,255,255,0) 40%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  will-change: transform;
}
.hero-glow {
  position: absolute;
  top: 40px;
  right: -80px;
  width: 640px; height: 640px;
  pointer-events: none;
  z-index: 1;
}
.hero-dotgrid {
  display: none;
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,163,123,0.18) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 55% 70% at 18% 60%, #000 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 55% 70% at 18% 60%, #000 0%, #000 30%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: fit-content(600px) 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "hero-top  hero-art"
    "hero-body hero-art";
  gap: 0;
  align-items: start;
  justify-content: normal;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: clamp(32px, 4.5vw, 64px);
  padding-right: clamp(16px, 2vw, 32px);
}
.hero-copy {
  padding-top: 0;
  margin-top: 0;
}
.hero-copy-top    { grid-area: hero-top; margin-top: 25%;}
.hero-copy-bottom { grid-area: hero-body; }
.hero-art         { grid-area: hero-art; align-self: center; }

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(20,40,90,0.05);
}
.hero-eyebrow .d {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,204,153,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,204,153,0.18); }
  50%       { box-shadow: 0 0 0 9px rgba(0,204,153,0.0); }
}

/* Heading */
.hero-copy h1 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-wrap: pretty;
  font-feature-settings: "palt";
}
.hero-copy h1 .line-sub {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-family: 'Kosugi Maru', sans-serif;
}
.hero-copy h1 .line-main {
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.15;
  white-space: nowrap;
}
.hero-copy h1 .accent {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, transparent 80%, rgba(0,204,153,0.22) 80%);
  background-repeat: no-repeat;
  padding: 0 4px 4px;
  color: var(--ink);
}
.hero-copy h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: #00cc99;
  border-radius: 2px;
  animation: underlineExpand 0.7s cubic-bezier(.4,0,.2,1) forwards 1s;
}
@keyframes underlineExpand {
  to { width: 100%; }
}
.hero-copy h1 .accent .hero-char {
  display: inline-block;
  opacity: 0;
  transform-origin: 50% 0%;
  animation: heroCharFlip 0.42s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes heroCharFlip {
  from {
    opacity: 0;
    transform: perspective(200px) rotateX(-80deg) translateY(-6px);
  }
  55% { opacity: 1; }
  to {
    opacity: 1;
    transform: perspective(200px) rotateX(0deg) translateY(0);
  }
}
.hero-copy h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: lineUp .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-copy h1 .line:nth-child(1) { animation-delay: .05s; }
.hero-copy h1 .line:nth-child(2) { animation-delay: .18s; }
.hero-copy h1 .line:nth-child(3) { animation-delay: .31s; }
.hero-copy h1 .line:nth-child(4) { animation-delay: .44s; }
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Lead text */
.hero-copy .lede {
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2;
  margin: 33px 0 43px;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp .8s ease forwards .6s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease forwards .75s;
}

/* Meta strip（オプション） */
.hero-meta {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue-soft);
  background-image: linear-gradient(135deg, transparent 35%, var(--blue) 35% 65%, transparent 65%);
  background-size: 8px 2px;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-meta strong {
  color: var(--ink);
  font-weight: 800;
  margin-right: 2px;
}

/* Illustration */
.hero-art {
  position: relative;
  height: auto;
}
.hero-art-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -5%;
  z-index: 0;
}
.hero-image {
  width: 75%;
  max-width: 900px;
  height: auto;
  margin-top: 2%;
  mix-blend-mode: multiply;
  mask-image: none;
  -webkit-mask-image: none;
  z-index: 0;
}

/* Misc */
[data-parallax] { display: none; }

/* ========== PHONE UI COMPONENT ========== */
.phone-screen {
  width: 100%;
  height: 100%;
  
  background: linear-gradient(180deg, #ffffff 0%, #fff 60%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  padding: 26px 18px 18px;
}
.phone-notch {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0b1320;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.phone-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: #fff; font-size: 11px; font-weight: 800;
  font-family: var(--font-en);
}
.phone-app-title {
  font-size: 11px;
  font-weight: 700;
}
.phone-card {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 4px 14px rgba(20,40,90,.04);
}
.phone-label {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 6px;
}
.phone-big {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
}
.phone-big .num {
  font-size: 42px;
  color: var(--blue);
  font-family: var(--font-en);
  letter-spacing: -0.03em;
}
.phone-big .unit { font-size: 14px; color: var(--ink); }
.phone-divider { height: 1px; background: var(--line-2); margin: 14px 0; }
.phone-toast {
  position: absolute;
  left: 14px; right: 14px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 6px 16px rgba(20,40,90,.08);
  font-size: 10px;
  line-height: 1.5;
  animation: toastIn 1.2s ease forwards 1.4s;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes toastIn { to { opacity: 1; transform: translateY(0); } }
.toast-bell {
  width: 22px; height: 22px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.toast-text { color: var(--ink-2); }
.toast-text b { display: block; }

/* Status pill on shop */
.shop-pill {
  position: absolute;
  top: 10px;
  left: 26%;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 22px rgba(20,40,90,.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  white-space: nowrap;
  animation: floatPill 5s ease-in-out infinite;
}
@keyframes floatPill {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.shop-pill .lbl { font-size: 10px; color: var(--muted); }
.shop-pill .val { font-size: 22px; font-weight: 800; color: var(--blue); font-family: var(--font-en); letter-spacing: -.02em; }
.shop-pill .val small { font-size: 12px; color: var(--ink); margin-left: 2px;}

/* ========== AUDIENCE ========== */
.section { padding-bottom: 200px; padding-top: 100px; position: relative; }
.section-tag {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-h {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0 0 60px;
  text-wrap: pretty;
}
.section-h .accent { color: var(--blue); position: relative; }
.section-h .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: rgba(0, 204, 153, 0.12);
  z-index: -1;
}
.audience .section-h { text-align: center; }

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.aud-card {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--r-lg);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.aud-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.aud-icon {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
}
.aud-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.08;
  z-index: -1;
}
.aud-card.c1 .aud-icon { color: var(--blue); }
.aud-card.c2 .aud-icon { color: var(--green); }
.aud-card.c3 .aud-icon { color: var(--yellow); }
.aud-card.c4 .aud-icon { color: var(--magenta); }
.aud-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
}
.aud-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}

/* ========== FEATURE BLOCKS (FUNCTION / INTEGRATION / etc) ========== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.feature.reverse { grid-template-columns: 1.3fr 1fr; }
.feature.reverse .feature-copy { order: 2; }
.feature-copy h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 14px 0 24px;
  text-wrap: pretty;
}
.feature-copy .desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin: 0 0 28px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.text-link:hover {
  gap: 14px;
  color: var(--blue);
  border-color: var(--blue);
}

/* Function dashboard */
.func-art {
  position: relative;
  height: 460px;
}
.dash {
  position: absolute;
  width:90%;
  margin-top: 10%;
  inset: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.dash-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
  background: #fafbfd;
}
.dot-rgb {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-rgb.r { background: #ff6b6b; }
.dot-rgb.y { background: #ffc94a; }
.dot-rgb.g { background: #2bb673; }
.dash-search {
  margin-left: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--muted-2);
  width: 200px;
}
.dash-body {
  display: grid;
  grid-template-columns: 64px 1fr;
}
.dash-side {
  background: #f7f9fd;
  padding: 18px 0;
  border-right: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.dash-side-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--muted-2);
}
.dash-side-ico.active { background: var(--blue-soft); color: var(--blue); }
.dash-main {
  padding: 24px 28px;
}
.dash-title-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.dash-title { font-size: 13px; font-weight: 700; }
.dash-tabs { display: flex; gap: 8px; }
.dash-tab {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: #f3f5f9;
  color: var(--muted);
}
.dash-tab.on { background: var(--blue); color: #fff; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.dash-stat {
  background: #f7f9fd;
  border-radius: 10px;
  padding: 12px;
}
.dash-stat .l { font-size: 10px; color: var(--muted); }
.dash-stat .v { font-size: 20px; font-weight: 800; font-family: var(--font-en); letter-spacing: -.02em; }
.dash-stat .v small { font-size: 11px; color: var(--muted); margin-left: 4px; font-family: var(--font-jp);}
.dash-chart {
  height: 130px;
  position: relative;
}
.chart-svg { width: 100%; height: 100%; }
.chart-tooltip {
  position: absolute;
  top: 10px;
  left: 38%;
  background: #0b1320;
  color: #fff;
  font-size: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chart-tooltip .v { font-size: 14px; font-weight: 700; font-family: var(--font-en); }
.chart-tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px; left: 16px;
  border: 5px solid transparent;
  border-top-color: #0b1320;
  border-bottom: 0;
}

/* ======== RECEPTION LIST (受付一覧) ======== */
.rcpt-summary {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.rcpt-sum-item {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f7f9fd;
  border-radius: 20px;
  padding: 4px 9px 4px 7px;
  font-size: 9px;
}
.rcpt-sum-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rcpt-sum-dot.s-waiting  { background: #f5a623; }
.rcpt-sum-dot.s-calling  { background: #00cc99; }
.rcpt-sum-dot.s-done     { background: #b0b9c8; }
.rcpt-sum-lbl  { color: var(--muted); }
.rcpt-sum-val  { font-weight: 800; font-family: var(--font-en); font-size: 11px; margin-left: 2px; }
.rcpt-sum-unit { color: var(--muted); font-size: 9px; }

.rcpt-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
}
.rcpt-header,
.rcpt-row {
  display: grid;
  grid-template-columns: 52px 30px 46px 34px 72px 1fr;
  align-items: center;
  gap: 0 6px;
  padding: 0 10px;
  font-size: 9.5px;
}
.rcpt-header {
  background: #f7f9fd;
  padding-top: 7px;
  padding-bottom: 7px;
  color: var(--muted);
  font-weight: 600;
  font-size: 9px;
  border-bottom: 1px solid var(--line-2);
  letter-spacing: .02em;
}
.rcpt-row {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-2);
  transition: background .15s;
}
.rcpt-row:last-child { border-bottom: none; }
.rcpt-row:hover { background: #fbfdff; }
.rcpt-row.row-calling {
  background: #f0fdf8;
}
.rcpt-row.row-done {
  background: #fcfcfd;
}
.rcpt-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
  color: var(--ink);
  letter-spacing: .01em;
}
.rcpt-pax  { color: var(--ink-2); text-align: center; }
.rcpt-time { color: var(--muted); font-family: var(--font-en); font-size: 9.5px; }
.rcpt-wait { color: var(--ink-2); font-family: var(--font-en); font-weight: 600; font-size: 9.5px; }

.rcpt-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 8.5px;
  font-weight: 700;
  white-space: nowrap;
}
.rcpt-badge.b-waiting { background: #fff8ec; color: #c47d00; }
.rcpt-badge.b-calling { background: #e6fff8; color: #007d5e; }
.rcpt-badge.b-done    { background: #f3f5f9; color: #8a93a4; }

.rcpt-btn {
  justify-self: start;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 8.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: var(--font-jp);
}
.rcpt-btn.btn-call { background: var(--blue-soft); color: var(--blue-deep); }
.rcpt-btn.btn-done { background: var(--blue); color: #fff; }

.rcpt-check {
  justify-self: start;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  opacity: .7;
}

/* Floating bubble on dashboard */
.bubble {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 130px; height: 130px;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px rgba(20,40,90,.15);
  text-align: center;
  z-index: 3;
}
.bubble .lbl { font-size: 10px; color: var(--muted); }
.bubble .v { font-size: 30px; font-weight: 800; color: var(--blue); font-family: var(--font-en); letter-spacing: -.02em;}
.bubble .v small { font-size: 13px; color: var(--ink); }
.bubble.b-left { top: 60px; left: -40px; animation: float 6s ease-in-out infinite;}

/* small phone next to dashboard */
.func-phone {
  position: absolute;
  right: 50px;
  top: 55px;
  width: 180px;
  height: 360px;
  background: #0b1320;
  border-radius: 28px;
  padding: 6px;
  box-shadow: var(--shadow-phone);
  z-index: 4;
  animation: floatPhone 7s ease-in-out infinite;
}
@keyframes floatPhone {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* INTEGRATION */
.integration .feature-copy h2 { font-size: 32px; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.logo-card {
  aspect-ratio: 1.2 / 1;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(20,40,90,.04);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.logo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(20,40,90,.1); }
.logo-card .lbl {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}
.logo-card svg { max-width: 60%; max-height: 50%; }

/* CASE */
.case-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.case-head h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.45;
  margin: 14px 0 0;
  letter-spacing: -.02em;
  text-wrap: pretty;
}
.case-head .desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 18px;
}
.case-head .desc + a { display: inline-block; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.case-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #cdf3e5, #effbf6);
  position: relative;
  overflow: hidden;
}
.case-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ph);
}
.case-card.c1 .case-img { background: linear-gradient(135deg, #f5d6c0, #fde4cf); }
.case-card.c2 .case-img { background: linear-gradient(135deg, #cdf3e5, #ece4f9); }
.case-card.c3 .case-img { background: linear-gradient(135deg, #d8efe1, #effbf6); }
.case-body { padding: 22px 22px 26px; }
.case-cat { font-size: 11px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.case-name { font-size: 16px; font-weight: 800; margin: 0 0 10px; }
.case-desc { font-size: 12.5px; color: var(--muted); line-height: 1.9; margin: 0 0 18px; }
.case-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
}
.case-pager {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 36px;
}
.case-pager .pdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line);
  transition: width .25s ease, background .25s ease;
}
.case-pager .pdot.on {
  background: var(--blue);
  width: 24px;
  border-radius: var(--r-pill);
}

/* LET'S START */
.cta {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -.02em;
  margin: 14px 0 24px;
  text-wrap: pretty;
}
.cta .desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin: 0 0 32px;
}
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.devices {
  position: relative;
  height: 360px;
}
.dev-doc {
  position: absolute;
  left: 0; bottom: 85px;
  width: 220px; height: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 22px 18px;
  transform: rotate(-6deg);
  border: 1px solid var(--line-2);
}
.dev-doc .doc-logo {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 18px;
}
.dev-doc .doc-mark {
  width: 18px; height: 18px; border-radius: 5px;
  background: linear-gradient(135deg, #1de4b4, #00cc99);
}
.dev-doc .doc-name { font-weight: 800; font-size: 11px; }
.dev-doc .doc-h { font-size: 14px; font-weight: 800; margin-bottom: 12px; }
.dev-doc .doc-line {
  height: 4px; background: var(--line); border-radius: 2px;
  margin-bottom: 8px;
}
.dev-doc .doc-line:nth-child(odd) { width: 70%; }
.dev-doc .doc-line.short { width: 40%; }

.dev-laptop {
  position: absolute;
  left: 130px; bottom: 0;
  width: 460px;
  z-index: 2;
}
.dev-screen {
  width: 100%; aspect-ratio: 16/10;
  background: #fff;
  border-radius: 10px 10px 4px 4px;
  border: 8px solid #1a2436;
  box-shadow: 0 28px 60px rgba(20,40,90,.18);
  overflow: hidden;
  position: relative;
}
.dev-base {
  width: 110%;
  height: 12px;
  background: linear-gradient(180deg, #2a3447, #1a2436);
  border-radius: 0 0 12px 12px;
  margin-left: -5%;
  position: relative;
}
.dev-base::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: #0b1320;
  border-radius: 0 0 6px 6px;
}
.dev-screen .laptop-dash {
  height: 100%;
  display: grid;
  grid-template-columns: 50px 1fr;
}
.laptop-side {
  background: #f7f9fd;
  border-right: 1px solid var(--line-2);
}
.laptop-main {
  padding: 16px;
}
.laptop-h { font-size: 10px; font-weight: 700; margin-bottom: 12px; }
.laptop-stat { display: flex; gap: 8px; margin-bottom: 10px; }
.laptop-stat .ls {
  flex: 1;
  background: #f7f9fd;
  border-radius: 6px;
  padding: 8px;
  font-size: 9px;
  color: var(--muted);
}
.laptop-stat .ls b {
  display: block; color: var(--blue);
  font-size: 18px; font-family: var(--font-en); letter-spacing: -.02em;
}
.laptop-chart {
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 204, 153,.15), rgba(0, 204, 153,0));
  border-radius: 6px;
  position: relative;
}

/* Laptop reception list */
.lap-summary {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}
.lap-sum-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: var(--muted);
}
.lap-sum-item b { color: var(--ink); font-weight: 700; margin: 0 1px; }
.lap-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-2);
  border-radius: 7px;
  overflow: hidden;
}
.lap-header,
.lap-row {
  display: grid;
  grid-template-columns: 44px 26px 36px 28px 60px 1fr;
  align-items: center;
  gap: 0 4px;
  padding: 0 8px;
  font-size: 8px;
}
.lap-header {
  background: #f7f9fd;
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--line-2);
}
.lap-row {
  padding-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-2);
}
.lap-row:last-child { border-bottom: none; }
.lap-row.row-calling { background: #f0fdf8; }
.lap-row.row-done    { background: #fcfcfd; }
.lap-btn {
  justify-self: start;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 7.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: var(--font-jp);
}
.lap-btn.btn-call { background: var(--blue-soft); color: var(--blue-deep); }
.lap-btn.btn-done { background: var(--blue); color: #fff; }
.cta-phone {
  position: absolute;
  right: 15px; bottom: 20px;
  width: 160px; height: 320px;
  background: #0b1320;
  border-radius: 22px;
  padding: 5px;
  box-shadow: var(--shadow-phone);
  z-index: 3;
}
.cta-phone .ps {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #effbf6, #fff);
  border-radius: 17px;
  padding: 14px 10px;
}
.cta-phone .ps .pl { font-size: 8px; color: var(--muted); }
.cta-phone .ps .pn { font-size: 22px; font-weight: 800; color: var(--blue); font-family: var(--font-en);}

/* ========== FOOTER ========== */
footer {
  background: #0b1320;
  color: #d3dcef;
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.foot-brand { color: #fff; }
.foot-brand p { color: #8a93a4; font-size: 13px; line-height: 2; margin: 18px 0 0; max-width: 320px;}
.foot-col h4 { color: #fff; font-size: 13px; margin: 0 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px;}
.foot-col a { color: #8a93a4; font-size: 13px; transition: color .2s ease;}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid #1a2436;
  font-size: 12px;
  color: #6b7388;
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  padding-left: 35px;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .3s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .4s; }
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .feature, .feature.reverse, .case-head, .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature.reverse .feature-copy { order: 0; }
  .hero { padding: 110px 0 60px; }
  .hero-copy h1 { font-size: 40px; }
  .section { padding: 80px 0; }
  .section-h, .feature-copy h2, .case-head h2, .cta h2 { font-size: 28px; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .case-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .nav { display: none; }
  .hero-art { height: 380px; }
  .iso-shop { width: 70%; }
  .phone { width: 170px; height: 350px; right: 0; top: 30px; }
  .func-art { height: 360px; }
  .dev-laptop { width: 100%; left: 0; }
  .dev-doc { display: none; }
  .cta-phone { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ============================================================
   LET'S START — 1000px以下: devices非表示・ボタン文章右横縦並び
   ============================================================ */
@media (max-width: 1000px) {
  /* devices & phone を非表示 */
  .devices { display: none !important; }
  .cta-phone { display: none !important; }

  /* cta-grid は1カラムに */
  .cta-grid { grid-template-columns: 1fr !important; }

  /* reveal内を「文章 | ボタン」2カラムグリッドに */
  .cta-grid > .reveal {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    column-gap: 40px;
    row-gap: 0;
    margin-right: 15%;
  }

  /* 文章要素を左列に明示配置 */
  .cta-grid > .reveal > .section-tag { grid-column: 1; grid-row: 1; }
  .cta-grid > .reveal > h2           { grid-column: 1; grid-row: 2; }
  .cta-grid > .reveal > .desc        { grid-column: 1; grid-row: 3; }

  /* ボタンは右列・全行スパンで縦並び */
  .cta-grid > .reveal > .cta-buttons {
    grid-column: 2;
    grid-row: 1 / span 3;
    flex-direction: column;
    gap: 12px;
    align-self: center;
  }
  .cta-grid .cta-buttons .btn {
    white-space: nowrap;
  }
}

/* スマホ幅では通常フローに戻す */
@media (max-width: 640px) {
  .cta-grid > .reveal {
    display: block;
  }
  .cta-grid > .reveal .cta-buttons {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
  }
}

/* ============================================================
   SUBPAGE COMMON
   ============================================================ */
.subhero {
  position: relative;
  padding: 160px 0 70px;
  overflow: hidden;
  background: linear-gradient(180deg, #effbf6 0%, #fff 100%);
}
.subhero .blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.55; pointer-events: none; }
.subhero .blob.bx1 { width: 300px; height: 300px; background: #cdf3e5; top: 60px; left: -120px; }
.subhero .blob.bx2 { width: 220px; height: 220px; background: #ffe1ee; top: 120px; right: -60px; opacity: 0.4; }
.subhero .blob.bx3 { width: 140px; height: 140px; background: #fff4cf; bottom: 30px; left: 38%; opacity: 0.45; }
.subhero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 880px;
}
.subhero .eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--muted-2); }
.subhero h1 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  text-wrap: pretty;
}
.subhero h1 .accent { color: var(--blue); }
.subhero .lede {
  font-size: 15px;
  color: var(--muted);
  line-height: 2;
  margin: 8px 0 0;
  max-width: 720px;
}
.subhero .catch {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 10px 0 0;
  white-space: pre-line;
}

.section-tight { padding: 80px 0; }
.section-h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.section-lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 36px;
  max-width: 760px;
}

.tag-new {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--magenta);
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  margin-right: 6px;
  vertical-align: 2px;
}
.tag-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}

/* function categories */
.fcat {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 56px 0;
  border-top: 1px solid var(--line-2);
}
.fcat:first-of-type { border-top: 0; padding-top: 16px; }
.fcat-num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.fcat-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.fcat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: #fff;
}
.fcat-1 .fcat-icon { background: linear-gradient(135deg, #1de4b4, #00cc99); box-shadow: 0 10px 24px rgba(0, 204, 153,.28); }
.fcat-2 .fcat-icon { background: linear-gradient(135deg, #2bb673, #16a061); box-shadow: 0 10px 24px rgba(43,182,115,.28); }
.fcat-3 .fcat-icon { background: linear-gradient(135deg, #f5b800, #e29c00); box-shadow: 0 10px 24px rgba(245,184,0,.28); }
.fcat-4 .fcat-icon { background: linear-gradient(135deg, #e94090, #c93077); box-shadow: 0 10px 24px rgba(233,64,144,.28); }
.fcat-5 .fcat-icon { background: linear-gradient(135deg, #6b7cff, #5563dc); box-shadow: 0 10px 24px rgba(107,124,255,.28); }

.feat-table { display: grid; gap: 12px; }
.feat-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-row:hover {
  transform: translateY(-2px);
  border-color: var(--blue-soft);
  box-shadow: 0 10px 28px rgba(20,40,90,.08);
}
.feat-row .name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feat-row .desc {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--muted);
  margin: 0;
}

.note-box {
  margin-top: 22px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--blue-mist), #fff);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-2);
}
.note-box b { color: var(--blue); display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: 0.04em; }
.fcat-2 .note-box { background: linear-gradient(135deg, #e3f6ec, #fff); border-left-color: var(--green); }
.fcat-2 .note-box b { color: var(--green); }
.fcat-3 .note-box { background: linear-gradient(135deg, #fff5d6, #fff); border-left-color: var(--yellow); }
.fcat-3 .note-box b { color: #b88d00; }
.fcat-4 .note-box { background: linear-gradient(135deg, #ffe6f1, #fff); border-left-color: var(--magenta); }
.fcat-4 .note-box b { color: var(--magenta); }

/* CASE industry */
.industry { padding: 60px 0; border-top: 1px solid var(--line-2); }
.industry:first-of-type { border-top: 0; padding-top: 8px; }
.industry-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 32px;
  align-items: end;
}
.industry-emoji { font-size: 28px; margin-right: 8px; }
.industry-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.industry-issues {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 20px 24px;
}
.industry-issues h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 10px;
}
.industry-issues ul { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.95; color: var(--ink-2); }
.case-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case-quote {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 26px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.case-quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-quote::before {
  content: "\201D";
  position: absolute;
  top: 8px; right: 22px;
  font-family: var(--font-en);
  font-size: 90px;
  line-height: 1;
  color: var(--blue-soft);
  font-weight: 800;
}
.case-quote .org { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.case-quote .name { font-size: 16px; font-weight: 800; margin: 0 0 14px; }
.case-quote blockquote {
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0;
  position: relative;
  z-index: 1;
}
.ind-medical .industry-issues { background: #e0f7ee; }
.ind-gov     .industry-issues { background: #e3f6ec; }
.ind-beauty  .industry-issues { background: #ffe6f1; }
.ind-retail  .industry-issues { background: #fff5d6; }
.ind-food    .industry-issues { background: #f0e7fe; }

/* PRICING */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: #fff;
  border: 3px solid var(--line-2);
  border-radius: 22px;
  padding: 36px 30px 32px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured {
  background: linear-gradient(180deg, #00a37b 0%, #00cc99 100%);
  color: #fff;
  border: none;
  box-shadow: 0 30px 70px rgba(0, 204, 153,.32);
  transform: translateY(-12px);
}
.plan-card.featured:hover { transform: translateY(-18px); }
.plan-card.featured .plan-meta,
.plan-card.featured .plan-fine,
.plan-card.featured .plan-incl li,
.plan-card.featured .plan-foot { color: #cdf3e5; }
.plan-card .featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(233,64,144,.4);
}
.plan-name {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.plan-meta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  min-height: 50px;
}
.plan-price { margin: 10px 0 18px; display: flex; align-items: baseline; gap: 6px; font-family: var(--font-en); }
.plan-price .num { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; color: var(--blue); }
.plan-card.featured .plan-price .num { color: #fff; }
.plan-price .unit { font-size: 16px; color: var(--ink); font-family: var(--font-jp); }
.plan-card.featured .plan-price .unit { color: #fff; }
.plan-price .pre { font-size: 14px; color: var(--muted); font-family: var(--font-jp); margin-right: 4px; }
.plan-card.featured .plan-price .pre { color: #cdf3e5; }
.plan-capacity { font-size: 13px; color: var(--ink); margin: 14px 0 0; }
.plan-capacity strong { color: var(--blue); font-weight: 700; }
.plan-card.featured .plan-capacity { color: #cdf3e5; }
.plan-card.featured .plan-capacity strong { color: #fff; }
.plan-tax { font-size: 12px; color: var(--muted); margin: -10px 0 0; }
.plan-card.featured .plan-tax { color: #cdf3e5; }
.plan-note { font-size: 12px; color: var(--muted); margin: 16px 0 0; grid-column: 1 / -1; }
.common-features {
  grid-column: 1 / -1;
  margin-top: 40px;
  margin-bottom: 40px;
  background: #f0fdf9;
  border: 1px solid rgba(0,204,153,0.2);
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.common-features-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}
.common-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.common-features-list li {
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.common-features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.common-features-text {
  font-size: 14px;
  color: var(--ink);
  margin-left: 15px;
}
.common-features-text a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.common-features .btn-outline {
  border-color: #00cc99;
  color: #00cc99;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.common-features .btn-outline:hover {
  background: #00cc99;
  color: #fff;
}
.plan-fine { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.plan-incl { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
.plan-incl li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  padding-left: 26px;
  position: relative;
}
.plan-incl li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue-soft);
}
.plan-incl li::after {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.plan-card.featured .plan-incl li::before { background: rgba(255,255,255,0.18); }
.plan-card.featured .plan-incl li::after { border-color: #fff; }
.plan-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.plan-card.featured .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.plan-card.featured .btn-primary:hover { background: var(--blue-soft); }
.plan-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 48px;
  border: 3px solid #00cc99;
}
.plan-card.wide .wide-left { flex: 0 0 38%; }
.plan-card.wide .plan-incl { flex: 1; margin: 0; }
.plan-card.wide .btn { width: auto; margin-top: 16px; }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  font-size: 13px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line-2);
}
.compare-table th { background: var(--bg-soft); font-weight: 700; color: var(--ink-2); font-size: 12.5px; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--ink-2); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .check { color: var(--blue); font-weight: 800; font-size: 16px; }
.compare-table .dash  { color: var(--muted-2); }

.fine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.fine-card { background: var(--bg-soft); border-radius: 14px; padding: 22px 24px; }
.fine-card h4 { font-size: 13px; margin: 0 0 10px; }
.fine-card ul { margin: 0; padding-left: 18px; font-size: 12.5px; line-height: 1.95; color: var(--muted); }

/* TRIAL */
.trial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.trial-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.trial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trial-card .num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-soft);
  letter-spacing: -.02em;
  line-height: 1;
}
.trial-card h3 { font-size: 17px; font-weight: 800; margin: 8px 0 10px; }
.trial-card ul { margin: 0; padding-left: 18px; font-size: 13px; line-height: 2; color: var(--muted); }

/* steps */
.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
}
.step-num span {
  display: block;
  font-size: 36px;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: 4px;
}
.step-body h3 { font-size: 16px; margin: 0 0 8px; font-weight: 800; }
.step-body p, .step-body .pt { font-size: 13px; color: var(--muted); line-height: 1.95; margin: 0; }
.step-time {
  font-size: 11px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  justify-self: end;
}

.timeline { position: relative; padding-left: 0; list-style: none; margin: 0; }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-2);
  max-width: 1100px;
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-num {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 12px 28px rgba(0, 204, 153,.28);
  position: relative;
}
.timeline-num::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: calc(100% + 28px);
  background: linear-gradient(180deg, var(--blue) 0%, transparent 100%);
  opacity: .4;
  transform: translateX(-50%);
}
.timeline-item:last-child .timeline-num::after { display: none; }
.timeline-body h3 { font-size: 18px; margin: 6px 0 8px; font-weight: 800; }
.timeline-body p { font-size: 13.5px; color: var(--muted); line-height: 1.95; margin: 0 0 12px; }
.timeline-body .point {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.9;
}
.timeline-body .point b { color: var(--blue); }
.timeline-body ul { margin: 6px 0 12px; padding-left: 18px; font-size: 13.5px; color: var(--muted); line-height: 1.95;}

/* customize */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.uc-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 30px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.uc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.uc-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.uc-card h3 { font-size: clamp(14px, 1.4vw, 18px); font-weight: 800; margin: 0 0 14px; line-height: 1.5; }
.uc-card .examples { display: grid; gap: 8px; margin: 0 0 18px; padding: 0; list-style: none; }
.uc-card .examples li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(9px, 0.9vw, 13px);
  color: var(--ink-2);
  line-height: 1.85;
}
.uc-card .examples li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--blue);
}
.uc-card .arrow {
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-mist);
  padding: 12px 16px;
  border-radius: 10px;
  line-height: 1.8;
}

.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.strength-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 28px 26px;
}
.strength-card h4 { font-size: 15px; font-weight: 800; margin: 14px 0 10px; }
.strength-card p { font-size: 13px; color: var(--muted); line-height: 1.95; margin: 0; }
.strength-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

/* FAQ */
.faq-cat { margin: 50px 0; }
.faq-cat h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.faq-item { border-bottom: 1px solid var(--line-2); max-width: 1200px; margin: 0 auto; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 50px 22px 38px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  transition: color .2s ease;
  max-width: 1200px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  font-family: var(--font-en);
  position: absolute;
  left: 0; top: 22px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 12px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease, border-color .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); border-color: var(--blue); }
.faq-item summary:hover { color: var(--blue); }
.faq-item .faq-a {
  padding: 0 38px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
  position: relative;
}
.faq-item .faq-a::before {
  content: "A";
  font-family: var(--font-en);
  position: absolute;
  left: 0; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}
.contact-form fieldset { border: 0; padding: 0; margin: 0 0 28px; }
.contact-form legend { font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 14px; }
.contact-form .req {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: 2px;
}
.contact-form .opt {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: 2px;
}
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
}
.radio-grid label:hover { border-color: var(--blue); }
.radio-grid input { accent-color: var(--blue); }
.radio-grid label:has(input:checked) { border-color: var(--blue); background: var(--blue-mist); }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-2);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-row textarea { resize: vertical; min-height: 140px; line-height: 1.85; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 204, 153,.12);
}
.form-row.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-row.cols > div { margin-bottom: 0; }
.contact-form .submit-row { margin-top: 30px; }
.contact-form .submit-row .btn { width: 100%; justify-content: center; padding: 18px 28px; font-size: 16px; }

.contact-side { position: sticky; top: 110px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 16px;
}
.contact-card h4 {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-card h4 .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
}
.contact-card .num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 4px 0 6px;
  display: block;
}
.contact-card .meta { font-size: 12px; color: var(--muted); line-height: 1.85; }
.contact-policy { background: var(--blue-mist); border-radius: 14px; padding: 22px 24px; }
.contact-policy h4 { font-size: 13px; margin: 0 0 10px; color: var(--blue); }
.contact-policy ul { margin: 0; padding-left: 18px; font-size: 12.5px; color: var(--ink-2); line-height: 1.95; }

/* COMPANY */
.greeting {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 44px 50px;
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--ink-2);
  position: relative;
}
.greeting::before {
  content: "\201D";
  position: absolute;
  top: 12px; left: 22px;
  font-size: 80px;
  color: var(--blue-soft);
  font-family: var(--font-en);
  line-height: 1;
  font-weight: 800;
}
.greeting .sign {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.cinfo-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  font-size: 13.5px;
}
.cinfo-table th, .cinfo-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top;
  line-height: 1.85;
}
.cinfo-table tr:last-child th, .cinfo-table tr:last-child td { border-bottom: 0; }
.cinfo-table th {
  font-weight: 700;
  color: var(--ink-2);
  background: var(--bg-soft);
  width: 180px;
}
.cinfo-table td { color: var(--muted); }
.cinfo-table td a { color: var(--blue); border-bottom: 1px solid currentColor; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: linear-gradient(180deg, #fff, var(--bg-mist));
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 30px 30px;
}
.value-card .num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.16em;
}
.value-card h4 { font-size: 18px; font-weight: 800; margin: 10px 0 14px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.95; margin: 0; }

.svc-list { display: grid; gap: 14px; }
.svc-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 22px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.svc-item h4 { font-size: 15px; font-weight: 800; margin: 0; line-height: 1.5; }
.svc-item p { font-size: 13px; color: var(--muted); line-height: 1.95; margin: 0; }

.gap-l { margin-top: 60px; }
.gap-m { margin-top: 36px; }

/* page CTA */
.page-cta-wrap {
  margin: 150px 0 90px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.page-cta-wrap.in {
  opacity: 1;
  transform: translateX(0);
}
.page-cta-tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 60px;
  background: #f0fffa;
  border: 2px solid #00cc99;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.page-cta {
  background: linear-gradient(to bottom, #f4fffb 50%, #ccfdef 100%);
  border-radius: 0 32px 32px 32px;
  padding: 70px 64px;
  margin: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: #00cc99 2px solid;
}
.page-cta::before, .page-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
}
/* .page-cta::before {
  width: 260px; height: 260px;
  top: -80px; right: 60px;
  background: rgba(0, 204, 153, 0.18);
}
.page-cta::after {
  width: 200px; height: 200px;
  bottom: -60px; left: 80px;
  background: rgba(29, 228, 180, 0.14);
} */
.page-cta h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 16px;
}
.page-cta p {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 30px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.page-cta .cta-buttons { justify-content: center; position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; }

/* Responsive subpages */
@media (max-width: 960px) {
  .subhero { padding: 130px 0 50px; }
  .subhero h1 { font-size: 32px; }
  .fcat { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .feat-row { grid-template-columns: 1fr; gap: 6px; padding: 18px; }
  .industry-head { grid-template-columns: 1fr; gap: 24px; }
  .case-quotes { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; gap: 18px; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .trial-grid, .uc-grid, .strength-grid, .values-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .step-time { justify-self: start; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; }
  .timeline-num { width: 48px; height: 48px; font-size: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-side { position: static; }
  .form-row.cols { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr; }
  .greeting { padding: 30px 24px; }
  .cinfo-table th { width: 110px; padding: 14px 16px; font-size: 12.5px; }
  .cinfo-table td { padding: 14px 16px; font-size: 13px; }
  .svc-item { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .page-cta { padding: 50px 28px; border-radius: 0 22px 22px 22px; }
  .page-cta h2 { font-size: 24px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px 8px; }
  .fine-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SIDE LABEL  — vertical brand mark on the left edge
   ============================================================ */
.side-label {
  position: fixed;
  right: 1%;
  bottom: 20%;
  writing-mode: vertical-rl;
  transform: none;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--muted-2);
  z-index: 90;
  pointer-events: none;
  user-select: none;
}
.side-label::before {
  content: "";
  display: inline-block;
  width: 1px; height: 64px;
  background: linear-gradient(180deg, transparent, var(--blue));
  margin-bottom: 14px;
}
@media (max-width: 1100px) { .side-label { display: none; } }


/* ============================================================
   CONCEPT STRIP
   ============================================================ */
.concept-strip {
  padding: 70px 0 30px;
  position: relative;
  /* background: linear-gradient(to bottom, rgb(220, 255, 246) 0%, rgba(255,255,255,0) 40%); */
}
.concepts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(20,40,90,0.06);
  overflow: hidden;
}
.concept {
  padding: 38px 36px;
  border-right: 1px solid var(--line-2);
  position: relative;
  transition: background .3s ease;
}
.concept:last-child { border-right: 0; }
.concept:hover { background: var(--blue-mist); }
.concept-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-mist);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
}
.concept-ico::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  border: 1px dashed var(--blue);
  opacity: 0.25;
}
.concept h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.concept p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.95;
  margin: 0;
}
@media (max-width: 960px) {
  .concepts { grid-template-columns: 1fr; }
  .concept { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .concept:last-child { border-bottom: 0; }
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #f3fbf7 0%, #ffffff 100%);
  overflow: hidden;
}
.how-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,163,123,0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.4;
  pointer-events: none;
}
.how-head {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 720px;
}
.how-head .section-tag { color: var(--blue); }
.how-head h2 { font-size: 36px; font-weight: 800; margin: 0 0 16px; letter-spacing: -0.02em; line-height: 1.4; }
.how-head h2 .accent {
  background: linear-gradient(180deg, transparent 65%, rgba(0,204,153,0.25) 65%);
  background-repeat: no-repeat;
  padding: 0 4px 4px;
}
.section-lead-c {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2;
  margin: 0;
  text-align: center;
}

.how-figure {
  max-width: 1080px;
  margin: 0 auto 50px;
  position: relative;
}
.how-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- HOW carousel (peek style) ---- */
.how-carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 20px;
  overflow: hidden;
}
.how-carousel-track {
  overflow: visible;
  padding: 20px 0;
}
.how-carousel-track-inner {
  display: flex;
  position: relative;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.how-step {
  flex: 0 0 min(380px, 58vw);
  margin: 0 16px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,204,153,0.2);
  border-radius: 18px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  transform: scale(0.82);
  opacity: 0.5;
  transition: transform .5s ease, opacity .5s ease, box-shadow .5s ease;
}
.how-step.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 24px 52px rgba(0,163,123,0.18);
}
.how-step .num {
  display: block;
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.how-step h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.6;
  margin: 0 0 12px;
}
.how-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}
.how-step-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}
.how-step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.how-step-img img[src="01.png"],
.how-step-img img[src="02.png"],
.how-step-img img[src="03.png"],
.how-step-img img[src="04.png"] {
  animation: float 3.5s ease-in-out infinite;
}
/* nav buttons */
.how-nav {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,204,153,0.35);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  z-index: 3;
}
.how-nav:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,163,123,0.2); }
.how-nav.prev { left: 16px; }
.how-nav.next { right: 16px; }
.how-nav:disabled { opacity: 0.25; cursor: default; }
/* dots */
.how-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.how-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,163,123,0.25);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.how-dot.active {
  background: var(--blue);
  transform: scale(1.35);
}

@media (max-width: 960px) {
  .how { padding: 80px 0; }
  .how-head h2 { font-size: 26px; }
}
@media (max-width: 540px) {
  .how-nav.prev { left: 8px; }
  .how-nav.next { right: 8px; }
  .how-step-img { height: 180px; }
  .how-step { padding: 28px 20px 24px; }
}


/* ============================================================
   EVERYWHERE  — shops.png townscape section
   ============================================================ */
.everywhere {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f3fbf7 0%, #ffffff 100%);
  overflow: hidden;
}
.ev-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.ev-head h2 { font-size: 36px; font-weight: 800; margin: 0 0 16px; letter-spacing: -0.02em; line-height: 1.4; }
.ev-head h2 .accent {
  background: linear-gradient(180deg, transparent 65%, rgba(0,204,153,0.25) 65%);
  background-repeat: no-repeat;
}
/* 画像カード（コンテナ外・全幅） */
.ev-figure {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}
.ev-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(20,40,90,0.12);
  border: 1px solid var(--line-2);
}

/* アイコン群カード */
.ev-category-card {
  max-width: min(1000px, calc(100vw - 160px));
  margin: 24px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(20,40,90,0.09);
  border: 1px solid var(--line-2);
  background: #ffffff;
}
.ev-tag {
  position: absolute;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(20,40,90,0.12);
  z-index: 2;
  letter-spacing: 0.04em;
}
.ev-tag::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 6px;
  vertical-align: 2px;
}
.ev-tag.t1 { top: 18px;  left: 24px;  }
.ev-tag.t2 { top: 22px;  right: 32px; }
.ev-tag.t3 { bottom: 26px; left: 30px; }
.ev-tag.t4 { bottom: 24px; right: 26px; }
@media (max-width: 720px) {
  .everywhere { padding: 70px 0; }
  .ev-head h2 { font-size: 24px; }
  .ev-tag { font-size: 10px; padding: 4px 9px; }
  .ev-tag.t1, .ev-tag.t3 { left: 12px; }
  .ev-tag.t2, .ev-tag.t4 { right: 12px; }
}

/* ── ev-category-strip ── */
.ev-category-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 36px;
  background: #ffffff;
}
.ev-category-label {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #000000;
  white-space: nowrap;
}
.ev-category-list {
  display: flex;
  flex: 1;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.ev-category-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.ev-category-list svg {
  width: 44px;
  height: 44px;
  color: var(--green);
  flex-shrink: 0;
}
.ev-category-list span {
  font-size: 12px;
  color: #444;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .ev-card { border-radius: 16px; }
  .ev-category-strip { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 20px; }
  .ev-category-label br { display: none; }
  .ev-category-list { flex-wrap: wrap; justify-content: flex-start; gap: 16px 16px; }
}
@media (max-width: 480px) {
  .ev-category-list span { font-size: 11px; white-space: normal; max-width: 60px; }
  .ev-category-list svg { width: 36px; height: 36px; }
}


/* ============================================================
   AUDIENCE — minor recolor adjustments
   ============================================================ */
.aud-card.c1 .aud-icon { color: var(--blue); }       /* mint */
.aud-card.c2 .aud-icon { color: #2bb673; }           /* secondary green */
.aud-card.c3 .aud-icon { color: var(--yellow); }
.aud-card.c4 .aud-icon { color: var(--magenta); }


/* ============================================================
   small CSS adjustments for the green theme
   ============================================================ */
.section-tag { color: var(--blue); }
.case-pager .pdot.on { background: var(--blue); }
.dash-tab.on { background: var(--blue); color: #fff; }

/* hero — small screens */
@media (max-width: 960px) {
  .hero { padding: 110px 0 60px; }
  .hero-grid {
    padding-left: clamp(24px, 5vw, 48px);
    padding-right: clamp(24px, 5vw, 48px);
    grid-template-columns: 1fr;
    margin-right: 0;
  }
  .hero-copy h1 { font-size: 30px; }
  .hero-copy h1 .line-sub { font-size: 18px; }
  .hero-copy h1 .line-main { font-size: 30px; white-space: normal; }
  .hero-meta { gap: 14px; font-size: 11px; }
  .hero-glow { width: 380px; height: 380px; opacity: 0.7; }
  .hero-dotgrid { display: none; }
}


  .subhero h1 { 
      color: #000000;
      font-family: auto;
      font-weight: 600;
  }

  /* ── accent テキスト — マーカー強調 + アニメーション下線 ── */
  .subhero h1 .accent {
    background: linear-gradient(180deg, transparent 60%, rgba(0,204,153,0.22) 60%);
    background-repeat: no-repeat;
    padding: 0 4px 4px;
    color: var(--ink);
    position: relative;
    display: inline-block;
    font-family: auto;
    font-weight: 600;
  }
  .subhero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 4px;
    background: #00cc99;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    animation: underlineDraw 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
  }
  @keyframes underlineDraw {
    to { transform: scaleX(1); }
  }
  .subhero .catch { color: #1a4535; font-weight: 700; }
  .subhero .lede { color: #3d6b5a; }
  .subhero .breadcrumb a { color: #3d6b5a; }
  .subhero .breadcrumb .sep { color: #7ab8a3; }


/* ============================================================
   MOBILE NAVIGATION  — hamburger button + full-screen drawer
   ============================================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 110;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  padding: 100px 32px 48px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color .2s ease;
  text-decoration: none;
}
.mobile-nav > a:hover { color: var(--blue); }
.mobile-nav-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-actions .btn {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   RESPONSIVE — ハンバーガーメニュー表示 (max-width: 1000px)
   ============================================================ */
@media (max-width: 1000px) {
  .menu-toggle { display: flex; }
  .nav { display: none !important; }
  .header-actions { display: none; }
  .brand-tag { display: none; }
}


/* ============================================================
   RESPONSIVE — タブレット・スマホ共通 (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* --- Header --- */
  .menu-toggle { display: flex; }
  .nav { display: none !important; }
  .header-actions { display: none; }
  .brand-tag { display: none; }
  .brand-mark { width: 36px; height: 36px; }

  /* --- Container --- */
  .container { padding: 0 20px; }

  /* --- Section共通 --- */
  .section { padding: 60px 0; }
  .section-h { font-size: 26px; margin-bottom: 32px; }
  .section-lead-c { font-size: 13px; }
  .feature-copy h2 { font-size: 26px; }
  .cta h2 { font-size: 26px; }
  .how-head h2 { font-size: 26px; }
  .ev-head h2 { font-size: 26px; }

  /* --- Hero --- */
  .hero { padding: 90px 0 40px; }
  .hero .hero-grid {
    padding-left: clamp(20px, 4vw, 36px);
    padding-right: clamp(20px, 4vw, 36px);
    gap: 24px;
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .hero-copy { margin-top: 50px; }
  .hero-copy h1 .line-sub { font-size: 16px; }
  .hero-copy h1 .line-main { font-size: 28px; white-space: normal; }
  .hero-copy .lede { font-size: 13px; }
  .hero-cta .btn-lg { padding: 14px 20px; font-size: 14px; }

  /* --- Audience --- */
  .aud-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .aud-card { padding: 20px 12px; }
  .aud-icon { width: 64px; height: 64px; margin-bottom: 14px; }
  .aud-title { font-size: 15px; }
  .aud-desc { font-size: 12px; }

  /* --- HOW --- */
  .how { padding: 70px 0; }

  /* --- FUNCTION art --- */
  .func-art { height: auto; min-height: 260px; }
  .dash { position: relative; inset: auto; }
  .bubble { display: none; }
  .func-phone { display: none; }

  /* --- CTA devices --- */
  .devices { display: none; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }

  /* --- Footer --- */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ============================================================
   RESPONSIVE — スマホ小 (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* --- Container --- */
  .container { padding: 0 16px; }

  /* --- Hero --- */
  .hero { padding: 80px 0 32px; }
  .hero-copy { margin-top: 0px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
  .hero-copy h1 .line-sub { font-size: 14px; }
  .hero-copy h1 .line-main { font-size: 24px; }
  .hero-copy .lede br { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* --- Audience --- */
  .aud-grid { grid-template-columns: 1fr; }

  /* --- Sections --- */
  .section { padding: 50px 0; }
  .section-h { font-size: 22px; }
  .feature-copy h2 { font-size: 22px; }

  /* --- HOW --- */
  .how { padding: 50px 0; }
  .how-head h2 { font-size: 22px; }

  /* --- Everywhere --- */
  .everywhere { padding: 50px 0; }
  .ev-head h2 { font-size: 22px; }

  /* --- CTA --- */
  .cta h2 { font-size: 22px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* --- Footer --- */
  .foot-grid { grid-template-columns: 1fr; gap: 20px; }
  footer { padding: 60px 0 28px; }
}


/* ============================================================
   RESPONSIVE — 4 ブレークポイント（index.html / function.html 共通）
   PC           : 1280px+   → デフォルトスタイルをそのまま使用
   タブレット横  : 860〜1279px
   タブレット縦/大スマホ : 〜860px
   スマホ        : 〜640px
   ============================================================ */


/* ----------------------------------------------------------------
   ❶  タブレット横：1001〜1279px
   ---------------------------------------------------------------- */
@media (min-width: 1001px) and (max-width: 1279px) {

  /* Side label */
  .side-label { display: none; }

  /* Container */
  .container { padding: 0 28px; }

  /* ---- Header ---- */
  .brand-mark { width: 42px; height: 42px; }
  .nav { gap: 14px; }
  .nav a { font-size: 13px; }
  /* ヘッダーアクションボタンは維持、ナビは表示したまま */

  /* ---- Hero ---- */
  .hero { padding: 80px 0 40px; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hero-top  hero-art"
      "hero-body hero-art";
    gap: 0;
    padding-left: clamp(28px, 3.5vw, 52px);
    padding-right: clamp(16px, 2vw, 28px);
  }
  .hero-copy h1 .line-sub { font-size: clamp(16px, 1.6vw, 22px); }
  .hero-copy h1 .line-main { font-size: clamp(24px, 2.8vw, 40px); white-space: normal; }
  .hero-copy .lede { font-size: 14px; margin: 20px 0 32px; }
  .hero-image { width: 88%; }

  /* ---- Audience ---- */
  .aud-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* ---- Section 共通 ---- */
  .section { padding: 80px 0 120px; }
  .section-h { font-size: 32px; }
  .reveal.in { padding-left: 20px; }

  /* ---- HOW ---- */
  .how { padding: 80px 0; }
  .how-head h2 { font-size: 30px; }

  /* ---- Feature / Function ---- */
  .feature { max-width: 100%; gap: 40px; }
  .feature-copy h2 { font-size: 28px; }
  .func-art { height: 380px; }
  .bubble.b-left { left: -16px; width: 110px; height: 110px; }
  .func-phone { right: 16px; width: 155px; height: 310px; }

  /* ---- Everywhere ---- */
  .everywhere { padding: 90px 0; }
  .ev-head h2 { font-size: 30px; }
  .ev-figure { padding: 0 40px; }
  .ev-category-card { max-width: calc(100vw - 80px); }

  /* ---- CTA ---- */
  .cta-grid { grid-template-columns: 1fr 1.1fr; gap: 24px; max-width: 100%; }
  .cta h2 { font-size: 30px; }
  .devices { height: 300px; }
  .dev-laptop { width: 360px; left: 90px; }
  .dev-doc { width: 180px; height: 240px; }

  /* ---- Footer ---- */
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }

  /* ================================================================
     function.html — タブレット横 (860〜1279px)
     ================================================================ */

  /* Subhero */
  .subhero { padding: 140px 0 60px; }
  .subhero h1 { font-size: 40px; }
  .subhero .lede { font-size: 14.5px; }

  /* Section tight */
  .section-tight { padding: 64px 0 80px; }

  /* Feature categories — 左カラムを少し狭める */
  .fcat {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 48px 0;
  }
  .fcat-title { font-size: 20px; }

  /* Feature rows — 名前列を縮める */
  .feat-row {
    grid-template-columns: 160px 1fr;
    gap: 22px;
    padding: 18px 20px;
  }

  /* Page CTA */
  .page-cta-wrap { margin: 100px 0 70px; }
  .page-cta { padding: 60px 48px; }
  .page-cta h2 { font-size: 28px; }

  /* ================================================================
     faq.html — タブレット横 (860〜1279px)
     ================================================================ */

  /* Subhero */
  .subhero .catch { font-size: 17px; }

  /* FAQ カテゴリ間隔・見出し */
  .faq-cat { margin: 44px 0; }
  .faq-cat h3 { font-size: 17px; }

  /* FAQ アイテム — サマリー行 */
  .faq-item summary {
    padding: 20px 46px 20px 38px;
    font-size: 14.5px;
  }

  /* FAQ アイテム — 回答 */
  .faq-item .faq-a { font-size: 13.5px; }
}


/* ----------------------------------------------------------------
   ❷  タブレット縦 / 大スマホ：〜860px
   ---------------------------------------------------------------- */
@media (max-width: 860px) {

  /* ---- Side label ---- */
  .side-label { display: none; }

  /* ---- Header ---- */
  .menu-toggle { display: flex; }
  .nav { display: none !important; }
  .header-actions { display: none; }
  .brand-tag { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .site-header { padding: 12px 0; }

  /* ---- Container ---- */
  .container { padding: 0 24px; }

  /* ---- Hero ---- */
  .hero { padding: 100px 0 50px; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "hero-top"
      "hero-art"
      "hero-body";
    padding-left: clamp(24px, 5vw, 48px);
    padding-right: clamp(24px, 5vw, 48px);
    gap: 0;
    row-gap: 0;
  }
  /* 見出しブロック */
  .hero-copy-top { margin-top: 40px; padding-bottom: 0; }
  .hero-copy-top h1 { margin-bottom: 0; }
  /* 画像ブロック */
  .hero-art { align-self: auto; }
  .hero-art-img { margin-right: 0; justify-content: center; margin-top: 35px; margin-bottom: 0; }
  .hero-image { width: 72%; max-width: 520px; margin: 0 auto; }
  /* 本文・CTAブロック */
  .hero-copy-bottom { padding-top: 0; }
  .hero-copy h1 .line-sub { font-size: 18px; }
  .hero-copy h1 .line-main { font-size: 32px; white-space: normal; }
  .hero-copy .lede { font-size: 14px; margin: 20px 0 32px; }

  /* reveal インデントをリセット */
  .reveal.in { padding-left: 10px; }

  /* ---- Audience ---- */
  .aud-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .aud-card { padding: 22px 14px; }
  .aud-icon { width: 68px; height: 68px; }

  /* ---- Section 共通 ---- */
  .section { padding: 70px 0 100px; }
  .section-h { font-size: 28px; margin-bottom: 36px; }
  .section-lead-c { font-size: 13.5px; }

  /* ---- HOW ---- */
  .how { padding: 70px 0; }
  .how-head h2 { font-size: 26px; }
  .how-head { margin-bottom: 36px; }

  /* ---- Feature / Function ---- */
  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
  .feature.reverse .feature-copy { order: 0; }
  .feature-copy h2 { font-size: 28px; }
  .func-art { height: auto; min-height: 280px; overflow: visible; }
  .dash {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
  .bubble { display: none !important; }
  .func-phone { display: none !important; }

  /* ---- Everywhere ---- */
  .everywhere { padding: 80px 0; }
  .ev-head h2 { font-size: 28px; }
  .ev-figure { padding: 0 24px; }
  .ev-category-card { max-width: calc(100vw - 48px); }
  .ev-category-strip { flex-direction: column; gap: 16px; padding: 20px; }
  .ev-category-list { flex-wrap: wrap; justify-content: flex-start; gap: 16px; }

  /* ---- CTA ---- */
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta h2 { font-size: 28px; }
  .devices { display: none !important; }

  /* ---- Footer ---- */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ================================================================
     function.html — タブレット縦 / 大スマホ (〜860px)
     ================================================================ */

  /* Subhero */
  .subhero { padding: 120px 0 48px; }
  .subhero h1 { font-size: 30px; }
  .subhero .lede { font-size: 14px; }

  /* Section tight */
  .section-tight { padding: 52px 0 64px; }

  /* Feature categories — 1カラムに崩す */
  .fcat {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 0;
  }
  .fcat:first-of-type { padding-top: 12px; }
  .fcat-header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "icon num"
      "icon title"
      "icon lead";
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
  }
  .fcat-icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 0;
    align-self: start;
    margin-top: 2px;
  }
  .fcat-num  { grid-area: num;   margin-bottom: 0; }
  .fcat-title { grid-area: title; font-size: 18px; margin-bottom: 0; }
  .fcat-header .section-lead { grid-area: lead; margin-bottom: 0; font-size: 12px; }

  /* Feature rows */
  .feat-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }
  .feat-row .name { font-size: 13.5px; }
  .feat-row .desc { font-size: 13px; line-height: 1.9; }

  /* Note box */
  .note-box { margin-top: 16px; padding: 16px 18px; font-size: 13px; }

  /* Page CTA */
  .page-cta-wrap { margin: 80px 0 60px; }
  .page-cta { padding: 48px 28px; border-radius: 0 22px 22px 22px; }
  .page-cta h2 { font-size: 22px; }
  .page-cta-tab { font-size: 15px; padding: 8px 32px; }

  /* ================================================================
     faq.html — タブレット縦 / 大スマホ (〜860px)
     ================================================================ */

  /* Subhero */
  .subhero .catch { font-size: 16px; white-space: normal; }

  /* FAQ カテゴリ間隔・見出し */
  .faq-cat { margin: 36px 0; }
  .faq-cat h3 { font-size: 16px; padding-bottom: 12px; }

  /* FAQ アイテム — サマリー行 */
  .faq-item summary {
    padding: 18px 40px 18px 36px;
    font-size: 14px;
    gap: 12px;
  }
  .faq-item summary::before { top: 18px; }

  /* FAQ アイテム — 回答 */
  .faq-item .faq-a {
    padding: 4px 12px 20px 36px;
    font-size: 13.5px;
    line-height: 1.95;
  }
  .faq-item .faq-a::before { top: 4px; }
}


/* ----------------------------------------------------------------
   ❸  スマホ：〜640px
   ---------------------------------------------------------------- */
@media (max-width: 640px) {

  /* ---- Container ---- */
  .container { padding: 0 16px; }

  /* ---- Header ---- */
  .brand-mark { width: 36px; height: 36px; }

  /* ---- Hero ---- */
  .hero { padding: 82px 0 32px; }
  .hero-copy-top { margin-top: 28px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; margin-bottom: 16px; }
  .hero-copy h1 .line-sub { font-size: 14px; }
  .hero-copy h1 .line-main { font-size: 24px; }
  .hero-art-img { margin-top: 14px; margin-bottom: 4px; }
  .hero-image { width: 84%; max-width: 400px; }
  .hero-copy .lede { font-size: 13px; line-height: 1.9; margin: 14px 0 24px; }
  .hero-copy .lede br { display: none; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-cta .btn-lg { padding: 14px 20px; font-size: 14px; }

  /* ---- Audience ---- */
  .aud-grid { grid-template-columns: 1fr; gap: 12px; }
  .aud-card { padding: 18px 12px; }
  .aud-icon { width: 60px; height: 60px; margin-bottom: 12px; }
  .aud-title { font-size: 15px; }
  .aud-desc { font-size: 12px; }

  /* ---- Section 共通 ---- */
  .section { padding: 50px 0 70px; }
  .section-h { font-size: 22px; margin-bottom: 24px; }
  .section-lead-c { font-size: 13px; }

  /* ---- HOW ---- */
  .how { padding: 52px 0; }
  .how-head h2 { font-size: 22px; }
  .how-nav.prev { left: 6px; }
  .how-nav.next { right: 6px; }
  .how-step { padding: 26px 16px 22px; }

  /* ---- Feature ---- */
  .feature-copy h2 { font-size: 22px; }

  /* ---- Everywhere ---- */
  .everywhere { padding: 52px 0; }
  .ev-head h2 { font-size: 22px; }
  .ev-figure { padding: 0 12px; }
  .ev-figure img { border-radius: 16px; }
  .ev-category-card { max-width: calc(100vw - 32px); }
  .ev-category-strip { padding: 16px; gap: 12px; }
  .ev-category-list { gap: 12px 14px; }
  .ev-category-list svg { width: 36px; height: 36px; }
  .ev-category-list span { font-size: 11px; white-space: normal; max-width: 56px; }
  .ev-category-label { font-size: 13px; }

  /* ---- CTA ---- */
  .cta h2 { font-size: 22px; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* ---- Footer ---- */
  .foot-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
  footer { padding: 56px 0 28px; }
  .foot-brand p { max-width: 100%; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ================================================================
     function.html — スマホ (〜640px)
     ================================================================ */

  /* Subhero */
  .subhero { padding: 96px 0 40px; }
  .subhero h1 { font-size: 24px; letter-spacing: -0.01em; }
  .subhero .lede { font-size: 13px; line-height: 1.9; }
  .subhero .lede br { display: none; }
  .subhero-inner { gap: 12px; }

  /* Section tight */
  .section-tight { padding: 40px 0 52px; }

  /* Feature categories */
  .fcat { gap: 18px; padding: 28px 0; }
  .fcat:first-of-type { padding-top: 8px; }
  .fcat-icon { width: 44px; height: 44px; border-radius: 12px; }
  .fcat-title { font-size: 17px; }
  .fcat-num { font-size: 11px; }
  .fcat-header .section-lead { font-size: 11.5px; }

  /* Feature rows */
  .feat-row { padding: 14px 14px; gap: 4px; }
  .feat-row .name { font-size: 13px; }
  .feat-row .desc { font-size: 12.5px; line-height: 1.85; }

  /* Note box */
  .note-box { padding: 14px 14px; font-size: 12.5px; margin-top: 12px; }

  /* Page CTA */
  .page-cta-wrap { margin: 60px 0 48px; }
  .page-cta { padding: 36px 18px; border-radius: 0 18px 18px 18px; }
  .page-cta h2 { font-size: 20px; }
  .page-cta p { font-size: 13px; }
  .page-cta-tab { font-size: 14px; padding: 8px 22px; }
  .page-cta .cta-buttons { flex-direction: column; gap: 10px; }
  .page-cta .cta-buttons .btn { width: 100%; justify-content: center; }

  /* ================================================================
     faq.html — スマホ (〜640px)
     ================================================================ */

  /* Subhero */
  .subhero .catch { font-size: 15px; }

  /* FAQ カテゴリ間隔・見出し */
  .faq-cat { margin: 24px 0; }
  .faq-cat h3 {
    font-size: 14.5px;
    padding-bottom: 10px;
    display: block;          /* インラインではなくブロックにして幅を確保 */
  }

  /* FAQ アイテム — サマリー行：Q バッジを小さく・左パディング縮小 */
  .faq-item summary {
    padding: 16px 34px 16px 32px;
    font-size: 13.5px;
    gap: 8px;
  }
  .faq-item summary::before {
    top: 16px;
    width: 22px; height: 22px;
    font-size: 10.5px;
  }
  .faq-item summary::after {
    right: 8px;
    width: 9px; height: 9px;
  }

  /* FAQ アイテム — 回答：A バッジも小さく */
  .faq-item .faq-a {
    padding: 4px 8px 16px 32px;
    font-size: 13px;
    line-height: 1.88;
  }
  .faq-item .faq-a::before {
    top: 4px;
    width: 22px; height: 22px;
    font-size: 10.5px;
  }
}


/* ============================================================
   customize.html — 4 ブレークポイント対応
   PC           : 1280px+   → デフォルトスタイルをそのまま使用
   タブレット横  : 860〜1279px
   タブレット縦/大スマホ : 〜860px
   スマホ        : 〜640px
   ============================================================ */

/* ----------------------------------------------------------------
   customize ❶  タブレット横：860〜1279px
   ---------------------------------------------------------------- */
@media (min-width: 860px) and (max-width: 1279px) {

  /* ---- Section tight ---- */
  .section-tight { padding: 60px 0 80px; }

  /* ---- Section heading ---- */
  .section-h2 { font-size: 26px; margin-bottom: 22px; }
  .gap-l { margin-top: 48px; }

  /* ---- Use-case cards ---- */
  .uc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .uc-card { padding: 24px 22px; }
  .uc-card h3 { font-size: 16px; margin-bottom: 12px; }
  .uc-card .examples li { font-size: clamp(11px, 1vw, 13px); }
  .uc-card .arrow { font-size: clamp(11px, 1vw, 13px); padding: 10px 14px; }

  /* ---- Note box ---- */
  .note-box { padding: 16px 20px; font-size: 13px; }

  /* ---- Timeline ---- */
  .timeline-item {
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 24px 0;
  }
  .timeline-num { width: 56px; height: 56px; font-size: 20px; }
  .timeline-body h3 { font-size: 17px; }
  .timeline-body p { font-size: 13px; }

  /* ---- CTA section ---- */
  .cta-grid { grid-template-columns: 1fr 1.1fr; gap: 24px; max-width: 100%; }
  .cta h2 { font-size: 30px; }
}


/* ----------------------------------------------------------------
   customize ❷  タブレット縦 / 大スマホ：〜860px
   ---------------------------------------------------------------- */
@media (max-width: 860px) {

  /* ---- Section tight ---- */
  .section-tight { padding: 48px 0 60px; }

  /* ---- Section heading ---- */
  .section-h2 { font-size: 22px; margin-bottom: 20px; }
  .gap-l { margin-top: 40px; }

  /* ---- Use-case cards ---- */
  .uc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .uc-card { padding: 24px 22px; }
  .uc-card h3 { font-size: 17px; }
  .uc-card .examples li { font-size: 13px; }
  .uc-card .arrow { font-size: 13px; padding: 12px 16px; }

  /* ---- Note box ---- */
  .note-box { padding: 16px 18px; font-size: 13px; margin-top: 36px; }

  /* ---- Timeline ---- */
  .timeline-item {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 20px 0;
  }
  .timeline-num { width: 50px; height: 50px; font-size: 17px; }
  .timeline-num::after { height: calc(100% + 20px); }
  .timeline-body h3 { font-size: 16px; margin-top: 4px; }
  .timeline-body p { font-size: 13px; }

  /* ---- CTA section ---- */
  .cta-grid { grid-template-columns: 1fr; gap: 0; }
  .cta h2 { font-size: 26px; }
  .cta .desc { font-size: 13.5px; }
  .cta-buttons { flex-wrap: nowrap; gap: 12px; }
}


/* ----------------------------------------------------------------
   customize ❸  スマホ：〜640px
   ---------------------------------------------------------------- */
@media (max-width: 640px) {

  /* ---- Section tight ---- */
  .section-tight { padding: 36px 0 48px; }

  /* ---- Section heading ---- */
  .section-h2 { font-size: 20px; margin-bottom: 16px; }
  .gap-l { margin-top: 32px; }

  /* ---- Use-case cards ---- */
  .uc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .uc-card { padding: 20px 18px; }
  .uc-num { font-size: 10px; padding: 4px 10px; margin-bottom: 12px; }
  .uc-card h3 { font-size: 16px; margin-bottom: 10px; }
  .uc-card .examples { gap: 6px; }
  .uc-card .examples li { font-size: 13px; padding-left: 18px; }
  .uc-card .examples li::before { width: 10px; top: 9px; }
  .uc-card .arrow { font-size: 13px; padding: 10px 14px; }

  /* ---- Note box ---- */
  .note-box { padding: 14px 14px; font-size: 12.5px; margin-top: 28px; }

  /* ---- Timeline ---- */
  .timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .timeline-num { width: 42px; height: 42px; font-size: 15px; }
  .timeline-num::after { height: calc(100% + 18px); }
  .timeline-body h3 { font-size: 15px; margin-top: 2px; margin-bottom: 6px; }
  .timeline-body p { font-size: 12.5px; line-height: 1.85; }

  /* ---- CTA section ---- */
  .cta h2 { font-size: 22px; line-height: 1.55; }
  .cta .desc { font-size: 13px; margin-bottom: 24px; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .cta-buttons .btn-lg { padding: 15px 20px; font-size: 14px; }
}


/* ============================================================
   trial.html — 4 ブレークポイント対応
   ============================================================ */

/* ----------------------------------------------------------------
   trial ❶  タブレット横：860〜1279px
   ---------------------------------------------------------------- */
@media (min-width: 860px) and (max-width: 1279px) {

  /* ---- Hero ---- */
  .th-hero { padding: 110px 0 60px; }
  .th-inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 36px;
  }
  .th-copy {
    margin-left: 6%;
    margin-top: -14%;
    gap: 22px;
  }
  .th-h1 { font-size: clamp(22px, 2.2vw, 34px); }

  /* ---- Trial limit grid ---- */
  .trial-limit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .tl-card-head { padding: 14px 18px; font-size: 0.93rem; }
  .tl-card-body { padding: 16px 18px 18px; }
  .tl-card-body li { font-size: 0.88rem; }

  /* ---- Steps ---- */
  .step {
    grid-template-columns: 72px 1fr 90px;
    gap: 20px;
    padding: 20px 24px;
  }
  .step-num { font-size: 11px; }
  .step-num span { font-size: 30px; }
  .step-body h3 { font-size: 15px; }
  .step-body p { font-size: 12.5px; }
  .step-time { font-size: 10.5px; padding: 5px 10px; }
}


/* ----------------------------------------------------------------
   trial ❷  タブレット縦 / 大スマホ：〜860px
   ---------------------------------------------------------------- */
@media (max-width: 860px) {

  /* ---- Hero ---- */
  .th-hero { padding: 100px 0 50px; }
  .th-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .th-copy {
    margin-left: 0;
    margin-top: 0;
    gap: 20px;
  }
  .th-h1 { font-size: clamp(22px, 4.5vw, 32px); }
  .th-demo { width: 100%; max-width: 460px; margin: 0 auto; }

  /* ---- Trial limit grid ---- */
  .trial-limit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .tl-card-head { padding: 13px 16px; font-size: 0.91rem; }
  .tl-card-body { padding: 14px 16px 16px; }
  .tl-card-body li { font-size: 0.87rem; gap: 7px; }
  .tl-sub { font-size: 0.9rem; margin-left: 0; }

  /* ---- Steps ---- */
  .step {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    padding: 18px 20px;
  }
  .step-num {
    grid-row: 1 / 3;
    align-self: start;
  }
  .step-body { grid-column: 2; }
  .step-time {
    grid-column: 2;
    justify-self: start;
    font-size: 10.5px;
    padding: 4px 10px;
  }
  .step-num span { font-size: 28px; }
  .step-body h3 { font-size: 14px; margin-bottom: 4px; }
  .step-body p { font-size: 12.5px; }

  /* ---- section-h2 ---- */
  .section-h2 { font-size: 22px; }
  .gap-l { margin-top: 40px; }
}


/* ----------------------------------------------------------------
   trial ❸  スマホ：〜640px
   ---------------------------------------------------------------- */
@media (max-width: 640px) {

  /* ---- Hero ---- */
  .th-hero { padding: 84px 0 40px; }
  .th-copy { gap: 16px; }
  .th-h1 { font-size: clamp(20px, 5.5vw, 26px); }
  .th-eyebrow { font-size: 10px; letter-spacing: .24em; }
  .th-cta { width: 100%; text-align: center; justify-content: center; }

  /* ---- Trial limit grid ---- */
  .trial-limit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tl-card-head { padding: 12px 14px; font-size: 0.9rem; }
  .tl-card-body { padding: 14px 14px 16px; }
  .tl-card-body li { font-size: 0.85rem; }
  .tl-card-body li .li-note { font-size: 0.76rem; }
  .trial-limit-section { margin-top: 36px; }
  .tl-sub { font-size: 0.875rem; margin-bottom: 18px; }

  /* ---- Steps ---- */
  .step {
    grid-template-columns: 50px 1fr;
    gap: 10px 12px;
    padding: 16px 16px;
  }
  .step-num span { font-size: 24px; margin-top: 2px; }
  .step-num { font-size: 10px; }
  .step-body h3 { font-size: 14px; }
  .step-body p { font-size: 12px; }
  .step-time { font-size: 10px; padding: 4px 9px; }
}


/* ============================================================
   contact.html — 4 ブレークポイント対応
   ============================================================ */

/* ----------------------------------------------------------------
   contact ❶  タブレット横：860〜1279px
   ---------------------------------------------------------------- */
@media (min-width: 860px) and (max-width: 1279px) {

  /* ---- Contact grid ---- */
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
  }

  /* ---- Contact form ---- */
  .contact-form { padding: 32px 34px; }
  .contact-form fieldset { margin-bottom: 22px; }

  /* ---- Radio grid ---- */
  .radio-grid { gap: 8px; }
  .radio-grid label { padding: 10px 12px; font-size: 12.5px; }

  /* ---- Form rows ---- */
  .form-row { margin-bottom: 16px; }
  .form-row label { font-size: 12.5px; }
  .form-row input,
  .form-row select,
  .form-row textarea { font-size: 13.5px; padding: 10px 13px; }
  .form-row.cols { gap: 14px; }

  /* ---- Contact side ---- */
  .contact-side { top: 100px; }
  .contact-card { padding: 22px 24px; margin-bottom: 14px; }
  .contact-card .num { font-size: 19px; }
  .contact-policy { padding: 18px 20px; }
  .contact-policy ul { font-size: 12px; }
}


/* ----------------------------------------------------------------
   contact ❷  タブレット縦 / 大スマホ：〜860px
   ---------------------------------------------------------------- */
@media (max-width: 860px) {

  /* ---- Contact grid — 1カラム ---- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-side { position: static; }

  /* ---- Contact form ---- */
  .contact-form { padding: 28px 24px; }
  .contact-form fieldset { margin-bottom: 20px; }
  .contact-form legend { font-size: 12.5px; }

  /* ---- Radio grid ---- */
  .radio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .radio-grid label { padding: 10px 12px; font-size: 12.5px; }

  /* ---- Form rows ---- */
  .form-row { margin-bottom: 16px; }
  .form-row label { font-size: 12.5px; margin-bottom: 6px; }
  .form-row input,
  .form-row select,
  .form-row textarea { font-size: 14px; padding: 11px 13px; }
  .form-row.cols {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* ---- Submit button ---- */
  .contact-form .submit-row .btn { font-size: 15px; padding: 15px 24px; }

  /* ---- Contact side ---- */
  .contact-card { padding: 20px 22px; margin-bottom: 12px; }
  .contact-card h4 { font-size: 12.5px; }
  .contact-card .num { font-size: 20px; }
  .contact-card .meta { font-size: 11.5px; }
  .contact-policy { padding: 18px 20px; }
  .contact-policy h4 { font-size: 12.5px; }
  .contact-policy ul { font-size: 12px; }

  /* ---- Note box ---- */
  .note-box { padding: 16px 18px; font-size: 13px; }
}


/* ----------------------------------------------------------------
   contact ❸  スマホ：〜640px
   ---------------------------------------------------------------- */
@media (max-width: 640px) {

  /* ---- Contact form ---- */
  .contact-form { padding: 20px 16px; border-radius: 16px; }
  .contact-form fieldset { margin-bottom: 18px; }
  .contact-form legend { font-size: 12px; margin-bottom: 10px; }

  /* ---- Radio grid — 1カラム ---- */
  .radio-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .radio-grid label { padding: 10px 12px; font-size: 13px; }

  /* ---- Form rows ---- */
  .form-row { margin-bottom: 14px; }
  .form-row label { font-size: 12px; margin-bottom: 6px; }
  .form-row input,
  .form-row select,
  .form-row textarea { font-size: 16px; padding: 11px 12px; border-radius: 9px; }
  /* iOS zoom 防止: font-size 16px */
  .form-row textarea { min-height: 120px; }
  .form-row.cols {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  /* ---- Submit button ---- */
  .contact-form .submit-row { margin-top: 22px; }
  .contact-form .submit-row .btn {
    font-size: 15px;
    padding: 15px 20px;
    border-radius: var(--r-pill);
  }

  /* ---- Contact side ---- */
  .contact-card { padding: 18px 18px; border-radius: 14px; margin-bottom: 10px; }
  .contact-card h4 { font-size: 12px; gap: 6px; }
  .contact-card .num { font-size: 18px; }
  .contact-card .meta { font-size: 11px; }
  .contact-policy { padding: 16px 16px; border-radius: 12px; }
  .contact-policy h4 { font-size: 12px; margin-bottom: 8px; }
  .contact-policy ul { font-size: 11.5px; padding-left: 14px; }

  /* ---- Note box ---- */
  .note-box { padding: 14px 14px; font-size: 12.5px; margin-bottom: 32px; }
  .note-box .btn { font-size: 12px !important; padding: 9px 14px !important; }
}

