@charset "UTF-8";

/* =========================================================
   Design tokens
   ========================================================= */
:root {
  --blue: #003de8;
  --blue-light: #00a6e8;
  --grad: linear-gradient(45deg, #003de8, #00a6e8);
  --grad-soft: linear-gradient(45deg, rgba(0, 61, 232, .08), rgba(0, 166, 232, .08));
  --ink: #221f1f;
  --gray: #616161;
  --gray-30: rgba(97, 97, 97, .3);
  --light: #eeeeee;
  --light-80: rgba(238, 238, 238, .8);
  --white: #ffffff;

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Lato", "Noto Sans JP", sans-serif;

  --max: 1140px;
  --gutter: 24px;
  --header-h: 76px;
  --radius: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* =========================================================
   Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--white);
  letter-spacing: .02em;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: rgba(0, 61, 232, .15); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--light { background: #f7f8fa; }
.section--tint { background: linear-gradient(180deg, #f5f8ff, #ffffff); }

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--center { text-align: center; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad);
}
.section-head--center .label::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad);
}

.h2 {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .01em;
}
.h3 { font-size: clamp(19px, 2.4vw, 23px); font-weight: 700; line-height: 1.6; }

.lead {
  margin-top: 20px;
  color: var(--gray);
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 2.1;
}
.section-head--center .lead { margin-inline: auto; max-width: 46em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .04em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--grad);
  background-size: 160% 160%;
  color: var(--white);
  box-shadow: 0 10px 26px -12px rgba(0, 61, 232, .8);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(0, 61, 232, .85); }

.btn--ghost {
  border: 1.5px solid var(--gray-30);
  color: var(--ink);
  background: var(--white);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn--white { background: var(--white); color: var(--blue); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(0, 0, 0, .5); }

.btn--sm { padding: 12px 24px; font-size: 14px; }
.btn--wide { min-width: 260px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.header.is-scrolled { border-bottom-color: rgba(97, 97, 97, .14); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff;
  flex: none;
}
.logo__text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: .04em;
}
.logo__sub {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--gray);
  display: block;
  line-height: 1.4;
  font-weight: 500;
}

.gnav { display: flex; align-items: center; gap: 28px; }
.gnav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  white-space: nowrap;
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.gnav__link:hover::after,
.gnav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  position: relative;
}
.menu-btn span {
  position: absolute;
  left: 11px;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .2s linear;
}
.menu-btn span:nth-child(1) { top: 17px; }
.menu-btn span:nth-child(2) { top: 22px; }
.menu-btn span:nth-child(3) { top: 27px; }
body.is-menu-open .menu-btn span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.is-menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.is-menu-open .menu-btn span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--white);
  padding: 32px var(--gutter) 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
body.is-menu-open .drawer { opacity: 1; visibility: visible; transform: none; }
body.is-menu-open { overflow: hidden; }
.drawer__list { display: grid; gap: 4px; margin-bottom: 28px; }
.drawer__list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--light);
  font-weight: 500;
}
.drawer__list a span {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--blue);
  text-transform: uppercase;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(60px, 11vw, 120px)) 0 clamp(72px, 10vw, 120px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(0, 166, 232, .16), transparent 68%),
    radial-gradient(52% 48% at 6% 78%, rgba(0, 61, 232, .13), transparent 70%),
    #fff;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(97, 97, 97, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 97, 97, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000 30%, transparent 100%);
}

