:root {
  --font-Noto-Sans-JP: "Noto Sans JP", sans-serif;
  --font-Arial: Arial, sans-serif;
  --font-Helvetica-Neue: "Helvetica Neue", sans-serif;
  --font-YuGothic: "Yu Gothic", "YuGothic", sans-serif;
  --font-Roboto: "Roboto", sans-serif;
  --color-honda-red: #cc0000;
  --color-light-red: #EA411F;
  --color-orange: #EA8B1F;
  --color-gray: #555555;
  --color-light-gray: #F4F4F5;
  --color-black: #222222;
  --color-white: #ffffff;
  --color-bg-primary: #FFEFEE;
  --cta-fill-start: #FF9E30;
  --cta-fill-end: #F10000;
  --cta-border-start: #F41F13;
  --cta-border-end: #FF9E30;
  --cta-hover-start: #FF1414;
  --cta-hover-end: #FFB35C;
  --inline-cta-border-start: #F10201;
  --inline-cta-border-end: #FF9E31;
  --kv-cta-grad-start: #ec4040;
  --kv-cta-grad-end: var(--color-honda-red);
  --kv-cta-hover-start: #FF3A3A;
  --kv-cta-hover-end: #FF7474;
  --header-height: 103px;
}

/* =====================================================
  Base
===================================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #1f1f1f;
  background: #f4f5f7;
  font-family: var(--font-Noto-Sans-JP);
  overflow-anchor: none !important;
}

html {
  scroll-padding-top: 45px;
}

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

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

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

p {
  margin: 0;
}

.visually-hidden {
  height: 400px;
}

.lp {
  margin: 0 auto;
  background: var(--color-white);
  padding-bottom: 144px;
}

.break-pc {
  display: block;
  flex-basis: 100%;
  width: 100%;
  height: 0;
}

.break-sp {
  display: none;
}

@media (max-width: 790px) {
  html {
    scroll-padding-top: 45px;
  }

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

  .break-pc {
    display: none;
  }

  .break-sp {
    display: block;
    flex-basis: 100%;
    width: 100%;
    height: 0;
  }

  .lp {
    padding-bottom: 70px;
  }
}

/* =====================================================
  CTA
===================================================== */
.sticky-cta {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 140;
  height: 144px;
  padding: 0 14px;
  background: var(--color-white);
  border-top: 1px solid #d9d9d9;
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;

  &.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 1050px);
    margin: 0 auto;
    padding: 5px 0 0;
  }

  .sticky-cta__image {
    position: absolute;
    left: 28px;
    bottom: -2px;
    width: 110px;
    pointer-events: none;
  }

  .sticky-cta__apply {
    position: relative;
    display: block;
    text-align: center;
    width: min(100%, 674px);
    height: 100px;
    margin-top: 0;
    padding: 11px 40px 21px;
    color: var(--color-white);
    border-radius: 7px;
    background: linear-gradient(90deg, var(--cta-fill-start) 0%, var(--cta-fill-end) 100%);
    letter-spacing: 1.5px;

    .sticky-cta__apply-bg {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cta-hover-start) 0%, var(--cta-hover-end) 100%);
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 3px;
      background: linear-gradient(90deg, var(--cta-border-start) 0%, var(--cta-border-end) 100%);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      transition: opacity 0.25s ease;
      z-index: 1;
    }

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 26px;
      width: 17px;
      height: 17px;
      border-top: 4px solid var(--color-white);
      border-right: 4px solid var(--color-white);
      transform: translateY(-50%) rotate(45deg);
    }

    .sticky-cta__apply-top,
    .sticky-cta__apply-main {
      position: relative;
      z-index: 1;
    }

    .sticky-cta__image {
      z-index: 1;
    }

    &:hover::before,
    &:focus-visible::before,
    &:hover .sticky-cta__apply-bg,
    &:focus-visible .sticky-cta__apply-bg {
      opacity: 1;
    }

    .sticky-cta__apply-top {
      display: block;
      font-size: 19px;
      line-height: 1.5;
    }

    .sticky-cta__apply-main {
      display: block;
      margin-top: 3px;
      font-size: 40px;
      font-weight: 500;
      line-height: 1;
    }
  }
}

@media (max-width: 790px) {
  .sticky-cta {
    height: 70px;
    padding: 0;

    .sticky-cta__inner {
      gap: 8px;
      justify-content: center;
      align-items: center;
      justify-items: center;
      display: flex;
    }

    .sticky-cta__image {
      width: 55px;
      left: 15px;
      bottom: 0;
    }

    .sticky-cta__apply {
      min-width: 50%;
      max-width: 90%;
      width: 400px;
      height: 54px;
      padding: 7px 10px 10px;

      &::after {
        right: 20px;
        width: 9px;
        height: 9px;
        border-top-width: 2px;
        border-right-width: 2px;
      }

      .sticky-cta__apply-top {
        font-size: 10px;
        letter-spacing: 0.5px;
      }

      .sticky-cta__apply-main {
        font-size: 20px;
        letter-spacing: 1px;
        margin-top: 2px;
      }
    }
  }
}

/* =====================================================
  Inline CTA
===================================================== */
.inline-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 147px;
  margin: 0;
  overflow: hidden;

  &::before,
  &::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  &::before {
    z-index: -2;
    background: url("../image/cta_bg.png") center 43% / cover no-repeat;
    background-attachment: fixed;
  }

  &::after {
    z-index: -1;
    background: url("../image/cta_bg_overlay.png") center / cover no-repeat;
  }

  .inline-cta__inner {
    width: min(100%, 614px);
    padding: 0 18px;
    display: grid;
    grid-template-columns: minmax(300px, 488px) minmax(300px, 488px);
    gap: 14px;
    justify-content: center;
    align-items: center;
  }

  .inline-cta__tel {
    display: grid;
    grid-template-columns: 30px auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: left;
    height: 60px;
    max-height: 60px;
    padding: 10px 18px;
    border: 2px solid #999;
    border-radius: 4px;
    background: var(--color-white);
  }

  .inline-cta__tel::before {
    content: "";
    display: inline-block;
    flex: 0 0 30px;
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin-bottom: 0;
    background-image: url("../image/cta_icon.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .inline-cta__tel-label {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--font-Helvetica-Neue);
    color: var(--color-light-red);
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }

  .inline-cta__tel-number {
    grid-column: 2;
    grid-row: 2;
    display: block;
    margin-top: 2px;
    color: var(--color-light-red);
    font-family: var(--font-Arial);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .inline-cta__tel:hover .inline-cta__tel-label,
  .inline-cta__tel:focus-visible .inline-cta__tel-label,
  .inline-cta__tel:hover .inline-cta__tel-number,
  .inline-cta__tel:focus-visible .inline-cta__tel-number {
    color: #FF2B00;
  }

  .inline-cta__tel:hover,
  .inline-cta__tel:focus-visible {
    border-color: #D8D8D8;
  }

  .inline-cta__apply {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    max-height: 60px;
    border-radius: 4px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, var(--cta-fill-start) 0%, var(--cta-fill-end) 100%);
    border: 0;
    overflow: hidden;
  }

  .inline-cta__apply-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cta-hover-start) 0%, var(--cta-hover-end) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  .inline-cta__apply-label {
    position: relative;
    z-index: 1;
  }

  .inline-cta__apply::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, var(--inline-cta-border-start) 0%, var(--inline-cta-border-end) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2;
  }

  .inline-cta__apply::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 26px;
    width: 12px;
    height: 12px;
    border-top: 4px solid var(--color-white);
    border-right: 4px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
  }

  .inline-cta__apply:hover::before,
  .inline-cta__apply:focus-visible::before,
  .inline-cta__apply:hover .inline-cta__apply-bg,
  .inline-cta__apply:focus-visible .inline-cta__apply-bg {
    opacity: 1;
  }
}

