:root {
  --blue: #138ff2;
  --blue-bright: #1e9dff;
  --blue-deep: #096fd8;
  --blue-ink: #0a3b6b;
  --navy-dark: #062a4e;
  --ink: #17191d;
  --ink-soft: #626b76;
  --paper: #f5f7f9;
  --white: #ffffff;
  --accent: #ff6b20;
  --accent-deep: #e6530c;
  --line: #dfe5eb;
  --success: #2e8f56;
  --danger: #bd352d;
  --radius-s: 8px;
  --radius-m: 18px;
  --radius-l: 30px;
  --shadow-s: 0 10px 28px rgba(10, 59, 107, 0.08);
  --shadow: 0 18px 45px rgba(10, 59, 107, 0.14);
  --maxw: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  line-break: strict;
  line-height: 1.4;
  text-wrap: balance;
}

p,
li,
dd,
dt,
address,
summary {
  line-break: strict;
  text-wrap: pretty;
}

@supports (word-break: auto-phrase) {
  h1,
  h2,
  h3,
  h4,
  p,
  li,
  dd,
  dt,
  address,
  summary {
    word-break: auto-phrase;
  }
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 48px), var(--maxw));
  margin-inline: auto;
}

section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 2px;
  content: '';
  background: var(--accent);
}

.section-title {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -.035em;
}