.hero__kicker {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(34px, 7vw, 68px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .005em;
}
.hero__title .line { display: block; }
.hero__text {
  margin-top: 28px;
  max-width: 34em;
  color: var(--gray);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 2.15;
}
.hero .btn-row { margin-top: 40px; }

.hero__stats {
  margin-top: clamp(56px, 8vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(97, 97, 97, .16);
  border: 1px solid rgba(97, 97, 97, .16);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__stat { background: rgba(255, 255, 255, .92); padding: 26px 22px; }
.hero__stat dt {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gray);
  font-weight: 500;
}
.hero__stat dd {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  margin-top: 8px;
}
.hero__stat dd small { font-size: .45em; font-weight: 700; margin-left: 4px; letter-spacing: .04em; }

/* =========================================================
   Mission
   ========================================================= */
.mission { position: relative; overflow: hidden; }
.mission__quote {
  font-size: clamp(24px, 4.4vw, 44px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .01em;
}
.mission__body { margin-top: 32px; display: grid; gap: 22px; color: var(--gray); line-height: 2.15; max-width: 40em; }
.mission__body strong { color: var(--ink); font-weight: 700; }

.mission__cards {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mission__card {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(97, 97, 97, .14);
}
.mission__card .n {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--blue);
}
.mission__card h3 { margin: 12px 0 10px; font-size: 18px; font-weight: 700; line-height: 1.6; }
.mission__card p { font-size: 14.5px; color: var(--gray); line-height: 2; }

/* =========================================================
   Service
   ========================================================= */
.service-list { display: grid; gap: 28px; }

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(97, 97, 97, .14);
  background: var(--white);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px rgba(34, 31, 31, .45); }

.service-card__visual {
  position: relative;
  min-height: 300px;
  background: var(--grad);
  display: grid;
  place-items: center;
  padding: 40px;
  overflow: hidden;
}
.service-card__visual::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.service-card__visual svg { position: relative; z-index: 1; width: min(190px, 60%); }

.service-card__body { padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; }
.service-card__tag {
  align-self: flex-start;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 61, 232, .08);
  color: var(--blue);
}
.service-card__num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--gray-30);
  margin-bottom: 16px;
}
.service-card h3 { margin: 18px 0 0; font-size: clamp(21px, 2.8vw, 27px); font-weight: 700; line-height: 1.55; }
.service-card__copy { margin-top: 16px; color: var(--gray); font-size: 15px; line-height: 2.1; }
.service-card__points { margin-top: 22px; display: grid; gap: 10px; }
.service-card__points li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.9;
}
.service-card__points li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: inset 0 0 0 3.5px #fff;
}
.service-card__foot { margin-top: auto; padding-top: 28px; }

/* =========================================================
   Reason
   ========================================================= */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason {
  padding: 36px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(97, 97, 97, .14);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.reason:hover { transform: translateY(-5px); border-color: rgba(0, 61, 232, .3); box-shadow: 0 24px 50px -32px rgba(0, 61, 232, .6); }
.reason__icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 22px;
}
.reason h3 { font-size: 18px; font-weight: 700; line-height: 1.6; }
.reason p { margin-top: 14px; color: var(--gray); font-size: 14.5px; line-height: 2.05; }

/* =========================================================
   Flow
   ========================================================= */
.flow { display: grid; gap: 0; counter-reset: step; }
.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(97, 97, 97, .16);
}
.flow__item:last-child { border-bottom: 1px solid rgba(97, 97, 97, .16); }
.flow__num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--blue);
  padding-top: 6px;
}
.flow__num b {
  display: block;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px;
}
.flow h3 { font-size: 18px; font-weight: 700; }
.flow p { margin-top: 10px; color: var(--gray); font-size: 14.5px; line-height: 2.05; }
.flow__meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--blue);
  background: rgba(0, 61, 232, .07);
  border-radius: 999px;
  padding: 5px 12px;
}

/* =========================================================
   Price
   ========================================================= */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(97, 97, 97, .16);
}
.plan--featured {
  border: none;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(0, 61, 232, .7);
}
.plan--featured .plan__note,
.plan--featured .plan__feat li { color: rgba(255, 255, 255, .85); }
.plan--featured .plan__feat li::before { background: #fff; box-shadow: none; }
.plan--featured .plan__badge { background: rgba(255, 255, 255, .22); color: #fff; }

.plan__badge {
  align-self: flex-start;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 61, 232, .08);
  color: var(--blue);
  margin-bottom: 18px;
}
.plan__name { font-size: 20px; font-weight: 700; }
.plan__price {
  margin-top: 14px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.plan__price small { font-family: var(--font-jp); font-size: 13px; font-weight: 500; letter-spacing: .04em; margin-left: 4px; }
.plan__note { margin-top: 10px; font-size: 13px; color: var(--gray); line-height: 1.9; }
.plan__feat { margin-top: 22px; display: grid; gap: 9px; padding-top: 22px; border-top: 1px solid rgba(97, 97, 97, .16); }
.plan--featured .plan__feat { border-top-color: rgba(255, 255, 255, .3); }
.plan__feat li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.95; color: var(--gray); }
.plan__feat li::before {
  content: "";
  position: absolute; left: 0; top: .7em;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--grad);
  box-shadow: inset 0 0 0 3px #fff;
}
.plan__foot { margin-top: auto; padding-top: 26px; }
.plan__foot .btn { width: 100%; }