@media (max-width: 790px) {
  .inline-cta {
    height: 200px;

    &::before {
      background-position: center 42%;
    }

    &::after {
      background: url("../image/cta_bg_overlay_sp.png") center / cover no-repeat;
    }

    .inline-cta__inner {
      grid-template-columns: 1fr;
      gap: 24px;
      min-width: 50%;
      max-width: 90%;
      width: 300px;
      padding: 0;
    }

    .inline-cta__tel {
      padding: 8px 10px;
      border-width: 2px;
      column-gap: 13px;
    }

    .inline-cta__tel::before {
      width: 30px;
      height: 30px;
    }

    .inline-cta__tel-label {
      font-size: 12px;
    }

    .inline-cta__tel-number {
      margin-top: 3px;
      font-size: 30px;
      letter-spacing: 0.01em;
    }

    .inline-cta__apply {
      font-size: 24px;
    }

    .inline-cta__apply::after {
      right: 17px;
      width: 9px;
      height: 9px;
      border-top-width: 2px;
      border-right-width: 2px;
    }
  }
}

/* =====================================================
  Section heading
===================================================== */
.section-heading {
  .section-title {
    font-family: var(--font-Helvetica-Neue);
    margin: 0;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 3.5px;
    color: var(--color-black);
  }

  .section-title__brand {
    color: var(--color-honda-red);
    font-weight: 900;
  }

  .section-lead {
    font-family: var(--font-Helvetica-Neue);
    text-align: center;
    color: #333;
    font-size: 19px;
    line-height: 1.7;
    margin-top: 24px;

    span {
      font-weight: 700;

      &.red {
        color: var(--color-honda-red);
      }
    }
  }
}

@media (max-width: 790px) {
  .section-heading {
    .section-title {
      font-size: 28px;
      line-height: 1.35;
      letter-spacing: 0.02em;
    }

    .section-lead {
      font-size: 15.3px;
      line-height: 1.7;
    }
  }
}

/* =====================================================
  Sections (Skeleton) 
===================================================== */
.salary-system,
.fixedterm,
.work-content,
.work-environment,
.employee-voice,
.working-hours,
.application-flow,
.faq,
.job-description,
.company-info,
.site-footer {
  min-height: 40px;
  scroll-margin-top: 45px;
}

@media (max-width: 790px) {

  .salary-system,
  .fixedterm,
  .work-content,
  .work-environment,
  .employee-voice,
  .working-hours,
  .application-flow,
  .faq,
  .job-description,
  .company-info,
  .site-footer {
    scroll-margin-top: 45px;
  }
}

/* =====================================================
  Header
===================================================== */
.site-header {
  width: 100%;
  background-color: #fff;

  .site-header__inner {
    width: min(100%, 1050px);
    margin: 0 auto;
    min-height: 103px;
    padding: 0 0 0 0;
    border-bottom: 1px solid #ddd;
  }

  .site-header__branding {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 58px;
    position: relative;
  }

  .site-header__logo-link {
    width: 181.7px;
    flex-shrink: 0;
  }

  .site-header__logo {
    width: 100%;
    height: 54px;
    object-fit: contain;
  }

  .site-header__brand-text {
    font-family: var(--font-YuGothic);
    font-size: 11px;
    font-weight: 400;
    color: #231816;
    line-height: 11px;
    white-space: nowrap;
  }

  .site-header__menu-button {
    display: none;
  }

  .site-header__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    background: var(--color-white);
  }

  .site-header__nav.is-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 120;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .site-header__nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .site-header__nav-item {
    a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 29px;
      padding: 0 12px;
      font-family: var(--font-YuGothic);
      font-size: 13px;
      font-weight: 700;
      color: var(--color-honda-red);
      line-height: 13px;
      white-space: nowrap;
      border-radius: 3px;
      background: transparent;
      transition: background-color 0.25s ease, color 0.25s ease;
    }
  }

  .site-header__nav-item.is-current {
    a {
      color: var(--color-white);
      background: var(--color-honda-red);
    }
  }
}

@media (max-width: 1100px) and (min-width: 791px) {

  .site-header {
    .site-header__inner {
      min-height: auto;
    }

    .site-header__nav {
      padding: 10px 12px 5px;
    }
  }
}

@media (max-width: 790px) {
  .site-header {
    .site-header__inner {
      min-height: 114px;
    }

    .site-header__branding {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      min-height: 72px;
      height: 100%;
      padding: 18px 10px;
    }

    .site-header__logo-link {
      width: 178px;
    }

    .site-header__brand-text {
      text-align: center;
      font-size: 13px;
      line-height: 1;
      margin: 0;
      white-space: nowrap;
    }

    .site-header__menu-button {
      position: absolute;
      top: 16px;
      right: 10px;
      z-index: 100002;
      display: block;
      width: 30px;
      height: 23px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .site-header__menu-icon {
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg,
          #ff2b00 0%,
          #ff2b00 13.04%,
          rgba(255, 43, 0, 0) 13.04%,
          rgba(255, 43, 0, 0) 43.48%,
          #ff2b00 43.48%,
          #ff2b00 56.52%,
          rgba(255, 43, 0, 0) 56.52%,
          rgba(255, 43, 0, 0) 86.96%,
          #ff2b00 86.96%,
          #ff2b00 100%);
    }

    .site-header__menu-button[aria-expanded="true"] .site-header__menu-icon {
      background-image: linear-gradient(45deg, transparent 0, transparent 48%, white 48%, white 52%, transparent 52%, transparent 100%), linear-gradient(-45deg, transparent 0, transparent 48%, white 48%, white 52%, transparent 52%, transparent 100%);
    }

    .site-header__nav-list {
      gap: 0;
    }

    .site-header__nav-item {
      a {
        display: inline-block;
        min-height: 0;
        padding: 9px 8px;
        color: var(--color-white);
        font-size: 18px;
        font-weight: 400;
        line-height: 1.35;
        text-align: center;
      }
    }

    .site-header__nav-item.is-current {
      a {
        background: transparent;
        color: var(--color-white);
        text-decoration: underline;
        text-underline-offset: 4px;
      }
    }

    .site-header__nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 100001;
      width: 100%;
      height: 100%;
      padding: 70px 0 20px;
      background: rgba(0, 0, 0, 0.85);
    }

    .site-header__nav-list {
      display: block;
      width: 70%;
      margin: 0 auto;
      text-align: center;
    }

    .site-header__nav-item {
      border-bottom: 0;
      padding: 2px 0;
    }

    &.is-menu-open {
      .site-header__nav {
        display: block;
      }
    }
  }
}

