:root {
  --ask-navy: #173f6f;
  --ask-navy-deep: #0c2d50;
  --ask-blue: #0b6f9f;
  --ask-blue-bright: #1aa8df;
  --ask-aqua: #eaf7fb;
  --ask-sky: #d9f0f8;
  --ask-ink: #172532;
  --ask-muted: #5d6b76;
  --ask-line: #dce5e8;
  --ask-mist: #f4f7f8;
  --ask-white: #fff;
  --ask-alert: #c64232;
  --ask-alert-deep: #9e2c22;
  --ask-success: #1f7566;
  --ask-line-green: #06c755;
  --ask-line-green-deep: #049d44;
  --ask-recruit: #0e76ba;
  --ask-tiktok: #111;
  --ask-radius-sm: 10px;
  --ask-radius: 20px;
  --ask-radius-lg: 34px;
  --ask-shadow: 0 22px 60px rgba(23, 63, 111, 0.12);
  --ask-shell: min(1160px, calc(100vw - 48px));
  --ask-font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ask-ink);
  background: var(--ask-white);
  font-family: var(--ask-font);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: var(--ask-navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ask-blue);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1.25em;
}

.screen-reader-text,
.skip-link:not(:focus) {
  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:focus {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ask-white);
  background: var(--ask-navy);
}

.shell {
  width: var(--ask-shell);
  margin-inline: auto;
}

.narrow {
  width: min(800px, calc(100vw - 48px));
  margin-inline: auto;
}

.utility-bar {
  color: #dcecf7;
  background: var(--ask-navy-deep);
  font-size: 12px;
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
  align-items: center;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  margin-left: 18px;
  color: var(--ask-white);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 229, 232, 0.86);
  transition: box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(23, 63, 111, 0.09);
}

.site-header__inner {
  display: flex;
  width: min(1440px, calc(100vw - 48px));
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  display: block;
  width: 150px;
  flex: 0 0 auto;
}

.site-brand img,
.site-brand .custom-logo {
  width: 150px;
  height: auto;
}

.primary-navigation {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.primary-navigation .menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation .menu a {
  color: var(--ask-ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.primary-navigation .menu a:hover,
.primary-navigation .current-menu-item > a {
  color: var(--ask-blue);
}

.primary-navigation__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.primary-navigation__actions .button {
  min-height: 42px;
  padding: 9px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.primary-navigation__subaction {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--ask-line);
  border-radius: 50%;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ask-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 22px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ask-white);
  background: var(--ask-navy);
  border: 1px solid var(--ask-navy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  color: var(--ask-white);
  background: var(--ask-blue);
  border-color: var(--ask-blue);
  transform: translateY(-2px);
}

.button--outline {
  color: var(--ask-navy);
  background: var(--ask-white);
}

.button--emergency {
  background: var(--ask-alert);
  border-color: var(--ask-alert);
}

.button--emergency:hover {
  background: var(--ask-alert-deep);
  border-color: var(--ask-alert-deep);
}

.button--recruit {
  color: var(--ask-white);
  background: var(--ask-recruit);
  border-color: var(--ask-recruit);
}

.button--recruit:hover {
  color: var(--ask-white);
  background: var(--ask-navy-deep);
  border-color: var(--ask-navy-deep);
}

.button--line {
  color: #082b18;
  background: var(--ask-line-green);
  border-color: var(--ask-line-green);
}

.button--line:hover {
  color: #061d10;
  background: var(--ask-line-green-deep);
  border-color: var(--ask-line-green-deep);
}

.button--tiktok {
  position: relative;
  color: var(--ask-white);
  background: var(--ask-tiktok);
  border-color: var(--ask-tiktok);
  box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.9), 3px -3px 0 rgba(254, 44, 85, 0.78);
}

.button--tiktok:hover {
  color: var(--ask-white);
  background: #303030;
  border-color: #303030;
  box-shadow: -3px 3px 0 rgba(37, 244, 238, 0.9), 3px -3px 0 rgba(254, 44, 85, 0.78);
}

.button--header-social {
  min-width: 72px;
}

.button--tiktok-large {
  min-width: 230px;
  min-height: 62px;
  padding: 12px 24px;
  justify-content: flex-start;
  font-size: 16px;
}

.button--tiktok-large > span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  background: #232323;
  border-radius: 50%;
  font-size: 20px;
}

.button--tiktok-large > span:last-child {
  display: grid;
  line-height: 1.3;
  text-align: left;
}

.button--tiktok-large small {
  color: #cdd8dc;
  font-size: 11px;
  font-weight: 600;
}

.button--light {
  color: var(--ask-navy);
  background: var(--ask-white);
  border-color: var(--ask-white);
}

.button--light:hover {
  color: var(--ask-navy);
  background: var(--ask-aqua);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--ask-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section--soft {
  background: var(--ask-mist);
}

.section--aqua {
  background: var(--ask-aqua);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
}

.section-head > p {
  margin: 0;
  color: var(--ask-muted);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 118px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ask-aqua);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 39, 69, 0.9) 0%, rgba(9, 39, 69, 0.75) 38%, rgba(9, 39, 69, 0.08) 72%),
    linear-gradient(0deg, rgba(9, 39, 69, 0.28), transparent 45%);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 80px;
}

