:root {
  --ink: #07182d;
  --ink-soft: #435369;
  --navy: #031a31;
  --navy-deep: #021120;
  --line: #d8d5ce;
  --paper: #fbfaf7;
  --paper-muted: #f2f0ea;
  --white: #ffffff;
  --gold: #c7a46b;
  --error: #b42318;
  --shadow: 0 24px 70px rgba(7, 24, 45, 0.14);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", "Inter", sans-serif;
  --latin: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

:where(
  #top,
  #hero-title,
  #hero-statement,
  #hero-lead,
  #input-box,
  #login-title,
  #public-news-title,
  #features-title,
  #flow-title,
  #capabilities,
  #capabilities-title,
  #voice-title,
  #related-title,
  #final-cta-title,
  #signup-modal-title,
  section[id]
) {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
}

body.is-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #74c7ff;
  outline-offset: 2px;
}

#before-login a:focus-visible,
#before-login button:focus-visible,
#before-login input:focus-visible,
#before-login summary:focus-visible {
  outline: 3px solid #74c7ff;
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background: url("../img/login-front-hero.png") center 42% / cover no-repeat;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 72%, rgba(232, 210, 190, 0.16) 84%, rgba(232, 210, 190, 0.42) 100%),
    radial-gradient(ellipse 32% 46% at 100% 78%, rgba(232, 210, 190, 0.64) 0%, rgba(232, 210, 190, 0.38) 34%, transparent 60%),
    radial-gradient(ellipse 28% 32% at 100% 22%, rgba(232, 210, 190, 0.56) 0%, rgba(232, 210, 190, 0.28) 40%, transparent 72%);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 17, 32, 0.98) 0%, rgba(2, 17, 32, 0.94) 18%, rgba(2, 17, 32, 0.82) 42%, rgba(2, 17, 32, 0.62) 66%, rgba(2, 17, 32, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 17, 32, 0.1), rgba(2, 17, 32, 0.66));
}

.site-footer__brand {
  /* フッター内でロゴとブランド名を横並びにし、モックとの差分を視覚的に揃える。 */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.site-footer__brand-mark {
  width: 30px;
  height: 26px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-top-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 64px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 17, 32, 0.62) 0%, rgba(2, 17, 32, 0.28) 70%, rgba(2, 17, 32, 0) 100%);
}

.site-top-header__inner {
  width: min(1260px, calc(100% - 112px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-top-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.site-top-header__logo {
  display: inline-flex;
  width: 56px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.site-top-header__logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-top-header__brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
}

.site-top-header__nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-top-header__nav-link {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--latin);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, text-underline-offset 0.2s ease;
}

.site-top-header__nav-link:hover,
.site-top-header__nav-link:focus-visible {
  color: var(--gold);
  text-decoration-color: currentColor;
  text-underline-offset: 6px;
}

.site-top-header__cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--latin);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-top-header__cta:hover,
.site-top-header__cta:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.site-top-header__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}

.site-top-header__hamburger-bar {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.site-top-header__hamburger-bar:nth-child(1) { top: 14px; }
.site-top-header__hamburger-bar:nth-child(2) { top: 21px; }
.site-top-header__hamburger-bar:nth-child(3) { top: 28px; }

.site-top-header__hamburger[aria-expanded="true"] .site-top-header__hamburger-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.site-top-header__hamburger[aria-expanded="true"] .site-top-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.site-top-header__hamburger[aria-expanded="true"] .site-top-header__hamburger-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 112px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(286px, 334px);
  gap: clamp(28px, 4.2vw, 76px);
  align-items: center;
  padding: 92px 0 62px;
}

.hero__copy {
  max-width: 680px;
}