/* =====================================================
  Footer
===================================================== */
.site-footer {
  min-height: 0;

  .site-footer__inner {
    width: min(100%, 1040px);
    max-width: 90%;
    margin: 0 auto;
    padding: 26px 0 23px;
  }

  .site-footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer__link {
    color: #000;
    font-size: 14px;
    font-weight: 200;
    line-height: 1.8;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .site-footer__link:first-child {
    white-space: nowrap;
  }

  .site-footer__link+.site-footer__link {
    margin-left: 22px;
    padding-left: 20px;
    border-left: 1px solid #ccc;
  }

  .site-footer__copyright {
    display: block;
    width: 100%;
    background: #BA0404;
    font-family: var(--font-Arial);
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    height: 40px;
    line-height: 40px;
    padding: 0;
  }
}

@media (max-width: 790px) {
  .site-footer {
    .site-footer__inner {
      max-width: 90%;
      padding: 16px 10px 11px;
    }

    .site-footer__nav {
      justify-content: space-between;
      align-items: flex-start;
      column-gap: 30px;
    }

    .site-footer__link {
      font-size: 13px;
      line-height: 1.8;
    }

    .site-footer__link+.site-footer__link {
      margin-left: 0;
      padding-left: 0;
      border-left: 0;
    }

    .site-footer__copyright {
      padding: 10px 15px 12px;
      font-size: 12px;
      line-height: 1.45;
      height: 54px;
    }
  }
}


/* =====================================================
  KV
===================================================== */
.kv {
  position: relative;
  color: #111;
  min-height: max(460px, calc(100dvh - var(--header-height)));

  .kv__inner {
    position: relative;
    display: grid;
    width: 100%;
    min-height: inherit;
    overflow: hidden;
  }

  .kv__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }

  .kv__bg.is-active {
    opacity: 1;
  }

  .kv__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .kv__overlay {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.2vh, 16px);
    padding: clamp(14px, 3vh, 38px) 20px clamp(16px, 3.2vh, 28px);
    text-align: center;
  }

  .kv__lead {
    margin: 0;
    font-size: clamp(30px, 4.2vw, 54px);
    font-weight: 700;
    line-height: 1.38;

    small {
      font-size: 68%;
    }
  }

  .kv__lead-accent {
    display: inline-block;
    margin-right: 3px;
    padding: 5px 9px 10px;
    color: var(--color-white);
    background: var(--color-honda-red);
    line-height: 1;
    letter-spacing: 1px;
  }

  .kv__copy {
    margin: 0;
    font-size: clamp(16px, 2.1vw, 24px);
    line-height: 1.45;
    font-weight: 400;
  }

  .kv__copy-accent {
    font-weight: 600;
    color: var(--color-honda-red);
  }

  .kv__text-image {
    width: min(100%, clamp(350px, 52vw, 470px));
    margin-top: 0;
  }

  .kv__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.3vw, 20px);
    width: min(100%, clamp(350px, 55vw, 526px));
    margin: clamp(10px, 2.8vh, 40px) 0 0;
  }

  .kv__benefit {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 22px 3px 16px;
    background: var(--color-white);
  }

  .kv__benefit-icon {
    position: absolute;
    top: -20px;
    width: 36px;
    height: auto;
  }

  .kv__benefit-main {
    margin: 0;
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .kv__benefit-sub {
    margin: 0;
    font-size: 90%;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0;
  }

  .kv__company {
    margin: 20px 0 3px;
    font-size: clamp(13px, 1.45vw, 16px);
    font-weight: 700;
  }

  .kv-cta {
    position: relative;
    display: block;
    text-align: center;
    width: min(100%, 488px);
    height: 84px;
    margin-top: 0;
    padding: 11px 40px 21px;
    color: var(--color-white);
    border-radius: 7px;
    background: linear-gradient(92.03deg, var(--kv-cta-grad-start) 0%, var(--kv-cta-grad-end) 100%);
    letter-spacing: 1.5px;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(92.03deg, var(--kv-cta-hover-start) 0%, var(--kv-cta-hover-end) 100%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 26px;
      width: 12px;
      height: 12px;
      border-top: 4px solid var(--color-white);
      border-right: 4px solid var(--color-white);
      transform: translateY(-50%) rotate(45deg);
    }

    .kv-cta__top,
    .kv-cta__main {
      position: relative;
      z-index: 1;
    }

    &:hover,
    &:focus-visible {
      background: linear-gradient(92.03deg, var(--kv-cta-grad-start) 0%, var(--kv-cta-grad-end) 100%);
    }

    &:hover::before,
    &:focus-visible::before {
      opacity: 1;
    }

    .kv-cta__top {
      display: block;
      font-size: 14px;
      line-height: 1.5;
    }

    .kv-cta__main {
      display: block;
      margin-top: 3px;
      font-size: 28px;
      font-weight: 600;
      line-height: 1;
    }
  }
}

@media (max-width: 790px) {
  .kv {
    min-height: max-content;

    .kv__inner {
      min-height: inherit;
    }

    .kv__bg {
      height: 100%;
    }

    .kv__overlay {
      justify-content: flex-start;
      gap: clamp(8px, 1.8vh, 12px);
      padding: 30px 10px 40px;
    }

    .kv__lead {
      font-size: 35px;
    }

    .kv__lead-main {
      font-size: inherit;
    }

    .kv__lead-accent {
      margin-bottom: 3px;
      padding: 3px 5px 5px;
    }

    .kv__copy {
      margin-top: 10px;
      font-size: 16px;
      line-height: 1.5;
    }

    .kv__text-image {
      width: min(97%, clamp(350px, 52vw, 470px));
      margin-top: 10px;
    }

    .kv__benefits {
      display: grid;
      width: min(100%, clamp(350px, 55vw, 526px));

      .kv__benefit-sub {
        font-size: 70%;
      }

      .kv__company {
        margin-top: 10px;
        font-size: 14px;
      }
    }

    .kv-cta {
      width: min(100%, 488px);
      min-height: 84px;
      margin-top: 10px;
      padding: 11px 48px 13px 48px;
      border-radius: 8px;

      &::after {
        right: 20px;
        width: 11px;
        height: 11px;
        border-top-width: 4px;
        border-right-width: 4px;
      }

      .kv-cta__top {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: 0.05em;
      }

      .kv-cta__main {
        margin-top: 4px;
        font-size: 26px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.05em;
      }
    }
  }
}

