:root {
  --bg: #f2f6fb;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --line: #d6e1ee;
  --text: #23364d;
  --muted: #5f748f;
  --brand: #1d68ba;
  --brand-deep: #0f3f78;
  --accent: #7ab6e6;
  --ok: #2d8c53;
  --future: #7e8ea3;
  --shadow: 0 12px 30px rgba(19, 56, 96, 0.08);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Yu Gothic", "Yu Gothic UI", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.8;
  background: linear-gradient(180deg, #f9fbfe 0, #f5f8fc 110px, var(--bg) 110px, var(--bg) 100%);
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 182, 230, 0.18), transparent 26%),
    radial-gradient(circle at 82% -10%, rgba(29, 103, 182, 0.14), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef5ff 44%, #ffffff 100%);
  border-bottom: 1px solid rgba(20, 56, 91, 0.12);
  box-shadow: 0 10px 24px rgba(15, 63, 120, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(122, 182, 230, 0), rgba(29, 103, 182, 0.34), rgba(122, 182, 230, 0));
}

.site-header__inner,
.section,
.site-footer__inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: 260px;
  max-width: 42vw;
  height: auto;
}

.contact-line {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  min-width: 0;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(29, 103, 182, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(16, 54, 92, 0.08);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.header-link:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.contact-links {
  display: flex;
  align-items: center;
  width: auto;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-left: auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(29, 103, 182, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(122, 182, 230, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.96));
  box-shadow: 0 16px 32px rgba(16, 54, 92, 0.09);
}

.header-phone {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: 0 0 auto;
  padding-left: 18px;
}

.header-phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 34px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(29, 103, 182, 0), rgba(29, 103, 182, 0.28), rgba(29, 103, 182, 0));
}

.header-phone__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf4fc;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-phone__number {
  color: #12365e;
  font-size: clamp(1.08rem, 1.9vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(22, 84, 148, 0.28);
  transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
}

.inquiry-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 84, 148, 0.36);
}

.manager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-deep);
  border: 1px solid rgba(29, 103, 182, 0.35);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(16, 54, 92, 0.08);
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}

.manager-btn:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

.tax-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 4px 12px;
  background: #f0faf4;
  border: 1px solid rgba(45, 140, 83, 0.22);
  border-radius: 999px;
  color: var(--ok);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.button--static {
  cursor: default;
}

.article-hero {
  padding: 36px 0 18px;
}

