/* ==========================================================================
   セクション固有レイアウト
   色・余白・タイポは variables.css、パーツは components.css を参照。
   ここでは各セクションのグリッド構成のみを定義する。
   ========================================================================== */

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(160deg, #ffffff 0%, var(--color-bg-hero) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: stretch;
  gap: 44px;
}

.hero__text {
  min-width: 0;
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
  white-space: nowrap;
}

.hero__desc {
  margin-top: var(--space-3);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--color-text-muted);
}

.hero__features {
  margin-top: var(--space-1);
  gap: var(--space-3);
}

.hero__features .card {
  padding: 1.3rem var(--space-3);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 4px 14px rgba(22, 33, 61, 0.1);
}

.hero__features .card__title {
  font-size: var(--fs-body);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.hero__media {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.hero__photo-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 1) 70px);
  -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, 1) 70px);
}

.hero__media-decor {
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
}

.hero__media-decor::before,
.hero__media-decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero__media-decor::before {
  width: 55%;
  aspect-ratio: 1;
  top: 6%;
  right: 8%;
  background: radial-gradient(circle, rgba(179, 133, 42, 0.2), transparent 70%);
}

.hero__media-decor::after {
  width: 60%;
  aspect-ratio: 1;
  bottom: 2%;
  left: 6%;
  background: radial-gradient(circle, rgba(22, 33, 61, 0.14), transparent 70%);
}

.hero__person {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  margin-inline: auto;
  transform: scale(1.13);
  transform-origin: 60% 15%;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 5px;
  width: 152px;
  height: 152px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-gold);
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.45;
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
}

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

.hero__badge-strong {
  color: var(--color-gold-deep);
  font-size: 1.25em;
  margin-block: 0.1em;
}

.hero__solve {
  margin-top: var(--space-4);
}

.hero__solve-label {
  text-align: left;
  position: relative;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.hero__solve-label span {
  position: relative;
  z-index: 1;
}

.hero__solve-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.hero__solve-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: left;
  white-space: nowrap;
  background-color: var(--color-bg);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  box-shadow: var(--shadow-sm);
  line-height: var(--lh-tight);
}

.hero__solve-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-gold);
  flex-shrink: 0;
}

.hero__solve-list .icon {
  color: var(--color-gold);
  width: 11px;
  height: 11px;
  stroke-width: 3;
}

/* --- About (事業側のWeb担当とは) --- */
.about.section {
  padding-block: 2rem;
}

.about .section-head {
  margin-bottom: var(--space-3);
}

.about__rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.about__row {
  display: grid;
  grid-template-columns: auto minmax(190px, 1fr) minmax(150px, 0.72fr) minmax(220px, 1.28fr);
  gap: var(--space-4);
  align-items: center;
}

.about__row.card {
  padding: 0.7rem 20px 0.7rem var(--space-5);
  min-height: 190px;
}

.about__row-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  text-align: center;
}

.about__row-title {
  font-size: var(--fs-h3);
  color: var(--color-navy);
  margin-block: var(--space-1);
}

.about__row-desc {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  line-height: var(--lh-base);
}

.about__row-media {
  align-self: stretch;
  display: flex;
}

.about__row-media--mobile-only {
  display: none;
}

.about__row-media img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__row-box {
  border-radius: var(--radius-md);
  padding: 0.75rem var(--space-3);
}

.about__row-box-title {
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.about .checklist {
  gap: var(--space-1);
}

.about .checklist__item {
  line-height: var(--lh-tight);
}

.about__row--flow {
  grid-template-columns: auto 270px minmax(650px, 1fr);
  gap: var(--space-4);
}

.flow-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.flow-step {
  flex: 1;
  min-width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  font-size: var(--fs-xsmall);
  color: var(--color-navy-soft);
  font-weight: 700;
  background-color: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-1);
}

.flow-step .step__icon {
  width: 48px;
  height: 48px;
  font-size: 20px;
  margin-inline: auto;
  margin-bottom: var(--space-2);
  background-color: var(--color-bg);
}

.flow-arrow {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
  color: var(--color-gold);
}

.flow-arrow .icon {
  width: 14px;
  height: 14px;
}

/* --- Head写真の共通サイズ統一(hiring/compare/action/timing/process/faq) --- */
.hiring__head-media img,
.compare__head-media img,
.action__head-media img,
.timing__head-media img,
.process__head-media img,
.faq__head-media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* --- Hiring --- */
.hiring.section {
  padding-block: 1.25rem;
}

.hiring__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hiring__head-text {
  flex: 1;
}

.hiring__head-media {
  flex-shrink: 0;
  width: 240px;
  margin-top: 0;
}

.hiring__head-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.hiring-compare__label {
  position: relative;
  text-align: center;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
}

.hiring-compare__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
}

.hiring-compare2 {
  display: flex;
  align-items: stretch;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hiring-compare2__card {
  flex: 1;
  min-width: 0;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hiring-compare2__head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border-soft);
}

.hiring-compare2__head h3 {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-navy);
  line-height: var(--lh-tight);
}

.hiring-compare2__head-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiring-compare2__head-icon .icon {
  width: 18px;
  height: 18px;
}

.hiring-compare2__head-icon--left {
  background-color: var(--color-bg-soft);
  color: var(--color-navy);
}

.hiring-compare2__head-icon--right {
  background-color: var(--color-navy-deep);
  color: #fff;
}

.hiring-compare2__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
}

.hiring-compare2__timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--space-3) + 11px);
  top: 22px;
  bottom: 22px;
  width: 1px;
  background-color: var(--color-border-soft);
}

.hiring-compare2__timeline li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.hiring-compare2__dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-soft);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiring-compare2__dot .icon {
  width: 13px;
  height: 13px;
}