/* =====================================================
  Hondaの期間従業員
===================================================== */
.fixedterm {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background-image: url(../image/fixedterm_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 499px;

  .fixedterm__inner {
    width: min(100%, 1020px);
    margin: 0 auto;
    padding: 60px 20px 40px;
  }

  .fixedterm__intro {
    display: grid;
    grid-template-columns: 218px minmax(0, 1fr);
    align-items: start;
    column-gap: 22px;
    width: min(100%, 813px);
  }

  .fixedterm__copy {
    text-align: left;
  }

  .fixedterm__heading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
  }

  .fixedterm__label {
    display: inline-block;
    padding: 5px 15px 7px;
    color: var(--color-honda-red);
    background: var(--color-white);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .fixedterm__label_black {
    padding: 5px 15px 9px;
    color: var(--color-black);
    font-size: 32px;
    font-weight: 500;
  }

  .fixedterm__text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }

  .fixedterm__lead {
    margin: 14px 0 0;
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
  }

  .fixedterm__people {
    width: 218px;
    max-width: 100%;
    margin-top: -10px;
  }

  .fixedterm__cards {
    display: grid;
    grid-template-columns: repeat(4, 196px);
    gap: 15px;
    margin: 30px auto 0;
    justify-content: center;
  }

  .fixedterm__card {
    height: 162px;
    padding: 10px 8px 8px;
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-black);
    text-align: center;
    box-sizing: border-box;
  }

  .fixedterm__icon {
    display: block;
    margin: 0 auto 3px;
  }

  .fixedterm__card-label {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
  }

  .fixedterm__card-value {
    margin: 0;
    color: var(--color-honda-red);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;

    small {
      font-size: 70%;
      line-height: 1;
      display: inline-block;
    }
  }

  .fixedterm__card-note {
    margin: 9px 0 0;
    color: var(--color-gray);
    font-size: 12px;
    line-height: 1;
  }

  .fixedterm__card--1 .fixedterm__icon {
    width: auto;
    height: 47px;
  }

  .fixedterm__card--2 .fixedterm__icon {
    width: 38px;
    height: 45px;
  }

  .fixedterm__card--3 {
    .fixedterm__icon {
      width: 40px;
      height: 46px;
    }

    .fixedterm__card-value {
      line-height: 0.7;
    }
  }

  .fixedterm__card--4 .fixedterm__icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 790px) {
  .fixedterm {
    min-height: 0;
    background-size: cover;
    background-position: center;

    .fixedterm__inner {
      padding: 35px 28px 60px;
    }

    .fixedterm__intro {
      display: flex;
      flex-direction: column;
      row-gap: 10px;
      width: 100%;
    }

    .fixedterm__copy {
      order: 1;
      text-align: left;
      width: 100%;
    }

    .fixedterm__heading {
      display: flex;
      text-align: center;
      justify-content: center;
    }

    .fixedterm__label {
      font-size: 28px;
      padding: 3px 10px 5px;
    }

    .fixedterm__text {
      font-size: 26px;
    }

    .fixedterm__lead {
      width: 100%;
      margin-top: 16px;
      font-size: 16px;
      line-height: 1.75;
    }

    .fixedterm__people {
      order: 2;
      width: 170px;
      margin: 4px auto;
    }

    .fixedterm__cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      width: 90%;
      margin-top: 18px;
    }

    .fixedterm__card {
      height: 110px;
      padding: 8px 8px 6px;
    }

    .fixedterm__icon {
      height: 27px;
      width: auto;
      margin: 0 auto;
    }

    .fixedterm__card--1 .fixedterm__icon,
    .fixedterm__card--2 .fixedterm__icon,
    .fixedterm__card--3 .fixedterm__icon,
    .fixedterm__card--4 .fixedterm__icon {
      height: 27px;
      margin: 0 auto;
    }

    .fixedterm__card-label {
      font-size: 19px;
    }

    .fixedterm__card-value {
      margin-top: 2px;
      font-size: 27px;
    }

    .fixedterm__card-note {
      margin: 7px 0 0;
      font-size: 10px;
    }
  }
}

/* =====================================================
  給与について
===================================================== */
.salary-system {
  padding: 50px 0 120px;

  .salary-system__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    max-width: 90%;
  }

  .salary-card__container {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 60px;
  }

  .salary-card {
    border: 1px solid var(--color-honda-red);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
  }

  .salary-card__head {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 56px;
    height: 56px;
    background: var(--color-honda-red);

    .salary-card__head-icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      margin-right: 2px;
    }

    p {
      line-height: 1;
      font-size: 24px;
      letter-spacing: .8px;
      color: #fff;
      font-weight: 400;

      span {
        font-size: 16px;
        font-weight: 400;
        padding-left: 7px;
      }
    }
  }

  .salary-card--yearly .salary-card__head {
    background: var(--color-light-red);
  }

  .salary-card--bonus {
    border-color: #e5891b;
  }

  .salary-card--bonus .salary-card__head {
    background: #e5891b;
  }

  .salary-card--other {
    border-color: #909090;
  }

  .salary-card--other .salary-card__head {
    background: #909090;
  }

  .salary-card__head small {
    font-size: 12px;
    font-weight: 400;
  }

  .salary-card__body {
    padding: 26px 30px 38px;
  }

  .salary-card__body--monthly {
    display: grid;
    grid-template-columns: 580px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .salary-card__main,
  .salary-card__sub {
    width: 100%;
  }

  .salary-card__main-text {
    display: flex;
    align-items: center;
    gap: 20px;

    .salary-chip_dec {
      font-size: 16px;
      color: var(--color-black);
      margin: 0 0 10px;
    }
  }

  .salary-chip {
    display: inline-block;
    position: relative;
    margin: 0 0 10px;
    padding: 4px 24px 6px;
    color: var(--color-white);
    background: var(--color-black);
    font-family: var(--font-Helvetica-Neue);
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .salary-chip::after {
    content: "";
    position: absolute;
    left: 26px;
    bottom: -16px;
    width: 0;
    height: 0;
    border-top: 16px solid var(--color-black);
    border-left: 16px solid transparent;
  }

  .salary-chip span {
    color: #FFF200;
    font-size: 30px;

    strong {
      font-size: 47px;
      line-height: 1;
    }
  }

  .salary-amount {
    margin: 0;
    color: var(--color-honda-red);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;

    .salary-breakdown {
      color: var(--color-black);
      width: 1em;
      display: inline-block;
      font-weight: 500;
      font-size: 28px;
      margin-right: 8px;
    }

    strong {
      font-family: var(--font-Helvetica-Neue);

      &.man {
        font-size: 88px;
        letter-spacing: 3px;
      }

      &.thousand {
        font-size: 64px;
      }
    }
  }

  .salary-amount strong {
    font-size: 62px;
  }

  .salary-amount span {
    font-size: 30px;
  }

  .salary-note {
    margin: 6px 0 0;
    color: var(--color-honda-red);
    font-size: 16px;
  }

  .salary-list {
    margin: 0;
    padding: 12px 16px;
    background: #f2f2f2;
    color: #555;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
  }

  .salary-list__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
  }

  .salary-list__items {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-Arial);
  }

  .salary-list__items li {
    display: flex;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: 16px;
    margin-top: 5px;
    font-weight: 300;
  }

  .salary-list__items li:first-child {
    margin-top: 0;
  }

  .salary-list__label,
  .salary-list__value {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }

  .salary-list__value {
    white-space: nowrap;
  }

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

  .salary-year-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }

  .salary-year__list {
    display: grid;
    grid-template-columns: 577px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
  }

  .salary-year__wrap {
    display: grid;
    grid-template-columns: 95px 1fr;
    align-items: center;
    gap: 8px;
  }

  .salary-year__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    text-align: center;
    color: #fff;
    background: var(--color-light-red);
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px;
    height: 44px;
    line-height: 44px;
    padding: 0 15px;
    width: 90px;

    strong {
      font-size: 30px;
    }
  }

  .salary-amount--yearly {
    display: inline-block;
    font-size: 30px;
  }

  .salary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 30px;
  }

  .salary-table th {
    border: 1px solid #fff;
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.35;
  }

  .salary-table td {
    border: 1px solid #e3cfcf;
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
  }

  .salary-table thead th {
    background: var(--color-bg-primary);
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.9;
  }

  .salary-table thead th:first-child {
    width: 33%;
  }

  .salary-table thead th:nth-child(2) {
    width: 33%;
  }

  .salary-table tbody th {
    background: #FFD2CC;
    color: var(--color-black);
    font-size: 22px;
    font-weight: 600;
    white-space: nowrap;
  }

  .salary-table__period {
    color: var(--color-black);
    font-size: 18px;
    white-space: nowrap;
    line-height: 2.6;
    font-weight: 400;
  }

  .salary-table__amount {
    color: var(--color-honda-red);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;

    strong {
      font-family: var(--font-Helvetica-Neue);
      font-size: 50px;
      padding-right: 2px;
    }
  }

  .salary-perks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }

  .salary-perks li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 10px;
    text-align: center;
    background: #F4F4F4;
    border-radius: 6px;
  }

  .salary-perks li>span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
  }

  .salary-perks strong {
    display: block;
    margin-top: 8px;
    color: var(--color-honda-red);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .salary-perks p {
    margin-top: 8px;
    color: var(--color-honda-red);
    font-size: 25px;
    font-weight: 700;
  }

  .salary-perks li small {
    display: block;
    margin-top: 6px;
    color: var(--color-gray);
    font-size: 11px;
    line-height: 1.4;
  }

  .salary-other-target {
    margin-top: 42px;
  }

  .salary-other-target__title {
    margin: 0 0 14px;
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }

  .salary-other-target__table {
    max-width: 100%;
    border-collapse: collapse;
  }

  .salary-other-target__table th,
  .salary-other-target__table td {
    letter-spacing: 1px;
    border: 1px solid #E6E6E6;
    padding: 12px 24px;
    text-align: center;
    width: max-content;
    font-size: 16px;
    line-height: 1.4;
    color: #231816;
    font-weight: 200;
  }

  .salary-other-target__table th {
    background: var(--color-bg-primary);
    text-align: left;
  }

  .salary-other-target__table td {
    letter-spacing: 0.5px;
  }

  .salary-other-target__table td:last-child {
    color: var(--color-honda-red);
    white-space: nowrap;
  }

  .salary-other-target__table td:nth-child(2) {
    white-space: nowrap;
  }

  .salary-perks strong,
  .salary-perks strong em {
    font-style: normal;
  }

  .salary-perks strong {
    font-family: var(--font-Helvetica-Neue);
  }

  .salary-perks__unit {
    font-size: 19px;
    line-height: 1;
    color: var(--color-honda-red);
  }

  .salary-perks__prefix {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    vertical-align: inherit;
    margin-right: 2px;
  }

  .salary-perks strong::first-letter {
    line-height: 1;
  }
}