.article-hero__inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 42px;
  background: linear-gradient(150deg, #ffffff 0%, #edf5ff 60%, #f5f9ff 100%);
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card,
.ca-card,
.client-card,
.faq-item,
.notice-panel,
.flow-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(29, 103, 182, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover,
.ca-card:hover,
.client-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(19, 56, 96, 0.13);
}

.eyebrow,
.section-heading__eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.article-hero h1 {
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.lead {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.hero-actions,
.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.page-guide {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.page-guide + .hero-actions {
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 26px rgba(22, 84, 148, 0.24);
}

.button--secondary,
.button--ghost {
  color: var(--brand-deep);
  background: #f2f7fd;
  border: 1px solid rgba(29, 103, 182, 0.14);
}

.button--guide {
  min-width: 11rem;
  white-space: nowrap;
  color: var(--brand-deep);
  background: #f2f7fd;
  border: 1px solid rgba(29, 103, 182, 0.14);
  box-shadow: 0 10px 22px rgba(18, 66, 116, 0.08);
}

.button--guide:hover {
  background: #e9f2fc;
  border-color: rgba(29, 103, 182, 0.26);
}

.button--guide[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(180deg, var(--brand-deep), #174a85);
  border: 1px solid rgba(11, 56, 108, 0.82);
  box-shadow: inset 0 3px 8px rgba(5, 23, 46, 0.24), 0 8px 18px rgba(15, 58, 107, 0.2);
  transform: translateY(1px);
}

.button--guide[aria-current="page"]:hover {
  transform: translateY(1px);
  background: linear-gradient(180deg, var(--brand-deep), #174a85);
  border-color: rgba(11, 56, 108, 0.82);
}

.button--campaign {
  color: #ffffff;
  background: linear-gradient(135deg, #e85f2f, #f2a51a);
  border-color: rgba(210, 92, 24, 0.42);
}

.campaign-banner {
  width: min(1080px, calc(100% - 32px));
  margin: 18px auto 10px;
}

.campaign-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 18px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(110deg, #0f4c8f 0%, #1d68ba 68%, #f3a11d 68%, #ee6b2a 100%);
  border: 1px solid rgba(29, 103, 182, 0.22);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(15, 63, 120, 0.18);
}

.campaign-banner__inner::before,
.campaign-banner__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.campaign-banner__inner::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 8%, transparent 8% 16%, rgba(255, 255, 255, 0.1) 16% 24%, transparent 24% 100%);
  opacity: 0.55;
}

.campaign-banner__inner::after {
  right: -36px;
  top: 50%;
  width: 170px;
  height: 170px;
  transform: translateY(-50%);
  border: 24px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.campaign-banner__ribbon,
.campaign-banner__copy,
.campaign-banner__price,
.campaign-banner__cta {
  position: relative;
  z-index: 1;
}

.campaign-banner__ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f4c8f;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.campaign-banner__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.campaign-banner__label {
  color: #dcecff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.campaign-banner__copy strong {
  font-size: clamp(1.28rem, 2.7vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0.03em;
}

.campaign-banner__copy span:last-child {
  color: #f6fbff;
  font-size: 0.92rem;
  font-weight: 700;
}

.campaign-banner__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 56px;
  padding: 0 18px;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  color: #0f4c8f;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(15, 63, 120, 0.14);
}

.campaign-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 63, 120, 0.92);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.contents-box {
  margin-bottom: 12px;
}

.contents-box__inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 26px;
  background: #ffffff;
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contents-box h2 {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-size: 1.28rem;
}

.check-list,
.feature-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 6px;
}

.check-list li::before {
  content: "\2713";   /* ✓ */
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 800;
}

.feature-list li::before {
  content: "\2192";   /* → */
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.note-list {
  margin: 0;
  padding-left: 1.2rem;
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.section-nav a {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid rgba(29, 103, 182, 0.15);
  background: #f6faff;
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

.section-nav a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  transform: translateY(-1px);
}

.updates-shell {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 103, 182, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(19, 56, 96, 0.06);
}

.section--updates {
  padding-top: 14px;
  padding-bottom: 18px;
}

.section--updates .section-heading {
  margin-bottom: 14px;
  padding-bottom: 10px;
}

.section--updates .section-heading__eyebrow {
  margin-bottom: 6px;
  font-size: 0.76rem;
}

.section--updates .section-heading h2 {
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.25;
}

.section--updates .section-heading p {
  margin: 8px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.updates-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px;
  background: #edf4fc;
  border-radius: 999px;
}

.updates-tab {
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.updates-tab.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(22, 84, 148, 0.22);
}

.updates-panel[hidden] {
  display: none;
}

.updates-list {
  display: grid;
  gap: 10px;
}

.updates-shell--summary .updates-list {
  max-height: 304px;
  overflow-y: auto;
  padding-right: 6px;
}

.updates-shell--summary .updates-list::-webkit-scrollbar {
  width: 10px;
}

.updates-shell--summary .updates-list::-webkit-scrollbar-thumb {
  background: rgba(29, 103, 182, 0.22);
  border: 2px solid #ffffff;
  border-radius: 999px;
}

.update-item {
  min-width: 0;
}

.update-link {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f8fbff, #f1f7ff);
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.update-link:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 103, 182, 0.2);
  box-shadow: 0 14px 28px rgba(16, 54, 92, 0.1);
}

.update-date {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.update-title {
  min-width: 0;
  color: var(--brand-deep);
  font-size: 0.96rem;
  font-weight: 700;
}

.update-arrow {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.updates-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.updates-footer .card-note {
  margin: 0;
}

.updates-more {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.92rem;
}

.section {
  padding: 26px 0 34px;
}

.section--alt {
  position: relative;
}

.section-heading {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: none;
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 2px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  color: #102742;
}

.two-column,
.service-grid,
.task-columns,
.portal-showcase,
.client-grid,
.ca-grid {
  display: grid;
  gap: 20px;
}

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

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

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

.task-columns > *,
.task-stack > * {
  min-width: 0;
}

.task-stack {
  display: grid;
  gap: 20px;
}

.task-block {
  margin-top: 28px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.task-block > h3 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: var(--brand-deep);
  border-bottom: 2px solid var(--line);
}

.portal-showcase {
  margin-top: 22px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.client-accordion__body .portal-showcase {
  margin-top: 0;
}

.client-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.ca-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.card,
.ca-card,
.client-card,
.faq-item {
  padding: 28px;
  border-top: 4px solid #e8f1fb;
}

.notice-panel {
  padding: 28px;
  background: linear-gradient(135deg, #eef5ff 0%, #f7fbff 100%);
  border-top: none;
  border-left: 4px solid var(--brand);
}

.key-table-wrap {
  margin: 18px 0 16px;
  overflow-x: auto;
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.key-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.key-table th,
.key-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(29, 103, 182, 0.1);
}

.key-table th {
  background: rgba(29, 103, 182, 0.08);
  color: var(--brand-deep);
  font-size: 0.92rem;
}

.key-table tbody tr:last-child td {
  border-bottom: none;
}

.card h3,
.client-card h3,
.ca-card h3,
.faq-item h3,
.notice-panel h3 {
  margin: 0 0 12px;
  color: var(--brand-deep);
}

.card h4,
.card h5 {
  margin: 0 0 10px;
  color: #183b61;
}

.sub-section-title {
  margin: 18px 0 10px;
  color: var(--brand-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

.card p,
.ca-card p,
.client-card p,
.faq-item p,
.notice-panel p {
  margin: 0 0 14px;
}

.card p:last-child,
.ca-card p:last-child,
.client-card p:last-child,
.faq-item p:last-child,
.notice-panel p:last-child {
  margin-bottom: 0;
}

.inline-link {
  color: var(--brand);
  font-weight: 700;
}

.inline-detail-button {
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

.inline-detail-button:hover {
  color: var(--brand-deep);
}

.inline-detail-button:focus-visible {
  outline: 2px solid rgba(29, 103, 182, 0.32);
  outline-offset: 2px;
}

.section-note,
.card-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.campaign-hero {
  padding: 36px 0 18px;
}

.campaign-hero__inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: stretch;
  padding: 42px;
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 165, 26, 0.24), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(232, 95, 47, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 245, 255, 0.96) 58%, rgba(255, 248, 235, 0.98) 100%),
    #ffffff;
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.campaign-hero__copy {
  min-width: 0;
}

.campaign-hero h1 {
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
}

.campaign-hero__catch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin: 0 0 18px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e85f2f, #f2a51a);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(210, 92, 24, 0.18);
}

.campaign-hero__catch strong {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.campaign-hero__lead {
  margin: 0;
  max-width: 760px;
  color: #183b61;
  font-size: 1.05rem;
}

.campaign-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.campaign-hero__meta > span,
.campaign-hero__meta > strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--brand-deep);
  font-size: 0.92rem;
}

.campaign-hero__meta strong {
  background: linear-gradient(135deg, #1d68ba, #0f3f78);
  color: #ffffff;
  font-weight: 800;
}

.campaign-hero__off {
  margin-left: 0.35em;
  color: #ffffff;
}

.campaign-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7e8 100%);
  border: 1px solid rgba(242, 165, 26, 0.28);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(16, 54, 92, 0.08);
}

.campaign-hero__logo-wrap {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-radius: 8px;
}

.campaign-hero__logo {
  width: 108px;
  height: auto;
}

.campaign-hero__tag {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.campaign-hero__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaign-hero__list li {
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(242, 165, 26, 0.2);
  border-radius: var(--radius-sm);
  color: var(--brand-deep);
  font-weight: 700;
}

.campaign-hero__note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.campaign-card,
.campaign-notice {
  min-height: 100%;
}

.campaign-price-group {
  margin-bottom: 28px;
}

.campaign-price-group--option {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.campaign-price-group__heading {
  margin: 0 0 8px;
  color: var(--brand-deep);
  font-size: 1.12rem;
}

.campaign-price-group__lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.campaign-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.campaign-price-card {
  min-width: 0;
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-top: 4px solid #f2a51a;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.campaign-price-card--featured {
  border-top-color: #e85f2f;
}

.campaign-price-card--option {
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  border-top-color: var(--brand);
}

.campaign-price-card__head {
  margin-bottom: 18px;
}

.campaign-price-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff0d2;
  color: #b74b1e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.campaign-price-card h3,
.campaign-price-card h4 {
  margin: 0;
  color: var(--brand-deep);
  font-size: 1.24rem;
}

.campaign-price-card__label--option {
  background: #eef5ff;
  color: var(--brand-deep);
}

.campaign-price-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.campaign-price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.campaign-price-list div:last-child {
  border-bottom: 0;
}

.campaign-price-list dt {
  color: var(--muted);
  font-weight: 700;
}

.campaign-price-list dd {
  margin: 0;
  color: var(--brand-deep);
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

.campaign-price-list__featured dd {
  color: #d9481e;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.campaign-price-list__featured--option dd {
  color: var(--brand-deep);
  font-size: 1.35rem;
}

.campaign-price-list__pending {
  color: var(--muted) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.campaign-flow {
  display: grid;
  gap: 16px;
}

.campaign-flow .flow-card {
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: stretch;
  border-top: 0;
}

.campaign-flow .flow-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  background:
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(145deg, #1d68ba, #0f3f78);
  color: #ffffff;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.campaign-flow .flow-number::before {
  content: "STEP";
  position: absolute;
  top: calc(50% - 2.15rem);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.campaign-flow .flow-content {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 24px 28px;
}

.campaign-flow .flow-content p {
  margin: 0;
}

.campaign-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #eef5ff 0%, #fff5e4 100%);
  border: 1px solid rgba(242, 165, 26, 0.22);
  border-radius: var(--radius-lg);
}

.campaign-cta p {
  margin: 0;
  min-width: 0;
  color: #183b61;
  font-weight: 700;
}

.campaign-cta .hero-actions {
  margin-top: 0;
  flex: 0 0 auto;
}

.terms-section {
  padding-top: 16px;
  padding-bottom: 10px;
}

.terms-heading {
  margin-bottom: 14px;
}

.terms-heading h2 {
  margin: 0;
  color: #2d4058;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.terms-panel {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-radius: var(--radius-sm);
}

.terms-panel h3 {
  margin: 0 0 8px;
  color: var(--brand-deep);
  font-size: 0.96rem;
}

.terms-panel p {
  margin: 0;
  color: #4a607a;
  font-size: 0.86rem;
  line-height: 1.75;
}

.ca-card {
  position: relative;
  min-height: 0;
}

.ca-copy {
  display: grid;
  gap: 12px;
}

.ca-copy__lead {
  font-size: 1.03rem;
  line-height: 1.8;
  color: #183b61;
}

.ca-feature-block {
  display: grid;
  gap: 14px;
}

.ca-feature-block h4 {
  margin: 0;
  color: var(--brand-deep);
}

.ca-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.ca-feature-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.88));
}

.ca-feature-item--wide {
  grid-column: 1 / -1;
}

.ca-feature-item__label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ca-feature-item strong {
  color: var(--brand-deep);
  font-size: 1rem;
}

.ca-feature-item p {
  margin: 0;
  color: #37506b;
  font-size: 0.94rem;
}

.ca-link-panel {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(29, 103, 182, 0.12);
  background: rgba(238, 245, 255, 0.72);
}

.ca-link-panel p {
  margin-top: 8px;
  color: #425b78;
  font-size: 0.94rem;
}

.ca-card--accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  align-self: start;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:first-child {
  padding-top: 4px;
}

.price-row:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.price-name {
  font-weight: 700;
  color: var(--brand-deep);
}

.price-value {
  white-space: nowrap;
  color: var(--brand);
  font-weight: 800;
}

.ca-status,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ca-status {
  margin-bottom: 12px;
  color: #ffffff;
  background: var(--ok);
}

.ca-status--future {
  background: var(--future);
}

.flow-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-accordion-group {
  display: grid;
  gap: 18px;
}

.managed-accordion-group {
  display: grid;
  gap: 18px;
}

.flow-choice-card {
  padding: 0;
  overflow: hidden;
}

.flow-choice-intro {
  margin: 0 0 8px;
  color: var(--muted);
}

.manual-grid {
  margin-bottom: 22px;
}

.manual-stack {
  display: grid;
  gap: 24px;
  margin-bottom: 22px;
}

.manual-block {
  margin-top: 0;
}

.manual-subtitle {
  margin-top: 22px;
}

.flow-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0;
  overflow: hidden;
}

.flow-index {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2e7bc9, var(--brand-deep));
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
}

.flow-content {
  padding: 26px 30px;
}

.flow-content h3 {
  margin: 0 0 10px;
  color: var(--brand-deep);
}

.sub-card {
  padding: 18px 20px;
  margin-top: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  min-width: 0;
}

.sub-card:first-of-type {
  margin-top: 0;
}

.prep-accordion {
  padding: 0;
  overflow: hidden;
}

.prep-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

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

.prep-summary::marker {
  content: "";
}

.prep-summary h5 {
  margin: 0;
  color: var(--brand-deep);
}

.prep-summary__icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.prep-accordion[open] .prep-summary__icon {
  transform: rotate(225deg);
}

.prep-accordion__body {
  padding: 0 20px 18px;
}

.prep-accordion__body > :first-child {
  margin-top: 0;
}

.portal-showcase__copy {
  padding: 18px 0;
}

.portal-shot {
  display: block;
  width: 100%;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  cursor: pointer;
  appearance: none;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.portal-shot:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 103, 182, 0.22);
  box-shadow: 0 18px 34px rgba(19, 56, 96, 0.12);
}

.portal-shot img {
  border-radius: 14px;
}

.portal-shot__hint {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.member-guide-card {
  align-self: stretch;
}

.member-guide {
  display: grid;
  gap: 18px;
}

.member-guide__intro {
  margin-bottom: 0;
}

.member-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x proximity;
}

.member-step-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 14px;
}

.member-step-list > li {
  display: grid;
  gap: 8px;
}

.member-step-list__title {
  color: #2a4667;
  font-size: 0.92rem;
  font-weight: 800;
}

.member-step-list .member-thumb {
  width: min(220px, 100%);
}

.member-thumb {
  display: grid;
  gap: 6px;
  justify-items: center;
  flex: 0 0 auto;
  width: 108px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(29, 103, 182, 0.15);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(122, 182, 230, 0.18), transparent 52%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.96));
  box-shadow: 0 14px 30px rgba(19, 56, 96, 0.1);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.member-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 103, 182, 0.28);
  box-shadow: 0 20px 34px rgba(19, 56, 96, 0.15);
}

.member-thumb:focus-visible {
  outline: 2px solid rgba(29, 103, 182, 0.32);
  outline-offset: 2px;
}

.member-thumb img {
  width: 100%;
  height: 66px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(29, 103, 182, 0.1);
}

.member-thumb__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(29, 103, 182, 0.16), rgba(29, 103, 182, 0.08));
  color: #154677;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.member-thumb__label {
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.member-strip__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(29, 103, 182, 0.08);
  border: 1px solid rgba(29, 103, 182, 0.16);
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
}