.section-lead {
  max-width: 700px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.1;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 28px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.btn span {
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

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

.btn:hover span {
  transform: translateX(4px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(30, 157, 255, .45);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  box-shadow: 0 14px 30px rgba(19, 143, 242, .2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f84df, #075db9);
  box-shadow: 0 18px 36px rgba(19, 143, 242, .28);
}

.btn-outline {
  color: var(--blue-deep);
  border: 1px solid var(--blue-deep);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(223, 229, 235, .9);
  backdrop-filter: blur(14px);
}

.site-header .wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
}

.site-header img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 29px 0 25px;
  color: #3d454f;
  font-size: 16px;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: '';
  background: var(--blue);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  flex-direction: column;
  margin-left: 34px;
  padding-left: 25px;
  color: var(--blue-ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
  border-left: 1px solid var(--line);
}

.header-phone span {
  order: -1;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  content: '';
  background: var(--blue-ink);
  transition: .2s ease;
}

.nav-toggle span {
  position: relative;
  margin: auto;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  padding: 42px 0 0;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(30, 157, 255, .09), transparent 27%),
    var(--white);
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  gap: 62px;
  align-items: center;
}

.hero-copy {
  padding: 60px 0 122px;
  animation: rise-in .7s ease both;
}

.hero-title {
  color: var(--ink);
  letter-spacing: -.055em;
  line-height: 1.18;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title__sub {
  font-size: clamp(43px, 3.85vw, 56px);
}

.hero-title__main {
  color: var(--blue-ink);
  font-size: clamp(55px, 5vw, 72px);
}

.hero p.lead {
  max-width: 530px;
  margin-top: 24px;
  color: #3c424b;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 9px 0 6px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.hero-text-link span {
  transition: transform .2s ease;
}

.hero-text-link:hover span {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 600px;
  overflow: hidden;
  border-radius: 90px 0 0 90px;
  box-shadow: var(--shadow);
  animation: rise-in .7s .1s ease both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transition: transform .6s ease;
}

.hero-visual:hover img {
  transform: scale(1.018);
}

.hero-visual figcaption,
.feature-photo figcaption,
.company-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, .92);
  font-size: 11px;
  letter-spacing: .05em;
  background: rgba(6, 42, 78, .64);
  border-radius: 4px;
}

.quick-plan-wrap {
  position: relative;
  z-index: 3;
  margin-top: -68px;
  padding: 30px 32px 34px;
  background: linear-gradient(135deg, #edf7ff 0%, #f7fbff 100%);
  border-top: 5px solid var(--blue-deep);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(10, 59, 107, .14);
  animation: rise-in .7s .2s ease both;
}

.quick-plan-heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 0 0 22px 2px;
}

.quick-plan-heading h2 {
  color: var(--blue-ink);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.quick-plan-heading p {
  color: var(--ink-soft);
  font-size: 16px;
}

.quick-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quick-plan {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px 26px 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-s);
  transition: transform .22s ease, box-shadow .22s ease;
}

.quick-plan:hover {
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-plan.is-featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  border: 2px solid var(--blue-deep);
  box-shadow: 0 18px 46px rgba(9, 111, 216, .2);
}

.quick-plan-label {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.quick-plan.is-featured .quick-plan-label {
  color: #dff1ff;
}

.quick-plan > strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 8px;
  margin-top: 7px;
  color: var(--blue-ink);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
}

.quick-plan.is-featured > strong {
  color: var(--white);
}

.quick-price {
  margin-top: 10px;
  color: var(--blue-ink);
  font-size: clamp(33px, 3.2vw, 45px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.quick-plan.is-featured .quick-price {
  color: var(--white);
}

.quick-price small {
  margin-left: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.quick-plan.is-featured .quick-price small {
  color: #dff1ff;
}

.quick-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 17px;
  padding-top: 16px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 900;
  border-top: 1px solid var(--line);
}

.quick-slot-link {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.quick-plan.is-featured .quick-slot {
  color: var(--white);
  border-top-color: rgba(255, 255, 255, .22);
}

.featured-ribbon {
  position: absolute;
  top: -17px;
  right: 22px;
  z-index: 3;
  padding: 7px 17px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 107, 32, .25);
}

.slot-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.slot-badge,
.slot-decided {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  border-radius: 999px;
  white-space: nowrap;
}

.slot-badge {
  color: var(--accent-deep);
  background: #fff1e8;
}

.slot-decided {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 5px 14px rgba(255, 107, 32, .24);
}

.quick-plan.is-featured .slot-badge {
  color: var(--white);
  background: rgba(255, 255, 255, .18);
}

.quick-plan.is-featured .slot-decided {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 5px 16px rgba(0, 0, 0, .18);
}

.slot-badge.is-full {
  color: var(--white);
  background: #65707b;
}

/* Stats */
.stat-band {
  margin-top: 72px;
  padding: 34px 0;
  color: var(--white);
  background: var(--navy-dark);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 38px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.stat-num {
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.stat-num span {
  margin-left: 4px;
  color: #a9d6ff;
  font-size: .55em;
}

.stat-label {
  margin-top: 4px;
  color: #b9cfe3;
  font-size: 16px;
  line-height: 1.7;
}

/* Features */
#features {
  padding-top: 112px;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: 68px;
  align-items: center;
  margin-top: 56px;
}

.feature-photo {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  justify-self: start;
  overflow: hidden;
  border-radius: 0 var(--radius-l) 0 var(--radius-l);
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 26px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.feature-card:first-child {
  padding-top: 0;
}

.feature-card:last-child {
  border-bottom: 0;
}

.feature-num {
  color: var(--blue-bright);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.feature-card h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 24px;
  font-weight: 900;
}

.feature-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.05;
}

/* Plans */
.plans-band {
  background: var(--paper);
  border: 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  align-items: stretch;
}

.plans-intro {
  max-width: 840px;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 31px 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-s);
  transition: transform .22s ease, box-shadow .22s ease;
}

.plan-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plan-card.is-featured {
  background: var(--white);
  border: 2px solid var(--blue-deep);
  box-shadow: 0 18px 46px rgba(9, 111, 216, .17);
  transform: translateY(-12px);
}

.plan-card.is-featured:hover {
  transform: translateY(-16px);
}

.plan-tag {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.plan-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 8px;
  margin-top: 10px;
  color: var(--blue-ink);
  font-size: 28px;
  line-height: 1.4;
}

.plan-price {
  margin-top: 14px;
  color: var(--blue-ink);
  font-size: clamp(33px, 3.1vw, 44px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.25;
}

.plan-card.is-featured .plan-price {
  color: var(--blue-deep);
}

.plan-price span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-market {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
}

.plan-market s {
  margin-left: 4px;
  color: #737b84;
  font-size: 16px;
  text-decoration-thickness: 1px;
}

.plan-market + .plan-price {
  margin-top: 5px;
}

.plan-saving {
  width: fit-content;
  margin-top: 7px;
  padding: 5px 9px;
  color: #a6440e;
  font-size: 16px;
  font-weight: 900;
  background: #fff1e8;
  border-radius: 4px;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  flex: 1;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  color: #414851;
  font-size: 16px;
  line-height: 1.9;
}

.plan-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  content: '✓';
  background: var(--blue-deep);
  border-radius: 50%;
  place-items: center;
}

.plan-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.plan-slot .slot-label {
  color: var(--ink-soft);
  font-size: 16px;
}

.plan-card .btn {
  margin-top: 19px;
}

.market-note {
  max-width: 940px;
  margin: 29px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.plan-details {
  background: var(--white);
}

.plan-detail {
  position: relative;
  margin-top: 44px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-s);
  scroll-margin-top: 96px;
}

.plan-detail.is-featured {
  border: 2px solid var(--blue-deep);
  box-shadow: 0 20px 54px rgba(9, 111, 216, .14);
}

.plan-detail-recommend {
  position: absolute;
  top: 0;
  right: 28px;
  z-index: 1;
  padding: 8px 18px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  background: var(--accent);
  border-radius: 0 0 8px 8px;
}

.plan-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: end;
  padding: 38px 42px 34px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef7ff 100%);
  border-bottom: 1px solid #dbeaf7;
}

.plan-detail-index {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.plan-detail-head h3 {
  margin-top: 7px;
  color: var(--blue-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.plan-detail-copy {
  max-width: 670px;
  margin-top: 12px;
  color: #4e5d6b;
  font-size: 16px;
  line-height: 2.05;
}

.plan-detail-price {
  min-width: 270px;
  text-align: right;
}

.plan-detail-price > span {
  display: block;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
}

.plan-detail-price s {
  margin-left: 4px;
  font-size: 16px;
}

.plan-detail-price strong {
  display: block;
  margin-top: 5px;
  color: var(--blue-deep);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.plan-detail-price small {
  margin-left: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.plan-detail-content {
  padding: 38px 42px 42px;
}

.plan-detail-content h4,
.plan-fit h4 {
  color: var(--blue-ink);
  font-size: 22px;
  font-weight: 900;
}

.detail-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 20px;
}

.detail-check-list li {
  position: relative;
  padding-left: 29px;
  color: #3f4b56;
  font-size: 16px;
  line-height: 1.95;
}

.detail-check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  content: '✓';
  background: var(--blue-deep);
  border-radius: 50%;
  place-items: center;
}

.plan-fit {
  margin-top: 30px;
  padding: 22px 24px;
  background: var(--paper);
  border-left: 3px solid var(--blue-bright);
  border-radius: 0 8px 8px 0;
}

.plan-fit p {
  margin-top: 8px;
  color: #4e5963;
  font-size: 16px;
  line-height: 2;
}

.plan-facts {
  padding: 38px 30px 32px;
  background: #f8fafc;
  border-left: 1px solid var(--line);
}

.plan-facts dl {
  display: grid;
}

.plan-facts dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #dde5ec;
}

.plan-facts dt {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
}

.plan-facts dd {
  color: #263746;
  font-size: 16px;
  font-weight: 800;
}

.plan-exclusion {
  margin-top: 20px;
  color: #5e6872;
  font-size: 16px;
  line-height: 1.75;
}

.plan-exclusion strong {
  color: #343f49;
}

.plan-detail-slot {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
}

.plan-facts .btn {
  margin-top: 14px;
}

.addon-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 56px;
}

.addon-card {
  padding: 30px;
  color: #d8e5f0;
  background: var(--navy-dark);
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
}

.addon-card h4 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 22px;
}

.addon-card p {
  color: #b9cfe3;
  font-size: 16px;
  line-height: 2;
}

.addon-card strong {
  color: #ffd4bd;
}

.plan-common-note {
  margin-top: 36px;
  padding: 30px 34px;
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

.plan-common-note h3 {
  color: var(--blue-ink);
  font-size: 24px;
}

.plan-common-note ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.plan-common-note li {
  position: relative;
  padding-left: 18px;
  color: #4f5a64;
  font-size: 16px;
  line-height: 2;
}

.plan-common-note li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-deep);
  font-weight: 900;
  content: '・';
}