.hero__content {
  max-width: 720px;
  color: var(--ask-white);
}

.hero .eyebrow {
  color: #8bdbf5;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(39px, 5.6vw, 68px);
  line-height: 1.25;
  letter-spacing: 0.035em;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 32px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin-top: 32px;
  color: #d6e9f2;
  font-size: 13px;
}

.hero__note a {
  color: var(--ask-white);
}

.recruit-priority-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.recruit-priority-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 30px;
  color: var(--ask-white);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
    var(--ask-recruit);
  border-radius: var(--ask-radius);
  box-shadow: 0 18px 40px rgba(14, 118, 186, 0.26);
}

.recruit-priority-strip__inner p {
  margin: 0;
}

.recruit-priority-strip__inner strong {
  display: block;
  font-size: 20px;
}

.emergency-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.emergency-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 30px;
  color: var(--ask-white);
  background: var(--ask-alert);
  border-radius: var(--ask-radius);
  box-shadow: 0 18px 40px rgba(142, 38, 29, 0.28);
}

.emergency-strip__inner p {
  margin: 0;
}

.emergency-strip__inner strong {
  display: block;
  font-size: 20px;
}

.news-strip {
  padding: 84px 0 40px;
}

.news-strip__inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--ask-line);
}

.news-strip h2 {
  margin: 0;
  font-size: 18px;
}

.news-strip article {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.news-strip article time {
  flex: 0 0 auto;
  color: var(--ask-muted);
  font-size: 14px;
}

.news-strip article a {
  color: var(--ask-ink);
  font-weight: 600;
  text-decoration: none;
}

.tiktok-section {
  padding-top: 72px;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 244, 238, 0.1), transparent 26%),
    radial-gradient(circle at 5% 95%, rgba(254, 44, 85, 0.08), transparent 24%),
    var(--ask-mist);
}

.tiktok-profile {
  display: flex;
  max-width: 980px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 34px;
}

.tiktok-profile__account {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tiktok-profile__mark {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ask-white);
  background: var(--ask-tiktok);
  border-radius: 50%;
  box-shadow: -4px 4px 0 #25f4ee, 4px -4px 0 #fe2c55;
  font-size: 34px;
  font-weight: 900;
}

.tiktok-profile h2 {
  margin-bottom: 7px;
  font-size: clamp(30px, 4vw, 48px);
}

.tiktok-profile p {
  margin-bottom: 0;
  color: var(--ask-muted);
}

.tiktok-profile .eyebrow {
  color: #d42147;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin-inline: auto;
}

.tiktok-card {
  min-width: 0;
  overflow: hidden;
  color: var(--ask-ink);
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius);
  box-shadow: 0 18px 46px rgba(23, 63, 111, 0.1);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tiktok-card:hover {
  color: var(--ask-ink);
  box-shadow: 0 24px 56px rgba(23, 63, 111, 0.16);
  transform: translateY(-5px);
}

.tiktok-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  background: #151515;
}

.tiktok-card__visual::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.tiktok-card__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  transition: transform 280ms ease;
}

.tiktok-card:hover .tiktok-card__visual img {
  transform: scale(1.025);
}

.tiktok-card__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  padding-left: 4px;
  place-items: center;
  color: var(--ask-white);
  background: rgba(0, 0, 0, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tiktok-card__label {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 6px 12px;
  color: var(--ask-white);
  background: rgba(0, 0, 0, 0.78);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.tiktok-card__body {
  display: grid;
  gap: 9px;
  padding: 24px;
}

.tiktok-card__body strong {
  color: var(--ask-navy);
  font-size: 20px;
  line-height: 1.5;
}

.tiktok-card__body > span:not(.tiktok-card__link) {
  color: var(--ask-muted);
  font-size: 15px;
}

.tiktok-card__link {
  color: #c9183f;
  font-size: 14px;
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius);
}

.trust-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  content: "";
  background: linear-gradient(135deg, transparent 48%, var(--ask-aqua) 49%);
}