.price-note { margin-top: 24px; font-size: 13px; color: var(--gray); line-height: 2; }

/* =========================================================
   Works
   ========================================================= */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(97, 97, 97, .14);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.work:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -32px rgba(34, 31, 31, .5); }
.work__thumb {
  aspect-ratio: 16 / 10;
  background: var(--grad);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-en);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 13px;
}
.work__body { padding: 24px 22px 28px; }
.work__cat { font-size: 11.5px; letter-spacing: .12em; color: var(--blue); font-weight: 700; }
.work h3 { margin-top: 10px; font-size: 16.5px; font-weight: 700; line-height: 1.65; }
.work p { margin-top: 12px; font-size: 13.5px; color: var(--gray); line-height: 1.95; }
.work__result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(97, 97, 97, .28);
  font-size: 13px;
  font-weight: 700;
}
.work__result span { color: var(--blue); font-family: var(--font-en); font-size: 17px; margin-right: 4px; }

/* =========================================================
   Voice
   ========================================================= */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.voice {
  padding: 32px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(97, 97, 97, .14);
}
.voice__mark { font-family: var(--font-en); font-size: 44px; font-weight: 900; line-height: 1; color: rgba(0, 61, 232, .16); }
.voice p { margin-top: 8px; font-size: 15px; line-height: 2.1; }
.voice footer { margin-top: 20px; font-size: 13px; color: var(--gray); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq details {
  border: 1px solid rgba(97, 97, 97, .16);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq details[open] { border-color: rgba(0, 61, 232, .35); }
.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 56px 22px 24px;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.75;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q";
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--blue);
  flex: none;
  font-size: 16px;
  line-height: 1.7;
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 30px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq__a {
  display: flex;
  gap: 14px;
  padding: 0 24px 24px 24px;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 2.1;
}
.faq__a::before {
  content: "A";
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--gray-30);
  flex: none;
  font-size: 16px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--grad);
  color: #fff;
  text-align: center;
  padding: clamp(64px, 9vw, 104px) 0;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}
.cta::before { width: 420px; height: 420px; top: -180px; left: -120px; }
.cta::after { width: 320px; height: 320px; bottom: -160px; right: -80px; }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 700; line-height: 1.55; }
.cta p { margin-top: 20px; font-size: 15px; line-height: 2.1; color: rgba(255, 255, 255, .9); }
.cta .btn-row { margin-top: 36px; }
.cta .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding: 64px 0 32px; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .logo__text { color: #fff; }
.footer .logo__sub { color: rgba(255, 255, 255, .55); }
.footer__desc { margin-top: 20px; font-size: 13.5px; line-height: 2.05; max-width: 30em; }
.footer__col h4 {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col li + li { margin-top: 11px; }
.footer__col a { font-size: 13.5px; transition: color .25s var(--ease); }
.footer__bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* =========================================================
   Page header (sub pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(56px, 7vw, 88px)) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(55% 60% at 88% 0%, rgba(0, 166, 232, .16), transparent 70%),
    radial-gradient(45% 50% at 0% 100%, rgba(0, 61, 232, .1), transparent 72%),
    #fff;
  border-bottom: 1px solid rgba(97, 97, 97, .12);
}
.page-hero h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 700; line-height: 1.4; }
.page-hero p { margin-top: 20px; color: var(--gray); max-width: 46em; line-height: 2.1; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 26px;
}
.breadcrumb li + li::before { content: "/"; margin-right: 10px; color: var(--gray-30); }
.breadcrumb a:hover { color: var(--blue); }

/* =========================================================
   Rich text (privacy etc.)
   ========================================================= */
.rich { max-width: 820px; }
.rich h2 { font-size: 20px; font-weight: 700; margin-top: 48px; padding-left: 14px; border-left: 4px solid var(--blue); line-height: 1.6; }
.rich h2:first-child { margin-top: 0; }
.rich h3 { font-size: 16px; font-weight: 700; margin-top: 28px; }
.rich p { margin-top: 16px; color: var(--gray); line-height: 2.15; font-size: 15px; }
.rich ul, .rich ol { margin-top: 16px; display: grid; gap: 8px; }
.rich ul li { position: relative; padding-left: 20px; color: var(--gray); font-size: 15px; line-height: 2.05; }
.rich ul li::before { content: ""; position: absolute; left: 2px; top: .85em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.rich ol { counter-reset: ri; }
.rich ol li { counter-increment: ri; position: relative; padding-left: 30px; color: var(--gray); font-size: 15px; line-height: 2.05; }
.rich ol li::before { content: counter(ri) "."; position: absolute; left: 2px; font-family: var(--font-en); font-weight: 900; color: var(--blue); }

/* =========================================================
   Table (company profile)
   ========================================================= */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
  text-align: left;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(97, 97, 97, .16);
  font-size: 15px;
  line-height: 1.95;
  vertical-align: top;
}
.table th { width: 200px; font-weight: 700; white-space: nowrap; }
.table td { color: var(--gray); }
.table tr:first-child th, .table tr:first-child td { border-top: 1px solid rgba(97, 97, 97, .16); }