@media (max-width: 1150px) {
  .salary-system {
    .salary-card__body--monthly {
      grid-template-columns: 1fr;
    }

    .salary-year-group {
      margin-top: 0;
    }

    .salary-year__list {
      grid-template-columns: 1fr;
      gap: 5px;
    }
  }
}

@media (max-width: 790px) {
  .salary-system {
    padding: 55px 0 80px;

    .salary-card__container {
      margin-top: 30px;
      gap: 40px;
    }

    .salary-card__head {
      font-size: 15px;
      padding: 7px 10px;

      p {
        span {
          font-size: 12px;
        }
      }
    }

    .salary-card__body {
      padding: 20px 16px 25px;
    }

    .salary-card__body--monthly {
      gap: 8px;
    }

    .salary-card__main-text {
      display: block;

      .salary-chip_dec {
        font-size: 14px;
        text-align: right;
      }
    }

    .salary-chip {
      font-size: 19px;
      padding: 3px 20px 4px;
      white-space: normal;
    }

    .salary-chip span {
      font-size: 24px;

      strong {
        font-size: 38px;
      }
    }

    .salary-chip::after {
      left: 20px;
      bottom: -14px;
    }

    .salary-amount {
      line-height: 1;
      font-size: 23px;

      .salary-breakdown {
        font-size: 20px;
        line-height: 1.2;
        margin-right: 3px;
      }

      small {
        font-size: 14px;
      }

      strong {
        font-size: 35px;

        &.man {
          font-size: 60px;
          letter-spacing: 0;
        }

        &.thousand {
          font-size: 45px;
        }
      }

      span {
        font-size: 18px;
      }
    }


    .salary-note {
      font-size: 12px;
    }

    .salary-list {
      margin-top: 8px;
      padding: 13px;
      border-radius: 6px;
      grid-template-columns: 27px minmax(0, 1fr);
      column-gap: 5px;
    }

    .salary-list__title {
      font-size: 13px;
      line-height: 1.3;
    }

    .salary-list__items li {
      column-gap: 10px;
      margin-top: 6px;
    }

    .salary-list__label,
    .salary-list__value {
      font-size: 13px;
      line-height: 1.3;
    }

    .salary-year__wrap {
      grid-template-columns: 50px 1fr;
      gap: 4px;
    }

    .salary-year__tag {
      font-size: 12px;
      padding: 2px 0;
      width: 50px;
      height: 25px;

      strong {
        font-size: 19px;
      }
    }

    .salary-amount--yearly {
      font-size: 18px;
    }

    .salary-amount--yearly strong.man {
      font-size: 40px;
      letter-spacing: 0;
    }

    .salary-amount--yearly strong.thousand {
      font-size: 34px;
    }

    .salary-amount--yearly .salary-breakdown {
      font-size: 17px;
      margin-right: 4px;
    }

    .salary-amount--yearly span {
      font-size: 18px;
    }

    .salary-table {
      font-size: 12px;
      margin-top: 10px;
    }

    .salary-table thead th {
      height: 45px;
      padding: 2px 13px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2;
      white-space: pre-wrap;
    }

    .salary-table thead td {
      height: 64px;
      padding: 6px 13px;
    }

    .salary-table thead th:first-child {
      width: 16%;
    }

    .salary-table thead th:nth-child(2) {
      width: 33%;
    }

    .salary-table tbody th {
      font-size: 16px;
    }

    .salary-table__period {
      font-size: 13px;
    }

    .salary-table__amount {
      font-size: 23px;

      strong {
        font-size: 36px;
      }
    }

    .salary-perks {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .salary-perks li {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      grid-template-rows: auto auto;
      align-items: start;
      column-gap: 10px;
      row-gap: 0;
      padding: 10px 16px;
      border-radius: 0;
      text-align: left;
    }

    .salary-perks li>span {
      grid-column: 1;
      grid-row: 1 / 3;
      align-self: center;
      font-size: 13px;
      line-height: 1.3;
      font-weight: 400;
    }

    .salary-perks strong {
      grid-column: 2;
      grid-row: 1;
      align-self: end;
      margin-top: 0;
      text-align: right;
      font-size: 30px;
      line-height: 1;
    }

    .salary-perks__unit {
      font-size: 18px;
    }

    .salary-perks p {
      grid-column: 2;
      grid-row: 1;
      align-self: center;
      margin-top: 0;
      text-align: right;
      font-size: 17px;
      line-height: 1;
      white-space: nowrap;
    }

    .salary-perks__prefix {
      font-size: 17px;
      writing-mode: horizontal-tb;
      margin-right: 0;
    }

    .salary-perks li small {
      grid-column: 2;
      grid-row: 2;
      align-self: start;
      margin-top: 0;
      text-align: right;
      font-size: 8px;
      line-height: 1.4;
      white-space: nowrap;
    }

    .salary-perks li br {
      display: none;
    }

    .salary-other-target {
      margin-top: 22px;
    }

    .salary-other-target__title {
      margin-bottom: 8px;
      font-size: 13px;
    }

    .salary-other-target__table th,
    .salary-other-target__table td {
      padding: 6px 4px;
      font-size: 11px;
      width: max-content;
      white-space: nowrap;
    }
  }
}

/* =====================================================
  仕事内容
===================================================== */
.work-content {
  position: relative;
  padding: 64px 0 70px;
  background-image: url(../image/work-content_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  .work-content__inner {
    width: min(100%, 944px);
    margin: 0 auto;
    max-width: 90%;
  }

  .work-content__lead {
    margin: 20px auto 0;
  }

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

  .work-content__card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
  }

  .work-content__card-title {
    margin: 0 0 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-honda-red);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
  }

  .work-content__card-title::before {
    content: "";
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
    background: url(../image/work-content_icon.svg) center/contain no-repeat;
  }

  .work-content__card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
  }

  .work-content__card p {
    margin: 13px 0 0;
    color: #333;
    font-size: 15px;
    line-height: 1.9;
  }

  .work-content__note {
    margin: 27px 0 0;
    color: #333;
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 790px) {
  .work-content {
    padding: 40px 0 50px;

    .work-content__inner {
      width: min(100%, 1040px);
      max-width: calc(100% - 40px);
    }

    .work-content__lead {
      margin-top: 16px;
      line-height: 1.7;
    }

    .work-content__grid {
      margin-top: 22px;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .work-content__card {
      padding: 20px;
    }

    .work-content__card-title {
      font-size: 24px;
    }

    .work-content__card-title::before {
      width: 20px;
      height: 20px;
    }

    .work-content__card img {
      height: 190px;
      border-radius: 4px;
    }

    .work-content__card p {
      margin-top: 8px;
      font-size: 14px;
      line-height: 1.7;
    }

    .work-content__note {
      margin-top: 14px;
      font-size: 12px;
    }
  }

}

/* =====================================================
  働く環境
===================================================== */
.work-environment {
  padding: 84px 0 88px;
  background: var(--color-bg-primary);

  .work-environment__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    max-width: 90%;
  }

  .work-environment__panel {
    margin: 36px auto 0;
    background: #fff;
    border-radius: 8px;
    padding: 40px 34px 32px;
  }

  .work-environment__head {
    display: flex;
    align-items: center;
    gap: 20px;

    p {
      margin: 0;
      color: #333;
      font-size: 13px;
      line-height: 1.6;
    }
  }

  .work-environment__heading {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-black);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .work-environment__heading::before {
    content: "";
    width: 38px;
    height: 46px;
    background: url(../image/fixedterm_icon_01.svg) center/contain no-repeat;
  }

  .work-environment__grid {
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 30px;
  }

  .work-environment__card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }

  .work-environment__card h4 {
    margin: 20px 0 13px;
    color: #333;
    font-family: var(--font-Helvetica-Neue);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }

  .work-environment__card p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.6px;
  }

  .work-environment__meal {
    margin-top: 70px;
    background: #FEF4E4;
    border-radius: 6px;
    padding: 30px 35px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;

    .work-environment__meal-copy {
      margin: 0;
    }

    .work-environment__meal-title {
      margin: 0;
      color: var(--color-light-red);
      font-size: 24px;
      font-weight: 700;
      line-height: 1.2;
    }

    .work-environment__meal-text {
      margin: 16px 0 0;
      color: #333;
      font-size: 16px;
      line-height: 1.6;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      gap: 30px;
    }

    li img {
      width: 126px;
      height: auto;
    }
  }

  .work-environment__other {
    margin: 14px 0 0;
    padding: 18px 0;
    background-color: var(--color-light-gray);
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;

    li {
      padding: 0 20px;
      border-left: 1px solid rgba(58, 58, 58, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      line-height: 1.4;
      color: #333;
      flex: 0 1 auto;

      span {
        font-family: var(--font-Helvetica-Neue);
        font-size: 16px;
        white-space: nowrap;
      }
    }

    li.work-environment__other-label {
      border-left: 0 !important;
      font-size: 20px;
      flex: 0 0 100px;
    }

    li img {
      width: auto;
      height: 33px;
      object-fit: contain;
    }
  }

}