.trust-card__number {
  display: block;
  margin-bottom: 44px;
  color: var(--ask-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-card h3 {
  font-size: 23px;
}

.trust-card p {
  margin: 0;
  color: var(--ask-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 380px;
  display: flex;
  padding: 38px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--ask-white);
  background: var(--ask-navy);
  border-radius: var(--ask-radius);
  text-decoration: none;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 80% 20%, rgba(54, 182, 226, 0.42), transparent 32%),
    linear-gradient(135deg, transparent, rgba(4, 24, 44, 0.5));
}

.service-card > * {
  position: relative;
}

.service-card:hover {
  color: var(--ask-white);
}

.service-card h3 {
  font-size: clamp(27px, 3vw, 40px);
}

.service-card p {
  max-width: 520px;
  margin-bottom: 22px;
  color: #e1eef5;
}

.service-card__link {
  font-weight: 700;
}

.people-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.people-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.people-collage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--ask-radius);
}

.people-collage img:first-child {
  margin-top: 52px;
}

.people-copy h2 {
  font-size: clamp(31px, 4vw, 52px);
}

.people-copy > p:not(.eyebrow) {
  color: var(--ask-muted);
}

.people-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  min-height: 220px;
  padding: 28px;
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius);
}

.flow-list span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--ask-white);
  background: var(--ask-blue);
  border-radius: 50%;
  font-weight: 800;
}

.flow-list h3 {
  font-size: 19px;
}

.flow-list p {
  margin: 0;
  color: var(--ask-muted);
  font-size: 14px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.office-grid--offset {
  margin-top: 24px;
}

.office-card {
  padding: 36px;
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius);
}

.office-card h3 {
  font-size: 24px;
}

.office-card address {
  margin-bottom: 22px;
  color: var(--ask-muted);
  font-style: normal;
}

.office-card__phone {
  display: block;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  text-decoration: none;
}

.minor-emergency {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 20px 24px;
  color: var(--ask-muted);
  background: var(--ask-mist);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius-sm);
  font-size: 13px;
}

.minor-emergency strong {
  color: var(--ask-ink);
  font-size: 15px;
}

.minor-emergency p {
  margin: 2px 0 0;
}

.minor-emergency a {
  flex: 0 0 auto;
  font-weight: 700;
}

.insurers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 880px;
  margin: 40px auto 0;
}

.insurers a {
  display: grid;
  min-height: 130px;
  padding: 24px;
  place-items: center;
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius-sm);
}

.insurers img {
  max-height: 56px;
  width: auto;
}

.page-hero {
  padding: clamp(70px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(20, 142, 203, 0.18), transparent 27%),
    var(--ask-aqua);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(35px, 5vw, 62px);
}

.page-hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ask-muted);
  font-size: 18px;
}

.breadcrumb {
  padding: 16px 0;
  color: var(--ask-muted);
  background: var(--ask-white);
  border-bottom: 1px solid var(--ask-line);
  font-size: 12px;
}

.breadcrumb a {
  text-decoration: none;
}

.entry-content {
  font-size: 17px;
}

.entry-content > * {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  max-width: 1160px;
}

.entry-content h2 {
  margin-top: 2.4em;
  padding-bottom: 0.45em;
  border-bottom: 2px solid var(--ask-blue);
  font-size: clamp(27px, 3vw, 36px);
}

.entry-content h3 {
  margin-top: 2em;
  font-size: 22px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 14px;
  border: 1px solid var(--ask-line);
  text-align: left;
  vertical-align: top;
}

.entry-content th {
  width: 28%;
  background: var(--ask-mist);
}

.policy-note {
  padding: 20px 24px;
  color: #6c4e1f;
  background: #fff7e8;
  border: 1px solid #eed8ad;
  border-radius: var(--ask-radius-sm);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.staff-card {
  overflow: hidden;
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius);
}

.staff-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  object-position: center 25%;
}

.staff-card__body {
  padding: 30px;
}

.staff-card__meta {
  color: var(--ask-blue);
  font-size: 13px;
  font-weight: 700;
}

.staff-card h2 {
  font-size: 25px;
}

.timeline {
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ask-line);
}

.timeline time {
  color: var(--ask-blue);
  font-size: 22px;
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 6px;
}