/* Showcase */
.showcase {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  border-bottom: 0;
}

.showcase-intro {
  padding: 94px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(30, 157, 255, .18), transparent 30%),
    var(--navy-dark);
}

.showcase-intro .eyebrow {
  color: #a9d6ff;
}

.showcase-intro .section-title {
  color: var(--white);
}

.showcase-intro .section-lead {
  max-width: 820px;
  color: #c4d6e6;
}

.group-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.group-capabilities span {
  padding: 9px 15px;
  color: #dcebfa;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
}

.showcase-last {
  border-bottom: 0;
}

.service-entry {
  background: #fbfaf7;
}

.service-ec {
  background: #eef3f8;
}

.service-local {
  background: #f8f5f0;
}

.showcase:not(.showcase-intro)::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--maxw));
  height: 1px;
  content: '';
  background: rgba(10, 59, 107, .11);
  transform: translateX(-50%);
}

.showcase-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
}

.showcase-block .sc-visual {
  order: 1;
}

.showcase-block .sc-content {
  order: 2;
}

.showcase-block.reverse .sc-visual {
  order: 2;
}

.showcase-block.reverse .sc-content {
  order: 1;
}

.sc-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe5eb;
  border: 0;
  border-radius: 4px 28px 4px 28px;
  box-shadow: 0 24px 55px rgba(6, 42, 78, .16);
}

.sc-visual img,
.sc-visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.sc-visual::after {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 25, 43, .5) 100%);
}

