:root {
  --blue: #0871d9;
  --blue-deep: #0754b8;
  --blue-soft: #e8f5ff;
  --sky: #dff4ff;
  --ink: #172238;
  --text: #273142;
  --muted: #5e6a7d;
  --line: #d6e6f7;
  --gold: #f4bf45;
  --green: #23a36a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(26, 91, 153, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Arial, sans-serif;
  line-height: 1.75;
  background: #fff;
  overflow-x: hidden;
  padding-bottom: 74px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(8, 113, 217, 0.16);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-logo {
  flex: 0 0 auto;
  width: 24px;
  height: 36px;
  object-fit: contain;
}

.global-nav {
  display: none;
}

.button,
.header-cta {
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  display: inline-flex;
  width: 100%;
  gap: 14px;
  padding: 0 22px;
  border: 2px solid var(--blue);
  font-size: 16px;
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 74px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  font-size: 14px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  box-shadow: 0 8px 18px rgba(8, 91, 191, 0.18);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 91, 191, 0.2);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #1387ea, #075fc6);
}

.button-outline {
  color: var(--blue-deep);
  background: var(--white);
}

.button-outline.light {
  background: rgba(255, 255, 255, 0.92);
}

.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: linear-gradient(180deg, #eaf8ff 0%, #ffffff 86%);
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0 18px 28px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(24, 72, 120, 0.14);
}

.hero-visual img {
  width: 100%;
  height: clamp(210px, 58vw, 300px);
  object-fit: cover;
  object-position: 58% center;
}

.salary-badge {
  display: none;
}

.hero-copy {
  min-width: 0;
  padding: 28px 18px 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 5px 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  background: var(--blue);
}

.hero h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 8vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.hero h1 span {
  color: var(--blue-deep);
  font-size: 1.22em;
  letter-spacing: 0;
}

.lead {
  width: 100%;
  margin: 18px 0 18px;
  color: #263243;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 10px 7px 32px;
  border: 1px solid #93c8f5;
  border-radius: 999px;
  color: #1c3659;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.hero-tags li::before {
  position: absolute;
  left: 9px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  line-height: 1;
  content: "✓";
  background: var(--blue);
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.section {
  width: auto;
  margin: 0 16px;
  padding: 32px 0;
}

.section-heading {
  display: block;
  width: 100%;
  margin: 0 0 22px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading span {
  display: none;
}

.section-heading.align-left {
  text-align: left;
}

.reason-grid,
.work-strip,
.income-grid,
.timeline,
.style-points,
.entry-flow,
.form-grid,
.company-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reason-card,
.income-card,
.entry-flow article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(30, 91, 143, 0.08);
}

.reason-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  column-gap: 14px;
  padding: 24px 20px;
  text-align: left;
}

.icon-circle {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  background: var(--blue);
}

.reason-card h3,
.work-strip h3,
.income-card h3,
.entry-flow h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 18px;
  font-weight: 900;
}

.reason-card p {
  grid-column: 2;
  width: 100%;
  margin: 6px 0 0;
  color: #263243;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
  overflow-wrap: anywhere;
  text-align: left;
}

.work-strip {
  display: flex;
  gap: 20px;
  margin: 0 -16px;
  padding: 0 16px 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-strip article:nth-child(n + 4) {
  display: none;
}

.work-strip article {
  flex: 0 0 78%;
  min-width: 0;
  scroll-snap-align: start;
}

.work-strip::-webkit-scrollbar {
  display: none;
}

.work-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 18px rgba(24, 72, 120, 0.14);
}

.work-strip img.work-photo-loading {
  object-position: 50% 18%;
}

.work-strip h3 {
  margin-top: 9px;
  color: var(--ink);
  text-align: center;
  font-size: 14px;
}

.income-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.avatar {
  position: relative;
  width: 54px;
  height: 54px;
  border: 1px solid #91c9fb;
  border-radius: 50%;
  background: #f2f9ff;
}

.avatar::before,
.avatar::after {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.avatar::before {
  top: 12px;
  width: 19px;
  height: 19px;
}

.avatar::after {
  bottom: 11px;
  width: 32px;
  height: 19px;
  border-radius: 20px 20px 12px 12px;
}

.income-card p {
  margin: 2px 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.income-card strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--blue-deep);
  font-size: clamp(25px, 8vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}

.income-card strong span {
  white-space: nowrap;
}

.income-card small {
  padding: 2px 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  background: var(--blue);
}

.income-band {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 18px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--blue-deep);
  text-align: center;
  background: linear-gradient(180deg, #e1f5ff, #f1fbff);
}

.income-band p {
  margin: 0;
  padding: 16px;
  font-size: 18px;
}

.income-band p + p {
  border-top: 1px solid #a8d9fa;
}

.note,
.style-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.note {
  margin: 12px 0 0;
}

.income-line-button {
  display: flex;
  margin: 18px auto 0;
}

.message-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 10px 16px 0;
  padding: 18px 16px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 245, 255, 0.84), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(8, 113, 217, 0.08) 0 1px, transparent 1px 48px);
}

.message-section img {
  order: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 8px;
}