/* =========================================================
   Form
   ========================================================= */
.form { display: grid; gap: 26px; max-width: 720px; }
.field { display: grid; gap: 10px; }
.field > label { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.req {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--grad);
  color: #fff;
  line-height: 1.4;
}
.req--any { background: var(--light); color: var(--gray); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(97, 97, 97, .28);
  border-radius: 10px;
  background: var(--white);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 180px; resize: vertical; line-height: 1.9; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 61, 232, .12);
}
.field__hint { font-size: 12.5px; color: var(--gray); line-height: 1.8; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.9; }
.check input { margin-top: .45em; width: 17px; height: 17px; accent-color: var(--blue); flex: none; }
.check a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* フォームのエラー表示 */
.field__error { margin: 0; color: #d92c2c; font-size: 12.5px; line-height: 1.8; }
.form-alert {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid rgba(217, 44, 44, .35);
  background: rgba(217, 44, 44, .05);
  color: #a81f1f;
  font-size: 14px;
  line-height: 1.9;
}
.form-alert strong { display: block; margin-bottom: 8px; font-size: 15px; }
.form-alert ul { display: grid; gap: 4px; }
.form-alert li { position: relative; padding-left: 16px; }
.form-alert li::before { content: "・"; position: absolute; left: 0; }

/* ハニーポット：人間の目にもスクリーンリーダーにも触れさせない */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* 送信完了ページ */
.thanks-mark {
  width: 74px; height: 74px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px -18px rgba(0, 61, 232, .8);
}

.contact-aside { display: grid; gap: 18px; align-content: start; }
.contact-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(97, 97, 97, .16);
  background: #fbfcfe;
}
.contact-card h3 { font-size: 16px; font-weight: 700; }
.contact-card p { margin-top: 12px; font-size: 13.5px; color: var(--gray); line-height: 2; }
.contact-card .big {
  display: block;
  margin-top: 10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  color: var(--blue);
  letter-spacing: .02em;
}

.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }

/* =========================================================
   Reveal animation
   ========================================================= */
/* JSが有効なときだけ初期状態を隠す。JSが動かない環境では常に表示される。 */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .09s; }
.js .reveal[data-delay="2"] { transition-delay: .18s; }
.js .reveal[data-delay="3"] { transition-delay: .27s; }