.hiring-compare2__dot--gold {
  background-color: var(--color-bg-gold);
  color: var(--color-gold);
}

.hiring-compare2__timeline h4 {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-navy);
  line-height: var(--lh-tight);
  margin-bottom: 1px;
}

.hiring-compare2__timeline p {
  font-size: var(--fs-xsmall);
  color: var(--color-text-muted);
  line-height: var(--lh-tight);
}

/* --- hiring: 常時表示のタイトル一覧＋「詳しく見る」で説明文をまとめて開閉 --- */
.hiring-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
}

.hiring-card__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hiring-card__list h4 {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-navy);
  line-height: var(--lh-tight);
}

.hiring-card__detail-toggle {
  margin-top: var(--space-1);
  padding: 0 var(--space-3);
}

.hiring-card__toggle {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-gold-deep);
  padding-block: var(--space-2);
}

.hiring-card__toggle::-webkit-details-marker {
  display: none;
}

.hiring-card__toggle-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.hiring-card__detail-toggle[open] .hiring-card__toggle-icon {
  transform: rotate(180deg);
}

.hiring-card__detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-bottom: var(--space-2);
}

.hiring-card__detail p {
  font-size: var(--fs-xsmall);
  color: var(--color-text-muted);
  line-height: var(--lh-base);
  white-space: nowrap;
}

/* PCでは横幅いっぱいに間延びしないようカードを適度な幅に絞り、その分
   見出し・比較項目の文字サイズと「詳しく見る」の視認性を高める */
/* PCでは項目ごとに説明文まで常時表示(アコーディオンは使わない)、スマホは
   タイトル一覧+「詳しく見る」のアコーディオンのまま維持する */
.hiring-compare2__timeline--pc {
  display: none;
}

@media (min-width: 1025px) {
  .hiring-compare2 {
    justify-content: center;
  }

  .hiring-compare2__card {
    flex: 0 1 440px;
  }

  .hiring-compare2__head {
    padding: var(--space-3) var(--space-4);
  }

  .hiring-compare2__head h3 {
    font-size: 1.05rem;
  }

  .hiring-compare2__head-icon {
    width: 40px;
    height: 40px;
  }

  .hiring-compare2__dot {
    width: 28px;
    height: 28px;
  }

  .hiring-compare2__dot .icon {
    width: 15px;
    height: 15px;
  }

  .hiring-compare2__timeline--pc {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
  }

  .hiring-compare2__timeline--pc::before {
    left: calc(var(--space-4) + 13px);
    top: 28px;
    bottom: 28px;
  }

  .hiring-compare2__timeline--pc h4 {
    font-size: var(--fs-body);
    white-space: nowrap;
  }

  .hiring-compare2__timeline--pc p {
    font-size: var(--fs-small);
    white-space: nowrap;
  }

  .hiring-card__list--mobile,
  .hiring-card__detail-toggle--mobile {
    display: none;
  }
}

.hiring-compare2__arrow {
  flex-shrink: 0;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
}

.hiring-compare2__arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiring-compare2__arrow-circle .icon {
  width: 20px;
  height: 20px;
}

.hiring-compare2__arrow p {
  font-size: var(--fs-xsmall);
  font-weight: 700;
  color: var(--color-navy);
  line-height: var(--lh-tight);
}

.hiring .highlight-box {
  padding: var(--space-3) var(--space-4);
}

@media (min-width: 1025px) {
  .hiring__cta-lead {
    white-space: nowrap;
  }
}

/* --- Compare --- */
.compare.section {
  padding-block: 1.25rem;
}

.compare__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.compare__head-text {
  flex: 1;
  min-width: 0;
}

.compare__head-media {
  flex-shrink: 0;
  width: 240px;
  margin-top: 0;
}

.compare__head-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.compare .section-lead {
  margin-top: var(--space-4);
}

.compare__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  align-items: stretch;
}

.compare__layout--single {
  grid-template-columns: 1fr;
}

.compare__layout > * {
  min-width: 0;
}

.compare__table-card {
  padding: var(--space-3);
}

/* PCの比較表: 「事業側のWeb担当」列を主役にした横幅の広い表(ブログ記事と共有する
   .compare-table/.table-wrap本体の基本ルールは変更せず、このセクション内だけに適用) */
@media (min-width: 1025px) {
  .compare .compare__table-card {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
  }

  .compare .compare-table {
    min-width: 0;
    font-size: 1rem;
  }

  .compare .compare-table th,
  .compare .compare-table td {
    padding: 1.1rem 1.1rem;
  }

  .compare .compare-table th:first-child,
  .compare .compare-table td:first-child {
    width: 20%;
  }

  .compare .compare-table th:nth-child(2),
  .compare .compare-table td:nth-child(2) {
    width: 25%;
  }

  .compare .compare-table th.compare-table__featured-th,
  .compare .compare-table td.compare-table__featured-td {
    width: 55%;
  }
}

/* 「事業側のWeb担当」列を視覚的に一番目立たせる */
.compare-table thead th.compare-table__featured-th {
  background-color: var(--color-gold-deep);
  color: #fff;
}

.compare-table__featured-td {
  position: relative;
  border-left: 3px solid var(--color-gold);
}

.compare-table__featured-label {
  display: block;
  font-weight: 700;
  color: var(--color-gold-deep);
  white-space: nowrap;
}

.compare-table__featured-desc {
  display: block;
  margin-top: 3px;
  font-weight: 400;
  color: var(--color-navy-soft);
  font-size: 0.82em;
  line-height: var(--lh-tight);
  white-space: normal;
}