.message-copy {
  padding: 0 0 20px;
}

.quote {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: clamp(24px, 7.2vw, 32px);
  font-weight: 900;
  line-height: 1.45;
}

.message-copy p:not(.quote) {
  margin: 0 0 20px;
  color: #1f2a3b;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.timeline article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 14px;
  border-top: 4px solid var(--blue);
  background: #f8fcff;
}

.timeline time {
  display: block;
  color: var(--blue-deep);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.timeline p,
.style-points p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.style-points {
  gap: 10px;
  margin-top: 16px;
}

.style-points p {
  position: relative;
  min-height: 42px;
  padding: 8px 12px 8px 34px;
  border-radius: 8px;
  color: #19527e;
  background: var(--blue-soft);
}

.style-points p::before {
  position: absolute;
  top: 11px;
  left: 12px;
  color: var(--green);
  content: "✓";
}

.style-note {
  margin: 16px 0 0;
}

.entry-flow article {
  position: relative;
  padding: 24px 20px;
  text-align: center;
}

.entry-flow span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  background: var(--blue);
}

.entry-flow p {
  margin: 8px 0 0;
  color: #263243;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.entry-note {
  margin: 22px auto 0;
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--blue-deep);
  text-align: center;
  font-weight: 900;
  background: var(--blue-soft);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 12px;
  padding: 24px 16px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(216, 242, 255, 0.78)),
    linear-gradient(180deg, #dff4ff, #ffffff);
}