.section-kicker {
  margin: 0 0 18px;
  color: #9d7d51;
  font-family: var(--latin);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.section-kicker--light {
  color: #ddc190;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--hero-brand-size, clamp(4.06rem, 9.1vw, 7.84rem));
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  transform: translate(var(--hero-brand-x, 0), var(--hero-brand-y, 0));
  transform-origin: left top;
}

.hero-font-object {
  touch-action: none;
}

body.is-hero-font-editing [data-hero-font-object] {
  cursor: grab;
  user-select: none;
}

body.is-hero-font-editing [data-hero-font-object]:hover {
  outline: 1px dashed rgba(79, 154, 255, 0.72);
  outline-offset: 8px;
}

body.is-hero-text-editing [data-hero-font-object],
body.is-hero-font-editing [data-hero-font-object].is-hero-text-editing {
  cursor: text;
  user-select: text;
}

[data-hero-font-object].is-hero-text-editing {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  border-radius: 6px;
  background: rgba(2, 17, 32, 0.26);
}

[data-hero-font-object].is-hero-text-editing:focus {
  outline: 2px solid var(--gold);
}

body.is-hero-font-dragging,
body.is-hero-font-dragging * {
  cursor: grabbing !important;
  user-select: none !important;
}

.hero-font-object-overlay {
  position: fixed;
  z-index: 58;
  box-sizing: border-box;
  border: 2px solid #2684ff;
  border-radius: 8px;
  background: rgba(38, 132, 255, 0.05);
  box-shadow: 0 12px 32px rgba(0, 20, 55, 0.28);
  pointer-events: auto;
}

.hero-font-object-overlay[hidden] {
  display: none;
}

.hero-font-object-overlay__label {
  position: absolute;
  left: -2px;
  top: -30px;
  min-width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #2684ff;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(0, 20, 55, 0.25);
  pointer-events: none;
}

.hero-font-object-overlay__handle {
  position: absolute;
  right: -9px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #2684ff;
  box-shadow: 0 6px 16px rgba(0, 20, 55, 0.28);
  cursor: nwse-resize;
}

.hero__statement {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.48;
  transform: translate(var(--hero-statement-x, 0), var(--hero-statement-y, 0));
  transform-origin: left top;
}

.hero__statement-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-copy-picker {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  font-family: var(--sans);
}

.hero-copy-picker.is-dragging {
  user-select: none;
}

.hero-copy-picker__gear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(2, 17, 32, 0.86);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  cursor: grab;
  touch-action: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero-copy-picker.is-dragging .hero-copy-picker__gear {
  cursor: grabbing;
}

.hero-copy-picker__gear:hover,
.hero-copy-picker__gear:focus-visible,
.hero-copy-picker__gear[aria-expanded="true"] {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(2, 17, 32, 0.94);
  transform: rotate(30deg);
}

.hero-copy-picker__gear-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-copy-picker__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: min(380px, calc(100vw - 40px));
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 14px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(2, 17, 32, 0.96);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-copy-picker--panel-below .hero-copy-picker__panel {
  top: calc(100% + 12px);
  bottom: auto;
}

.hero-copy-picker--align-left .hero-copy-picker__panel {
  right: auto;
  left: 0;
}

.hero-copy-picker__panel[hidden] {
  display: none;
}

.hero-copy-picker__heading {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-copy-picker__label {
  margin: 0;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-copy-picker__hint {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.hero-copy-picker__select {
  width: 100%;
  min-height: 40px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(2, 17, 32, 0.6);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.84rem;
  cursor: pointer;
}

.hero-copy-picker__select option,
.hero-copy-picker__select optgroup {
  background: #021120;
  color: var(--white);
}

.hero-copy-picker__custom {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-copy-picker__custom[hidden] {
  display: none;
}

.hero-copy-picker__custom-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.hero-copy-picker__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-copy-picker__theme-field {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-copy-picker__font-controls {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-copy-picker__font-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-copy-picker__switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.hero-copy-picker__switch input {
  width: 16px;
  height: 16px;
  accent-color: #2684ff;
}

.hero-copy-picker__field-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-copy-picker__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(2, 17, 32, 0.6);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.84rem;
  line-height: 1.6;
  resize: vertical;
}

.hero-copy-picker__textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
}

.hero-copy-picker__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-copy-picker__selection {
  min-height: 34px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.hero-copy-picker__reset {
  width: 100%;
  margin-top: 10px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.hero-copy-picker__reset:hover,
.hero-copy-picker__reset:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.hero-copy-picker__reset:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero-copy-picker__value-memo {
  min-height: 76px;
  max-height: 128px;
  margin: 10px 0 0;
  overflow: auto;
  white-space: pre-wrap;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.68rem;
  line-height: 1.55;
}

.hero-copy-picker__reason-wrap {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-copy-picker__reason-title {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-copy-picker__reason {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .hero-copy-picker {
    bottom: 16px;
    right: 16px;
  }

  .hero-copy-picker__gear {
    width: 40px;
    height: 40px;
  }

  .hero-copy-picker__panel {
    width: min(320px, calc(100vw - 32px));
    max-height: calc(100vh - 90px);
  }
}

.hero__lead {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  transform: translate(var(--hero-lead-x, 0), var(--hero-lead-y, 0));
  transform-origin: left top;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 34px;
}

.cta-button,
.text-link,
.public-news-bar__link,
.voice-teaser__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cta-button {
  min-width: 250px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(2, 17, 32, .35);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px -6px rgba(2, 17, 32, .3);
}

.cta-button--primary,
.cta-button--light {
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
}

.cta-button--primary:hover,
.cta-button--light:hover {
  box-shadow: 0 8px 20px -12px rgba(2, 17, 32, .28);
}

.cta-button--light {
  min-width: 300px;
}

.cta-button__text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}

.cta-button__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cta-button__sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.cta-button__arrow {
  font-size: 1rem;
}

.text-link {
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.text-link:hover {
  opacity: 0.78;
}

.text-link:active {
  opacity: 0.6;
}

.text-link--light {
  color: var(--white);
}

.public-news-bar__link {
  transition: color .2s ease, text-decoration-color .2s ease, text-underline-offset .2s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.public-news-bar__link:hover,
.public-news-bar__link:focus-visible {
  color: var(--gold);
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.voice-teaser__link {
  transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.voice-teaser__link:hover,
.voice-teaser__link:focus-visible {
  opacity: 0.82;
}

.related-services__list a {
  transition: color .2s ease, background-color .2s ease;
}

.related-services__list a:hover,
.related-services__list a:focus-visible {
  color: var(--gold);
  background: rgba(199, 164, 107, 0.06);
}

.related-services__list a:hover .related-services__name,
.related-services__list a:focus-visible .related-services__name {
  color: var(--gold);
}

.site-footer nav a {
  transition: color .2s ease, text-decoration-color .2s ease, text-underline-offset .2s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.site-footer__pagetop {
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .15s ease;
}

.site-footer__pagetop:hover,
.site-footer__pagetop:focus-visible {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.site-footer__pagetop:active {
  transform: translateY(0);
}

.login-panel {
  position: relative;
  justify-self: end;
  width: clamp(292px, 25vw, 334px);
  padding: 26px 24px 20px;
  --login-panel-bg: rgba(244, 237, 226, 0.4);
  --login-panel-border: rgba(255, 255, 255, 0.32);
  --login-panel-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  --login-panel-text: var(--white);
  --login-panel-muted: rgba(255, 255, 255, 0.72);
  --login-panel-soft: rgba(255, 255, 255, 0.82);
  --login-panel-accent: #ddc190;
  --login-panel-input-bg: rgba(2, 17, 32, 0.42);
  --login-panel-input-border: rgba(255, 255, 255, 0.55);
  --login-panel-input-text: var(--white);
  --login-panel-placeholder: rgba(255, 255, 255, 0.92);
  --login-panel-button-bg: #062445;
  --login-panel-button-text: var(--white);
  --login-panel-google-bg: rgba(255, 255, 255, 0.07);
  --login-panel-google-border: rgba(255, 255, 255, 0.28);
  --login-panel-google-text: var(--white);
  --login-panel-divider: rgba(255, 255, 255, 0.25);
  --login-panel-list-bg: rgba(2, 17, 32, 0.92);
  --login-panel-list-border: rgba(255, 255, 255, 0.22);
  border: 1px solid var(--login-panel-border);
  border-radius: 0.875rem;
  background: var(--login-panel-bg);
  box-shadow: var(--login-panel-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: translateY(40px);
}

#before-login[data-login-panel-theme="a1"] .login-panel {
  --login-panel-bg: linear-gradient(160deg, rgba(2, 18, 36, 0.9), rgba(3, 31, 61, 0.76));
  --login-panel-border: rgba(128, 177, 228, 0.34);
  --login-panel-shadow: 0 22px 58px rgba(0, 13, 30, 0.42);
  --login-panel-accent: #b9d8ff;
  --login-panel-input-bg: rgba(255, 255, 255, 0.08);
  --login-panel-input-border: rgba(185, 216, 255, 0.34);
  --login-panel-button-bg: #0b5bcc;
  --login-panel-google-bg: rgba(255, 255, 255, 0.09);
  --login-panel-google-border: rgba(185, 216, 255, 0.25);
  --login-panel-list-bg: rgba(2, 18, 36, 0.94);
}

#before-login[data-login-panel-theme="e1"] .login-panel {
  --login-panel-bg: linear-gradient(160deg, rgba(250, 244, 232, 0.86), rgba(224, 207, 178, 0.58));
  --login-panel-border: rgba(255, 255, 255, 0.74);
  --login-panel-shadow: 0 22px 58px rgba(30, 20, 8, 0.24);
  --login-panel-text: #10213a;
  --login-panel-muted: rgba(16, 33, 58, 0.72);
  --login-panel-soft: rgba(16, 33, 58, 0.82);
  --login-panel-accent: #8b6a37;
  --login-panel-input-bg: rgba(255, 255, 255, 0.64);
  --login-panel-input-border: rgba(16, 33, 58, 0.2);
  --login-panel-input-text: #10213a;
  --login-panel-placeholder: rgba(16, 33, 58, 0.68);
  --login-panel-button-bg: #0b4ca3;
  --login-panel-google-bg: rgba(255, 255, 255, 0.56);
  --login-panel-google-border: rgba(16, 33, 58, 0.18);
  --login-panel-google-text: #10213a;
  --login-panel-divider: rgba(16, 33, 58, 0.18);
  --login-panel-list-bg: rgba(250, 244, 232, 0.96);
  --login-panel-list-border: rgba(16, 33, 58, 0.16);
}

#before-login[data-login-panel-theme="d1"] .login-panel {
  --login-panel-bg: linear-gradient(160deg, rgba(28, 31, 36, 0.9), rgba(53, 55, 59, 0.74));
  --login-panel-border: rgba(221, 193, 144, 0.32);
  --login-panel-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
  --login-panel-accent: #ddc190;
  --login-panel-input-bg: rgba(255, 255, 255, 0.1);
  --login-panel-input-border: rgba(255, 255, 255, 0.3);
  --login-panel-button-bg: #082d5a;
  --login-panel-google-bg: rgba(255, 255, 255, 0.08);
  --login-panel-google-border: rgba(255, 255, 255, 0.22);
  --login-panel-list-bg: rgba(28, 31, 36, 0.94);
}

#before-login[data-login-panel-theme="e2"] .login-panel {
  --login-panel-bg: linear-gradient(160deg, rgba(255, 253, 247, 0.9), rgba(239, 229, 207, 0.66));
  --login-panel-border: rgba(211, 185, 137, 0.48);
  --login-panel-shadow: 0 22px 58px rgba(23, 24, 28, 0.22);
  --login-panel-text: #07182d;
  --login-panel-muted: rgba(7, 24, 45, 0.7);
  --login-panel-soft: rgba(7, 24, 45, 0.82);
  --login-panel-accent: #9c7435;
  --login-panel-input-bg: rgba(255, 255, 255, 0.74);
  --login-panel-input-border: rgba(7, 24, 45, 0.18);
  --login-panel-input-text: #07182d;
  --login-panel-placeholder: rgba(7, 24, 45, 0.66);
  --login-panel-button-bg: #073b7a;
  --login-panel-google-bg: rgba(255, 255, 255, 0.68);
  --login-panel-google-border: rgba(7, 24, 45, 0.16);
  --login-panel-google-text: #07182d;
  --login-panel-divider: rgba(7, 24, 45, 0.16);
  --login-panel-list-bg: rgba(255, 253, 247, 0.98);
  --login-panel-list-border: rgba(7, 24, 45, 0.14);
}

#before-login[data-login-panel-theme="g6"] .login-panel {
  --login-panel-bg:
    linear-gradient(rgba(30, 32, 39, 0.86), rgba(30, 32, 39, 0.86)) padding-box,
    linear-gradient(120deg, rgba(190, 27, 174, 0.72), rgba(42, 77, 196, 0.78)) border-box;
  --login-panel-border: transparent;
  --login-panel-shadow: 0 24px 64px rgba(6, 9, 18, 0.48);
  --login-panel-accent: #d8b8ff;
  --login-panel-input-bg: rgba(255, 255, 255, 0.09);
  --login-panel-input-border: rgba(255, 255, 255, 0.28);
  --login-panel-button-bg: linear-gradient(90deg, #c217a9 0%, #2b4fc4 100%);
  --login-panel-google-bg: rgba(255, 255, 255, 0.08);
  --login-panel-google-border: rgba(255, 255, 255, 0.24);
  --login-panel-divider: rgba(255, 255, 255, 0.22);
  --login-panel-list-bg: rgba(30, 32, 39, 0.96);
  --login-panel-list-border: rgba(216, 184, 255, 0.2);
}

.login-panel__eyebrow {
  margin: 0 0 8px;
  color: var(--login-panel-accent);
  font-family: var(--latin);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.form-container__title {
  margin: 0 0 18px;
  color: var(--login-panel-text, var(--white));
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 9px;
}

.login-panel #login-form .form-group__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.modal__content .form-group__label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-group__input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--login-panel-input-border, rgba(255, 255, 255, 0.55));
  border-radius: 0.5rem;
  color: var(--login-panel-input-text, var(--white));
  background: var(--login-panel-input-bg, rgba(2, 17, 32, 0.42));
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group__input:focus,
.form-group__input:focus-visible {
  border-color: var(--login-panel-accent, var(--gold));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--login-panel-accent, var(--gold)) 22%, transparent);
}

.form-group__input::placeholder {
  color: var(--login-panel-placeholder, rgba(255, 255, 255, 0.92));
  opacity: 1;
}

.password-field {
  position: relative;
}

.password-field .form-group__input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--login-panel-muted, rgba(255, 255, 255, 0.72));
  background: transparent;
  cursor: pointer;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle[aria-pressed="true"] .password-toggle__slash {
  display: none;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--login-panel-text, var(--white));
}

.form-group__input[aria-invalid="true"],
.form-options__checkbox-input[aria-invalid="true"] {
  border-color: var(--error);
}

.form-group__error-message,
.form-group__password-hint {
  min-height: 1.3em;
  margin-top: 4px;
  color: #ffb4a8;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
}

.login-panel #login-form .form-group__error-message:empty {
  display: none;
}

.form-check {
  margin: 2px 0 10px;
}

.form-check + .form-check {
  margin-top: 8px;
}

.form-check__label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--login-panel-text, rgba(255, 255, 255, 0.95));
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-check a,
.sub-links a {
  color: inherit;
  text-underline-offset: 3px;
}

.form-options__checkbox-input {
  flex: 0 0 auto;
  margin-top: 4px;
}

.form-toggle {
  display: flex;
  justify-content: flex-start;
  margin: 4px 0 14px;
}

.form-toggle__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--login-panel-soft, rgba(255, 255, 255, 0.8));
  font-size: 0.78rem;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.form-toggle__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.form-toggle__track {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--login-panel-text, #ffffff) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--login-panel-text, #ffffff) 34%, transparent);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.form-toggle__thumb {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
  transition: left 0.2s ease, background-color 0.2s ease;
}

.form-toggle__input:checked ~ .form-toggle__track {
  background: var(--login-panel-accent, rgba(255, 255, 255, 0.9));
  border-color: var(--login-panel-accent, rgba(255, 255, 255, 0.95));
}

.form-toggle__input:checked ~ .form-toggle__track .form-toggle__thumb {
  left: 16px;
  background: var(--ink);
}

.form-toggle__input:focus-visible ~ .form-toggle__track {
  outline: 3px solid #74c7ff;
  outline-offset: 3px;
}

.login-panel__forgot {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: var(--login-panel-muted, rgba(255, 255, 255, 0.72));
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease, text-underline-offset .2s ease;
}

.login-panel__forgot:hover,
.login-panel__forgot:focus-visible {
  color: var(--login-panel-text, var(--white));
  text-underline-offset: 4px;
}

.button {
  position: relative;
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.button--filled {
  background: var(--login-panel-button-bg, #062445);
  color: var(--login-panel-button-text, var(--white));
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.button--filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(2, 17, 32, .55);
}

.button--filled:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px -6px rgba(2, 17, 32, .45);
}

.button--google {
  border-color: var(--login-panel-google-border, rgba(255, 255, 255, 0.28));
  color: var(--login-panel-google-text, var(--white));
  background: var(--login-panel-google-bg, rgba(255, 255, 255, 0.07));
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.button--google:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(2, 17, 32, .35);
}

.button--google:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px -6px rgba(2, 17, 32, .3);
}

.button--google__logo {
  position: absolute;
  left: 18px;
  width: 20px;
  height: 20px;
}

.login-panel__google-button {
  margin-top: 10px;
}

.login-panel__signup-button {
  border-color: color-mix(in srgb, var(--login-panel-text, #07182d) 16%, transparent);
  color: var(--login-panel-text, #07182d);
  background: color-mix(in srgb, var(--white, #ffffff) 72%, transparent);
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.login-panel__signup-button:hover,
.login-panel__signup-button:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--login-panel-accent, #9c7435) 42%, transparent);
  background: color-mix(in srgb, var(--white, #ffffff) 88%, transparent);
  box-shadow: 0 10px 24px -14px rgba(2, 17, 32, .32);
}

.login-panel__signup-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px -6px rgba(2, 17, 32, .24);
}

.button__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.button.is-loading .button__spinner {
  display: inline-block;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
  color: var(--login-panel-muted, rgba(255, 255, 255, 0.7));
  font-size: 0.78rem;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--login-panel-divider, rgba(255, 255, 255, 0.25));
}

.scenario-accounts {
  position: relative;
  margin-top: 12px;
  color: var(--login-panel-soft, rgba(255, 255, 255, 0.82));
  font-size: 0.8rem;
  z-index: 4;
}

.scenario-accounts__title {
  cursor: pointer;
  text-align: right;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.scenario-accounts__title::-webkit-details-marker {
  display: none;
}

.scenario-accounts__list {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: min(248px, 100%);
  display: grid;
  gap: 8px;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--login-panel-list-border, rgba(255, 255, 255, 0.22));
  background: var(--login-panel-list-bg, rgba(2, 17, 32, 0.92));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  list-style: none;
}

.scenario-accounts__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--login-panel-text, var(--white));
  text-decoration: none;
}

.scenario-accounts__link:hover,
.scenario-accounts__link:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

.scenario-accounts__badge {
  color: var(--login-panel-accent, #ddc190);
}

.public-news-section {
  padding: 12px 0 60px;
  background: linear-gradient(180deg, #fffefb 0%, var(--white) 100%);
}

.public-news-section[hidden] {
  display: none !important;
}

@media (min-width: 1101px) {
  /* ログイン前LP: 各ブロックを1ビューポート単位で表示（フルHD 1920x1080想定） */
  /* スクロール吸い寄せ（中: proximity＝自由スクロールを保ちつつ各ページに緩く吸着） */
  html {
    scroll-snap-type: y proximity;
  }

  .lp-page {
    scroll-snap-align: start;
  }

  /* 1枚目: ヒーロー ＋ お知らせ */
  .lp-page--first {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .lp-page--first .hero {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
  }

  .lp-page--first .hero__inner {
    min-height: 0;
    padding-top: 84px;
    padding-bottom: 60px;
  }

  .lp-page--first .public-news-section {
    flex: 0 0 auto;
    padding-top: 10px;
    padding-bottom: 22px;
  }

  /* 2枚目: SPEED ADでできること ＋ 展示会の流れ（上下2バンドで1画面） */
  .lp-page--duo {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .lp-page--duo .features-section {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lp-page--duo .flow-section {
    flex: 1 1 0;
    align-content: center;
  }

  /* 3枚目: 選ばれる理由（セクション自体を画面いっぱいに伸ばし、中身を中央寄せ） */
  .lp-page--solo {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .lp-page--solo .capabilities-section {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* 4枚目: 導入事例（100vh + 約1cm 下方向に余裕を持たせる） */
  .lp-page--voice .voice-teaser-section {
    min-height: calc(100vh + 38px);
  }
}

.public-news-bar {
  width: min(1260px, calc(100% - 112px));
  min-height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 106px;
  gap: 16px;
  align-items: center;
  padding: 4px clamp(24px, 4vw, 36px) 4px;
}

.public-news-bar__heading {
  display: flex;
  align-items: center;
  padding-right: 18px;
}

.public-news-bar__eyebrow {
  margin: 0;
  color: #9d7d51;
  font-family: var(--latin);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.46em;
}

.public-news-bar h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.public-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.public-news-item {
  display: block;
  min-height: 44px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.public-news-item time {
  display: block;
  margin-bottom: 2px;
  font-family: var(--latin);
  font-size: 0.76rem;
  font-weight: 700;
}

.public-news-item strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
  line-break: strict;
  overflow-wrap: anywhere;
  text-wrap: balance;
  word-break: keep-all;
}

.public-news-item p {
  display: none;
}

.public-news-bar__link {
  min-height: 42px;
  color: var(--ink);
  font-size: 0.84rem;
  justify-self: end;
}

.section-block {
  padding: clamp(70px, 8vw, 118px) clamp(28px, 5vw, 72px);
}

.features-section {
  padding-top: clamp(48px, 4.8vw, 66px);
  padding-bottom: clamp(48px, 4.8vw, 66px);
  background: linear-gradient(180deg, #fcfaf5 0%, #f7f2ea 100%);
}

.capabilities-section {
  padding-top: clamp(46px, 4.2vw, 64px);
  padding-bottom: clamp(46px, 4.2vw, 64px);
  background: linear-gradient(180deg, #fcfaf5 0%, #f4efe6 100%);
}

.flow-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 860px);
  gap: clamp(28px, 3.4vw, 44px);
  align-items: start;
  justify-content: center;
  padding-top: clamp(44px, 4.8vw, 58px);
  padding-bottom: clamp(44px, 4.8vw, 58px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(36px, 6vw, 90px);
}

.section-grid--intro {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(42px, 5.2vw, 68px);
}

.section-grid--capabilities {
  display: block;
  width: min(1180px, 100%);
}

.section-heading h2,
.related-services__heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.28;
}

.features-section .section-heading h2,
.flow-section .section-heading h2,
.capabilities-section .section-heading h2 {
  font-size: clamp(2rem, 3.1vw, 2.55rem);
  line-break: strict;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: keep-all;
}

.flow-section .section-heading h2 {
  font-size: clamp(1.95rem, 2.5vw, 2.25rem);
}

.flow-section .section-heading h2 span {
  display: inline-block;
  white-space: nowrap;
}

.capabilities-section .section-heading h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.12rem);
  text-align: left;
}

.capabilities-section .section-heading {
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(110, 100, 87, 0.24);
  text-align: left;
}

.section-heading p:not(.section-kicker) {
  max-width: 320px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.section-heading .text-link {
  margin-top: 26px;
  min-height: 34px;
  color: var(--ink);
}

.section-heading--center {
  width: auto;
  margin: 0;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 266px;
  padding: 4px 30px 12px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.feature-card:last-child {
  border-right: 1px solid var(--line);
}

.feature-card__number {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 2rem;
  line-height: 1;
}

.feature-card__icon {
  width: 36px;
  height: 36px;
  margin-top: 28px;
  color: #8a949d;
}

.feature-card__icon svg,
.flow-list__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.flow-list h3 {
  margin: 20px 0 12px;
  font-family: var(--sans);
  font-size: 1.28rem;
  font-weight: 600;
  line-break: strict;
  overflow-wrap: normal;
  word-break: keep-all;
}

.feature-card p,
.flow-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.78;
  line-break: strict;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.status-badge {
  display: inline-flex;
  margin-top: auto;
  padding: 3px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--latin);
  font-size: 0.72rem;
  font-weight: 600;
  align-self: flex-start;
}

.flow-list {
  width: min(860px, 100%);
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.flow-list li {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 78px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  border-top: 1px solid rgba(110, 100, 87, 0.35);
}

.flow-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 75px;
  right: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy);
  z-index: 1;
}

.flow-list__number {
  display: block;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 1.22rem;
  color: var(--ink-soft);
}

.flow-list__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #0b2b52;
  font-family: var(--latin);
  font-weight: 700;
  box-shadow: 0 0 0 9px rgba(11, 43, 82, 0.04);
}

.flow-list__icon svg {
  width: 43%;
  height: 43%;
}

.flow-list h3 {
  margin: 16px 0 8px;
}

.flow-list p {
  max-width: 210px;
  margin: 0 auto;
  font-size: 0.84rem;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: transparent;
}

.capability-item {
  min-height: 158px;
  padding: 24px 24px 22px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 16px;
  align-items: start;
  border-right: 1px solid rgba(110, 100, 87, 0.18);
  border-bottom: 1px solid rgba(110, 100, 87, 0.18);
  color: var(--ink);
}

.capability-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.capability-item:nth-child(3n) {
  border-right: 0;
}

.capability-item__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid rgba(111, 124, 135, 0.26);
  border-radius: 50%;
  color: #6f7c87;
  background: rgba(255, 255, 255, 0.56);
}

.capability-item__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-item__number {
  flex: 0 0 auto;
  min-width: 26px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.55;
}

.capability-item__body {
  min-width: 0;
}

.capability-item__heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.capability-item h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 700;
  line-break: strict;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

.capability-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.81rem;
  font-weight: 600;
  line-break: strict;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.capability-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  margin-top: 12px;
  color: #0b2b52;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(11, 43, 82, 0.28);
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease, text-underline-offset .2s ease;
}

.capability-item__link:hover,
.capability-item__link:focus-visible {
  color: var(--gold);
  text-decoration-color: currentColor;
  text-underline-offset: 5px;
}

.voice-teaser-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 72px) clamp(40px, 4.5vw, 72px);
  color: var(--white);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(2, 17, 32, 0.78) 0%, rgba(2, 17, 32, 0.62) 50%, rgba(2, 17, 32, 0.84) 100%),
    url("../img/login-front-voice-bg.png") center / cover no-repeat;
}

.voice-teaser-wrap {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
}

.voice-teaser__intro {
  display: block;
}

.voice-teaser__description,
.voice-teaser__status {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.9;
}

.voice-teaser__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2rem, 3.1vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: 0;
  margin: 0;
}

.voice-teaser__status {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.voice-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 14px;
  margin-top: 0;
}

.voice-teaser-card {
  --voice-accent: #f3e2c1;
  --voice-accent-strong: var(--voice-accent);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.875rem;
  background: var(--navy-deep);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.voice-teaser-card:hover {
  transform: translateY(-4px);
  background: #062035;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.voice-teaser-card:focus-visible {
  background: #062035;
  outline-offset: 6px;
}

.voice-teaser-card__stripe {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--voice-accent), var(--voice-accent-strong));
}

.voice-teaser-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.voice-teaser-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.voice-teaser-card__media.is-image-unavailable img {
  display: none;
}

.voice-teaser-card__image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(9, 24, 42, 0.92), rgba(20, 41, 61, 0.84)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 12px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.voice-teaser-card__image-fallback[hidden] {
  display: none;
}

.voice-teaser-card:hover .voice-teaser-card__media img {
  transform: scale(1.05);
}

.voice-teaser-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 1.6vw, 28px) clamp(22px, 1.8vw, 30px) clamp(22px, 1.8vw, 28px);
  flex: 1 1 auto;
}

.voice-teaser-card__pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  background: color-mix(in oklab, var(--voice-accent) 22%, transparent);
  border: 1px solid color-mix(in oklab, var(--voice-accent) 50%, transparent);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.voice-teaser-card__title {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  text-wrap: balance;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: anywhere;
}

.voice-teaser-card__quote {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.85;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-teaser-card__chips {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.voice-teaser-card__chips li {
  padding: 5px 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.voice-teaser-card__descriptor {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.voice-teaser-card__author {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.6;
}

.voice-teaser-card__more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  color: var(--voice-accent, rgba(255, 255, 255, 0.92));
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid color-mix(in oklab, var(--voice-accent, #fff) 70%, transparent);
}

.voice-teaser-card__more span[aria-hidden] {
  transition: transform 0.25s ease;
}

.voice-teaser-card:hover .voice-teaser-card__more span[aria-hidden] {
  transform: translateX(4px);
}

.voice-teaser-card--skeleton {
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.voice-teaser-card__media--skeleton {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.04) 8%, rgba(255, 255, 255, 0.1) 18%, rgba(255, 255, 255, 0.04) 33%);
  background-size: 200% 100%;
  animation: voice-skeleton-shimmer 1.4s linear infinite;
}

.voice-teaser-card__skeleton-line {
  height: 0.78rem;
  border-radius: 4px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 8%, rgba(255, 255, 255, 0.12) 18%, rgba(255, 255, 255, 0.05) 33%);
  background-size: 200% 100%;
  animation: voice-skeleton-shimmer 1.4s linear infinite;
}

.voice-teaser-card__skeleton-line--short {
  width: 30%;
  height: 1.4rem;
}

.voice-teaser-card__skeleton-line--medium {
  width: 60%;
}

@keyframes voice-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .voice-teaser-card__media--skeleton,
  .voice-teaser-card__skeleton-line {
    animation: none;
  }
}

.voice-teaser__empty {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.voice-teaser__inline-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.voice-teaser__inline-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.voice-teaser__link {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: end;
  margin-top: 24px;
  color: var(--white);
  border-bottom: 1px solid currentColor;
}

.related-services {
  display: grid;
  grid-template-columns: minmax(190px, 220px) minmax(0, 920px);
  gap: 28px;
  justify-content: center;
  padding: 24px clamp(28px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-services__heading h2 {
  margin-top: 4px;
  font-size: 1.45rem;
  line-height: 1.6;
}

.related-services__lead {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.7;
}

.related-services__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.related-services__list a {
  min-height: 66px;
  position: relative;
  padding: 0 24px 0 16px;
  border-left: 1px solid rgba(216, 213, 206, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.related-services__list a:last-child {
  border-right: 1px solid var(--line);
}

.related-services__list span {
  display: block;
  font-size: 0.74rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.related-services__name {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: keep-all;
}

.related-services__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.final-cta {
  display: grid;
  place-items: center;
  padding: 18px 28px 16px;
  min-height: 140px;
  color: var(--white);
  background: linear-gradient(180deg, #08203d 0%, #031120 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.final-cta h2 {
  max-width: none;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.35;
}

.final-cta .cta-button {
  min-width: 248px;
  min-height: 52px;
  padding: 0 22px;
  gap: 14px;
}

.site-footer {
  position: relative;
  min-height: 42px;
  display: grid;
  /* フッターリンクが1件増えても1行内で収まりやすいよう、中央ナビ領域を広げる。 */
  grid-template-columns: minmax(280px, 340px) minmax(0, 760px) 34px;
  gap: clamp(14px, 2vw, 36px);
  align-items: center;
  justify-content: center;
  padding: 5px clamp(32px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__identity {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-footer__brand {
  color: var(--white);
  font-size: 1.05rem;
  white-space: nowrap;
}

.site-footer p {
  margin: 0;
  font-size: 0.68rem;
  opacity: 0.78;
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
}

.site-footer nav a {
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.site-footer nav a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.site-footer__pagetop {
  justify-self: end;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 17, 32, 0.72);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal--is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal__content {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border-radius: 0.875rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal__title {
  margin: 0 0 24px;
  font-family: var(--sans);
  font-size: 1.7rem;
}

.modal__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
}

.modal__content .form-group__label,
.modal__content .form-check__label,
.modal__content .sub-links {
  color: var(--ink);
}

.modal__content .form-group__input {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.modal__content .form-group__error-message,
.modal__content .form-group__password-hint {
  color: var(--error);
}

.modal__content .divider {
  color: var(--ink-soft);
}

.modal__content .divider::before,
.modal__content .divider::after {
  background: var(--line);
}

.modal__content .button--google {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.sub-links {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    width: min(100% - 56px, 1280px);
    padding-top: 110px;
  }

  .hero__copy,
  .login-panel {
    transform: none;
  }

  .login-panel {
    max-width: 560px;
    width: 100%;
    justify-self: start;
  }

  .scenario-accounts {
    position: relative;
    margin-top: 14px;
  }
}

@media (max-width: 1100px) {
  .public-news-bar,
  .section-grid--intro,
  .section-grid--capabilities,
  .flow-section,
  .voice-teaser-wrap,
  .voice-teaser__intro,
  .related-services {
    grid-template-columns: 1fr;
  }

  .voice-teaser-section {
    min-height: 0;
    padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
    display: block;
  }

  .voice-teaser__grid,
  .voice-teaser__link {
    grid-column: auto;
    grid-row: auto;
  }

  .voice-teaser__grid {
    margin-top: 28px;
  }

  .voice-teaser__link {
    margin-top: 28px;
    justify-self: start;
    align-self: auto;
  }

  .public-news-list,
  .feature-cards,
  .related-services__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .flow-list li:nth-child(2n)::after,
  .flow-list li:nth-child(2n)::before {
    display: none;
  }

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

  .capability-item:nth-child(3n) {
    border-right: 1px solid rgba(110, 100, 87, 0.18);
  }

  .capability-item:nth-child(2n) {
    border-right: 0;
  }

  .capability-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(110, 100, 87, 0.18);
  }

  .capability-item:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .capability-item:nth-child(9) {
    grid-column: 1 / -1;
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .voice-teaser__grid {
    grid-template-columns: 1fr;
  }
  .voice-teaser-card__quote {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

@media (max-width: 960px) {
  .site-top-header__hamburger {
    display: inline-flex;
  }

  .site-top-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px clamp(22px, 4.5vw, 68px) 20px;
    background: rgba(2, 17, 32, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  }

  .site-top-header__hamburger[aria-expanded="true"] ~ .site-top-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-top-header__nav-link {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  .site-top-header__nav .site-top-header__cta {
    margin-top: 16px;
    align-self: flex-start;
  }
}

@media (max-width: 760px) {
  .hero__inner,
  .public-news-bar {
    width: min(100% - 36px, 1280px);
  }

  .hero__inner {
    padding-bottom: 48px;
  }

  .site-top-header {
    height: 56px;
  }

  .site-top-header__brand-name {
    font-size: 1.05rem;
  }

  .site-top-header__logo {
    width: 48px;
    height: 42px;
  }

  .site-top-header__cta {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: var(--hero-brand-size, clamp(3.36rem, 15.4vw, 4.9rem));
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button,
  .text-link {
    width: 100%;
  }

  .cta-button--light {
    min-width: 0;
    width: 100%;
  }

  .voice-teaser__status {
    justify-self: start;
  }

  .public-news-list,
  .feature-cards,
  .flow-list,
  .capability-list,
  .voice-teaser__grid,
  .related-services__list {
    grid-template-columns: 1fr;
  }

  .capability-item,
  .capability-item:nth-child(2n),
  .capability-item:nth-child(3n) {
    border-right: 0;
  }

  .capability-item:nth-child(9) {
    grid-column: auto;
  }

  .capability-item {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0 13px;
    padding: 21px 18px;
    border-bottom: 1px solid rgba(110, 100, 87, 0.18);
  }

  .capability-item:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .capability-item__icon {
    width: 34px;
    height: 34px;
  }

  .capability-item__icon svg {
    width: 20px;
    height: 20px;
  }

  .capability-item__heading {
    gap: 9px;
  }

  .capability-item h3 {
    font-size: 0.96rem;
  }

  .voice-teaser-card__body {
    padding: 18px 20px 22px;
  }

  .public-news-bar {
    gap: 18px;
  }

  .public-news-bar__heading,
  .public-news-item,
  .feature-card,
  .feature-card:last-child,
  .related-services__list a,
  .related-services__list a:last-child {
    border-right: 0;
  }

  .public-news-bar__heading,
  .feature-card,
  .related-services__list a {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
  }

  .feature-cards {
    border-left: 0;
  }

  .public-news-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-list {
    gap: 34px;
  }

  .flow-list li:not(:last-child)::after,
  .flow-list li:not(:last-child)::before {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 10px 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-footer__identity {
    gap: 12px;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 0;
  }

  .site-footer nav a {
    padding: 0 10px;
  }

  .site-footer nav a:first-child {
    padding-left: 0;
  }

  .site-footer__pagetop {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: var(--hero-brand-size, 2.94rem);
  }

  .login-panel,
  .modal__content {
    padding: 22px;
  }

  .section-block,
  .voice-teaser-section,
  .related-services {
    padding-left: 20px;
    padding-right: 20px;
  }

  .voice-teaser__intro {
    gap: 20px;
  }

  .related-services {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer__identity {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .site-footer__brand-mark {
    width: 26px;
    height: 22px;
  }

  .site-footer nav a {
    padding: 0 8px;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .voice-teaser-card,
  .voice-teaser-card__media img,
  .voice-teaser-card__more span {
    transition: none !important;
  }
  .voice-teaser-card:hover,
  .voice-teaser-card:focus-visible {
    transform: none !important;
  }
  .voice-teaser-card:hover .voice-teaser-card__media img {
    transform: none !important;
  }
}