.timeline p {
  margin: 0;
  color: var(--ask-muted);
}

.emergency-hero {
  padding: clamp(62px, 8vw, 100px) 0;
  color: var(--ask-white);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.12), transparent 30%),
    var(--ask-alert);
}

.emergency-hero .eyebrow {
  color: #ffd8d3;
}

.emergency-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.emergency-hero p {
  max-width: 760px;
  font-size: 18px;
}

.emergency-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.emergency-card {
  padding: 34px;
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius);
  box-shadow: var(--ask-shadow);
}

.emergency-card h2 {
  font-size: 25px;
}

.emergency-card__phone {
  display: block;
  margin: 18px 0;
  color: var(--ask-alert);
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.emergency-note {
  padding: 28px;
  background: #fff7f5;
  border-left: 5px solid var(--ask-alert);
  border-radius: var(--ask-radius-sm);
}

.post-list {
  display: grid;
  gap: 1px;
  background: var(--ask-line);
  border: 1px solid var(--ask-line);
  border-radius: var(--ask-radius);
  overflow: hidden;
}

.post-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  padding: 28px 32px;
  align-items: center;
  color: var(--ask-ink);
  background: var(--ask-white);
  text-decoration: none;
}

.post-card time {
  color: var(--ask-muted);
}

.post-card h2 {
  margin: 0;
  font-size: 18px;
}

.post-card span {
  color: var(--ask-blue);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.contact-aside {
  padding: 30px;
  align-self: start;
  background: var(--ask-aqua);
  border-radius: var(--ask-radius);
}

.contact-aside a {
  font-weight: 700;
}

.form-placeholder {
  padding: 30px;
  background: #fff7e8;
  border: 1px solid #eed8ad;
  border-radius: var(--ask-radius-sm);
}

.wpcf7-form {
  display: grid;
  gap: 24px;
}

.ask-form {
  display: grid;
  gap: 24px;
}

.wpcf7-form label {
  display: block;
  font-weight: 700;
}

.wpcf7-form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.wpcf7-form legend {
  margin-bottom: 8px;
  font-weight: 700;
}

.wpcf7-form .wpcf7-list-item {
  margin: 0 18px 8px 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin-right: 0;
}

.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: -4px;
}

.wpcf7-form input:not([type="checkbox"]):not([type="radio"]),
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  margin-top: 7px;
  color: var(--ask-ink);
  background: var(--ask-white);
  border: 1px solid #aebcc3;
  border-radius: 8px;
}

.wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--ask-blue);
  outline: 3px solid rgba(11, 111, 159, 0.18);
}

.wpcf7-submit {
  min-width: 220px;
  min-height: 56px;
  color: var(--ask-white);
  background: var(--ask-navy);
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.contact-band {
  padding: 70px 0;
  color: var(--ask-white);
  background:
    radial-gradient(circle at 85% 20%, rgba(47, 177, 220, 0.34), transparent 32%),
    var(--ask-navy);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.contact-band .eyebrow {
  color: #8bdbf5;
}

.contact-band h2 {
  font-size: clamp(29px, 4vw, 46px);
}

.contact-band p:last-child {
  margin: 0;
  color: #d9e9f2;
}

.contact-band__actions {
  display: grid;
  gap: 15px;
  min-width: 230px;
}

.contact-band__phone {
  color: var(--ask-white);
  text-decoration: none;
}

.contact-band__phone span,
.contact-band__phone strong {
  display: block;
}

.contact-band__phone strong {
  font-size: 29px;
}

.site-footer {
  padding: 70px 0 24px;
  color: #d8e4eb;
  background: #0a263f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 40px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
  padding: 10px;
  background: var(--ask-white);
  border-radius: 8px;
}

.site-footer h2 {
  color: var(--ask-white);
  font-size: 15px;
}

.site-footer p {
  font-size: 13px;
}

.site-footer a {
  color: var(--ask-white);
}

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

.footer-navigation li + li {
  margin-top: 8px;
}

.footer-navigation a {
  font-size: 13px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0;
}

.mobile-action-bar {
  display: none;
}

.section--navy {
  color: var(--ask-white);
  background: var(--ask-navy);
}

.section--navy .eyebrow {
  color: #83d8f2;
}

.philosophy-summary,
.line-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.philosophy-summary h2,
.line-section h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.35;
}

.philosophy-summary p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.button--on-dark {
  color: var(--ask-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.policy-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--ask-white);
  border-radius: 14px;
}

.policy-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ask-white);
  background: var(--ask-blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.policy-grid p,
.philosophy-copy {
  margin: 0;
}

.company-profile table {
  margin-top: 28px;
}

.split-feature,
.job-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.split-feature--reverse .split-feature__image {
  order: 2;
}

.split-feature__image {
  position: relative;
}

.split-feature__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(23, 63, 111, 0.16);
}