.member-mini-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 14px 14px 14px 2rem;
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.85));
}

.member-mini-list li {
  color: #36506c;
}

.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.image-modal--viewer {
  z-index: 40;
}

.image-modal--viewer .image-modal__dialog {
  width: min(1460px, calc(100vw - 20px));
  max-height: calc(100vh - 20px);
  margin: 10px auto;
  padding: 14px 14px 10px;
}

.image-modal--viewer .image-modal__eyebrow {
  margin-bottom: 4px;
}

.image-modal--viewer .image-modal__dialog h2 {
  margin-bottom: 10px;
  padding-right: 50px;
  font-size: 1.2rem;
}

.image-modal--viewer .image-modal__dialog img {
  max-height: calc(100vh - 120px);
}

.image-modal--viewer .image-modal__counter {
  margin-top: 6px;
}

.image-modal--viewer .image-modal__close {
  top: 10px;
  right: 10px;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 27, 53, 0.72);
}

.image-modal__dialog {
  position: relative;
  width: min(860px, calc(100% - 40px));
  max-height: calc(100vh - 72px);
  margin: 36px auto;
  padding: 18px 18px 14px;
  overflow: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(6, 24, 47, 0.28);
}

.image-modal__eyebrow {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.image-modal__dialog h2 {
  margin: 0 0 16px;
  color: var(--brand-deep);
  font-size: 1.4rem;
}

.image-modal__dialog img {
  width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  border-radius: 12px;
}

.image-modal__nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: 20px;
  border: 1px solid rgba(29, 103, 182, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-deep);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 26px rgba(19, 56, 96, 0.2);
  z-index: 2;
}