@media (min-width: 1025px) {
  .compare-table__featured-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .compare .compare-table th:first-child,
  .compare .compare-table td:first-child {
    width: 20%;
  }

  .compare .compare-table th:nth-child(2),
  .compare .compare-table td:nth-child(2) {
    width: 22%;
  }

  .compare .compare-table th.compare-table__featured-th,
  .compare .compare-table td.compare-table__featured-td {
    width: 58%;
  }

  .compare-table__featured-desc {
    font-size: 0.68rem;
  }
}

.compare__card-title {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  line-height: var(--lh-tight);
  text-align: center;
}

.compare__side-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-2);
  padding-top: var(--space-4);
  padding-bottom: var(--space-3);
}

.compare__mobile-break {
  display: none;
}

.compare__side-lead {
  text-align: center;
  margin-top: var(--space-3);
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: var(--lh-tight);
}

.compare__side-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-gold);
}

.compare__side-arrow .icon {
  width: 20px;
  height: 20px;
}

.compare__stance-title {
  text-align: center;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.compare__side-link {
  text-align: center;
}

.compare__side-link a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gold-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.compare__side-link .icon {
  width: 16px;
  height: 16px;
}

@media (min-width: 1025px) {
  .compare__side-card {
    justify-content: center;
  }
}

.compare__stance-card {
  padding: var(--space-3) 8px;
}

.compare__stance-card .checklist {
  gap: var(--space-4);
}

.compare__stance-card .checklist__item {
  gap: 6px;
}

.compare__stance-card .checklist__item .icon {
  width: 16px;
  height: 16px;
  margin-top: 0;
}

.compare__stance-card .checklist__item h4 {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 3px;
}

.compare__stance-card .checklist__item p {
  color: var(--color-text-muted);
  font-size: 13px;
  white-space: nowrap;
  line-height: var(--lh-tight);
}

.compare .highlight-box {
  padding: var(--space-3) var(--space-4);
}

.compare .highlight-box__figure {
  width: 52px;
  height: 52px;
  font-size: 22px;
}

/* --- Timing --- */
.timing.section {
  padding-block: 1.25rem;
}

.timing__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.timing__head-text {
  flex: 1;
  min-width: 0;
}

.timing__head-media {
  flex-shrink: 0;
  width: 240px;
  margin-top: 0;
}

.timing__head-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

@media (min-width: 1025px) {
  .timing__title {
    white-space: nowrap;
  }
}

.timing__grid {
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.timing__grid .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 110px;
  padding: 2rem var(--space-4) var(--space-3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timing-card {
  cursor: pointer;
}

.timing-card summary {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  list-style: none;
}

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

.timing-card__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}

.timing-card[open] .timing-card__chevron {
  transform: rotate(180deg);
}

.timing-card__desc {
  margin-top: var(--space-2);
}

.timing__grid .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timing__grid .card__title {
  flex: 1;
  min-width: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-tight);
  margin-bottom: 0;
  min-height: calc(var(--fs-body) * var(--lh-tight) * 2);
}

.timing__grid .card__text {
  line-height: var(--lh-tight);
}

.timing__grid .num-circle {
  position: absolute;
  top: -16px;
  left: var(--space-3);
  width: 40px;
  height: 40px;
  font-size: 17px;
  font-weight: 800;
  background-color: var(--color-gold-deep);
  color: #fff;
  border: 3px solid var(--color-bg);
  box-shadow: 0 4px 10px rgba(22, 33, 61, 0.15);
}

.timing .highlight-box {
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-bg);
  border: 2px solid var(--color-gold);
}

.timing .highlight-box__figure {
  width: 60px;
  height: 60px;
  font-size: 24px;
  background-color: var(--color-bg-soft);
  color: var(--color-navy);
}

.timing .highlight-box__btn {
  flex-shrink: 0;
}

/* --- Origin --- */
.origin.section {
  padding-block: 1.25rem;
}

.origin__hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3);
  align-items: stretch;
  margin-bottom: var(--space-2);
}

.origin__hero-text {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: visible;
}

.origin__hero-text .section-lead {
  color: var(--color-navy-soft);
}

.origin__byline {
  margin-top: var(--space-3);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.origin__byline-break {
  display: none;
}

.origin__byline a {
  color: var(--color-gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.origin__title-badge {
  display: inline-flex;
  background-color: #f8f0e0;
  color: var(--color-gold-deep);
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

@media (min-width: 1025px) {
  .origin__title {
    white-space: nowrap;
  }
}

.origin__banner-row {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-hero);
}

.origin__banner-photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  margin-inline: auto;
}

@media (min-width: 1025px) {
  .origin__banner-photo {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    margin-inline: 0;
    border-radius: 0;
    object-fit: contain;
  }
}

.origin__flow-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-gold);
  margin-block: var(--space-2);
}

.origin__flow-arrow .icon {
  width: 28px;
  height: 28px;
}

.origin__judge-card {
  margin-bottom: var(--space-2);
}

.origin__judge-head {
  text-align: center;
  margin-bottom: var(--space-4);
}

.origin__judge-subtitle {
  margin-top: var(--space-2);
  color: var(--color-navy-soft);
  font-weight: 700;
}

.origin__judge-subtitle-break {
  display: none;
}

.origin__judge-item {
  padding: var(--space-3);
}

.origin__judge-item .card__title {
  font-size: var(--fs-body);
  line-height: var(--lh-tight);
}

.origin__judge-item .card__text {
  line-height: var(--lh-tight);
}

.origin__story {
  background-color: #f8f0e0;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
}