.temporary-image-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  padding: 7px 11px;
  color: var(--ask-white);
  background: rgba(7, 32, 58, 0.78);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.staff-grid--profiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
}

.staff-grid--profiles .staff-card {
  height: 100%;
}

.staff-card__facts {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.staff-card__facts div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}

.staff-card__facts dt {
  color: var(--ask-blue);
  font-size: 12px;
  font-weight: 800;
}

.staff-card__facts dd {
  margin: 0;
}

.staff-card__qa {
  padding-top: 18px;
  border-top: 1px solid var(--ask-line);
}

.staff-card__qa h3 {
  margin: 22px 0 6px;
  color: var(--ask-navy);
  font-size: 15px;
}

.policy-content h2 {
  margin-top: 60px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin-top: 36px;
}

.policy-content li + li {
  margin-top: 10px;
}

.contact-summary,
.job-entry-panel {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--ask-aqua);
  border-radius: 18px;
}

.fd-date {
  display: inline-flex;
  margin: 32px 0 18px;
  padding: 8px 15px;
  color: var(--ask-navy);
  background: var(--ask-aqua);
  border-radius: 999px;
  font-weight: 800;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 56px;
}

.kpi-grid article {
  padding: 26px;
  border: 1px solid var(--ask-line);
  border-radius: 16px;
}

.kpi-grid article > p {
  min-height: 54px;
  margin-top: 0;
  color: var(--ask-navy);
  font-weight: 800;
}

.kpi-grid dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.kpi-grid dl div {
  padding: 12px;
  background: var(--ask-mist);
  border-radius: 10px;
}

.kpi-grid dt {
  color: var(--ask-muted);
  font-size: 11px;
  font-weight: 700;
}

.kpi-grid dd {
  margin: 3px 0 0;
  color: var(--ask-navy);
  font-size: 22px;
  font-weight: 900;
}

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

.kpi-detail-list article {
  padding: 26px;
  background: var(--ask-mist);
  border-left: 4px solid var(--ask-blue);
  border-radius: 0 14px 14px 0;
}

.kpi-detail-list h3,
.kpi-detail-list p {
  margin-top: 0;
}

.kpi-detail-list p {
  margin-bottom: 0;
}

.job-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.job-card {
  display: flex;
  min-height: 420px;
  padding: 30px;
  flex-direction: column;
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(23, 63, 111, 0.08);
}

.job-card h3 {
  margin: 4px 0;
  color: var(--ask-navy);
  font-size: 28px;
}

.job-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
}

.job-card dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ask-line);
}

.job-card dt {
  color: var(--ask-muted);
  font-size: 12px;
  font-weight: 700;
}

.job-card dd {
  margin: 0;
  color: var(--ask-ink);
  font-size: 14px;
}

.job-card .button {
  margin-top: auto;
}

.recruit-video-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 244, 238, 0.09), transparent 26%),
    var(--ask-mist);
}

.recruit-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
}

.tiktok-card--recruit {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
}

.tiktok-card--recruit .tiktok-card__visual img {
  height: 100%;
  min-height: 410px;
}

.tiktok-card--recruit .tiktok-card__body {
  align-content: center;
}

.recruit-video-note {
  max-width: 900px;
  margin: 22px auto 0;
  color: var(--ask-muted);
  font-size: 13px;
}

.recruit-faq h2 {
  margin-bottom: 32px;
  font-size: clamp(30px, 4vw, 46px);
}

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

.faq-list details {
  background: var(--ask-white);
  border: 1px solid var(--ask-line);
  border-radius: 14px;
}

.faq-list summary {
  position: relative;
  padding: 20px 58px 20px 24px;
  color: var(--ask-navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  color: var(--ask-blue);
  font-size: 25px;
  transform: translateY(-50%);
}

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

.faq-list details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--ask-muted);
}

.recruit-apply ol {
  padding-left: 1.4em;
}

.recruit-apply h2 {
  margin-top: 0;
}

.job-intro__copy h2 {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 48px);
}

.job-table th {
  width: 29%;
}

.selected-position {
  display: grid;
  gap: 5px;
  margin: 24px 0;
  padding: 20px;
  background: var(--ask-aqua);
  border-radius: 12px;
}