.showcase-block:hover .sc-visual img {
  transform: scale(1.018);
}

.sc-index {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .28);
}

.sc-visual-label {
  position: absolute;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.sc-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  color: #805a1f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  background: #f2e9d8;
  border-radius: 999px;
}

.service-ec .sc-badge {
  color: var(--blue-deep);
  background: #dceaf7;
}

.service-local .sc-badge {
  color: #934835;
  background: #f1dfd8;
}

.sc-title {
  color: var(--blue-ink);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.025em;
}

.sc-hook {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.1;
}

.sc-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.sc-points li {
  position: relative;
  padding-left: 26px;
  color: #333a43;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.sc-points li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  color: var(--white);
  font-size: 16px;
  content: '✓';
  background: var(--blue-deep);
  border-radius: 50%;
  place-items: center;
}

.service-entry .sc-points li::before {
  background: #a9782d;
}

.service-local .sc-points li::before {
  background: #a84f38;
}

.sc-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 27px;
  flex-wrap: wrap;
}

.sc-url {
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 700;
}

.showcase:not(.showcase-intro) .btn-primary {
  background: var(--blue-ink);
  box-shadow: 0 12px 26px rgba(6, 42, 78, .17);
}

.showcase:not(.showcase-intro) .btn-primary:hover {
  background: #052f57;
  box-shadow: 0 16px 32px rgba(6, 42, 78, .23);
}

.service-entry .btn-primary {
  background: #8f682b;
}

.service-entry .btn-primary:hover {
  background: #74521f;
}

.service-local .btn-primary {
  background: #914430;
}

.service-local .btn-primary:hover {
  background: #743526;
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 74px 0 84px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 42, 78, .97) 0%, rgba(10, 59, 107, .88) 52%, rgba(10, 59, 107, .38) 100%),
    url('../img/photos/company-hero.webp') center 50% / cover;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #a9d6ff;
}

.page-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -.04em;
}

.page-hero p {
  max-width: 650px;
  margin-top: 18px;
  color: #c7daeb;
  font-size: 16px;
  line-height: 2;
}

/* 制作実績詳細：長い社名でも読みやすい専用見出し */
.page-hero--work-detail h1 {
  max-width: 880px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.4;
  letter-spacing: -.025em;
}

.breadcrumb {
  margin-bottom: 20px;
  color: #a9c5dc !important;
  font-size: 16px !important;
}

.breadcrumb a {
  text-decoration: none;
}

.price-hero {
  padding: 54px 0 38px;
  text-align: center;
  background: var(--white);
  border: 0;
}

.price-hero .badge-line {
  display: inline-flex;
  padding: 7px 16px;
  color: var(--accent-deep);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  background: #fff1e8;
  border-radius: 999px;
}

.price-hero .big-price {
  margin-top: 16px;
  color: var(--blue-ink);
  font-size: clamp(54px, 8vw, 84px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.price-hero .big-price span {
  margin-left: 5px;
  color: var(--blue-deep);
  font-size: .32em;
}

.price-hero .price-sub {
  max-width: 620px;
  margin: 15px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

/* Company */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 68px;
  margin-top: 44px;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--blue-ink);
  font-size: 16px;
}

.about-table th,
.about-table td {
  padding: 17px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.about-table th {
  width: 160px;
  color: var(--blue-ink);
  font-weight: 900;
  background: var(--paper);
}

.about-table td {
  color: #3c434c;
}

.about-note {
  margin-top: 14px;
  padding: 12px 14px;
  color: #8a4a25;
  font-size: 16px;
  background: #fff1e8;
  border: 1px solid #ffd6be;
  border-radius: var(--radius-s);
}

.about-side {
  align-self: start;
  padding: 32px;
  color: #d8e5f0;
  background: var(--navy-dark);
  border: 0;
  border-radius: var(--radius-m);
}

.about-side h4 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 17px;
}

.about-side ul li {
  padding: 10px 0;
  color: #c7daeb;
  font-size: 16px;
  line-height: 1.9;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mission-section {
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(54px, 7vw, 92px);
  align-items: center;
}

.mission-content {
  max-width: 570px;
}

.mission-lead {
  margin-top: 18px;
}

.mission-photo {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px 28px 4px 28px;
  box-shadow: 0 22px 50px rgba(6, 42, 78, .15);
}

.mission-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mission-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, .92);
  font-size: 11px;
  letter-spacing: .05em;
  background: rgba(6, 42, 78, .68);
  border-radius: 4px;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  position: relative;
  min-width: 0;
  padding: 31px 29px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-deep);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-s);
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--blue-deep);
  font-size: 17px;
  font-weight: 900;
  content: '→';
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(10, 59, 107, .1);
  place-items: center;
  transform: translateY(-50%);
}