.origin__story-conclusion {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.origin__story-conclusion .highlight-box__figure {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  font-size: 22px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.origin__story-conclusion .highlight-box__lead {
  flex: 1;
}

/* --- Action --- */
.action.section { padding-block: 1.25rem; }
.action .section-head { margin-bottom: 0; }
.action .highlight-box { padding: var(--space-3) var(--space-4); }
.action .highlight-box__figure { width: 52px; height: 52px; font-size: 22px; }

.action__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.action__head-text {
  flex: 1;
  min-width: 0;
}

.action__head-media {
  flex-shrink: 0;
  width: 240px;
  margin-top: 0;
}

.action__head-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.action__flow {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  padding: var(--space-4);
  background-color: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.action__flow-panel {
  flex: 27 27 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4) 0.75rem;
}

.action__flow-panel--gold {
  flex: 46 46 0%;
  border: 2px solid var(--color-gold);
  padding: var(--space-4);
}

.action__flow-panel--center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.action__flow-panel--center .action__flow-subtitle {
  margin-bottom: 0;
}

.action__flow-label {
  align-self: center;
  background-color: var(--color-navy);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--fs-small);
  font-weight: 700;
  margin-bottom: var(--space-3);
  white-space: nowrap;
}

.action__flow-label--gold {
  background-color: var(--color-gold-deep);
}

.action__flow-subtitle {
  text-align: center;
  font-weight: 700;
  color: var(--color-navy);
  font-size: var(--fs-body);
  line-height: var(--lh-tight);
  min-height: calc(1rem * var(--lh-tight) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.action__flow-subtitle--gold {
  color: var(--color-gold-deep);
}

.action__flow-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}

.action__flow-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border-soft);
  font-size: var(--fs-xsmall);
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
}

.action__flow-list li:last-child {
  border-bottom: none;
}

.action__flow-list .icon-badge {
  width: 26px;
  height: 26px;
  font-size: 13px;
  flex-shrink: 0;
}

@media (min-width: 1025px) {
  .action__flow-list li {
    padding-block: 0.55rem;
    gap: var(--space-2);
    font-size: var(--fs-small);
  }

  .action__flow-list .icon-badge {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .action__flow {
    justify-content: center;
    gap: 1.75rem;
  }

  .action__flow-panel {
    flex: 0 1 360px;
  }
}

.action__flow-list--x .icon-badge {
  color: var(--color-text-muted);
}

.action__flow-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.action__flow-arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
  color: #fff;
}

.action__flow-arrow-circle .icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.8;
}

.action__flow-steps {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: var(--space-3);
}

.action__flow-steps li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
}

.action__flow-steps .num-circle {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  font-size: 10px;
  background-color: var(--color-gold-deep);
  z-index: 2;
}

.action__flow-steps .icon-badge {
  width: 42px;
  height: 42px;
  font-size: 19px;
  flex-shrink: 0;
  background-color: #f8f0e0;
  color: var(--color-gold-deep);
}

.action__flow-step-title {
  font-weight: 700;
  color: var(--color-navy);
  font-size: var(--fs-small);
  margin-bottom: 2px;
  white-space: nowrap;
}

.action__flow-step-text {
  font-size: var(--fs-xsmall);
  color: var(--color-text-muted);
  line-height: var(--lh-tight);
  white-space: nowrap;
}

/* --- Process --- */
.process.section { padding-block: 1.25rem; }

.process__sub-title {
  text-align: center;
  font-weight: 700;
  color: var(--color-navy);
  font-size: var(--fs-h3);
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.process__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.process__tags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.process__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-bg-gold);
  color: var(--color-navy);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-small);
  font-weight: 700;
}

.process__tag .icon {
  color: var(--color-gold);
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.process .step-row { margin-bottom: var(--space-2); }

.process__intro {
  text-align: center;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}

.process .step {
  position: relative;
  gap: var(--space-2);
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4) var(--space-3);
}

.process .step-row {
  align-items: stretch;
}

.process .step .num-circle {
  position: absolute;
  top: -10px;
  left: -10px;
}

.process .step__title {
  line-height: var(--lh-tight);
  min-height: calc(1em * var(--lh-tight) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process .step__text { line-height: var(--lh-tight); }

.process .step-arrow {
  color: var(--color-gold);
  opacity: 1;
}

.process .step-arrow .icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.6;
}

.process .statement {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.process .statement::before,
.process .statement::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--color-border-soft);
}

.process__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.process__head-text {
  flex: 1;
  min-width: 0;
}

.process__head-media {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  margin-top: 0;
}

.process__head-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.process__photo-caption {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  background-color: rgba(255, 255, 255, 0.94);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-size: var(--fs-xsmall);
  font-weight: 700;
  color: var(--color-navy);
  line-height: var(--lh-tight);
  box-shadow: var(--shadow-sm);
}

.step-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.step-row .step {
  flex: 1;
  min-width: 130px;
}

.step-row .step__icon {
  width: 64px;
  height: 64px;
}

/* --- FAQ --- */
.faq.section { padding-block: 1.25rem; }

.faq__head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.faq__head-text {
  flex: 1;
  min-width: 0;
}

.faq__head-media {
  flex-shrink: 0;
  width: 240px;
  margin-top: 0;
}

.faq__head-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.faq .section-head { margin-bottom: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.cta-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background-color: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  flex-wrap: wrap;
}

.cta-bar__icon {
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: var(--color-bg);
}

.cta-bar__body {
  flex: 1;
  min-width: 220px;
}

.cta-bar__title {
  font-weight: 700;
  color: var(--color-navy);
  font-size: var(--fs-lead);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-3);
}

.faq .cta-bar {
  padding: var(--space-3) var(--space-4);
}

.faq .cta-bar__icon {
  width: 56px;
  height: 56px;
  font-size: 24px;
}

.faq .cta-bar__title {
  margin-bottom: var(--space-2);
}

.checklist--row-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.checklist--row-inline .checklist__item {
  font-size: var(--fs-xsmall);
}

.cta-bar__btn {
  flex-shrink: 0;
}

/* --- Closing --- */
.closing__layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.closing__layout .closing__services {
  justify-content: center;
}