/* 改行制御 */
.sp-only { display: none; }
@media (max-width: 700px) { .sp-only { display: inline; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1040px) {
  .service-card { grid-template-columns: 1fr; }
  .service-card__visual { min-height: 220px; }
  .reason-grid, .price-grid, .works-grid, .mission__cards { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .gnav { display: none; }
  .menu-btn { display: block; }
  .header__cta { display: none; }
}

@media (max-width: 700px) {
  :root { --header-h: 64px; --gutter: 20px; }
  body { font-size: 15px; }
  .hero__stats { grid-template-columns: 1fr; }
  .reason-grid, .price-grid, .works-grid, .voice-grid, .mission__cards { grid-template-columns: 1fr; }
  .flow__item { grid-template-columns: 1fr; gap: 10px; }
  .flow__num { display: flex; align-items: baseline; gap: 10px; padding-top: 0; }
  .flow__num b { margin-top: 0; font-size: 26px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .table th, .table td { display: block; width: auto; padding: 0; border: none; }
  .table th { padding-top: 20px; }
  .table td { padding: 6px 0 20px; border-bottom: 1px solid rgba(97, 97, 97, .16); }
  .table tr:first-child th { border-top: none; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
}

/* =========================================================
   サービスタグの帯
   ========================================================= */
.tag-strip { margin-top: clamp(40px, 6vw, 64px); display: flex; flex-wrap: wrap; gap: 10px; }
.tag-strip span {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  background: rgba(0, 61, 232, .06);
  color: var(--blue);
  border: 1px solid rgba(0, 61, 232, .14);
  white-space: nowrap;
}
.tag-strip span.is-accent { background: var(--grad); color: #fff; border-color: transparent; font-weight: 700; }

/* =========================================================
   ワンストップ（丸投げ）セクション
   ========================================================= */
.onestop { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.onestop__check { display: grid; gap: 14px; margin-top: 30px; }
.onestop__check li { position: relative; padding-left: 34px; font-size: 15.5px; line-height: 1.9; font-weight: 500; }
.onestop__check li::before {
  content: "";
  position: absolute;
  left: 0; top: .28em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
}
.onestop__check li::after {
  content: "";
  position: absolute;
  left: 7px; top: .68em;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.onestop__visual {
  position: relative;
  border-radius: 18px;
  background: var(--grad);
  padding: clamp(30px, 4vw, 48px);
  color: #fff;
  overflow: hidden;
}
.onestop__visual::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.onestop__visual h3 { position: relative; z-index: 1; font-size: clamp(19px, 2.4vw, 23px); font-weight: 700; line-height: 1.6; }
.onestop__visual ul { position: relative; z-index: 1; margin-top: 22px; display: grid; gap: 10px; }
.onestop__visual li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  padding: 11px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .16);
}
.onestop__visual li b { font-family: var(--font-en); font-size: 11px; letter-spacing: .1em; opacity: .85; }

/* =========================================================
   価格ハイライト
   ========================================================= */
.price-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(97, 97, 97, .16);
  border: 1px solid rgba(97, 97, 97, .16);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-highlight div { background: #fff; padding: 30px 22px; text-align: center; }
.price-highlight b {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-highlight b small { font-family: var(--font-jp); font-size: .45em; letter-spacing: .02em; }
.price-highlight p { margin-top: 12px; font-size: 13.5px; color: var(--gray); line-height: 1.8; }

/* =========================================================
   メニュー目次
   ========================================================= */
.menu-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.menu-index a {
  display: block;
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid rgba(97, 97, 97, .16);
  background: #fff;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.menu-index a:hover { border-color: rgba(0, 61, 232, .35); transform: translateY(-3px); box-shadow: 0 18px 34px -26px rgba(0, 61, 232, .7); }
.menu-index .badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  margin-bottom: 10px;
}
.menu-index strong { display: block; font-size: 16px; font-weight: 700; line-height: 1.5; }
.menu-index small { display: block; margin-top: 7px; font-size: 12.5px; color: var(--gray); line-height: 1.7; }

/* =========================================================
   メニューカテゴリ（アコーディオン）
   ========================================================= */
.menu-cat {
  border: 1px solid rgba(97, 97, 97, .16);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.menu-cat + .menu-cat { margin-top: 14px; }
.menu-cat[open] { border-color: rgba(0, 61, 232, .3); }
.menu-cat > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 56px 24px 26px;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.menu-cat > summary::-webkit-details-marker { display: none; }
.menu-cat > summary::after {
  content: "";
  position: absolute;
  right: 26px; top: 32px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.menu-cat[open] > summary::after { transform: rotate(-135deg); }
.menu-cat__no { font-family: var(--font-en); font-weight: 900; font-size: 13px; letter-spacing: .1em; color: var(--blue); flex: none; }
.menu-cat__title { font-size: 18px; font-weight: 700; line-height: 1.5; }
.menu-cat__title em { font-style: normal; display: block; font-size: 12.5px; font-weight: 500; color: var(--gray); margin-top: 4px; }
.menu-cat__pick {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  white-space: nowrap;
}
.menu-cat__body { padding: 0 26px 26px; }
.menu-cat__note {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.95;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f6f8fc;
  margin-bottom: 20px;
}
.menu-cat__sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--blue);
  margin: 26px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}

/* メニュー項目 */
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.menu-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(97, 97, 97, .18);
  border-radius: 11px;
  cursor: pointer;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.menu-item:hover { border-color: rgba(0, 61, 232, .4); }
.menu-item.is-picked { border-color: var(--blue); background: rgba(0, 61, 232, .04); }
.menu-item input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--blue); flex: none; cursor: pointer; }
/* label 内は phrasing content のみ使えるため span で組み、CSSでブロック化する */
.menu-item__main { flex: 1; min-width: 0; display: block; }
.menu-item__desc, .menu-item__price { display: block; }
.menu-item__name { font-size: 15px; font-weight: 700; line-height: 1.6; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.menu-item__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 61, 232, .1);
  color: var(--blue);
}
.menu-item__tag--hot { background: var(--grad); color: #fff; }
.menu-item__desc { margin-top: 7px; font-size: 13px; color: var(--gray); line-height: 1.85; }
.menu-item__price {
  margin-top: 10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.menu-item__price small { font-family: var(--font-jp); font-size: 11.5px; font-weight: 500; color: var(--gray); margin-left: 6px; letter-spacing: .02em; }

/* =========================================================
   見積もりバー
   ========================================================= */
.estimate-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 130%);
  z-index: 95;
  width: min(720px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px 14px 22px;
  border-radius: 16px;
  background: rgba(34, 31, 31, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 22px 50px -20px rgba(0, 0, 0, .6);
  transition: transform .45s var(--ease);
}
.estimate-bar.is-shown { transform: translate(-50%, 0); }
.estimate-bar__info { flex: 1; min-width: 0; }
.estimate-bar__count { font-size: 11.5px; letter-spacing: .08em; color: rgba(255, 255, 255, .65); }
.estimate-bar__total { font-family: var(--font-en); font-weight: 900; font-size: 25px; line-height: 1.2; margin-top: 2px; }
.estimate-bar__total small { font-family: var(--font-jp); font-size: 12px; font-weight: 500; margin-left: 5px; color: rgba(255, 255, 255, .7); }
.estimate-bar__clear { font-size: 12px; color: rgba(255, 255, 255, .6); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.estimate-bar__clear:hover { color: #fff; }
.estimate-bar .btn { flex: none; padding: 13px 22px; font-size: 14px; }

/* =========================================================
   ステップ（横スクロール）
   ========================================================= */
.steps-hint { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.steps-wrap { overflow-x: auto; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
.steps { display: flex; gap: 12px; min-width: max-content; }
.step {
  position: relative;
  width: 168px;
  flex: none;
  padding: 22px 18px;
  border-radius: 12px;
  border: 1px solid rgba(97, 97, 97, .18);
  background: #fff;
}
.step + .step::before {
  content: "";
  position: absolute;
  left: -10px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--gray-30);
  border-top: 2px solid var(--gray-30);
  transform: translateY(-50%) rotate(45deg);
}
.step__no {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { margin-top: 10px; font-size: 14.5px; font-weight: 700; line-height: 1.55; }
.step p { margin-top: 8px; font-size: 12.5px; color: var(--gray); line-height: 1.8; }

/* =========================================================
   比較表
   ========================================================= */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { padding: 16px 18px; border: 1px solid rgba(97, 97, 97, .18); vertical-align: top; line-height: 1.85; }
.compare thead th { background: #f6f8fc; font-weight: 700; text-align: left; }
.compare thead th:nth-child(2) { background: rgba(0, 61, 232, .07); color: var(--blue); }
.compare tbody th { text-align: left; font-weight: 700; width: 180px; background: #fbfcfe; }
.compare td { color: var(--gray); }
.compare td b { color: var(--ink); display: block; }
.compare td small { display: block; font-size: 12.5px; margin-top: 3px; }

/* =========================================================
   ご注文前に
   ========================================================= */
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.note-card { padding: 24px 22px; border-radius: 12px; background: #fff; border: 1px solid rgba(97, 97, 97, .16); }
.note-card h3 { font-size: 15px; font-weight: 700; line-height: 1.6; }
.note-card p { margin-top: 10px; font-size: 13.5px; color: var(--gray); line-height: 1.95; }

/* =========================================================
   Responsive（追加分）
   ========================================================= */
@media (max-width: 1040px) {
  .price-highlight { grid-template-columns: repeat(2, 1fr); }
  .menu-index { grid-template-columns: repeat(2, 1fr); }
  .onestop { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .menu-items { grid-template-columns: 1fr; }
  .menu-index { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .menu-cat > summary { padding: 20px 48px 20px 18px; flex-wrap: wrap; gap: 8px 12px; }
  .menu-cat > summary::after { right: 20px; top: 28px; }
  .menu-cat__pick { margin-left: 0; }
  .menu-cat__body { padding: 0 18px 22px; }
  .estimate-bar { flex-wrap: wrap; gap: 12px; bottom: 12px; padding: 14px 16px; }
  .estimate-bar .btn { width: 100%; }
  .compare tbody th { width: 130px; }
}