.process-num {
  color: var(--blue-bright);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .12em;
}

.process-card h3 {
  margin-top: 14px;
  color: var(--blue-ink);
  font-size: 24px;
}

.process-card p {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.05;
}

.about-section {
  padding-top: 100px;
}

/* Contact form */
.form-band {
  padding: 92px 0;
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
}

.contact-visual {
  min-height: 100%;
  color: var(--white);
  background: var(--navy-dark);
}

.contact-visual > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-visual-copy {
  padding: 32px;
}

.contact-visual-copy .eyebrow {
  color: #a9d6ff;
}

.contact-visual-copy h2 {
  margin-top: 4px;
  color: var(--white);
  font-size: 28px;
}

.contact-visual-copy ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-visual-copy li {
  position: relative;
  padding-left: 24px;
  color: #d8e5f0;
  font-size: 16px;
  line-height: 1.9;
}

.contact-visual-copy li::before {
  position: absolute;
  left: 0;
  color: #7bc1ff;
  font-weight: 900;
  content: '✓';
}

.contact-phone {
  display: grid;
  margin-top: 28px;
  padding-top: 22px;
  color: var(--white);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.35;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.contact-phone small,
.contact-phone span {
  color: #9fb9cf;
  font-size: 11px;
  font-weight: 500;
}

.form-panel {
  padding: 45px 52px;
}

.form-panel h2 {
  color: var(--blue-ink);
  font-size: 31px;
}

.form-intro {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #414851;
  font-size: 16px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  font-size: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 145px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 157, 255, .12);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 7px;
  flex-wrap: wrap;
}

#form-status {
  font-size: 16px;
  font-weight: 700;
}

#form-status.ok {
  color: var(--success);
}

#form-status.err {
  color: var(--danger);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.privacy-check span {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}

.privacy-check a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
.site-footer {
  padding: 72px 0 24px;
  color: #a9b3bd;
  font-size: 16px;
  background: #15191f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .7fr 1fr;
  gap: 50px;
}

.footer-grid img {
  width: 175px;
  height: auto;
}

.footer-logo {
  margin-bottom: 16px;
  padding: 9px 12px;
  background: var(--white);
  border-radius: 8px;
}

.footer-grid h5 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.footer-grid p,
.footer-grid address,
.footer-grid li {
  color: #a9b3bd;
  font-size: 16px;
  line-height: 2;
}

.footer-grid address {
  font-style: normal;
}

.footer-grid .footer-company-name {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.footer-company-link {
  display: inline-block;
  margin-top: 7px;
  color: #c8d2dc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-grid li {
  padding: 4px 0;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  color: #69717c;
  font-size: 11px;
}

.footer-policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-policy-row > p {
  color: #d3dbe3;
  font-size: 16px;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  color: #b6c0ca;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: rgba(182, 192, 202, .45);
  text-underline-offset: 4px;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Works */
.works-section,
.faq-section,
.policy-section {
  background: var(--paper);
}

.home-works {
  background: var(--white);
}

.home-works-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.home-works-head .section-lead {
  max-width: 760px;
}

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

.work-preview-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-s);
}

.work-preview-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eaf0f5;
}

.work-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-preview-plan {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 11px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  background: var(--blue-deep);
  border-radius: 999px;
}

.work-preview-card.is-plan20 .work-preview-plan {
  background: var(--accent-deep);
}

.work-preview-card.is-plan30 .work-preview-plan {
  background: var(--navy-dark);
}

.work-preview-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 26px 27px;
}

.work-preview-industry {
  color: var(--accent-deep);
  font-size: 16px;
  font-weight: 900;
}

.work-preview-body h3 {
  margin-top: 8px;
  color: var(--blue-ink);
  font-size: 24px;
}

.work-preview-body p:not(.work-preview-industry) {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.work-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 900;
}

.home-works-action {
  margin-top: 36px;
  text-align: center;
}

.works-intro {
  max-width: 760px;
}

.works-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.works-plan-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(19, 45, 72, .06);
}

.works-plan-card.is-featured {
  border-color: rgba(30, 157, 255, .42);
  box-shadow: 0 18px 44px rgba(19, 143, 242, .11);
}

.works-plan-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}

.works-plan-card h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 28px;
}

.works-plan-card p {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.1;
}

.works-plan-section {
  margin-top: 72px;
  scroll-margin-top: 108px;
}

.works-plan-section + .works-plan-section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.works-plan-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.works-plan-heading h2 {
  color: var(--blue-ink);
  font-size: clamp(28px, 3vw, 38px);
}