.selected-position strong {
  color: var(--ask-blue);
  font-size: 12px;
}

.line-section {
  padding-block: 56px;
  background: #f3faf6;
}

.line-section__inner {
  grid-template-columns: 1fr auto;
}

.line-section p {
  margin-bottom: 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1380px) {
  .site-header__inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 900;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 28px 24px 110px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--ask-white);
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-navigation .menu {
    display: block;
  }

  .primary-navigation .menu li {
    border-bottom: 1px solid var(--ask-line);
  }

  .primary-navigation .menu a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
  }

  .primary-navigation__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .primary-navigation__subaction {
    display: block;
    padding: 16px 4px;
    color: var(--ask-muted);
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 1180px) {
  .people-feature,
  .contact-layout,
  .split-feature,
  .job-intro,
  .philosophy-summary {
    grid-template-columns: 1fr;
  }

  .split-feature--reverse .split-feature__image {
    order: 0;
  }

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

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

  .tiktok-card--recruit .tiktok-card__visual img {
    min-height: 0;
  }

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

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

@media (max-width: 760px) {
  :root {
    --ask-shell: min(100% - 32px, 1160px);
  }

  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

  .utility-bar {
    display: none;
  }

  .site-brand,
  .site-brand img,
  .site-brand .custom-logo {
    width: 126px;
  }

  .primary-navigation {
    top: 75px;
  }

  .hero {
    min-height: 680px;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 32, 58, 0.95) 0%, rgba(7, 32, 58, 0.75) 56%, rgba(7, 32, 58, 0.25) 100%);
  }

  .hero__image {
    object-position: 55% center;
  }

  .hero__inner {
    padding-block: 70px 90px;
  }

  .hero h1 {
    font-size: clamp(30px, 9.2vw, 44px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .emergency-strip,
  .recruit-priority-strip {
    margin-top: -42px;
  }

  .emergency-strip__inner,
  .recruit-priority-strip__inner {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .news-strip {
    padding-top: 72px;
  }

  .news-strip__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-strip article {
    display: grid;
    gap: 4px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .trust-grid,
  .service-grid,
  .office-grid,
  .staff-grid,
  .emergency-card-grid,
  .insurers,
  .policy-grid,
  .kpi-grid,
  .job-card-grid {
    grid-template-columns: 1fr;
  }

  .tiktok-profile {
    display: grid;
  }

  .tiktok-profile__account {
    align-items: flex-start;
  }

  .tiktok-profile__mark {
    width: 58px;
    height: 58px;
    font-size: 27px;
  }

  .button--tiktok-large {
    width: 100%;
  }

  .tiktok-grid,
  .recruit-video-grid {
    grid-template-columns: 1fr;
  }

  .minor-emergency {
    display: grid;
  }

  .line-section__inner {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 250px;
    padding: 28px;
  }

  .service-card {
    min-height: 330px;
    padding: 28px;
  }

  .people-feature {
    gap: 38px;
  }

  .people-collage {
    gap: 9px;
  }

  .people-collage img:first-child {
    margin-top: 30px;
  }

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

  .flow-list li {
    min-height: auto;
  }

  .page-hero {
    padding: 60px 0;
  }

  .entry-content {
    font-size: 16px;
  }

  .entry-content th,
  .entry-content td {
    display: block;
    width: 100%;
  }

  .timeline li {
    grid-template-columns: 80px 1fr;
    gap: 18px;
  }

  .post-card {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 24px;
  }

  .contact-band__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-band__actions {
    min-width: 0;
  }

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

  .footer-bottom {
    display: block;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ask-white);
    border-top: 1px solid var(--ask-line);
    box-shadow: 0 -8px 24px rgba(23, 63, 111, 0.1);
  }

  .mobile-action-bar a {
    display: grid;
    place-content: center;
    place-items: center;
    color: var(--ask-navy);
    border-right: 1px solid var(--ask-line);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }

  .mobile-action-bar span {
    font-size: 15px;
  }

  .mobile-action-bar .is-recruit {
    color: var(--ask-white);
    background: var(--ask-recruit);
  }

  .mobile-action-bar .is-line {
    color: #082b18;
    background: var(--ask-line-green);
  }

  .mobile-action-bar .is-tiktok {
    color: var(--ask-white);
    background: var(--ask-tiktok);
  }

  .mobile-action-bar .is-line span {
    font-size: 10px;
    font-weight: 900;
  }
}