@media (min-width: 1025px) {
  .closing__layout {
    max-width: 820px;
  }
}

.closing__lead {
  color: var(--color-text-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  margin-bottom: var(--space-4);
}

.closing__services {
  margin-bottom: var(--space-4);
}

.closing__services .tag {
  width: 100%;
  justify-content: center;
}

.closing__points {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

.closing__points li {
  display: flex;
  gap: var(--space-2);
}

.closing__points .icon {
  color: var(--color-navy);
  width: 26px;
  height: 26px;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.closing__points strong {
  display: block;
  font-size: var(--fs-lead);
  color: var(--color-gold-deep);
  margin-bottom: var(--space-3);
}

.closing__points span {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
}

.closing__tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* --- Contact form --- */
.contact__form {
  max-width: 720px;
  margin-inline: auto;
}

.contact__mobile-break {
  display: none;
}

/* ==========================================================================
   レスポンシブ(タブレット/スマートフォン)
   ========================================================================== */
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .compare__layout,
  .origin__hero,
  .closing__layout {
    grid-template-columns: 1fr;
  }

  /* ヒーロー: タブレット幅では左テキストの最小幅(640px)を確保できないため、画像を上・テキストを下に積む */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hero__text {
    max-width: none;
  }

  .hero__media {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero__badge {
    width: 148px;
    height: 148px;
    left: -40px;
    font-size: 12.5px;
    padding: var(--space-2);
  }

  .highlight-box {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-2);
    text-align: left;
  }

  .highlight-box__body {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .checklist--row-inline {
    align-items: center;
  }

  .highlight-box .checklist {
    flex-basis: 100%;
    width: 100%;
    align-items: flex-start;
    margin-top: var(--space-2);
  }

  .about__row,
  .about__row--flow {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__row-media { order: -1; }

  .about__row-num {
    margin-bottom: var(--space-1);
  }

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

  .hiring__head {
    flex-direction: column;
  }

  .hiring__head-media {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .compare__head {
    flex-direction: column;
  }

  .action__head {
    flex-direction: column;
  }

  .action__head-media {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }

  .timing__head {
    flex-direction: column;
  }

  .timing__head-media {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }

  .process__head {
    flex-direction: column;
  }

  .process__head-media {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }

  .faq__head {
    flex-direction: column;
  }

  .faq__head-media {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }

  .compare__head-media {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }

  .hiring-compare2 {
    flex-direction: column;
  }

  .hiring-compare2__arrow {
    width: auto;
    flex-direction: row;
    padding-block: var(--space-2);
  }

  .hiring-compare2__arrow-circle {
    transform: rotate(90deg);
  }

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

  .action__flow {
    flex-direction: column;
  }

  .action__flow-arrow {
    transform: rotate(90deg);
    justify-content: center;
  }

  .action__flow-list li,
  .action__flow-step-title,
  .action__flow-step-text {
    white-space: normal;
  }

  .step-row {
    flex-direction: column;
  }

  .step-row .step-arrow {
    align-self: center;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  /* セクション見出し・リード文: 全ブロック共通のフォントサイズに統一 */
  .section-title {
    font-size: 1.0625rem;
  }

  .section-lead {
    font-size: 0.8rem;
  }

  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  /* スマートフォン: PCと同じく「タイトル+画像」を横並びにし、その下に説明文・カードを縦並び(ファーストビューが1画面に収まるようコンパクト化) */
  .hero.section {
    padding-top: 2px;
    padding-bottom: var(--space-3);
  }

  .site-header .container {
    padding-block: 0.375rem;
  }

  .hero__inner {
    position: relative;
    display: block;
  }

  .hero__text {
    position: relative;
    z-index: 2;
    padding-top: 14px;
  }

  .hero__title {
    min-width: 0;
    max-width: 248px;
    font-size: clamp(1.05rem, 0.8rem + 2.3vw, 1.25rem);
    line-height: 1.4;
    white-space: normal;
  }

  .hero__media {
    position: absolute;
    top: 0;
    left: 0;
    right: var(--container-padding);
    height: 214px;
    z-index: 1;
    display: block;
  }

  .hero__media-decor {
    display: none;
  }

  .hero__photo-frame {
    position: absolute;
    inset: 0;
    min-width: 0;
    border-radius: var(--radius-md);
    mask-image: linear-gradient(to right, transparent 0, transparent 55%, rgba(0, 0, 0, 1) 78%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, transparent 55%, rgba(0, 0, 0, 1) 78%);
  }

  .hero__person {
    object-position: center;
    transform: none;
  }

  .hero__badge {
    display: none;
  }

  .hero__desc {
    max-width: 180px;
    margin-top: var(--space-3);
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .hero__features {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-top: 30px;
  }

  .hero__features .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: 13px var(--space-1);
    text-align: center;
    min-width: 0;
  }

  .hero__features .icon-badge {
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    margin: 0 0 var(--space-1);
  }

  .hero__features .card__icon img.icon {
    width: 46px;
    height: 46px;
  }

  .hero__features .card__title {
    position: relative;
    font-size: 0.594rem;
    line-height: 1.3;
    margin-bottom: 0;
    padding-bottom: var(--space-2);
    white-space: normal;
  }

  .hero__features .card__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 2px;
    background-color: var(--color-gold);
    border-radius: 1px;
  }

  .hero__features .card__text {
    display: block;
    font-size: 0.475rem;
    line-height: 1.4;
  }

  .hero__solve {
    margin-top: var(--space-4);
  }

  .hero__solve-label {
    margin-bottom: var(--space-3);
  }

  .hero__solve-list {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .hero__solve-list li {
    padding: var(--space-2) var(--space-3);
    gap: var(--space-2);
    font-size: 0.78rem;
  }

  .hero__solve-icon {
    width: 26px;
    height: 26px;
  }

  .hero__solve-list .icon {
    width: 12px;
    height: 12px;
  }

  /* 事業側のWeb担当とは: PCの縦積みではなく、コンパクトなカード形式に再構成 */
  .about.section {
    padding-block: var(--space-4);
  }

  .about__rows {
    gap: var(--space-3);
  }

  .about__row,
  .about__row--flow {
    display: grid;
    grid-template-columns: auto 1fr 64px;
    grid-template-areas:
      "num text media"
      "box box box";
    column-gap: var(--space-2);
    row-gap: var(--space-2);
    align-items: start;
    text-align: left;
  }

  .about__row--flow {
    grid-template-columns: auto 1fr 64px;
    grid-template-areas:
      "num text media"
      "flow flow flow";
  }

  .about__row--flow .about__row-media--mobile-only {
    display: block;
  }

  .about__row.card {
    padding: var(--space-3);
    min-height: 0;
  }

  .about__row-num {
    grid-area: num;
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    font-family: var(--font-family);
    font-weight: 700;
    color: #fff;
    background-color: var(--color-gold);
    border-radius: var(--radius-full);
    line-height: 24px;
    text-align: center;
    margin-bottom: 0;
  }

  .about__row-text {
    grid-area: text;
  }

  .about__row-title {
    font-size: 0.86rem;
    line-height: 1.4;
    margin-block: 0 var(--space-1);
  }

  .about__row-desc {
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .about__row-media {
    grid-area: media;
    order: 0;
    width: 64px;
    height: 64px;
    align-self: start;
  }

  .about__row-media img {
    border-radius: var(--radius-sm);
  }

  .about__row-box {
    grid-area: box;
    padding: var(--space-2) var(--space-3);
  }

  .about__row-box-title {
    font-size: 0.72rem;
  }

  .about .checklist__item {
    font-size: 0.656rem;
    gap: 6px;
  }

  .about .checklist__item .icon {
    width: 16px;
    height: 16px;
  }

  .about__row--flow .about__row-text {
    grid-area: text;
  }

  .about__row--flow .flow-row {
    grid-area: flow;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 2px;
  }

  .about__row--flow .flow-step {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    min-width: 0;
    font-size: 0.68rem;
    padding: var(--space-1) var(--space-2);
  }

  .about__row--flow .flow-step .step__icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
    margin: 0 var(--space-2) 0 0;
    flex-shrink: 0;
  }

  .about__row--flow .flow-arrow {
    align-self: center;
    width: 20px;
    height: 14px;
    margin: 0;
    justify-content: center;
    transform: rotate(90deg);
  }

  .hiring__head {
    flex-direction: column;
    text-align: left;
  }

  .hiring__head h2,
  .hiring__head p {
    text-align: left !important;
  }

  .hiring.section {
    padding-block: var(--space-4);
  }

  .hiring__head {
    gap: var(--space-3);
    margin-bottom: var(--space-3);
  }

  .hiring__head-media {
    max-width: 220px;
  }

  .hiring-compare__label {
    font-size: 0.85rem;
    margin-bottom: var(--space-3);
  }

  .hiring-compare2 {
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }

  .hiring-compare2__head {
    padding: var(--space-2);
  }

  .hiring-compare2__head-icon {
    width: 28px;
    height: 28px;
  }

  .hiring-compare2__head-icon .icon {
    width: 14px;
    height: 14px;
  }

  .hiring-compare2__head h3 {
    font-size: 0.78rem;
  }

  .hiring-compare2__timeline {
    gap: var(--space-1);
    padding: var(--space-2);
  }

  .hiring-compare2__timeline::before {
    left: calc(var(--space-2) + 11px);
  }

  .hiring-compare2__dot {
    width: 24px;
    height: 24px;
  }

  .hiring-compare2__dot .icon {
    width: 11px;
    height: 11px;
  }

  .hiring-compare2__timeline h4 {
    font-size: 0.72rem;
  }

  .hiring-compare2__timeline p {
    font-size: 0.66rem;
  }

  .hiring-compare2__arrow {
    padding-block: var(--space-1);
    gap: var(--space-1);
  }

  .hiring-compare2__arrow-circle {
    width: 34px;
    height: 34px;
  }

  .hiring-compare2__arrow-circle .icon {
    width: 15px;
    height: 15px;
  }

  .hiring-compare2__arrow p {
    font-size: 0.66rem;
  }

  .hiring .highlight-box {
    background-color: transparent;
    padding: 0;
  }

  .hiring .highlight-box__figure {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .hiring .highlight-box__lead {
    font-size: 0.9rem;
  }

  .hiring .highlight-box__desc {
    font-size: 0.72rem;
    margin-top: var(--space-1);
  }

  .hiring .highlight-box .checklist {
    gap: var(--space-1);
    background-color: var(--color-bg-soft);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    margin-top: var(--space-3);
  }

  .hiring .highlight-box .checklist__item {
    font-size: 0.7rem;
  }

  .compare__head {
    flex-direction: column;
    gap: var(--space-3);
    text-align: left;
  }

  .compare__head h2,
  .compare__head p {
    text-align: left !important;
    white-space: normal !important;
  }

  .compare__head-media {
    max-width: 220px;
  }

  .compare.section {
    padding-block: var(--space-4);
  }

  .compare__layout {
    margin-bottom: var(--space-3);
  }

  .compare__table-card {
    padding: var(--space-3) var(--space-2);
  }

  .compare__card-title {
    font-size: 1rem;
  }

  .compare__side-card {
    gap: var(--space-2);
    padding-block: var(--space-2);
  }

  .compare__side-lead {
    margin-top: var(--space-2);
    font-size: 0.72rem;
  }

  .compare__mobile-break {
    display: inline;
  }

  .compare__side-link a {
    font-size: 0.78rem;
    white-space: nowrap;
    gap: var(--space-1);
  }

  .compare__side-arrow .icon {
    width: 26px;
    height: 26px;
  }

  .compare__stance-card .checklist {
    gap: var(--space-3);
  }

  .compare__stance-card .checklist__item h4,
  .compare__stance-card .checklist__item p {
    white-space: normal;
  }

  .compare__stance-card .checklist__item h4 {
    font-size: 0.72rem;
  }

  .compare__stance-card .checklist__item p {
    font-size: 0.58rem;
  }

  .compare .highlight-box {
    background-color: transparent;
    padding: 0;
  }

  .compare .highlight-box__figure {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .action.section {
    padding-block: var(--space-4);
  }

  .action__head {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    text-align: left;
  }

  .action__head h2,
  .action__head p {
    text-align: left !important;
  }

  .action__head-media {
    max-width: 220px;
  }

  .action__flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "p1 a1 p2"
      "a2 a2 a2"
      "p3 p3 p3";
    padding: var(--space-3);
    column-gap: 0;
    row-gap: var(--space-2);
    margin-bottom: var(--space-3);
  }

  .action__flow > *:nth-child(1) {
    grid-area: p1;
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }

  .action__flow > *:nth-child(2) {
    grid-area: a1;
    transform: none;
    align-self: stretch;
    width: 30px;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border-soft);
    border-bottom: 1px solid var(--color-border-soft);
    position: relative;
  }

  .action__flow > *:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: var(--color-border-soft);
    transform: translateX(-50%);
  }

  .action__flow > *:nth-child(2) .action__flow-arrow-circle {
    position: absolute;
    z-index: 1;
    top: 187px;
    left: 50%;
    transform: translateX(-50%);
  }

  .action__flow > *:nth-child(3) {
    grid-area: p2;
    border-left: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }

  .action__flow > *:nth-child(4) {
    grid-area: a2;
    justify-self: center;
    align-self: center;
    width: 30px;
    height: 30px;
  }

  .action__flow > *:nth-child(5) {
    grid-area: p3;
  }

  .action__flow-panel {
    padding: var(--space-2);
  }

  .action__flow-panel--gold {
    padding: var(--space-3) var(--space-2);
  }

  .action__flow-label {
    padding: 3px var(--space-2);
    margin-bottom: var(--space-2);
    font-size: 0.68rem;
  }

  .action__flow-subtitle {
    min-height: 0;
    margin-bottom: var(--space-2);
    font-size: 0.78rem;
  }

  .action__flow > *:nth-child(1) .action__flow-subtitle,
  .action__flow > *:nth-child(3) .action__flow-subtitle {
    height: 36px;
  }

  .action__flow-list li {
    justify-content: center;
    text-align: center;
    padding-block: 6px;
    gap: 4px;
    font-size: 0.62rem;
    height: 46px;
    box-sizing: border-box;
  }

  .action__flow-list .icon-badge {
    display: none;
    width: 16px;
    height: 16px;
    font-size: 8px;
  }

  .action__flow-arrow {
    margin: 0;
  }

  .action__flow-arrow-circle {
    width: 30px;
    height: 30px;
  }

  .action__flow-arrow-circle .icon {
    width: 16px;
    height: 16px;
  }

  .action__flow-steps {
    gap: var(--space-2);
  }

  .action__flow-steps .icon-badge {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .action__flow-steps .num-circle {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }

  .action__flow-step-title {
    font-size: 0.72rem;
  }

  .action__flow-step-text {
    font-size: 0.64rem;
  }

  .action .highlight-box {
    background-color: transparent;
    padding: 0;
  }

  .action .highlight-box__figure {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .timing.section {
    padding-block: var(--space-4);
  }

  .timing__head {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    text-align: left;
  }

  .timing__head h2,
  .timing__head p {
    text-align: left !important;
  }

  .timing__head-media {
    max-width: 220px;
  }

  .timing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }

  .timing__grid .card {
    min-height: 0;
    padding: 1.4rem var(--space-2) var(--space-2);
  }

  .timing__grid .card__title {
    font-size: 0.72rem;
    min-height: 0;
    margin-bottom: var(--space-1);
  }

  .timing__grid .card__text {
    font-size: 0.64rem;
  }

  .timing__grid .num-circle {
    top: -12px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .timing .highlight-box {
    padding: var(--space-3);
  }

  .timing .highlight-box__figure {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .timing .highlight-box__btn {
    flex-basis: 100%;
    margin-top: var(--space-2);
  }

  .process__head {
    flex-direction: column;
    text-align: left;
  }

  .process__head h2,
  .process__head p {
    text-align: left !important;
  }

  .process.section {
    padding-block: var(--space-4);
  }

  .process__head {
    gap: var(--space-3);
  }

  .process__head-media {
    max-width: 220px;
  }

  .process__photo-caption {
    font-size: 0.6rem;
    padding: var(--space-1) var(--space-2);
  }

  .process__intro {
    font-size: 1rem;
  }

  .process .step-row {
    gap: var(--space-2);
  }

  .process .step {
    padding: var(--space-3) var(--space-2);
    gap: var(--space-1);
  }

  .step-row .step__icon {
    width: 40px;
    height: 40px;
  }

  .step-row .step__icon .icon {
    width: 18px;
    height: 18px;
  }

  .process .step__title {
    font-size: 0.78rem;
    min-height: 0;
  }

  .process .step__text {
    font-size: 0.68rem;
  }

  .process__sub-title {
    font-size: 1rem;
    margin-top: var(--space-3);
  }

  .process__tags-row {
    gap: var(--space-2);
  }

  .process__tag {
    padding: var(--space-1) var(--space-2);
    font-size: 0.7rem;
  }

  .faq.section {
    padding-block: var(--space-4);
  }

  .faq__head {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    text-align: left;
  }

  .faq__head h2,
  .faq__head p {
    text-align: left !important;
  }

  .faq__head-media {
    max-width: 220px;
  }

  .faq-list {
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }

  .accordion-item__q {
    padding: var(--space-2);
    gap: var(--space-2);
  }

  .accordion-item__q-text {
    gap: var(--space-1);
    min-width: 0;
  }

  .accordion-item__q-text > span:last-child,
  .accordion-item__q-text {
    font-size: var(--fs-small);
  }

  .accordion-item .faq-mark {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .accordion-item__chevron {
    width: 14px;
    height: 14px;
  }

  .accordion-item__body {
    padding: 0 var(--space-2) var(--space-2);
    font-size: var(--fs-small);
  }

  .accordion-item__body .faq-mark {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .faq .faq-item {
    padding: var(--space-2) var(--space-3);
    min-height: 0;
  }

  .faq .faq-item__q {
    font-size: 0.78rem;
    min-height: 0;
    padding-bottom: var(--space-1);
  }

  .faq .faq-item__a {
    font-size: 0.72rem;
  }

  .table-wrap {
    overflow-x: visible;
  }

  .compare-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: 0.75rem;
  }

  .compare-table th:first-child,
  .compare-table td:first-child {
    width: 27%;
  }

  .compare-table th:nth-child(2),
  .compare-table td:nth-child(2),
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3) {
    width: 36.5%;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.45rem 0.3rem;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
  }

  .compare-table tbody th {
    white-space: normal;
  }

  .compare-table tbody th .icon {
    width: 14px;
    height: 14px;
    margin: 0 0 2px;
  }

  .cta-bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-2);
  }

  .faq .cta-bar {
    padding: var(--space-3);
  }

  .faq .cta-bar__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .cta-bar__body {
    text-align: left;
    min-width: 0;
  }

  .faq .cta-bar__title {
    font-size: 0.75rem;
  }

  .checklist--row-inline {
    flex-basis: 100%;
    justify-content: flex-start;
    gap: var(--space-2);
  }

  .checklist--row-inline .checklist__item {
    gap: 4px;
    background-color: var(--color-bg-gold);
    border-radius: var(--radius-full);
    padding: 5px var(--space-2);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-navy);
  }

  .checklist--row-inline .checklist__item .icon {
    width: 14px;
    height: 14px;
    color: var(--color-gold-deep);
  }

  .cta-bar__btn {
    flex-basis: 100%;
    justify-content: center;
    margin-top: var(--space-1);
  }

  .origin.section {
    padding-block: var(--space-4);
  }

  .origin__hero {
    gap: var(--space-3);
    margin-bottom: var(--space-2);
  }

  .origin__title-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .origin__byline {
    font-size: 0.7rem;
    margin-top: var(--space-2);
  }

  .origin__byline-break {
    display: inline;
  }

  .origin__banner-photo {
    max-width: 280px;
  }

  .origin__flow-arrow {
    margin-block: var(--space-1);
  }

  .origin__flow-arrow .icon {
    width: 22px;
    height: 22px;
  }

  .origin__judge-card {
    padding: var(--space-3) var(--space-2);
  }

  .origin__judge-head {
    margin-bottom: var(--space-4);
  }

  .origin__judge-head h2 {
    font-size: 0.85rem;
  }

  .origin__judge-subtitle-break {
    display: inline;
  }

  .origin__judge-subtitle {
    font-size: 0.875rem;
  }

  .origin__judge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .origin__judge-item {
    padding: var(--space-2);
  }

  .origin__judge-item .icon-badge {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .origin__judge-item .card__title {
    font-size: 0.72rem;
  }

  .origin__judge-item .card__text {
    font-size: 0.64rem;
  }

  .closing.section {
    padding-block: var(--space-4);
  }

  .closing__layout {
    gap: var(--space-4);
    margin-bottom: var(--space-3);
  }

  .closing__lead {
    font-size: 0.8rem;
    margin-bottom: var(--space-3);
  }

  .closing__services {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }

  .closing__services .tag {
    padding: 5px 4px;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .closing__services .tag .icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .closing__points {
    gap: var(--space-3);
  }

  .closing__points li {
    gap: var(--space-1);
  }

  .closing__points .icon {
    width: 20px;
    height: 20px;
    margin-top: 0.1em;
  }

  .closing__points strong {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .closing__points span {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .origin__story {
    padding: var(--space-3);
    margin-bottom: var(--space-3);
  }

  .origin__story-conclusion {
    gap: var(--space-2);
  }

  .origin__story-conclusion .highlight-box__figure {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .closing .cta-bar__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .closing__tags {
    flex-basis: 100%;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-1);
  }

  .closing__tags .tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
  }

  .contact.section {
    padding-block: var(--space-4);
  }

  .contact .section-head {
    margin-bottom: var(--space-4);
  }

  .contact__mobile-break {
    display: inline;
  }

  .contact__form {
    max-width: 100%;
  }

  .form-grid {
    gap: var(--space-3);
    max-width: 100%;
  }

  .form-row {
    max-width: 100%;
  }

  .form-row input,
  .form-row textarea {
    width: 100%;
    max-width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }

  .contact__form button {
    max-width: 100%;
    white-space: normal;
  }

  section.section {
    padding-block: var(--space-6);
  }
}

@media (max-width: 400px) {
  .site-logo {
    font-size: var(--fs-small);
  }

  .header-cta {
    padding: 0.55rem 0.9rem;
    font-size: var(--fs-xsmall);
  }
}