.works-plan-heading p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
  text-align: right;
}

/* FAQ */
.content-narrow {
  max-width: 900px;
}

.faq-group + .faq-group {
  margin-top: 72px;
}

.faq-group > h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(19, 45, 72, .055);
}

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 24px 64px 24px 72px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.85;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease, background-color .2s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  position: absolute;
  top: 21px;
  left: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  content: 'Q';
  background: var(--blue-deep);
  border-radius: 8px;
  place-items: center;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  width: 24px;
  height: 24px;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  content: '+';
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details[open] summary {
  color: var(--blue-ink);
  background: #fbfdff;
}

.faq-answer {
  position: relative;
  padding: 25px 30px 27px 72px;
  background: #f4f8fc;
  border-top: 1px solid #dbe6ef;
}

.faq-answer::before {
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  content: 'A';
  background: var(--accent);
  border-radius: 8px;
  place-items: center;
}

.faq-answer p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.15;
}

.faq-cta {
  margin-top: 70px;
  padding: 48px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.faq-cta h2 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
}

.faq-cta p {
  margin: 13px 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

/* Privacy / Site policy */
.policy-intro {
  margin-bottom: 50px;
  padding: 30px 34px;
  color: var(--ink);
  font-size: 16px;
  line-height: 2.2;
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
}

.policy-article + .policy-article {
  margin-top: 52px;
}

.policy-article h2 {
  margin-bottom: 17px;
  padding-bottom: 13px;
  color: var(--ink);
  font-size: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-article p,
.policy-article li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.2;
}

.policy-article p + p {
  margin-top: 17px;
}

.policy-article ul,
.policy-article ol {
  margin-top: 16px;
  padding-left: 1.5em;
}

.policy-article li + li {
  margin-top: 8px;
}

.policy-article a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-contact {
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.policy-date {
  margin-top: 52px;
  color: var(--ink-soft);
  font-size: 16px;
  text-align: right;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: -9999px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-ink);
  border-radius: 6px;
}

.skip-link:focus {
  left: 12px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 16px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
    gap: 43px;
  }

  .quick-price,
  .plan-price {
    font-size: 35px;
  }

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

@media (max-width: 920px) {
  .site-header .wrap {
    min-height: 72px;
  }

  .site-header img {
    width: 170px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 25px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 55px 0 44px;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 34px 0 34px 0;
  }

  .quick-plan-wrap {
    margin-top: 42px;
  }

  .quick-plans,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .quick-plan.is-featured,
  .plan-card.is-featured {
    order: -1;
  }

  .plan-card.is-featured,
  .plan-card.is-featured:hover {
    transform: none;
  }

  .features-layout,
  .showcase-block,
  .mission-grid,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .features-layout {
    gap: 48px;
  }

  .showcase-block {
    gap: 40px;
  }

  .showcase-block .sc-visual,
  .showcase-block.reverse .sc-visual {
    order: 1;
  }

  .showcase-block .sc-content,
  .showcase-block.reverse .sc-content {
    order: 2;
  }

  .mission-grid {
    gap: 42px;
  }

  .mission-photo {
    max-width: 620px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .plan-detail-head,
  .plan-detail-body {
    grid-template-columns: 1fr;
  }

  .plan-detail-price {
    min-width: 0;
    text-align: left;
  }

  .plan-facts {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .detail-check-list {
    grid-template-columns: 1fr;
  }

  .process-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    content: '↓';
    transform: translateX(50%);
  }

  .addon-band {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
  }

  .contact-visual > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: left;
  }

  .footer-grid > div {
    width: min(100%, 380px);
    margin-right: auto;
    margin-left: auto;
  }

  .works-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-card-grid .work-preview-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 32px), var(--maxw));
  }

  section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 30px;
    text-align: center;
  }

  .section-lead {
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    text-align: center;
  }

  .eyebrow {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }

  .hero {
    padding: 0 0 36px;
    overflow: visible;
    background: linear-gradient(180deg, #edf7ff 0%, #f7fbff 72%, #ffffff 100%);
  }

  .hero-grid {
    width: 100%;
  }

  .hero-copy {
    z-index: 2;
    order: 2;
    width: min(calc(100% - 32px), 520px);
    margin: -68px auto 0;
    padding: 36px 22px 38px;
    text-align: center;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(9, 111, 216, .16);
    border-top: 5px solid var(--blue-deep);
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(10, 59, 107, .2);
  }

  .hero-title {
    line-height: 1.16;
    letter-spacing: -.06em;
  }

  .hero-title__sub {
    font-size: clamp(29px, 8.25vw, 34px);
  }

  .hero-title__main {
    margin: 3px 0;
    font-size: clamp(40px, 11.25vw, 45px);
  }

  .hero p.lead {
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.95;
  }

  .hero-cta {
    display: grid;
    gap: 18px;
    margin-top: 28px;
  }

  .btn {
    width: 100%;
  }

  .hero-text-link {
    width: max-content;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-visual img {
    object-position: 55% center;
  }

  .hero-visual figcaption {
    right: 12px;
    bottom: 76px;
  }

  .quick-plan-wrap {
    margin-top: 36px;
    padding: 27px 16px 18px;
    border-radius: 16px;
  }

  .quick-plan-heading {
    display: grid;
    gap: 6px;
    margin-bottom: 20px;
    text-align: center;
  }

  .quick-plan-heading h2 {
    font-size: 34px;
  }

  .quick-plan-heading p {
    font-size: 16px;
  }

  .quick-plans {
    gap: 18px;
  }

  .quick-plan,
  .plan-card {
    padding: 25px 20px 21px;
    text-align: center;
  }

  .quick-plan > strong {
    justify-content: center;
    font-size: 29px;
  }

  .plan-name {
    justify-content: center;
    font-size: 28px;
  }

  .quick-price,
  .plan-price {
    font-size: 38px;
  }

  .stat-band {
    padding: 12px 0;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:first-child,
  .stat-item:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    text-align: center;
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .feature-card {
    display: block;
    text-align: center;
  }

  .feature-num {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .page-hero {
    padding: 62px 0 70px;
    background-position: 64% center;
    text-align: center;
  }

  .page-hero h1,
  .page-hero p {
    margin-right: auto;
    margin-left: auto;
  }

  .plan-detail-head {
    gap: 24px;
    padding: 31px 23px 26px;
    text-align: center;
  }

  .plan-detail-price {
    text-align: center;
  }

  .plan-detail-content,
  .plan-facts {
    padding: 28px 23px;
  }

  .plan-detail-content > h4,
  .plan-fit,
  .addon-card,
  .plan-common-note h3 {
    text-align: center;
  }

  .plan-detail-slot {
    margin-right: auto;
    margin-left: auto;
  }

  .plan-detail-recommend {
    right: 18px;
  }

  .plan-common-note {
    padding: 24px 22px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero--work-detail h1 {
    font-size: 28px;
    line-height: 1.5;
  }

  .about-grid {
    gap: 38px;
  }

  .mission-content {
    max-width: none;
    text-align: center;
  }

  .mission-photo,
  .feature-photo {
    margin-right: auto;
    margin-left: auto;
    justify-self: center;
  }

  .process-card {
    text-align: center;
  }

  .group-capabilities,
  .sc-cta {
    justify-content: center;
  }

  .sc-content {
    text-align: center;
  }

  .sc-points {
    text-align: left;
  }

  .plan-saving {
    margin-right: auto;
    margin-left: auto;
  }

  .plan-list {
    text-align: left;
  }

  .plan-slot {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-table th,
  .about-table td {
    display: block;
    width: 100%;
  }

  .about-table th {
    padding-bottom: 7px;
  }

  .about-table td {
    padding-top: 7px;
  }

  .contact-visual {
    display: block;
  }

  .contact-visual > img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .contact-visual-copy {
    text-align: center;
  }

  .contact-visual-copy ul {
    text-align: left;
  }

  .form-panel {
    padding: 35px 21px;
  }

  .form-panel > .eyebrow,
  .form-panel > h2,
  .form-intro {
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid > div,
  .form-grid .full {
    grid-column: 1;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: left;
  }

  .footer-grid > div,
  .footer-company,
  .footer-grid > div:not(.footer-company) {
    width: min(100%, 360px);
    margin-right: auto;
    margin-left: auto;
  }

  .footer-logo {
    margin-right: 0;
    margin-left: 0;
  }

  .footer-policy-row {
    display: block;
    width: min(100%, 360px);
    margin-top: 38px;
    margin-right: auto;
    margin-left: auto;
    padding: 17px 0 18px;
    text-align: left;
  }

  .footer-policy-row > p {
    margin-bottom: 10px;
  }

  .footer-bottom {
    display: grid;
    width: min(100%, 360px);
    gap: 5px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .footer-legal {
    display: grid;
    gap: 8px;
  }

  .works-intro {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .mobile-line {
    display: block;
  }

  .home-works-head,
  .works-plan-heading {
    display: block;
    text-align: center;
  }

  .home-works-head .btn {
    margin-top: 24px;
  }

  .works-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .works-card-grid .work-preview-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .work-preview-body {
    padding: 23px 21px 25px;
    text-align: center;
  }

  .work-preview-link {
    margin-right: auto;
    margin-left: auto;
  }

  .works-plan-card {
    padding: 26px 23px;
    text-align: center;
  }

  .faq-cta {
    padding: 38px 22px;
  }

  .works-plan-section {
    margin-top: 56px;
  }

  .works-plan-section + .works-plan-section {
    padding-top: 56px;
  }

  .works-plan-heading p {
    margin-top: 10px;
    text-align: center;
  }

  .faq-group > .eyebrow,
  .faq-group > h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .faq-group > h2 {
    font-size: 26px;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 21px 46px 21px 64px;
    font-size: 16px;
    line-height: 1.85;
  }

  .faq-list summary::before {
    top: 19px;
    left: 17px;
    width: 28px;
    height: 28px;
  }

  .faq-list summary::after {
    right: 15px;
  }

  .faq-answer {
    padding: 22px 19px 24px 64px;
  }

  .faq-answer::before {
    top: 21px;
    left: 17px;
    width: 28px;
    height: 28px;
  }

  .policy-intro {
    padding: 24px 22px;
    font-size: 16px;
  }

  .policy-article h2 {
    font-size: 20px;
  }

  .policy-contact {
    padding: 24px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* WordPress / dedicated plugin integration */
.home-works .lshort-works {
  margin-top: 46px;
}

.works-section .lshort-work-plan-groups {
  margin-top: 68px;
}

.lshort-plugin-missing {
  margin-top: 36px;
  padding: 24px;
  color: var(--ink-soft);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
}

.works-detail-section {
  padding: 50px 0;
}

.works-detail-section .content-narrow {
  max-width: 1080px;
}

.lshort-work-detail__overview {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}

.lshort-work-detail__overview.is-image-empty {
  grid-template-columns: 1fr;
}

.lshort-work-detail__image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.lshort-work-detail__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.lshort-work-detail__meta {
  display: grid;
  margin: 0 0 18px;
  border: 1px solid var(--line);
}

.lshort-work-detail__meta > div {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 54px;
  padding: 12px 16px;
  background: #fff;
}

.lshort-work-detail__meta > div + div {
  border-top: 1px solid var(--line);
}

.lshort-work-detail__meta dt {
  color: var(--ink-soft);
  font-size: 13px;
}

.lshort-work-detail__meta dd {
  margin: 0;
  color: var(--blue-ink);
  font-weight: 800;
}

.lshort-work-detail__color {
  display: flex;
  gap: 9px;
  align-items: center;
}

.lshort-work-detail__swatch {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: var(--work-main-color);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
}

.lshort-work-detail__content {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2.05;
}

.lshort-work-detail__intro {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
}

.lshort-work-detail__section + .lshort-work-detail__section {
  margin-top: 24px;
}

.lshort-work-detail__section h2 {
  margin: 0 0 14px;
  color: var(--blue-ink);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.4;
}

.lshort-work-detail__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lshort-work-detail__list li {
  position: relative;
  margin: 0;
  padding: 12px 20px 12px 44px;
  line-height: 1.75;
  background: var(--paper);
  border: 1px solid var(--line);
}

.lshort-work-detail__list li::before {
  position: absolute;
  top: 21px;
  left: 20px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.lshort-work-detail__legacy > :first-child {
  margin-top: 0;
}

.lshort-work-detail__legacy > :last-child {
  margin-bottom: 0;
}

.lshort-work-detail__legacy p,
.lshort-work-detail__legacy li {
  line-height: 2.05;
}

.lshort-work-detail__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
}

.lshort-work-detail__actions p {
  margin: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .home-works .lshort-works {
    margin-top: 34px;
  }

  .works-section .lshort-work-plan-groups {
    margin-top: 50px;
  }

  .works-detail-section {
    padding: 40px 0;
  }

  .lshort-work-detail__overview {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 24px;
  }

  .lshort-work-detail__meta {
    margin-bottom: 16px;
  }

  .lshort-work-detail__meta > div {
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 50px;
    padding: 10px 13px;
  }

  .lshort-work-detail .btn {
    width: 100%;
  }

  .lshort-work-detail__intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
  }

  .lshort-work-detail__section + .lshort-work-detail__section {
    margin-top: 22px;
  }

  .lshort-work-detail__section h2 {
    margin-bottom: 13px;
    font-size: 23px;
  }

  .lshort-work-detail__list {
    gap: 8px;
  }

  .lshort-work-detail__list li {
    padding: 12px 16px 12px 40px;
    line-height: 1.75;
  }

  .lshort-work-detail__list li::before {
    top: 21px;
    left: 18px;
  }

  .lshort-work-detail__actions {
    gap: 22px;
    margin-top: 22px;
  }
}