@media (max-width: 790px) {
  .work-environment {
    padding: 42px 0 52px;

    .work-environment__inner {
      max-width: calc(100% - 40px);
    }

    .work-environment__panel {
      margin-top: 20px;
      padding: 27px 20px;
      border-radius: 6px;
    }

    .work-environment__head {
      align-items: flex-start;
      gap: 13px;
      flex-direction: column;

      p {
        font-size: 12px;
      }
    }

    .work-environment__heading {
      font-size: 24px;
      gap: 6px;
    }

    .work-environment__heading::before {
      width: 20px;
      height: 20px;
    }

    .work-environment__grid {
      margin-top: 19px;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .work-environment__card img {
      height: 170px;
    }

    .work-environment__card h4 {
      margin: 15px 0 13px;
      font-size: 22px;
    }

    .work-environment__card p {
      font-size: 13px;
      line-height: 1.6;
      letter-spacing: -0.5px;
    }

    .work-environment__meal {
      margin-top: 35px;
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 20px 17px 17px;
      border-radius: 10px;

      .work-environment__meal-title {
        font-size: 17px;
      }

      .work-environment__meal-text {
        margin-top: 4px;
        font-size: 12px;
      }

      ul {
        justify-content: center;
        gap: 8px;
      }

      li img {
        width: 75px;
        height: 75px;
      }
    }

    .work-environment__other {
      margin-top: 40px;
      flex-direction: column;
      padding: 5px 16px;

      li {
        min-height: 44px;
        border-left: 0;
        border-top: 1px solid rgba(58, 58, 58, 0.3);
        justify-content: flex-start;
        padding: 16px 0;
        font-size: 9px;
        text-align: left;
        gap: 10px;
      }

      li span {
        white-space: wrap;
      }

      li span br {
        display: none;
      }

      li span br.work-environment__force-break {
        display: inline;
      }

      li:first-child {
        border-top: 0;
        flex: unset;
        font-weight: 600;
      }

      li img {
        height: 38px;
        min-width: 45px;
      }
    }


    .work-environment__other-label {
      font-size: 18px !important;
    }
  }
}

/* =====================================================
  社員の声
===================================================== */
.employee-voice {
  padding: 80px 0 130px;
  background: linear-gradient(180deg, #ff2a16 0%, #f47a12 100%);

  .employee-voice__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    max-width: 90%;
  }

  .employee-voice__title {
    color: #fff;
  }

  .employee-voice__lead {
    color: #fff;
  }

  .employee-voice__list {
    margin-top: 50px;
    display: grid;
    gap: 40px;
  }

  .employee-voice__card {
    background: #fff;
    border-radius: 8px;
    padding: 34px 33px 40px 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 307px;
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .employee-voice__copy,
  .employee-voice__person-wrap {
    position: relative;
    z-index: 1;
  }

  .employee-voice__tag {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 24px;
    background: #ffd503;
    border-radius: 999px;
    color: #111;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }

  .employee-voice__copy h3 {
    margin: 12px 0 0;
    color: var(--color-honda-red);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
  }

  .employee-voice__copy>p:last-child {
    margin: 16px 0 0;
    color: #333;
    font-size: 16px;
    line-height: 1.75;
  }

  .employee-voice__person-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    right: 33px;
  }

  .employee-voice__person-wrap img {
    max-width: 307px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 790px) {
  .employee-voice {
    padding: 50px 0 80px;

    .employee-voice__inner {
      max-width: calc(100% - 40px);
    }

    .employee-voice__lead {
      margin-top: 12px;
    }

    .employee-voice__list {
      margin-top: 40px;
      gap: 25px;
    }

    .employee-voice__card {
      padding: 15px 18px 0;
      grid-template-columns: 1fr;
      gap: 14px;
      border-radius: 10px;
    }

    .employee-voice__card::after {
      right: 50%;
      top: auto;
      bottom: -30px;
      width: 170px;
      height: 170px;
      transform: translateX(50%);
    }

    .employee-voice__tag {
      min-height: 32px;
      padding: 4px 22px;
      font-size: 16px;
    }

    .employee-voice__copy h3 {
      margin-top: 10px;
      font-size: 20px;
      line-height: 1.45;
    }

    .employee-voice__copy>p:last-child {
      margin-top: 10px;
      font-size: 14px;
    }

    .employee-voice__person-wrap {
      position: relative;
      right: unset;
    }

    .employee-voice__person-wrap img {
      max-width: 75%;
      width: 220px;
    }
  }
}

/* =====================================================
  勤務時間・休日
===================================================== */
.working-hours {
  padding: 86px 0 96px;
  background: #efefef;

  .working-hours__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    max-width: 90%;
  }

  .working-hours__note {
    text-align: center;
    color: #333;
    margin-top: 3px;
    font-size: 16px;
  }

  .working-hours__panel {
    margin-top: 86px;
    background: #fff;
    padding: 44px 42px 54px;
  }

  .working-hours__panel h3 {
    margin: 0;
    color: var(--color-black);
    font-family: var(--font-Helvetica-Neue);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
  }

  .working-hours__schedule {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
  }

  .working-hours__schedule img {
    width: 100%;
    height: auto;
    display: block;
  }

  .working-hours__panel hr {
    margin: 48px 0 32px;
    border: 0;
    border-top: 1px solid #E6E6E6;
  }

  .working-hours__holiday {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 533px) 1fr;
    gap: 80px;
    align-items: end;
  }

  .working-hours__holiday img {
    width: 100%;
    height: auto;
    display: block;
  }

  .working-hours__holiday .working-hours__people {
    max-width: 325px;
    justify-self: end;
  }
}


@media (max-width: 790px) {
  .working-hours {
    padding: 40px 0 70px;

    .working-hours__inner {
      max-width: calc(100% - 40px);
    }

    .working-hours__lead {
      font-size: 15px;
    }

    .working-hours__note {
      font-size: 12px;
      margin-top: 7px;
    }

    .working-hours__panel {
      margin-top: 46px;
      padding: 30px;
    }

    .working-hours__panel h3 {
      font-size: 18px;
    }

    .working-hours__schedule {
      margin-top: 33px;
      grid-template-columns: 1fr;
      gap: 42px;
    }

    .working-hours__schedule img {
      height: auto;
      display: block;
      width: 237px;
      max-width: 100%;
      margin: 0 auto;
    }

    .working-hours__panel hr {
      margin: 47px 0 17px;
    }

    .working-hours__holiday {
      margin-top: 20px;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .working-hours__holiday .working-hours__people {
      max-width: 90%;
      justify-self: center;
      width: 230px;
    }
  }
}

/* =====================================================
  応募から入社までの流れ
===================================================== */
.application-flow {
  padding: 90px 0 140px;
  position: relative;
  background-image: url(../image/application-flow_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  .application-flow__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    max-width: 90%;
  }

  .application-flow__title {
    color: #fff;
  }

  .application-flow__lead {
    color: #fff;
  }

  .application-flow__list {
    margin: 25px auto 0;
    padding: 0;
    list-style: none;
    width: min(100%, 700px);
    display: grid;
    gap: 37px;
  }

  .application-flow__item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  }

  .application-flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -26px;
    width: 25px;
    height: 23px;
    background: url("../image/arrow-down.svg") center / contain no-repeat;
    transform: translateX(-50%);
  }

  .application-flow__item-head {
    min-height: 57px;
    background: var(--color-honda-red);
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 40px 11px;

    h3 {
      margin: 0;
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      line-height: 1.2;
    }
  }

  .application-flow__step {
    min-height: 36px;
    min-width: 112px;
    border-radius: 999px;
    background: #FFD503;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    color: #000;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
  }

  .application-flow__item-body {
    padding: 28px 40px 26px;
    font-family: var(--font-Helvetica-Neue);

    p {
      margin: 0;
      color: #333;
      font-size: 16px;
      line-height: 1.8;
    }

    p+p {
      margin-top: 40px;
    }
  }
}

