: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-bg-black: rgba(34, 34, 34, 0.5);
  --color-black: #222222;
  --color-white: #ffffff;
  --color-yellow: #F4DE10;
  --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-fill-start: #109B4B;
  --inline-cta-fill-end: #1ED16A;
  --inline-cta-border-start: #1ED16A;
  --inline-cta-border-end: #109B4B;
  --inline-cta-hover-start: #1ED16A;
  --inline-cta-hover-end: #109B4B;
  --kv-cta-grad-start: #1ED16A;
  --kv-cta-grad-end: #109B4B;
  --kv-cta-hover-start: #00c957;
  --kv-cta-hover-end: #40ec80;
  --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(--inline-cta-fill-start) 0%, var(--inline-cta-fill-end) 100%);
    border: 0;
    overflow: hidden;
  }

  .inline-cta__apply-bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--inline-cta-hover-start) 0%, var(--inline-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: 22px;
    width: 9px;
    height: 9px;
    border-top: 3px solid var(--color-white);
    border-right: 3px 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 {
    margin: 0;
    color: var(--color-honda-red);
    font-family: var(--font-Arial);
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 4.5px;
  }

  .section-copy {
    margin: 30px 0 0;
    color: var(--color-honda-red);
    font-family: var(--font-YuGothic);
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 790px) {
  .section-heading {
    .section-title {
      font-size: 32px;
      line-height: 1;
      letter-spacing: 3px;
    }

    .section-copy {
      margin-top: 25px;
      font-size: 24px;
      line-height: 1.4;
      letter-spacing: 0.02em;
    }
  }
}

/* =====================================================
  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: flex-start;
    min-height: 45px;
    padding: 0 23px;
    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;
    justify-content: center;
  }

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

  .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 8px;
    }
  }
}

@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: 7px;
      position: relative;
      height: 100%;
      padding: 10px;
    }

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

    .site-header__brand-text {
      text-align: center;
      font-size: 11px;
      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: 100%;
      padding: 0;
    }

    .site-footer__nav {
      align-items: stretch;
      justify-content: center;
      border-top: 1px solid #cfcfcf;
      border-bottom: 1px solid #cfcfcf;
    }

    .site-footer__link {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 16px;
      text-align: center;
      font-size: 13px;
      line-height: 1.8;
      text-decoration: none;
      flex: 1 1 auto;
    }

    .site-footer__link+.site-footer__link {
      margin-left: 0;
      padding-left: 16px;
      border-left: 1px solid #cfcfcf;
    }

    .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;
    color: var(--color-white);
    font-size: clamp(30px, 4.2vw, 54px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  }

  .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;
    color: var(--color-yellow);
    font-weight: 700;
    font-size: clamp(18px, 2.22vw, 32px);
    line-height: 1.5;
    letter-spacing: 2px;
    text-shadow: 0 0 6.4px rgba(0, 0, 0, 0.8);
  }

  .kv__copy_sub {
    display: block;
    margin: 10px 0;
    color: var(--color-white);
    font-size: clamp(16px, 1.66vw, 24px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    text-shadow: 0 0 6.4px rgba(0, 0, 0, 0.8);
  }

  .kv__copy-accent {
    margin: 0 0 5px;
    padding: 0 23px;
    display: block;
    background: var(--color-honda-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: 34px;
    height: 50px;
    line-height: 48px;
    letter-spacing: 3px;
    text-shadow: none;
  }

  .kv__text-image {
    width: min(75%, 1020px);
    margin: 5px 0 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 1.04vw, 15px);
  }

  .kv__text-image-item {
    background: var(--color-bg-black);
    height: clamp(74px, 8.9vw, 128px);
    padding: clamp(12px, 1.95vw, 28px) 0;
    border-radius: 4px;
  }

  .kv__text-image-item img {
    display: block;
    width: 100%;
    height: clamp(48px, 5.7vw, 82px);
    object-fit: contain;
  }

  .kv__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, .69vw, 10px);
    width: min(100%, clamp(350px, 55vw, 506px));
    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-bg-black);
    box-shadow: 0 0 16px 0 rgb(64 67 70 / 10%);
  }

  .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;
    color: var(--color-yellow);

    span {
      color: var(--color-white);
    }
  }

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

  .kv__company {
    margin: 4px 0 0;
    font-size: clamp(13px, 1.45vw, 16px);
    font-weight: 700;
    color: var(--color-white);
  }

  .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 0 40px;
      width: min(93%, 790px);
      margin: 0 auto;
    }

    .kv__lead {
      font-size: clamp(18px, 6.9vw, 27px);
      letter-spacing: 1px;
    }

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

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

    .kv__copy {
      font-size: 22px;
    }

    .kv__copy-accent {
      padding: 0 16px;
      font-size: 24px;
      height: 34px;
      line-height: 32px;
      letter-spacing: 2px;
    }

    .kv__text-image {
      width: min(100%, 1020px);
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
    }

    .kv__text-image-item {
      flex: 1 1 calc(50% - 5px);
      max-width: 200px;
      height: 64px;
      padding: 10px 6px 5px;
    }

    .kv__text-image-item:last-child {
      flex-basis: 100%;
    }

    .kv__benefits {
      display: grid;
      width: min(100%, 600px);
    }

    .kv__benefit {
      padding: 18px 3px 12px;
    }

    .kv__benefit-icon {
      top: -12px;
      width: 26px;
    }

    .kv__benefit-main {
      font-size: 17px;
    }

    .kv__benefit-sub {
      font-size: 10px;
    }


    .kv__company {
      margin: 22px 0 0;
    }

    .kv-cta {
      width: min(100%, 488px);
      min-height: 84px;
      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;
    }
  }
}

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

  .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%, 960px);
    border-top: 1px solid #dddddd;
  }

  .job-description__row {
    display: grid;
    grid-template-columns: 144px 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: 5px;
  }

  .job-description__location-block+.job-description__location-block {
    margin: 30px 0 20px;
  }

  .job-description__map iframe {
    display: block;
    width: 500px;
    height: 400px;
    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: 136px 0 44px;

    .job-description__inner {
      max-width: 100%;
    }

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

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

    dt {
      display: block;
      margin: 0;
      padding: 6px 15px;
      background: var(--color-honda-red);
      color: #fff;
      font-size: 13px;
      line-height: 1.7;
    }

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

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

    .job-description__location-block+.job-description__location-block {
      margin: 25px 0 22px;
    }

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

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

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

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

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

  .faq__list {
    margin-top: 50px;
    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__list {
      margin-top: 32px;
    }

    .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;
    }
  }
}

/* =====================================================
  会社概要
===================================================== */
.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);
    font-family: var(--font-Helvetica-Neue);
    font-size: 38px;
    letter-spacing: 0px;
    line-height: 1.6;
  }

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

  .company-info__row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 20px;
    padding: 15px 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.7;
  }

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

  .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 12px;

    .company-info__title {
      font-size: 27px;
      line-height: 1.13;
    }

    .company-info__list {
      width: 100%;
      margin: 32px auto 0;
      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: 7px 15px;
      border-radius: 999px;
      background: linear-gradient(90deg, #c00 0%, #ef4a4a 100%);
      color: #fff;
      font-size: 14px;
      line-height: 1;
    }

    dd {
      margin: 9px 0 24px;
      font-size: 15px;
      line-height: 1.6;
      padding: 0 1em;
    }

    .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;
      border-bottom: none;
    }

    .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;
        }
      }
    }
  }
}