.image-modal__nav--prev {
  left: 14px;
  right: auto;
}

.image-modal__nav--next {
  left: auto;
  right: 14px;
}

.image-modal__nav:hover {
  background: #ffffff;
}

.image-modal__nav:focus-visible {
  outline: 2px solid rgba(29, 103, 182, 0.34);
  outline-offset: 2px;
}

.image-modal__counter {
  margin: 10px 0 0;
  text-align: center;
  color: #3c5675;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.image-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #edf4fc;
  color: var(--brand-deep);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.info-modal__dialog {
  width: min(1260px, calc(100vw - 20px));
  max-height: calc(100vh - 20px);
  margin: 10px auto;
  padding: 22px 24px 20px;
}

.info-modal__body {
  display: grid;
  grid-template-columns: 817px minmax(320px, 1fr);
  gap: 20px;
  align-items: start;
  min-width: 1160px;
}

.info-modal__figure {
  margin: 0;
  width: 817px;
  padding: 16px;
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.info-modal__figure img {
  display: block;
  width: 817px;
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: initial;
  border-radius: 10px;
  border: 1px solid rgba(29, 103, 182, 0.1);
  background: #ffffff;
}

.info-modal__figure figcaption {
  margin-top: 10px;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.info-modal__content {
  display: grid;
  gap: 14px;
}

.info-modal__section {
  padding: 15px 16px;
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.92));
}

.info-modal__section h3 {
  margin: 0 0 8px;
  color: var(--brand-deep);
  font-size: 1rem;
}

.info-modal__section p {
  margin: 0;
  color: #36506c;
  line-height: 1.8;
}

.info-modal__section p + p {
  margin-top: 10px;
}

.info-modal__subsection + .info-modal__subsection {
  margin-top: 14px;
}

.info-modal__label {
  font-weight: 700;
  color: var(--brand-deep);
}

.info-modal__label--minor {
  margin-top: 8px;
  font-size: 0.95rem;
}

body.modal-open {
  overflow: hidden;
}

.client-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  align-self: start;
}