@media (max-width: 790px) {
  .application-flow {
    padding: 53px 0 80px;

    .application-flow__lead {
      max-width: 83%;
      margin: 24px auto 0;
    }

    .application-flow__list {
      margin-top: 33px;
      gap: 26px;
    }

    .application-flow__item {
      border-radius: 8px;
    }

    .application-flow__item:not(:last-child)::after {
      bottom: -18px;
      width: 19px;
      height: 17px;
    }

    .application-flow__item-head {
      min-height: 36px;
      border-radius: 8px 8px 0 0;
      gap: 8px;
      padding: 4px 10px;

      h3 {
        font-size: 16px;
        font-weight: normal;
      }
    }

    .application-flow__step {
      min-height: 23px;
      min-width: 75px;
      padding: 3px 15px;
      font-size: 13px;
    }

    .application-flow__item-body {
      padding: 11px 20px 16px;

      p {
        font-size: 14px;
        line-height: 1.65;
      }

      p+p {
        margin-top: 28px;
      }
    }
  }
}

/* =====================================================
  FAQ
===================================================== */
.faq {
  padding: 77px 0 100px;
  background: var(--color-light-gray);
  font-family: var(--font-Helvetica-Neue);

  .faq__inner {
    width: min(100%, 1060px);
    max-width: 90%;
    margin: 0 auto;
  }

  .faq__title {
    margin: 0;
    text-align: center;
    color: var(--color-honda-red);
    font-size: 47px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }

  .faq__list {
    margin-top: 43px;
    border-top: 1px solid #dddddd;
  }

  .faq__item {
    padding: 25px 17px;
    border-bottom: 1px solid #dddddd;
  }

  .faq__question,
  .faq__answer {
    margin: 0;
    display: flex;
    gap: 12px;
    align-items: baseline;
  }

  .faq__question {
    color: var(--color-honda-red);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
  }

  .faq__answer {
    margin-top: 16px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }

  .faq__answer--multi {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
  }

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

  .faq__steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0;
    align-items: start;
  }

  .faq__steps li+li {
    margin-top: 20px;
  }

  .faq__step-no {
    margin-right: 3px;
  }

  .faq__steps p {
    margin: 0;
  }

  .faq__badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-Arial);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
  }

  .faq__badge--q {
    background: var(--color-honda-red);
    color: #fff;
  }

  .faq__badge--a {
    background: #fff;
    color: var(--color-honda-red);
  }
}

@media (max-width: 790px) {
  .faq {
    padding: 36px 0 47px;

    .faq__title {
      font-size: 40px;
    }

    .faq__list {
      margin-top: 30px;
    }

    .faq__item {
      padding: 18px 0 22px;
    }

    .faq__question {
      font-size: 15px;
      line-height: 1.68;
      gap: 7px;
    }

    .faq__answer {
      margin-top: 10px;
      font-size: 14px;
      line-height: 1.7;
      gap: 7px;
    }

    .faq__answer--multi {
      grid-template-columns: 26px 1fr;
      column-gap: 8px;
    }

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

    .faq__badge {
      width: 26px;
      height: 26px;
      flex-basis: 26px;
      font-size: 15px;
      margin-top: 2px;
    }
  }
}