.final-cta img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.final-cta h2 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: clamp(24px, 7vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.final-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.final-actions {
  display: grid;
  gap: 12px;
}

.contact-section {
  padding-top: 44px;
}

.line-contact {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px 16px;
  border: 1px solid #b9efcb;
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(180deg, #f1fff5, #ffffff);
  box-shadow: 0 18px 40px rgba(15, 160, 76, 0.13);
}

.line-contact p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  background: linear-gradient(180deg, #10c65a, #06a944);
  box-shadow: 0 16px 28px rgba(3, 157, 61, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.line-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(3, 157, 61, 0.34);
}

.contact-form {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-message {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.form-message-success {
  border: 1px solid rgba(35, 163, 106, 0.28);
  color: #096338;
  background: #eefbf4;
}

.form-message-error {
  border: 1px solid rgba(210, 55, 55, 0.26);
  color: #a32121;
  background: #fff4f4;
}

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

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #bdd7f2;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 113, 217, 0.14);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.privacy-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background: #f7fbff;
}

.privacy-box h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.privacy-box p {
  margin: 0 0 14px;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.privacy-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.privacy-check input {
  width: 18px;
  min-height: auto;
  height: 18px;
  accent-color: var(--blue);
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin: 24px auto 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(180deg, #1387ea, #075fc6);
  box-shadow: 0 16px 28px rgba(8, 91, 191, 0.24);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}

.company-section {
  padding-top: 22px;
}

.company-list {
  margin: 0;
}

.company-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 91, 143, 0.08);
}

.company-list dt {
  color: var(--blue-deep);
  font-weight: 900;
}

.company-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 18px 30px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-brand {
  font-size: 18px;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer small {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.instagram-link {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(8, 113, 217, 0.22);
  border-radius: 50%;
  color: var(--blue-deep);
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.instagram-link:hover {
  border-color: rgba(8, 113, 217, 0.46);
  box-shadow: 0 10px 22px rgba(8, 91, 191, 0.14);
  transform: translateY(-1px);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(8, 113, 217, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 24px rgba(23, 34, 56, 0.12);
  backdrop-filter: blur(12px);
}

.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
}

.mobile-sticky-primary {
  color: #fff;
  background: linear-gradient(180deg, #1387ea, #075fc6);
}

.mobile-sticky-line {
  color: #078d3c;
  border: 1px solid #9fe8b7;
  background: #f1fff5;
}

@media (min-width: 640px) {
  .hero-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reason-grid,
  .work-strip,
  .style-points,
  .entry-flow,
  .form-grid,
  .company-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-button,
  .submit-button {
    width: min(100%, 420px);
  }
}

@media (min-width: 821px) {
  body {
    line-height: 1.8;
    padding-bottom: 0;
  }

  .site-header {
    gap: 28px;
    min-height: 70px;
    padding: 12px clamp(18px, 5vw, 84px);
  }

  .brand,
  .footer-brand {
    flex: 0 0 auto;
    gap: 11px;
    font-size: 25px;
  }

  .brand span {
    overflow: visible;
    text-overflow: clip;
  }

  .brand-logo {
    width: 30px;
    height: 44px;
  }

  .global-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 2.2vw, 34px);
    width: 100%;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
  }

  .global-nav a {
    transition: color 0.2s ease;
  }

  .global-nav a:hover {
    color: var(--blue);
  }

  .header-cta {
    display: inline-flex;
    min-width: 128px;
    padding: 0 24px;
    color: var(--white);
    background: linear-gradient(180deg, var(--blue), var(--blue-deep));
    box-shadow: 0 8px 18px rgba(8, 91, 191, 0.22);
  }

  .hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
    align-items: stretch;
    min-height: 580px;
    overflow: hidden;
    background:
      linear-gradient(90deg, #ffffff 0%, #ffffff 43%, rgba(255, 255, 255, 0.4) 58%, rgba(255, 255, 255, 0) 76%),
      linear-gradient(180deg, #dff5ff 0%, #f8fcff 100%);
  }

  .hero::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 72px;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 82%);
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 5.5vw, 70px) clamp(20px, 5vw, 78px);
  }

  .pill {
    margin-bottom: 18px;
    padding: 5px 22px;
    font-size: 15px;
  }

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

  .hero h1 span {
    font-size: 1.28em;
  }

  .lead {
    width: min(100%, 620px);
    margin: 22px 0 18px;
    font-size: 16px;
  }

  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    width: min(100%, 640px);
    margin-bottom: 26px;
  }

  .hero-tags li {
    min-height: 34px;
    padding: 6px 14px 6px 36px;
    font-size: 14px;
  }

  .hero-tags li::before {
    left: 12px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .button {
    width: min(100%, 270px);
    padding: 0 26px;
    font-size: 17px;
  }

  .hero-visual {
    order: 0;
    min-height: 580px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-visual img {
    height: 100%;
    min-height: 580px;
    object-position: center center;
  }

  .salary-badge {
    position: absolute;
    right: clamp(20px, 7vw, 100px);
    bottom: 72px;
    display: grid;
    width: 184px;
    height: 184px;
    place-content: center;
    gap: 2px;
    padding: 26px 16px;
    border: 4px solid #ffe08a;
    border-radius: 50%;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .salary-badge small {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
    white-space: nowrap;
  }

  .salary-badge strong {
    color: var(--ink);
    font-size: 25px;
    line-height: 1.18;
    white-space: nowrap;
  }

  .salary-badge span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .section {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0;
  }

  .section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(24px, 3.1vw, 32px);
  }

  .section-heading span {
    display: block;
    width: 58px;
    height: 2px;
    background: var(--blue);
  }

  .section-heading.align-left {
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .section-heading.align-left span {
    flex: 1;
    max-width: 120px;
  }

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

  .reason-card {
    display: block;
    min-height: 232px;
    padding: 28px 24px;
    text-align: center;
  }

  .reason-card p {
    grid-column: auto;
    width: min(100%, 16.5em);
    margin: 10px auto 0;
  }

  .icon-circle {
    margin: 0 auto 14px;
  }

  .work-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .work-strip article:nth-child(n + 4) {
    display: block;
  }

  .work-strip article {
    flex: none;
  }

  .work-strip img {
    aspect-ratio: 1.55 / 1;
  }

  .work-strip img.work-photo-loading {
    object-position: 50% 22%;
  }

  .income-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .income-card {
    grid-template-columns: 72px 1fr;
  }

  .income-card strong {
    flex-wrap: nowrap;
    font-size: 36px;
  }

  .income-band {
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(90deg, #e1f5ff, #f1fbff);
  }

  .income-band p {
    padding: 18px;
    font-size: 22px;
  }

  .income-band p + p {
    border-top: 0;
    border-left: 1px solid #a8d9fa;
  }

  .income-line-button {
    width: min(100%, 320px);
  }

  .message-section {
    grid-template-columns: minmax(280px, 0.42fr) minmax(320px, 0.58fr);
    align-items: center;
    gap: 42px;
    margin: 28px 0 0;
    padding: 0 clamp(20px, 6vw, 92px);
  }

  .message-section img {
    order: 0;
    border-radius: 0;
  }

  .message-copy {
    padding: 34px 0;
  }

  .quote {
    font-size: clamp(24px, 3vw, 34px);
  }

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

  .style-points,
  .entry-flow,
  .company-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-flow article {
    min-height: 190px;
    padding: 28px 22px 24px;
  }

  .final-cta {
    gap: 28px;
    margin-top: 24px;
    padding: 22px clamp(20px, 6vw, 92px);
  }

  .final-cta img {
    max-height: 260px;
  }

  .final-actions {
    grid-template-columns: repeat(2, minmax(0, 270px));
  }

  .contact-form,
  .line-contact {
    padding: 28px;
  }

  .company-list div {
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .submit-button {
    width: min(100%, 360px);
  }

  .site-footer {
    padding: 28px clamp(20px, 6vw, 92px) 34px;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 1041px) {
  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .income-card {
    grid-template-columns: 64px 1fr;
    min-height: 126px;
    padding: 18px 20px;
  }

  .income-card strong {
    font-size: clamp(25px, 2.5vw, 34px);
  }

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

  .timeline article {
    display: block;
  }

  .timeline p {
    margin-top: 8px;
  }

  .style-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .entry-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .entry-flow article:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -18px;
    width: 18px;
    height: 18px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
    background: var(--blue);
    transform: translate(50%, -50%);
  }

  .final-cta {
    grid-template-columns: minmax(260px, 0.32fr) minmax(320px, 0.42fr) minmax(260px, 0.26fr);
    align-items: center;
  }

  .final-actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .final-actions .button {
    width: 100%;
  }
}