.client-card--featured {
  border-color: rgba(29, 103, 182, 0.22);
  border-top-color: var(--brand);
  background: linear-gradient(180deg, rgba(29, 103, 182, 0.04), #ffffff 28%);
}

.ca-accordion {
  display: block;
}

.ca-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 24px;
  cursor: pointer;
  list-style: none;
  background:
    radial-gradient(circle at top left, rgba(122, 182, 230, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
}

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

.ca-summary::marker {
  content: "";
}

.ca-summary__main {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.ca-summary__logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 14px;
  border: 1px solid rgba(29, 103, 182, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(16, 54, 92, 0.08);
}

.ca-summary__logo {
  display: block;
  width: min(116px, 18vw);
  max-width: 100%;
  height: auto;
}

.ca-summary h3 {
  margin: 0;
  color: #60758f;
  font-size: clamp(0.9rem, 1.45vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ca-summary__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(29, 103, 182, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #e9f2fd 100%);
  box-shadow: 0 10px 20px rgba(16, 54, 92, 0.08);
}

.ca-summary__icon {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.ca-accordion[open] .ca-summary {
  padding-bottom: 18px;
}

.ca-summary:focus-visible {
  outline: 2px solid rgba(29, 103, 182, 0.28);
  outline-offset: -6px;
  border-radius: 14px;
}

.ca-accordion[open] .ca-summary__icon {
  transform: rotate(225deg);
}

.ca-accordion__body {
  display: grid;
  gap: 10px;
  padding: 0 28px 28px;
}

.ca-accordion__body > :first-child {
  margin-top: 0;
}

.client-accordion {
  display: block;
}

.client-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 24px;
  cursor: pointer;
  list-style: none;
}

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

.client-summary::marker {
  content: "";
}

.client-summary__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-summary__main h3 {
  margin: 0;
}

.client-summary__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.client-summary__icon {
  width: 12px;
  height: 12px;
  margin-top: 10px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin-top 0.2s ease;
  flex: 0 0 auto;
}

.client-accordion[open] .client-summary {
  padding-bottom: 18px;
}

.client-summary:focus-visible {
  outline: 2px solid rgba(29, 103, 182, 0.28);
  outline-offset: -6px;
  border-radius: 14px;
}

.client-accordion[open] .client-summary__icon {
  margin-top: 14px;
  transform: rotate(225deg);
}

.client-accordion__body {
  display: grid;
  gap: 10px;
  padding: 0 28px 28px;
}

.client-accordion__body > :first-child {
  margin-top: 0;
}

.badge {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  width: fit-content;
}

.client-points {
  display: grid;
  gap: 4px;
  margin: 0;
}

.client-points dt {
  color: var(--brand);
  font-weight: 700;
}

.client-points dd {
  margin: 0 0 8px;
  color: var(--text);
}

.guide-accordion {
  margin-top: 18px;
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.guide-accordion__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.guide-accordion__summary::-webkit-details-marker {
  display: none;
}

.guide-accordion__summary::marker {
  content: "";
}

.guide-accordion__summary h4 {
  margin: 0 0 6px;
  color: var(--brand-deep);
}

.guide-accordion__summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.guide-accordion__icon {
  width: 11px;
  height: 11px;
  margin-top: 8px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin-top 0.2s ease;
  flex: 0 0 auto;
}

.guide-accordion[open] .guide-accordion__icon {
  margin-top: 12px;
  transform: rotate(225deg);
}

.guide-accordion__body {
  display: grid;
  gap: 16px;
  padding: 0 20px 20px;
}

.client-guide-showcase {
  margin-top: 24px;
}

.guide-step-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-step {
  padding: 18px;
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
}

.guide-step__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.guide-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.guide-step__head h4 {
  margin: 0 0 4px;
  color: var(--brand-deep);
}

.guide-step__head p {
  margin: 0;
}

.guide-shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 220px));
  justify-content: start;
  gap: 12px;
  margin-top: 12px;
}

.guide-shot {
  margin: 0;
  width: 100%;
  max-width: 220px;
  padding: 10px;
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(19, 56, 96, 0.06);
}

.flow-content .guide-shot {
  margin-top: 16px;
  max-width: 260px;
}

.guide-shot img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(29, 103, 182, 0.08);
}

.guide-shot__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.guide-shot__button:hover img {
  border-color: rgba(29, 103, 182, 0.24);
  box-shadow: 0 12px 24px rgba(19, 56, 96, 0.1);
}

.guide-shot figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.guide-shot__hint {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
}

.payment-accordion .prep-summary {
  align-items: flex-start;
}

.payment-summary-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.guide-shot-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 220px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-top: 12px;
}

.guide-shot-strip .guide-shot {
  max-width: none;
}

pre {
  margin: 10px 0 0;
  padding: 16px 18px;
  overflow: auto;
  background: #0d2037;
  color: #edf5ff;
  border-radius: var(--radius-md);
  font-family: "Cascadia Mono", "Consolas", "Meiryo UI", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

code {
  font-family: "Cascadia Mono", "Consolas", "Meiryo UI", monospace;
}

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

.article-detail {
  max-width: 780px;
  margin: 0 auto;
}

.article-detail__meta {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-detail__lead {
  margin: 0 0 20px;
  color: #314a66;
  font-size: 1.02rem;
}

.article-disclaimer {
  margin: 0 0 20px;
  padding: 12px 14px;
  color: #48617d;
  font-size: 0.94rem;
  line-height: 1.8;
  background: rgba(247, 250, 252, 0.92);
  border: 1px solid rgba(29, 103, 182, 0.12);
  border-left: 3px solid rgba(29, 103, 182, 0.35);
  border-radius: var(--radius-sm);
}

.updates-disclaimer {
  margin-top: 12px;
  margin-bottom: 0;
}

.article-detail h2 {
  margin: 28px 0 12px;
  color: var(--brand-deep);
  font-size: 1.2rem;
}

.article-source {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--surface-soft);
  border: 1px solid rgba(29, 103, 182, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
}

.article-source h2 {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: 1.05rem;
}

.article-source p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 36px;
  padding: 38px 0 48px;
  background: linear-gradient(180deg, rgba(14, 62, 121, 0.98), rgba(10, 38, 73, 1));
  color: #f4f8fc;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__inner > :first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.site-footer__inner > :last-child {
  flex: 0 0 auto;
}

.site-footer__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
}

.site-footer__inner p:last-child {
  margin: 0;
}

.site-footer__actions {
  align-items: center;
  margin-top: 0;
}

@media (max-width: 1120px) {
  .portal-showcase,
  .two-column,
  .service-grid,
  .task-columns,
  .client-grid,
  .terms-grid,
  .campaign-hero__inner,
  .campaign-price-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 860px) {
  .member-thumb {
    width: 96px;
  }

  .member-thumb img {
    height: 58px;
  }

  .member-mini-list {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand-area,
  .contact-line,
  .site-footer__inner {
    width: 100%;
    max-width: 100%;
  }

  .contact-line {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .contact-links {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    padding: 10px 12px;
  }

  .header-phone {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    gap: 8px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .header-phone::before {
    display: none;
  }

  .header-phone__number {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .article-hero__inner,
  .campaign-hero__inner,
  .card,
  .ca-card,
  .client-card,
  .faq-item,
  .notice-panel {
    padding: 24px;
  }

  .flow-card {
    grid-template-columns: 1fr;
  }

  .campaign-banner__inner,
  .campaign-cta {
    align-items: flex-start;
  }

  .campaign-cta {
    flex-direction: column;
  }

  .campaign-cta p {
    width: 100%;
  }

  .campaign-flow .flow-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .campaign-hero .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .campaign-hero .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .campaign-banner__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .campaign-banner__price,
  .campaign-banner__cta,
  .campaign-cta .hero-actions {
    width: 100%;
  }

  .campaign-banner__price,
  .campaign-banner__cta {
    justify-content: center;
  }

  .campaign-cta .hero-actions .button {
    flex: 1 1 100%;
  }

  .flow-index {
    min-height: 74px;
  }

  .flow-content {
    padding: 24px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .updates-shell {
    padding: 24px;
  }

  .updates-shell--summary .updates-list {
    max-height: 320px;
  }

  .update-link {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .update-arrow {
    justify-self: start;
  }

  .updates-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__actions {
    flex-direction: column;
    width: 100%;
  }

  .site-footer__actions .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .member-strip {
    gap: 10px;
  }

  .member-strip__arrow {
    width: 22px;
    height: 22px;
    font-size: 0.86rem;
  }

  .member-thumb {
    width: 88px;
    padding: 9px 8px 10px;
  }

  .member-thumb img {
    height: 54px;
  }

  .member-thumb__step {
    min-height: 18px;
    font-size: 0.62rem;
    padding: 0 7px;
  }

  .member-thumb__label {
    font-size: 0.75rem;
  }

  .member-mini-list {
    padding: 12px 12px 12px 1.8rem;
  }

  .site-header__inner,
  .section,
  .contents-box__inner,
  .article-hero__inner,
  .campaign-hero__inner,
  .campaign-banner,
  .site-footer__inner {
    width: min(100% - 16px, 1180px);
  }

  .brand-logo {
    width: min(220px, 72vw);
    max-width: 100%;
  }

  .contact-links {
    display: grid;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  .contact-links > * {
    flex: none;
    min-width: 0;
  }

  .header-link,
  .inquiry-btn,
  .manager-btn {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .header-phone {
    width: 100%;
    justify-content: flex-start;
    gap: 6px 10px;
  }

  .header-phone__number {
    font-size: clamp(1rem, 5.4vw, 1.22rem);
  }

  .inquiry-btn {
    justify-content: center;
  }

  .inquiry-btn svg {
    flex: 0 0 auto;
  }

  .article-hero h1 {
    line-height: 1.28;
  }

  .campaign-hero h1 {
    font-size: 1.85rem;
    line-height: 1.28;
  }

  .campaign-hero__meta > span,
  .campaign-hero__meta > strong,
  .campaign-price-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .campaign-price-list dd {
    white-space: normal;
  }

  .section-nav {
    gap: 8px;
  }

  .section-nav a {
    width: 100%;
    text-align: center;
  }

  .section--updates {
    padding-top: 10px;
    padding-bottom: 14px;
  }

  .section--updates .section-heading {
    margin-bottom: 12px;
  }

  .section--updates .section-heading h2 {
    font-size: 1.08rem;
  }

  .updates-shell {
    padding: 18px 14px;
  }

  .updates-shell--summary .updates-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .updates-shell--summary .updates-list .update-item:nth-child(n + 6) {
    display: none;
  }

  .updates-tabs {
    display: grid;
    width: 100%;
    padding: 6px;
    border-radius: 18px;
  }

  .updates-tab {
    width: 100%;
  }

  .update-link {
    gap: 5px;
    padding: 13px 14px;
  }

  .updates-footer {
    margin-top: 10px;
  }

  .ca-summary {
    padding: 20px 18px;
    gap: 12px;
  }

  .ca-summary__main {
    gap: 10px;
  }

  .ca-summary__logo-chip {
    padding: 5px 8px;
    border-radius: 12px;
  }

  .ca-summary__logo {
    width: min(92px, 28vw);
  }

  .ca-summary h3 {
    font-size: 0.84rem;
  }

  .ca-summary__toggle {
    width: 36px;
    height: 36px;
  }

  .ca-feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .site-footer__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .image-modal__dialog {
    width: min(100% - 20px, 1120px);
    margin: 10px auto;
    padding: 18px 18px 14px;
  }

  .image-modal__nav {
    width: 36px;
    height: 36px;
    margin-top: 24px;
    font-size: 1.05rem;
  }

  .image-modal__nav--prev {
    left: 8px;
    right: auto;
  }

  .image-modal__nav--next {
    left: auto;
    right: 8px;
  }

  /* 内側余白の縮小 */
  .contents-box__inner {
    padding: 16px;
  }

  .article-hero__inner {
    padding: 24px 20px;
  }

  .campaign-hero__inner {
    padding: 24px 20px;
  }

  .campaign-hero__panel,
  .campaign-price-card,
  .campaign-cta {
    padding: 20px 18px;
  }

  .campaign-banner__inner {
    padding: 18px 16px;
  }

  .task-block {
    padding: 18px 16px;
  }

  .task-block > h3 {
    margin: 0 0 14px;
  }

  .notice-panel {
    padding: 18px 16px;
  }

  .sub-card {
    padding: 14px;
  }

  .prep-summary {
    padding: 14px;
  }

  .prep-accordion__body {
    padding: 0 14px 14px;
  }

  .task-block,
  .task-columns,
  .task-stack,
  .card,
  .sub-card {
    min-width: 0;
  }

  .client-summary {
    padding: 18px 16px 16px;
  }

  .ca-accordion__body,
  .client-accordion__body {
    padding: 0 16px 18px;
  }

  .flow-content {
    padding: 18px 16px;
  }

  /* コードブロックのモバイル調整 */
  pre {
    font-size: 0.82rem;
    padding: 12px 14px;
    max-width: 100%;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    overscroll-behavior-x: contain;
  }

  code {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