/* =====================================================
  募集要項
===================================================== */
.job-description {
  padding: 62px 0 82px;

  .job-description__inner {
    width: min(100%, 1040px);
    max-width: 90%;
    margin: 0 auto;
  }

  .job-description__title {
    color: var(--color-honda-red);
  }

  .job-description__list {
    margin: 44px auto 0;
    width: min(100%, 800px);
    border-top: 1px solid #dddddd;
  }

  .job-description__row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0 20px;
    padding: 20px;
    border-bottom: 1px solid #dddddd;
    font-family: var(--font-Helvetica-Neue);
  }

  dt {
    margin: 0;
    color: var(--color-honda-red);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
  }

  dd {
    margin: 0;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
  }

  .job-description__map {
    margin-top: 14px;
  }

  .job-description__map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 1px solid #ddd;
  }

  .job-description__map-link {
    display: inline-block;
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.4;
    color: var(--color-honda-red);
    text-decoration: underline;
  }

  .job-description__location-note {
    margin-top: 112px;
  }

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

  .job-description__bullet-list li {
    position: relative;
    padding-left: 1em;
  }

  .job-description__bullet-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }

  .job-description__bullet-list li+li {
    margin-top: 2px;
  }
}

@media (max-width: 790px) {
  .job-description {
    padding: 36px 0 44px;

    .job-description__list {
      width: 100%;
      margin-top: 20px;
      border-top: 0;
    }

    .job-description__row {
      display: block;
      padding: 0;
      border-bottom: 0;
    }

    .job-description__row+.job-description__row {
      margin-top: 12px;
    }

    dt {
      display: block;
      margin: 0;
      padding: 6px 15px;
      border-radius: 999px;
      background: linear-gradient(90deg, #c00 0%, #ef4a4a 100%);
      color: #fff;
      font-size: 14px;
      line-height: 1.7;
    }

    dd {
      margin: 13px 0 28px;
      font-size: 14px;
      line-height: 1.8;
      padding: 0 10px;
    }

    .job-description__map {
      margin-top: 8px;
    }

    .job-description__map iframe {
      height: 230px;
    }

    .job-description__map-link {
      margin-top: 4px;
      font-size: 9px;
    }

    .job-description__location-note {
      margin-top: 12px;
    }
  }
}

/* =====================================================
  会社概要
===================================================== */
.company-info {
  background: var(--color-light-gray);
  padding: 50px 0 80px;

  .company-info__inner {
    width: min(100%, 1040px);
    max-width: 90%;
    margin: 0 auto;
  }

  .company-info__title {
    color: var(--color-honda-red);
  }

  .company-info__list {
    margin: 44px auto 0;
    width: min(100%, 700px);
    border-top: 1px solid #dddddd;
  }

  .company-info__row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0 20px;
    padding: 20px;
    border-bottom: 1px solid #dddddd;
  }

  dt {
    margin: 0;
    color: var(--color-honda-red);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
  }

  dd {
    margin: 0;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
  }

  .company-info__map {
    margin-top: 14px;
  }

  .company-info__map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 1px solid #ddd;
  }

  .company-info__map-link {
    display: inline-block;
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.4;
    color: var(--color-honda-red);
    text-decoration: underline;
  }

  .company-info__location-note {
    margin-top: 112px;
  }

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

  .company-info__bullet-list li {
    position: relative;
    padding-left: 1em;
  }

  .company-info__bullet-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }

  .company-info__bullet-list li+li {
    margin-top: 2px;
  }
}

@media (max-width: 790px) {
  .company-info {
    padding: 36px 0 30px;

    .company-info__list {
      width: 100%;
      margin-top: 20px;
      border-top: 0;
    }

    .company-info__row {
      display: block;
      padding: 0;
      border-bottom: 0;
    }

    .company-info__row+.company-info__row {
      margin-top: 12px;
    }

    dt {
      display: block;
      margin: 0;
      padding: 6px 15px;
      border-radius: 999px;
      background: linear-gradient(90deg, #c00 0%, #ef4a4a 100%);
      color: #fff;
      font-size: 14px;
      line-height: 1.7;
    }

    dd {
      margin: 13px 0 28px;
      font-size: 14px;
      line-height: 1.8;
      padding: 0 10px;
    }

    .company-info__map {
      margin-top: 8px;
    }

    .company-info__map iframe {
      height: 230px;
    }

    .company-info__map-link {
      margin-top: 4px;
      font-size: 9px;
    }

    .company-info__location-note {
      margin-top: 12px;
    }
  }
}

/* =====================================================
  Cookie Policy
===================================================== */
.lp-cookie-policy {

  .site-header {
    .site-header__inner {
      min-height: unset;
    }

    .site-header__menu-button {
      display: none;
    }
  }

  .cookie-policy {
    padding: 66px 0 317px;

    .cookie-policy__inner {
      width: min(100%, 1040px);
      margin: 0 auto;
      max-width: 90%;
    }

    .cookie-policy__title {
      margin: 0;
      color: var(--color-honda-red);
      font-size: 24px;
      font-weight: 700;
      line-height: 1.25;
    }

    .cookie-policy__section {
      margin-top: 48px;
    }

    .cookie-policy__heading {
      margin: 0;
      color: var(--color-black);
      font-size: 18px;
      font-weight: 500;
      line-height: 1.4;
    }

    .cookie-policy__box {
      margin-top: 24px;
      background: #F4F4F4;
      border-radius: 8px;
      padding: 20px 22px;

      p {
        margin: 0;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        color: var(--color-black);

      }

      small {
        display: block;
        margin: 5px 0 0;
        font-size: 14px;
        font-weight: 400;
      }

      p+p {
        margin-top: 10px;
      }
    }

    .cookie-policy__module {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 24px 0;
    }

    .cookie-policy__module-list {
      padding: 0 22px;
      list-style: none;

      li {
        color: var(--color-black);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.7;
      }
    }

    .cookie-policy__links {
      margin-top: 25px;
      padding: 0 22px;
      font-weight: 400;

      >div+div {
        margin-top: 24px;
      }

      p {
        margin: 0;
        color: var(--color-black);
        font-size: 14px;
        line-height: 1.7;
        word-break: break-all;
      }

      p+p {
        margin-top: 3px;
      }

      a {
        color: #4A90E2;
        text-decoration: underline;
        text-underline-offset: 3px;
      }
    }
  }
}

@media (max-width: 790px) {
  .lp-cookie-policy {
    .cookie-policy {
      padding: 38px 0 80px;

      .cookie-policy__title {
        font-size: 20px;
        line-height: 1.35;
      }

      .cookie-policy__section {
        margin-top: 32px;
      }

      .cookie-policy__heading {
        font-size: 15px;
        line-height: 1.55;
      }

      .cookie-policy__box {
        margin-top: 7px;
        padding: 18px;

        p {
          font-size: 13px;
          line-height: 1.75;
        }

        small {
          font-size: 13px;
        }
      }

      .cookie-policy__module {
        gap: 18px;
      }

      .cookie-policy__module-list {
        padding: 0 10px;

        li {
          font-size: 12px;
          line-height: 1.75;
        }
      }

      .cookie-policy__links {
        margin-top: 14px;
        padding: 0 10px;

        p {
          font-size: 13px;
          line-height: 1.75;
        }
      }
    }
  }
}