/* ==================================================
   common.css
   ================================================== */
:root {
  --color-ink: #1a1a1a;
  --color-white: #ffffff;
  --color-gray: #f5f5f3;
  --font-heading: "Zen Old Mincho", "Yu Mincho", serif;
  --font-body: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Marcellus", serif;
  --content-width: 1180px;
  --page-padding: clamp(20px, 4.2vw, 60px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
}

.kk-sp-break { display: none; }

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

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

button,
a,
select,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--content-width));
  margin-inline: auto;
}

.font-en {
  font-family: var(--font-en);
  letter-spacing: 0.12em;
}

.heading-ja {
  font-family: var(--font-heading);
  font-weight: 500;
}

.section-kicker {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.button-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 64px;
  padding: 16px 66px 16px 30px;
  color: var(--color-white);
  background: var(--color-ink);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  transition: opacity 0.25s ease;
}

.button-primary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.button-primary:hover {
  opacity: 0.72;
}

.note,
.disclaimer,
.copyright {
  font-size: 12px;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .kk-sp-break { display: initial; }

  :root {
    --page-padding: 20px;
  }

  body {
    line-height: 1.9;
  }

  .section-kicker {
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.5;
  }

  .button-primary {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==================================================
   hero-stats.css
   ================================================== */
:root {
  --kk-black: #1a1a1a;
  --kk-gray: #767676;
  --kk-line: #777;
  --kk-serif: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --kk-sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --kk-en: "Marcellus", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--kk-black);
  font-family: var(--kk-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.kk-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, .9);
}

section[id] {
  scroll-margin-top: 96px;
}

#company-now {
  scroll-margin-top: 96px;
}

.kk-header__logo {
  display: grid;
  flex: 0 0 245px;
  place-items: center start;
  padding-left: 20px;
}

.kk-header__logo img {
  display: block;
  width: 180px;
  height: auto;
  filter: invert(1);
}

.kk-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 2.55vw, 42px);
  margin-left: auto;
  padding: 0 30px;
}

.kk-header a {
  color: var(--kk-black);
  text-decoration: none;
}

.kk-header__nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}

.kk-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.kk-header__nav a:hover::after,
.kk-header__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.kk-header__entry {
  display: grid;
  flex: 0 0 190px;
  place-items: center;
  background: var(--kk-black);
  color: #fff !important;
  font-family: var(--kk-en);
  font-size: 17px;
  letter-spacing: .12em;
}

.kk-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
}

.kk-hero__image,
.kk-hero__image img,
.kk-hero__shade {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.kk-hero__image {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.kk-hero__image.is-active {
  opacity: 1;
}

.kk-hero__image img {
  object-fit: cover;
}

.kk-hero__shade {
  background: linear-gradient(90deg, rgba(20, 20, 20, .17) 0%, rgba(20, 20, 20, .02) 75%);
}

.kk-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 160px, 1280px);
  margin: 0 auto;
  padding-top: 190px;
}

.kk-hero__target {
  display: inline-block;
  margin: 0 0 28px;
  padding: 8px 18px 7px;
  background: var(--kk-black);
  font-size: 20px;
  letter-spacing: .08em;
  line-height: 1;
}

.kk-hero__title {
  margin: 0;
  font-family: var(--kk-serif);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1.55;
}

.kk-hero__lead {
  margin: 16px 0 0;
  font-family: var(--kk-serif);
  font-size: 21px;
  letter-spacing: .11em;
}

.kk-hero__cta-wrap {
  margin-top: 80px;
}

.kk-hero__cta-wrap > p {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .06em;
}

.kk-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  min-height: 70px;
  padding-right: 20px;
  background: url("../img/Hero-button.svg") center / 100% 100% no-repeat;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  transition: opacity .3s ease;
}

.kk-button:hover,
.kk-button:focus-visible {
  opacity: .75;
}

.kk-hero__scroll {
  position: absolute;
  z-index: 1;
  right: 35px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  writing-mode: vertical-rl;
}

.kk-hero__scroll span {
  font-family: var(--kk-en);
  font-size: 14px;
  letter-spacing: .12em;
}

.kk-hero__scroll i {
  display: block;
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, .8);
}

.kk-stats {
  overflow: hidden;
  padding: 88px 0 115px;
  background: #fff;
}

.kk-container,
.kk-container--wide {
  width: calc(100% - 160px);
  margin-right: auto;
  margin-left: auto;
}

.kk-container {
  max-width: 880px;
}

.kk-container--wide {
  max-width: 1390px;
}

.kk-stats__gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.kk-stats__intro {
  margin-top: 56px;
}

.kk-eyebrow {
  margin: 0 0 22px;
  color: #8a8a8a;
  font-family: var(--kk-en);
  font-size: 14px;
  letter-spacing: .02em;
}

.kk-eyebrow::after {
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 14px;
  background: #8a8a8a;
  content: "";
}

.kk-stats h2 {
  margin: 0;
  font-family: var(--kk-serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
}

.kk-stats__subtitle {
  margin: 34px 0 0;
  font-size: 16px;
  letter-spacing: .06em;
}

.kk-stats__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}

.kk-stat-card {
  display: flex;
  min-height: 200px;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid var(--kk-line);
  border-right: 0;
  flex-direction: column;
  padding: 18px 8px 16px;
  text-align: center;
}

.kk-stat-card:last-child {
  border-right: 1px solid var(--kk-line);
}

.kk-stat-card img {
  display: block;
  width: auto;
  height: 60px;
  margin-bottom: 6px;
}

.kk-stat-card__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  font-family: var(--kk-serif);
  line-height: 1;
}

.kk-stat-card__value strong {
  font-size: 46px;
  font-weight: 400;
}

.kk-stat-card__value span {
  margin-left: 4px;
  font-size: 17px;
}

.kk-stat-card > p:last-child {
  margin: 8px 0 0;
  font-size: 14px;
}

.kk-stats__feature {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, .96fr);
  gap: 78px;
  align-items: start;
  margin-top: 78px;
}

.kk-growth {
  min-height: 644px;
  background: #f5f5f3;
  padding: 42px 52px 35px;
}

.kk-growth h3 {
  margin: 0;
  border-left: 3px solid var(--kk-black);
  font-size: 16px;
  letter-spacing: .04em;
  line-height: 1.4;
  padding-left: 14px;
}

.kk-growth h3::after {
  display: block;
  height: 1px;
  margin-top: 20px;
  background: var(--kk-line);
  content: "";
}

.kk-growth__chart {
  display: grid;
  height: 350px;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid var(--kk-line);
  margin-top: 12px;
  padding: 0 76px;
}

.kk-growth__item {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  text-align: center;
}

.kk-growth__item > p:last-child {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  width: 100px;
  margin: 0;
  font-size: 14px;
  transform: translateX(-50%);
}

.kk-growth__amount {
  margin: 0 0 7px;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.kk-growth__amount strong {
  font-size: 23px;
  font-weight: 500;
}

.kk-growth__item:not(.kk-growth__item--2024) .kk-growth__amount {
  font-weight: 700;
}

.kk-growth__item:not(.kk-growth__item--2024) .kk-growth__amount strong {
  font-weight: 700;
}

.kk-growth__bar {
  width: 100%;
  max-width: 101px;
  align-self: center;
  background: #d9d9d9;
}

.kk-growth__item--2024 .kk-growth__bar { height: 45px; }
.kk-growth__item--2025 .kk-growth__bar { height: 85px; background: #bcbcbc; }
.kk-growth__item--2026 .kk-growth__bar { height: 145px; background: #777; }
.kk-growth__item--future .kk-growth__bar { height: 250px; background: var(--kk-black); }

.kk-growth__caption {
  width: max-content;
  align-self: center;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--kk-black);
  font-size: 14px;
}

.kk-growth__badge {
  align-self: center;
  min-width: 76px;
  margin: 0 0 10px;
  padding: 4px 8px 3px;
  background: var(--kk-black);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.kk-growth__badge--light {
  border: 1px solid #777;
  background: transparent;
  color: var(--kk-black);
}

.kk-growth__message {
  margin-top: 56px;
  text-align: center;
}

.kk-growth__message p {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 10px;
  border-bottom: 1px solid var(--kk-black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.5;
}

.kk-stats__photos img {
  display: block;
  width: 110%;
  max-width: none;
  height: auto;
}

.kk-company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 78px;
}

.kk-company-facts article {
  min-height: 166px;
  border: 1px solid var(--kk-line);
  padding: 20px 24px;
}

.kk-company-facts h3 {
  margin: 0 0 18px;
  border-bottom: 1px solid var(--kk-line);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 14px;
}

.kk-company-facts p {
  margin: 0 0 5px;
  font-size: 14px;
  letter-spacing: .01em;
  line-height: 1.5;
}

@media (max-width: 1100px) and (min-width: 768px) {
  .kk-header__logo { flex-basis: 200px; }
  .kk-header__nav { gap: 18px; padding-inline: 20px; }
  .kk-header__entry { flex-basis: 130px; }
  .kk-container,
  .kk-container--wide { width: calc(100% - 80px); }
  .kk-stats__feature { gap: 40px; }
  .kk-growth { padding-inline: 30px; }
  .kk-growth__chart {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-inline: 35px;
  }
}

@media (max-width: 767px) {
  .kk-header {
    position: fixed;
    height: 60px;
    background: rgba(255, 255, 255, .94);
  }

  section[id] {
    scroll-margin-top: 72px;
  }

  #company-now {
    scroll-margin-top: 72px;
  }

  .kk-header__logo {
    flex: 1 1 auto;
    padding-left: 16px;
  }

  .kk-header__logo img {
    width: 103px;
  }

  .kk-header__nav {
    display: none;
  }

  .kk-header__entry {
    flex-basis: 157px;
    font-size: 14px;
  }

  .kk-hero {
    min-height: 666px;
  }

  .kk-hero__shade {
    background: linear-gradient(90deg, rgba(20, 20, 20, .22), rgba(20, 20, 20, .04));
  }

  .kk-hero__content {
    width: calc(100% - 36px);
    padding-top: 252px;
  }

  .kk-hero__target {
    margin-bottom: 24px;
    padding: 7px 12px 6px;
    font-size: 14px;
  }

  .kk-hero__title {
    font-size: clamp(24px, 7.5vw, 31px);
    letter-spacing: .08em;
    line-height: 1.58;
    white-space: nowrap;
  }

  .kk-hero__lead {
    margin-top: 12px;
    font-size: 16px;
    letter-spacing: .06em;
  }

  .kk-hero__cta-wrap {
    width: max-content;
    max-width: 100%;
    margin: 44px 0 0;
    text-align: left;
  }

  .kk-hero__cta-wrap > p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .kk-button {
    width: min(320px, 100%);
    min-height: 62px;
    padding-right: 18px;
    font-size: 16px;
  }

  .kk-hero__scroll {
    display: none;
  }

  .kk-stats {
    padding: 36px 0 70px;
  }

  .kk-container,
  .kk-container--wide {
    width: calc(100% - 36px);
  }

  .kk-stats__gallery {
    width: 100%;
  }

  .kk-stats__gallery img {
    width: 100%;
  }

  .kk-stats__intro {
    margin-top: 58px;
  }

  .kk-eyebrow {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .kk-eyebrow::after {
    width: 20px;
    margin-top: 10px;
  }

  .kk-stats h2 {
    max-width: 290px;
    font-size: clamp(28px, 8vw, 30px);
    font-weight: 600;
    line-height: 1.7;
  }

  .kk-stats__subtitle {
    margin-top: 28px;
    font-size: 16px;
    font-weight: 500;
  }

  .kk-stats__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 46px;
  }

  .kk-stat-card {
    min-height: 174px;
    border: 1px solid var(--kk-line);
    padding: 14px 6px 12px;
  }

  .kk-stat-card:nth-child(2) {
    border-right: 1px solid var(--kk-line);
  }

  .kk-stat-card:nth-child(n+3) {
    border-top: 1px solid var(--kk-line);
  }

  .kk-stat-card img {
    height: 49px;
  }

  .kk-stat-card__value strong {
    font-size: 39px;
  }

  .kk-stat-card__value span {
    font-size: 14px;
  }

  .kk-stat-card > p:last-child {
    font-size: 14px;
  }

  .kk-stats__feature {
    display: flex;
    width: auto;
    align-items: stretch;
    gap: 32px;
    flex-direction: column;
    margin: 58px 0 0;
  }

  .kk-growth {
    min-height: 0;
    margin: 0 18px;
    padding: 24px 15px 28px;
  }

  .kk-growth h3 {
    font-size: 14px;
    padding-left: 10px;
  }

  .kk-growth h3::after {
    margin-top: 14px;
  }

  .kk-growth__chart {
    height: 215px;
    gap: 8px;
    margin-top: 8px;
    padding: 0 20px;
  }

  .kk-growth__item > p:last-child {
    top: calc(100% + 7px);
    width: 70px;
    font-size: 12px;
  }

  .kk-growth__amount {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .kk-growth__amount strong {
    font-size: 14px;
  }

  .kk-growth__item--2024 .kk-growth__bar { height: 28px; }
  .kk-growth__item--2025 .kk-growth__bar { height: 52px; }
  .kk-growth__item--2026 .kk-growth__bar { height: 88px; }
  .kk-growth__item--future .kk-growth__bar { height: 155px; }

  .kk-growth__caption {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
  }

  .kk-growth__badge {
    min-width: 47px;
    margin-bottom: 6px;
    padding: 3px 4px 2px;
    font-size: 11px;
  }

  .kk-growth__message {
    margin-top: 43px;
  }

  .kk-growth__message p {
    margin-bottom: 6px;
    border-bottom: 0;
    font-size: 18px;
    line-height: 1.6;
  }

  .kk-stats__photos {
    align-self: center;
    width: calc((100% - 34px) * 1.2);
  }

  .kk-stats__photos img {
    width: 100%;
    max-width: 100%;
  }

  .kk-company-facts {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 40px;
  }

  .kk-company-facts article {
    min-height: 0;
    padding: 18px 16px 17px;
  }

  .kk-company-facts h3 {
    margin-bottom: 14px;
    font-size: clamp(16px, 4.8vw, 18px);
    padding-bottom: 11px;
  }

  .kk-company-facts p {
    margin-bottom: 4px;
    font-size: clamp(14px, 4.27vw, 16px);
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kk-hero__image {
    transition: none;
  }
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ==================================================
   message-recruit.css
   ================================================== */
/* MESSAGE / RECRUIT */
.message,
.recruit {
  --mr-ink: #1a1a1a;
  --mr-paper: #f5f5f3;
  color: var(--mr-ink);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: .04em;
}

.message *,
.recruit * { box-sizing: border-box; }

.message .section-kicker,
.recruit .section-kicker {
  margin: 0;
  color: #777;
  font-family: "Marcellus", serif;
  font-size: 14px;
  letter-spacing: 0;
}

.message .section-kicker::after,
.recruit .section-kicker::after {
  display: block;
  width: 27px;
  height: 1px;
  margin-top: 16px;
  background: currentColor;
  content: "";
}

.message .section-kicker--light { color: #fff; }

.message {
  padding: 110px 40px 104px;
  background: #1a1a1a;
  color: #f8f8f6;
}

.message__inner {
  display: grid;
  grid-template-columns: 340px minmax(0, 876px);
  grid-template-areas: "portrait intro" "portrait body";
  gap: 72px 64px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.message__intro { grid-area: intro; }

.message__title {
  margin: 43px 0 42px;
  font-family: "Zen Old Mincho", "Yu Mincho", serif;
  font-size: clamp(34px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .12em;
}

.message__lead {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .12em;
}

.message__lead span {
  width: 50px;
  height: 1px;
  margin-right: 12px;
  background: #f8f8f6;
}

.message__portrait {
  grid-area: portrait;
  width: 308px;
  margin: 0;
}

.message__portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.message__portrait figcaption {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.message__body {
  grid-area: body;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.9;
}

.message__body p { margin: 0 0 25px; }
.message__body strong { font-weight: 700; }

.message__body .message__question {
  margin: 28px 0 30px;
  font-size: 18px;
  font-weight: 700;
}

.message__body hr {
  height: 1px;
  margin: 49px 0 46px;
  border: 0;
  background: #777;
}

.message__body .message__signature {
  margin: 68px 0 0;
  font-size: 17px;
  font-weight: 700;
}

.recruit {
  padding: 116px 40px 126px;
  background: var(--mr-paper);
}

.recruit__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}

.recruit__header h2 {
  margin: 29px 0 42px;
  font-family: "Zen Old Mincho", "Yu Mincho", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .08em;
}

.recruit__header > p:last-child {
  margin: 0;
  font-size: 16px;
}

.job-card {
  margin-top: 78px;
  background: #fff;
}

.job-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 61px;
  border-bottom: 1px solid #1a1a1a;
}

.job-tabs button {
  display: grid;
  width: 100%;
  place-items: center;
  padding: 0;
  border: 0;
  border-right: 1px solid #ddd;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.job-tabs > :last-child { border-right: 0; }
.job-tabs .is-active { background: #1a1a1a; color: #fff; }

.job-card__body { padding: 60px 80px 80px; }
.job-panel[hidden] { display: none; }

.sales-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: start;
  gap: 42px;
}

.job-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 35px;
  margin: 0;
  padding: 0 25px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
}

.job-label span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
}

.job-label span::before {
  width: 1px;
  height: 1.1em;
  background: currentColor;
  content: "";
}

.sales-hero h3 {
  margin: 35px 0 0;
  font-family: "Zen Old Mincho", "Yu Mincho", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .09em;
}

#sales .sales-hero h3 {
  white-space: nowrap;
}

.sales-hero h3.marketing-title {
  font-size: clamp(18px, 1.75vw, 25px);
  letter-spacing: .04em;
}

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

.sales-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.sales-copy {
  margin: 40px 0 0;
  font-size: 14px;
  line-height: 1.9;
}

.training {
  display: grid;
  grid-template-columns: 361px 1fr;
  align-items: start;
  gap: 30px;
  margin-top: 66px;
}

.training > img { display: block; width: 100%; height: auto; }

.job-card h4 {
  margin: 0;
  padding-left: 13px;
  border-left: 3px solid #1a1a1a;
  font-size: 16px;
  line-height: 1.45;
}

.training-list {
  position: relative;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.training-list::before {
  position: absolute;
  top: 20px;
  bottom: 22px;
  left: 23px;
  width: 2px;
  background: #1a1a1a;
  content: "";
}

.training-list li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 11px;
  min-height: 55px;
}

.training-list p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.training-list p small {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 400;
}

.month {
  position: relative;
  z-index: 1;
  display: flex;
  width: 47px;
  height: 47px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  line-height: 1;
}

.month b { font-size: 16px; }
.month small { margin-top: 1px; font-size: 8px; letter-spacing: -.08em; }

.sales-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  margin-top: 58px;
}

.growth__label { margin: 17px 0 0 8px; font-size: 14px; font-weight: 700; }

.growth-chart {
  position: relative;
  height: 220px;
  margin-top: 2px;
  border-bottom: 1px solid #1a1a1a;
}

.growth-point { position: absolute; bottom: -28px; width: 70px; text-align: center; }
.growth-point--1 { left: 0; }
.growth-point--2 { left: calc(50% - 35px); }
.growth-point--3 { right: 0; }
.growth-point em { position: absolute; bottom: 94px; left: 0; width: 100%; font-size: 14px; font-style: normal; }
.growth-point--2 em { bottom: 159px; }
.growth-point--3 em { bottom: 224px; }
.growth-point i { position: absolute; bottom: 24px; left: 29px; width: 13px; height: 13px; border-radius: 50%; background: #1a1a1a; }
.growth-point--1 i { bottom: 62px; }
.growth-point--2 i { bottom: 127px; }
.growth-point--3 i { bottom: 192px; }
.growth-point b { font-size: 14px; font-weight: 400; }

.growth-chart__line {
  position: absolute;
  height: 65px;
  background: #1a1a1a;
  clip-path: polygon(0 calc(100% - 1px), 100% 0, 100% 1px, 0 100%);
}

.growth-chart__line--1 { bottom: 41px; left: 35px; width: calc(50% - 35px); }
.growth-chart__line--2 { bottom: 106px; left: 50%; width: calc(50% - 35px); }

.workday {
  align-self: start;
  padding: 26px 24px 22px;
  background: #f5f5f3;
}

.workday h4 { display: inline-block; padding: 4px 16px; border: 1px solid #777; font-size: 14px; }
.workday dl { margin: 20px 0 0; }
.workday dl div { display: grid; grid-template-columns: 48px 1fr; margin-top: 17px; font-size: 14px; line-height: 1.65; }
.workday dt { font-weight: 700; }
.workday dd { margin: 0; }

.commission { margin-top: 67px; }
.commission p { margin: 25px 0 0; font-size: 16px; line-height: 1.9; }

.conditions { margin-top: 61px; }
.conditions h4 { padding-left: 0; border: 0; font-size: 18px; }

.conditions-list { margin: 16px 0 0; border-top: 1px solid #ddd; }
.conditions-list > div { display: grid; grid-template-columns: 205px 1fr; align-items: center; min-height: 91px; padding: 25px 14px; border-bottom: 1px solid #ddd; font-size: 14px; line-height: 1.65; }
.conditions-list dt { font-weight: 700; }
.conditions-list dd { margin: 0; font-weight: 700; }
.conditions-list__profile { min-height: 285px !important; }
.conditions-list__profile dd { display: grid; gap: 22px; }
.conditions-list__profile p { margin: 0 0 10px; }
.conditions-list__profile p span { display: inline-block; min-width: 142px; padding: 2px 15px; border: 1px solid #777; border-radius: 999px; text-align: center; }
.conditions-list__profile ul { margin: 0; padding: 0; list-style: none; }
.conditions-list__profile li::before { margin-right: 7px; content: "●"; }

.common-button {
  display: grid;
  width: 352px;
  height: 70px;
  place-items: center;
  margin: 60px auto 0;
  padding-right: 22px;
  background: url("../img/common-button.svg") center / 100% 100% no-repeat;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.role-panel strong { font-weight: 700; }

.design-differences { margin-top: 55px; }
.design-differences ol { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.design-differences li { padding: 19px 20px; border: 1px solid #777; font-size: 14px; line-height: 1.8; }
.design-differences li p { margin: 12px 0 0; }

.design-operations { display: grid; grid-template-columns: 380px 1fr; gap: 42px; margin-top: 64px; }
.design-operations > img { align-self: center; width: 100%; }
.design-specs { display: grid; gap: 39px; }
.design-specs h4,
.marketing-tasks h4,
.marketing-people h4 { padding: 0 0 8px; border: 0; border-bottom: 1px solid #777; }
.design-specs dl { margin: 12px 0 0; }
.design-specs dl div { display: grid; grid-template-columns: 135px 1fr; margin-top: 7px; font-size: 14px; line-height: 1.55; }
.design-specs dt { font-weight: 700; }
.design-specs dd { margin: 0; }

.design-day-grid { display: grid; grid-template-columns: 380px 1fr; align-items: center; gap: 42px; margin-top: 60px; }
.design-day-grid > img { width: 100%; }
.role-day-card { padding: 27px 28px; background: #f5f5f3; font-size: 14px; line-height: 1.8; }
.role-day-card h4 { display: inline-block; padding: 3px 14px; border: 1px solid #777; }
.role-day-card ol { position: relative; display: grid; gap: 17px; margin: 24px 0 0; padding: 0 0 0 26px; list-style: none; }
.role-day-card ol::before { position: absolute; top: .9em; bottom: .9em; left: 6px; width: 1px; background: #777; content: ""; }
.role-day-card ol li { position: relative; }
.role-day-card ol li::before { position: absolute; top: .9em; left: -26px; width: 13px; height: 13px; border: 1px solid #1a1a1a; border-radius: 50%; background: #fff; content: ""; transform: translateY(-50%); }
.role-day-card ol li::after { position: absolute; top: .9em; left: -22px; width: 5px; height: 5px; border-radius: 50%; background: #1a1a1a; content: ""; transform: translateY(-50%); }
.role-day-card > p:last-child { margin: 25px 0 0; }
.role-conditions { margin-top: 68px; }
.role-conditions small { font-size: 14px; font-weight: 400; }

.marketing-work-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 58px; margin-top: 62px; }
.marketing-tasks ul,
.marketing-people ul { margin: 15px 0 0; padding: 0; list-style: none; font-size: 14px; font-weight: 700; line-height: 1.8; }
.marketing-tasks li::before,
.marketing-people li::before { margin-right: 7px; content: "●"; }
.role-day-card--marketing p { margin: 18px 0 0; }
.role-bordered-copy { margin: 55px 0 0; padding: 27px 30px; border: 1px solid #777; font-size: 14px; line-height: 1.9; }
.marketing-people { display: grid; grid-template-columns: 380px 1fr; align-items: center; gap: 58px; margin-top: 50px; }
.marketing-people > img { width: 100%; }
.marketing-closing { margin: 48px 0 0; font-size: 14px; line-height: 2.3; }
.marketing-closing span {
  padding-bottom: 5px;
  background: linear-gradient(#777, #777) 0 100% / 100% 1px no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media (max-width: 767px) {
  .message .section-kicker,
  .recruit .section-kicker { font-size: 14px; }
  .message .section-kicker::after,
  .recruit .section-kicker::after { width: 26px; margin-top: 14px; }

  .message { padding: 72px 14px 84px; }
  .message__inner { display: flex; width: 100%; flex-direction: column; gap: 0; }
  .message__intro { order: 1; }
  .message__portrait { order: 2; width: min(100%, 306px); margin: 33px auto 0; }
  .message__body { order: 3; }

  .message__title { margin: 28px 0 32px; font-size: 27px; line-height: 1.72; letter-spacing: .08em; }
  .message__lead { font-size: 14px; letter-spacing: .04em; white-space: nowrap; }
  .message__lead span { width: 41px; margin-right: 8px; }
  .message__portrait figcaption { margin-top: 18px; font-size: 14px; line-height: 1.55; }

  .message__body { margin-top: 42px; font-size: 16px; line-height: 1.9; }
  .message__body p { margin-bottom: 26px; }
  .message__body .message__question { margin: 31px 0; font-size: 14px; line-height: 1.75; }
  .message__body hr { margin: 46px 0 42px; background: #777; }
  .message__body .message__signature { margin-top: 49px; font-size: 14px; white-space: nowrap; }

  .recruit { padding: 72px 12px 84px; }
  .recruit__inner { width: 100%; }
  .recruit__header h2 { margin: 27px 0 31px; font-size: 26px; }
  .recruit__header > p:last-child { font-size: 16px; }

  .job-card { margin-top: 50px; }
  .job-tabs { height: 53px; }
  .job-tabs button { font-size: 14px; letter-spacing: 0; }
  .job-card__body { padding: 25px 15px 34px; }

  .sales-hero { display: flex; flex-direction: column; gap: 27px; }
  .job-label { min-height: 32px; padding: 0 18px; font-size: 14px; }
  .job-label span { font-size: 14px; }
  .sales-hero h3 { margin-top: 25px; font-size: 20px; line-height: 1.8; letter-spacing: .07em; }
  #sales .sales-hero h3 { white-space: normal; }
  .sales-hero img { width: 100%; }
  .sales-copy { margin-top: 31px; font-size: 16px; line-height: 1.9; }

  .training { display: flex; flex-direction: column; gap: 28px; margin-top: 41px; }
  .training > img { width: 100%; }
  .job-card h4 { padding-left: 10px; font-size: 16px; }
  .training__content { width: 100%; }
  .training-list { margin-top: 18px; padding-inline: 18px; }
  .training-list::before { top: 22px; bottom: 22px; left: 39px; }
  .training-list li { grid-template-columns: 44px 1fr; align-items: start; gap: 14px; min-height: 66px; }
  .month { width: 44px; height: 44px; }
  .month b { font-size: 14px; }
  .month small { font-size: 8px; }
  .training-list p { font-size: 14px; }
  .training-list p small { font-size: 14px; }

  .sales-data { display: flex; flex-direction: column; gap: 52px; margin-top: 45px; }
  .growth__label { font-size: 14px; }
  .growth-chart { height: 203px; margin: 0 7px; }
  .growth-point em, .growth-point b { font-size: 14px; }
  .workday { padding: 22px 18px 20px; }
  .workday h4 { padding: 3px 13px; font-size: 14px; }
  .workday dl div { grid-template-columns: 1fr; row-gap: 5px; font-size: 14px; }

  .commission { margin-top: 49px; }
  .commission p { margin-top: 20px; font-size: 16px; line-height: 1.9; }

  .conditions { margin-top: 48px; }
  .conditions h4 { font-size: 16px; }
  .conditions-list { margin-top: 13px; }
  .conditions-list > div { display: block; min-height: 0; padding: 22px 0; font-size: 14px; }
  .conditions-list dt { margin-bottom: 14px; }
  .conditions-list__profile { min-height: 0 !important; }
  .conditions-list__profile dd { gap: 19px; }
  .conditions-list__profile p span { min-width: 108px; padding: 1px 10px; }
  .conditions-list__profile li { padding-left: 0; line-height: 1.65; }
  .conditions-list__profile li::before { margin-right: 5px; }

  .common-button { width: calc(100% - 30px); height: 58px; margin-top: 35px; padding-right: 0; background: #1a1a1a; font-size: 14px; }

  .role-panel { padding-top: 26px; }
  .role-hero { gap: 22px; }
  .role-hero h3 { margin-top: 21px; }
  .role-hero h3.marketing-title { font-size: 18px; }
  .role-panel .sales-copy { margin-top: 29px; font-size: 14px; }
  .design-differences { margin-top: 45px; }
  .design-differences ol { gap: 8px; margin-top: 19px; }
  .design-differences li { padding: 17px 14px; font-size: 14px; line-height: 1.85; }
  .design-differences li p { margin-top: 12px; }
  .design-operations { display: flex; flex-direction: column; gap: 29px; margin-top: 37px; }
  .design-specs { gap: 32px; }
  .design-specs dl div { grid-template-columns: 128px 1fr; font-size: 14px; }
  .design-day-grid { display: flex; flex-direction: column; gap: 35px; margin-top: 42px; }
  .design-day-grid .role-day-card { order: 1; }
  .design-day-grid > img { order: 2; }
  .role-day-card { width: 100%; padding: 22px 18px; font-size: 14px; }
  .role-day-card ol { gap: 18px; }
  .role-conditions { margin-top: 47px; }
  .role-conditions small { font-size: 14px; }
  .marketing-work-grid { display: flex; flex-direction: column; gap: 38px; margin-top: 44px; }
  .marketing-tasks ul, .marketing-people ul { font-size: 14px; }
  .role-bordered-copy { margin-top: 38px; padding: 22px 15px; font-size: 14px; }
  .marketing-people { display: flex; flex-direction: column; align-items: stretch; gap: 28px; margin-top: 37px; }
  .marketing-closing { margin-top: 35px; font-size: 14px; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .message__inner { grid-template-columns: 300px minmax(0, 1fr); gap: 60px 40px; }
  .message__portrait { width: 280px; }
  .message__body { font-size: 16px; }
  .job-card__body { padding-right: 50px; padding-left: 50px; }
  .sales-hero { grid-template-columns: 1fr 42%; }
  .training { grid-template-columns: 42% 1fr; }
}

/* ==================================================
   voice-entry.css
   ================================================== */
.ve-voice,
.ve-area,
.ve-flow,
.ve-faq,
.ve-final-message,
.ve-entry,
.ve-footer {
  box-sizing: border-box;
  color: #1a1a1a;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

.ve-voice *, .ve-area *, .ve-flow *, .ve-faq *,
.ve-final-message *, .ve-entry *, .ve-footer * { box-sizing: border-box; }

.ve-container { width: min(1110px, calc(100% - 48px)); margin-inline: auto; }
.ve-eyebrow { margin: 0 0 28px; color: #767676; font-family: Marcellus, serif; font-size: 14px; line-height: 1; }
.ve-eyebrow::after { content: ""; display: block; width: 28px; margin-top: 14px; border-top: 1px solid #767676; }
.ve-section-head h2, .ve-area h2, .ve-flow h2, .ve-faq h2, .ve-final-message h2, .ve-entry h2 {
  margin: 0; font-family: "Zen Old Mincho", serif; font-weight: 500; line-height: 1.65; letter-spacing: .08em;
}

.ve-voice { padding-top: 140px; background: #fff; }
.ve-voice > .ve-container { width: min(1390px, calc(100% - 160px)); }
.ve-section-head h2 { font-size: 36px; }
.ve-section-head > p:last-child { margin: 34px 0 70px; }
.ve-voice-item { display: grid; grid-template-columns: 470px 1fr; gap: 86px; align-items: center; margin-bottom: 80px; }
.ve-voice-item picture { display: block; width: 100%; }
.ve-voice-item img { display: block; width: 100%; height: auto; }
.ve-voice-copy { padding-bottom: 52px; border-bottom: 1px solid #b9b9b9; }
.ve-voice-no { margin: 0; padding-bottom: 14px; border-bottom: 1px solid #b9b9b9; color: #767676; font-family: Marcellus, serif; font-size: 14px; }
.ve-voice-columns { display: grid; grid-template-columns: 330px 1fr; gap: 42px; padding-top: 52px; }
.ve-voice-columns h3 { margin: 0; font-family: "Zen Old Mincho", serif; font-size: 24px; font-weight: 500; line-height: 1.8; }
.ve-voice-columns p { margin: 0 0 20px; }
.ve-voice-closing { display: grid; place-content: center; min-height: 394px; padding: 45px 24px; background: linear-gradient(rgba(26,26,26,.4), rgba(26,26,26,.4)), url("../img/S5.webp") center/cover; color: #fff; font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 18px; text-align: center; }
.ve-voice-closing p { margin: 7px 0; }
.ve-voice-closing p:nth-child(2) { margin-block: 14px; font-size: 24px; }

@media (max-width: 1364px) and (min-width: 768px) {
  .ve-voice-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .ve-voice > .ve-container { width: calc(100% - 80px); }
  .ve-voice-item { grid-template-columns: 42% minmax(0, 1fr); gap: 40px; }
  .ve-access { grid-template-columns: 1fr; }
  .ve-commute { margin: 42px auto 0; justify-self: center; }
}

.ve-area { overflow: hidden; padding: 120px 0; background: #fff; }
.ve-area > .ve-container { width: min(1390px, calc(100% - 160px)); }
.ve-area-lead { display: grid; grid-template-columns: 1fr 590px; gap: 90px; align-items: center; }
.ve-area-copy { position: relative; width: 70%; margin-left: auto; }
.ve-area-copy::before { content: ""; position: absolute; z-index: 0; width: 382px; height: 356px; left: -255px; top: -105px; background: url("../img/S6-yaoshi.svg") center / contain no-repeat; }
.ve-area-copy > * { position: relative; z-index: 1; }
.ve-area h2 { margin-bottom: 28px; font-size: 36px; }
.ve-area-copy > p:not(.ve-eyebrow) { margin: 0 0 32px; }
.ve-area-lead > img { display: block; width: calc(100% + max(80px, calc((100vw - 1390px) / 2))); max-width: none; height: auto; }
.ve-subheading { width: min(1120px, 100%); margin: 70px auto 32px; padding-left: 14px; border-left: 3px solid #1a1a1a; font-size: 18px; }
.ve-access { display: grid; width: min(1120px, 100%); grid-template-columns: minmax(0, 730px) 340px; gap: 50px; align-items: center; margin-inline: auto; }
.ve-routes { position: relative; display: grid; width: 100%; gap: 22px; padding: 16px 48px 16px 0; }
.ve-routes > div { position: relative; display: grid; grid-template-columns: 240px minmax(0, 1fr); align-items: center; min-height: 40px; }
.ve-routes > div::after { position: absolute; z-index: 0; top: 50%; right: 0; left: 240px; border-bottom: 1px solid #767676; content: ""; }
.ve-route-station, .ve-route-info, .ve-routes img, .ve-routes b { position: relative; z-index: 1; }
.ve-route-station { display: grid; height: 40px; place-items: center; padding: 0 12px; border: 1px solid #767676; background: #fff; text-align: center; }
.ve-route-info { display: inline-flex; align-items: center; justify-self: center; gap: 12px; padding: 0 12px; background: #fff; white-space: nowrap; transform: translateY(-50%); }
.ve-routes img { max-width: 30px; max-height: 31px; margin: 0; }
.ve-routes b { background: transparent; font-weight: 400; line-height: 1.4; }
.ve-destination { position: absolute; z-index: 2; right: 0; top: 0; display: grid; place-items: center; width: 48px; height: 100%; border: 1px solid #767676; background: #fff; writing-mode: vertical-rl; font-size: 16px; font-weight: 500; }
.ve-commute { display: grid; width: 340px; height: 340px; justify-self: end; align-content: center; padding: 48px; border-radius: 50%; background: #f5f5f3; }
.ve-commute h4 { margin: 0 0 14px; font-size: 18px; text-align: center; }
.ve-commute p { margin: 7px 0; font-size: 14px; }
.ve-area-future { width: min(1120px, 100%); margin: 70px auto 0; padding: 28px 38px; background: #f5f5f3; }
.ve-area-future h3 { width: max-content; margin: 0 0 18px; border-bottom: 1px solid; font-family: "Zen Old Mincho", serif; font-size: 20px; font-weight: 500; }
.ve-area-future p { margin: 0; }

.ve-flow { padding: 120px 0; background: #1a1a1a; color: #fff; }
.ve-flow > .ve-container { width: min(1110px, calc(100% - 160px)); }
.ve-flow-head { text-align: center; }
.ve-flow-head .ve-eyebrow { color: #fff; }
.ve-flow-head .ve-eyebrow::after { margin-inline: auto; border-color: #fff; }
.ve-flow h2 { font-size: 36px; }
.ve-flow-head > p:last-child { margin: 26px 0 70px; }
.ve-flow-nav { display: grid; aspect-ratio: 1080 / 98; grid-template-columns: repeat(4, 1fr); margin: 0 0 34px; padding: 0; background: url("../img/S7-flow.svg") center / 100% 100% no-repeat; list-style: none; }
.ve-flow-nav li { display: flex; align-items: center; justify-content: center; padding: 34px 12px 0; font-size: 14px; font-weight: 700; line-height: 1.4; text-align: center; }
.ve-flow-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; }
.ve-flow-cards article { min-height: 210px; display: grid; grid-template-columns: 80px 1fr; grid-template-rows: auto 1fr; gap: 12px; align-items: center; padding: 20px 28px; background: #fff; color: #1a1a1a; }
.ve-flow-cards article > p { position: relative; width: max-content; grid-column: 1 / -1; align-self: start; margin: 0; padding-bottom: 10px; color: #999; font-family: Marcellus, serif; font-size: 16px; line-height: 1.2; }
.ve-flow-cards article > p::after { position: absolute; bottom: 0; left: 0; width: 70%; border-bottom: 1px solid #999; content: ""; }
.ve-flow-cards img { display: block; width: 66px; height: 66px; max-width: none; max-height: none; margin: auto; object-fit: contain; }
.ve-flow-cards article > img { transform: translateY(10px); }
.ve-flow-cards article > div { transform: translate(10px, 10px); }
.ve-flow-cards h3 { margin: 0 0 12px; font-size: 18px; }
.ve-flow-cards div p { margin: 0; font-size: 14px; }
.ve-note { margin: 12px 0 70px; font-size: 14px; }

@media (min-width: 768px) {
  .ve-flow-cards article {
    min-height: 224px;
    padding-bottom: 34px;
  }
}

.ve-flow-policy { position: relative; min-height: 245px; padding: 40px 70px; background: url("../img/S7-square.svg") center / 100% 100% no-repeat; }
.ve-policy-corner { display: none; }
.ve-flow-policy h3 { margin: 0 0 18px; font-family: "Zen Old Mincho", serif; font-size: 21px; font-weight: 500; }
.ve-flow-policy p { margin: 8px 0; }

.ve-faq { padding: 120px 0; background: #f5f5f3; }
.ve-faq > .ve-container { width: min(1390px, calc(100% - 160px)); }
.ve-faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 90px; }
.ve-faq h2 { font-size: 34px; }
.ve-faq header > p:last-child { margin-top: 35px; }
.ve-faq details { border-bottom: 1px solid #aaa; }
.ve-faq summary { position: relative; padding: 22px 36px 10px 34px; font-size: 18px; list-style: none; cursor: pointer; }
.ve-faq summary::-webkit-details-marker { display: none; }
.ve-faq summary::before { content: "Q"; position: absolute; left: 0; color: #888; font-family: Marcellus, serif; }
.ve-faq summary::after { position: absolute; top: 29px; right: 6px; width: 17px; height: 7px; background: url("../img/S8-accordion.svg") center / contain no-repeat; content: ""; }
.ve-faq details:not([open]) summary::after { transform: rotate(180deg); }
.ve-faq details p { margin: 0; padding: 0 30px 22px 34px; font-size: 16px; }

.ve-final-message { min-height: 953px; padding: 100px 0 90px; background: url("../img/S9-background.webp") center/cover; text-align: center; }
.ve-final-message h2 { font-size: 42px; }
.ve-final-message h2 img { display: inline-block; width: 390px; max-width: 100%; height: auto; vertical-align: middle; }
.ve-final-copy-line { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; }
.ve-final-text { max-width: 1200px; margin: 52px auto; font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif; }
.ve-final-text p { margin: 10px 0; }
.ve-final-sp-break { display: none; }
.ve-final-text strong { font-size: 18px; font-weight: 700; }
.ve-philosophy-line { display: inline-flex; align-items: center; white-space: nowrap; }
.ve-person { position: relative; width: min(628px, 100%); min-height: 266px; margin: auto; padding: 46px 64px; background-image: url("../img/S9-square.svg"); background-position: center; background-size: 100% 100%; background-repeat: no-repeat; }
.ve-person ul { display: inline-block; margin: 12px auto; padding-left: 26px; text-align: left; }
.ve-person li { position: relative; font-weight: 700; }
.ve-person li::before { position: absolute; top: .72em; left: -24px; width: 10px; height: 10px; border-radius: 50%; background: #1a1a1a; content: ""; }
.ve-person p { margin: 0; }

.ve-entry { padding: 90px 24px 80px; background: #fff; }
.ve-entry-form { display: grid; width: min(936px, 100%); grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; margin: auto; padding: 55px 65px; border: 1px solid #8d8d8d; background: #f5f5f3; }
.ve-entry-form h2, .ve-entry-intro, .ve-entry-form > label:nth-of-type(9), .ve-consent, .ve-entry-form > button { grid-column: 1 / -1; }
.ve-entry h2 { margin-bottom: 22px; font-size: 30px; text-align: center; }
.ve-entry-intro { margin: 0 0 38px; font-size: 14px; font-weight: 700; }
.ve-entry-form > label:not(.ve-consent) { display: block; margin-bottom: 18px; font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif; font-size: 14px; font-weight: 500; }
.ve-entry em { margin-left: 5px; color: #9e3535; font-style: normal; }
.ve-entry input, .ve-entry select, .ve-entry textarea { width: 100%; min-height: 44px; margin-top: 6px; padding: 8px 10px; border: 1px solid #aaa; border-radius: 0; background: #fff; color: #1a1a1a; font: inherit; font-size: 16px; }
.ve-entry select { appearance: none; padding-right: 48px; background: #fff; color: #767676; font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif; font-weight: 500; }
.ve-select-label { position: relative; }
.ve-select-label::after { position: absolute; right: 20px; bottom: 22px; width: 9px; height: 9px; border-right: 1.5px solid #767676; border-bottom: 1.5px solid #767676; content: ""; pointer-events: none; transform: rotate(45deg); }
.ve-entry textarea { height: 132px; min-height: 132px; resize: vertical; }
.ve-consent { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; font-size: 14px; }
.ve-consent input { width: 16px; min-height: 16px; margin: 0; accent-color: #1a1a1a; }
.ve-consent a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.ve-field-error { display: block; margin-top: 6px; color: #b3261e; font-size: 14px; font-weight: 500; line-height: 1.5; }
.ve-field-error:empty { display: none; }
.ve-entry-form label.is-invalid > input:not([type="checkbox"]),
.ve-entry-form label.is-invalid > select,
.ve-entry-form label.is-invalid > textarea { border-color: #b3261e; }
.ve-consent.is-invalid { flex-wrap: wrap; }
.ve-consent .ve-field-error { width: 100%; margin-left: 26px; }
.ve-select-label.is-invalid::after { bottom: 49px; }
.ve-entry button { display: block; width: 360px; max-width: 100%; min-height: 58px; margin: auto; border: 0; background: #1a1a1a; color: #fff; font: inherit; font-size: 16px; font-weight: 700; cursor: pointer; }
.ve-entry button.common-button { width: 352px; height: 70px; min-height: 70px; padding-right: 22px; background: url("../img/common-button.svg") center / 100% 100% no-repeat; }
.ve-signoff { margin: 52px auto 0; text-align: center; }
.ve-signoff p { margin: 0 0 14px; }
.ve-signoff span { display: block; margin-top: 8px; font-weight: 700; }

.ve-footer { padding: 48px 0 34px; background: #1a1a1a; color: #fff; }
.ve-footer a { color: inherit; text-decoration: none; }
.ve-footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.ve-footer-top img { filter: brightness(0) invert(1); }
.ve-footer nav { display: flex; gap: 42px; }
.ve-footer address { margin-top: 35px; font-size: 14px; font-style: normal; }
.ve-footer-instagram { display: flex; width: max-content; align-items: center; gap: 8px; margin-top: 20px; font-size: 14px; }
.ve-footer-instagram img { filter: brightness(0) invert(1); }
.ve-footer-bottom { display: flex; align-items: center; margin-top: 32px; font-size: 14px; }
.ve-footer-bottom .ve-copyright { margin-left: auto; font-family: "Marcellus", serif; font-size: 12px; }

@media (max-width: 767px) {
  .ve-container { width: calc(100% - 32px); }
  .ve-voice > .ve-container { width: calc(100% - 32px); }
  .ve-area > .ve-container, .ve-flow > .ve-container, .ve-faq > .ve-container { width: calc(100% - 32px); }
  .ve-eyebrow { margin-bottom: 20px; }
  .ve-voice { padding-top: 72px; }
  .ve-section-head h2, .ve-area h2, .ve-flow h2 { font-size: 26px; }
  .ve-section-head > p:last-child { margin: 25px 0 38px; }
  .ve-voice-item { display: flex; flex-direction: column; gap: 0; margin: 0 -16px; }
  .ve-voice-item + .ve-voice-item { margin-top: 44px; }
  .ve-voice-item:last-of-type { margin-bottom: 40px; }
  .ve-voice-item img {
    order: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
  }
  .ve-voice-copy { order: 1; padding: 24px 16px 20px; border-bottom: 0; }
  .ve-voice-copy::after {
    display: block;
    margin-top: 20px;
    border-top: 1px solid #b9b9b9;
    content: "";
  }
  .ve-voice-columns { display: block; padding-top: 20px; }
  .ve-voice-columns h3 { margin-bottom: 24px; font-size: 23px; }
  .ve-voice-columns p { margin-bottom: 18px; }
  .ve-voice-columns > div p:last-child { margin-bottom: 0; }
  .ve-voice-closing {
    min-height: 0;
    aspect-ratio: 780 / 1168;
    background-image: url("../img/S5-SP.webp");
    background-position: center;
    background-size: 100% 100%;
    font-size: 16px;
  }
  .ve-voice-closing p:nth-child(2) {
    font-size: clamp(20px, 5.64vw, 22px);
    white-space: nowrap;
  }

  .ve-area { padding: 72px 0; }
  .ve-area-lead { display: flex; flex-direction: column; gap: 30px; margin-inline: -16px; }
  .ve-area-copy { width: auto; margin-left: 0; padding: 0 16px; }
  .ve-area-copy::before { width: 240px; height: 224px; left: auto; right: -15px; top: -50px; }
  .ve-area-copy > p:not(.ve-eyebrow) { margin-bottom: 22px; }
  .ve-area-lead > img {
    width: calc(100% + 32px);
    max-width: none;
    margin-left: -16px;
  }
  .ve-subheading { width: auto; margin: 45px 0 24px; }
  .ve-access { display: block; }
  .ve-routes { gap: 28px; padding: 14px 38px 14px 0; }
  .ve-routes > div { min-height: 40px; grid-template-columns: 132px minmax(0, 1fr); }
  .ve-routes > div::after { right: 0; left: 132px; }
  .ve-route-station { height: auto; min-height: 40px; }
  .ve-routes > div:first-child .ve-route-station { line-height: 1.2; }
  .ve-route-info { gap: 8px; padding-inline: 6px; }
  .ve-routes img { max-width: 25.5px; max-height: 26px; }
  .ve-route-station, .ve-routes b { font-size: 14px; }
  .ve-routes > div:first-child b { font-size: 13px; }
  .ve-destination { width: 37px; font-size: 14px; }
  .ve-commute {
    width: min(85vw, 340px);
    height: min(85vw, 340px);
    margin: 42px auto 0;
    padding: 32px;
  }
  .ve-area-future { margin-top: 42px; padding: 24px 20px; }

  .ve-flow { padding: 72px 0; }
  .ve-flow-head { text-align: left; }
  .ve-flow-head .ve-eyebrow::after { margin-inline: 0; }
  .ve-flow-head > p:last-child { margin: 20px 0 45px; }
  .ve-flow-nav { display: grid; width: min(319px, 100%); aspect-ratio: 319 / 366; grid-template-columns: 1fr; grid-template-rows: repeat(4, 1fr); margin: 0 auto 34px; background-image: url("../img/S7-flow-SP.svg"); }
  .ve-flow-nav li {
    align-items: center;
    justify-content: center;
    padding: 14px 18px 0 58px;
    font-size: 18px;
    text-align: center;
  }
  .ve-flow-nav li:last-child { transform: translateY(8px); }
  .ve-flow-cards { display: block; }
  .ve-flow-cards article {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 5px;
    padding: 20px 16px 25px;
  }
  .ve-flow-cards article > p { align-self: flex-start; }
  .ve-flow-cards article > img {
    width: 67px;
    height: 67px;
    margin: 0 auto 14px;
  }
  .ve-flow-cards article > div { width: 100%; }
  .ve-flow-cards article > img, .ve-flow-cards article > div { transform: none; }
  .ve-flow-cards h3 { margin-bottom: 8px; font-size: 16px; text-align: left; }
  .ve-flow-cards div p { font-size: 14px; }
  .ve-note { margin-bottom: 54px; }
  .ve-flow-policy {
    min-height: 0;
    padding: 30px 24px;
    background: none;
  }
  .ve-policy-corner {
    position: absolute;
    display: block;
    width: 66px;
    height: 56px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .ve-policy-corner--tl { top: 0; left: 0; background-image: url("../img/S7-square-left-SP.svg"); }
  .ve-policy-corner--tr { top: 0; right: 0; background-image: url("../img/S7-square-right-SP.svg"); }
  .ve-policy-corner--bl { bottom: 0; left: 0; background-image: url("../img/S7-square-left-SP.svg"); transform: scaleY(-1); }
  .ve-policy-corner--br { right: 0; bottom: 0; background-image: url("../img/S7-square-right-SP.svg"); transform: scaleY(-1); }
  .ve-flow-policy h3 { width: 80%; margin: 0 auto 18px; }
  .ve-flow-policy p { width: 80%; margin-inline: auto; font-size: 14px; }

  .ve-faq { padding: 72px 0; }
  .ve-faq-layout { display: block; }
  .ve-faq h2 { font-size: 28px; }
  .ve-faq header > p:last-child { margin: 25px 0 34px; }
  .ve-faq summary { padding: 24px 36px 20px 34px; font-size: 16px; }
  .ve-faq summary::before { font-size: 16px; }
  .ve-faq summary::after { top: 50%; transform: translateY(-50%); }
  .ve-faq details:not([open]) summary::after { transform: translateY(-50%) rotate(180deg); }
  .ve-faq details p { padding: 0 25px 18px 30px; font-size: 16px; }

  .ve-final-message { min-height: 0; padding: 72px 0; background-position: 44% center; }
  .ve-final-message h2 { font-size: 26px; line-height: 1.7; }
  .ve-final-copy-line { flex-wrap: wrap; gap: 10px 14px; margin-top: 8px; }
  .ve-final-copy-line img { flex: 0 1 300px; }
  .ve-final-text {
    width: min(100%, 520px);
    margin: 38px auto;
    font-size: clamp(14px, 4.1vw, 16px);
    letter-spacing: .03em;
  }
  .ve-final-text strong { font-size: 16px; }
  .ve-philosophy-line { display: inline; white-space: normal; }
  .ve-final-text br { display: none; }
  .ve-final-text br.ve-final-sp-break { display: block; }
  .ve-person {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: center;
    padding: 28px 18px;
    background: none;
    font-size: 16px;
  }
  .ve-person::before {
    position: absolute;
    z-index: 0;
    inset: 16px;
    background: #f5f5f3;
    content: "";
  }
  .ve-person > p,
  .ve-person > ul { position: relative; z-index: 1; }
  .ve-person > .ve-policy-corner { z-index: 2; }
  .ve-person > .ve-policy-corner--tl,
  .ve-person > .ve-policy-corner--bl { background-image: url("../img/S9-square-left-SP.svg"); }
  .ve-person > .ve-policy-corner--tr,
  .ve-person > .ve-policy-corner--br { background-image: url("../img/S9-square-right-SP.svg"); }

  .ve-entry { padding: 56px 8px 64px; }
  .ve-entry-form { display: grid; grid-template-columns: 1fr; padding: 36px 16px; }
  .ve-entry h2 { font-size: 25px; }
  .ve-entry button.common-button { width: 100%; height: 58px; min-height: 58px; padding-right: 0; background: #1a1a1a; }
  .ve-signoff { padding-inline: 12px; font-size: 14px; }

  .ve-footer { padding: 38px 0 24px; }
  .ve-footer > .ve-container {
    display: flex;
    width: calc(100% - 72px);
    flex-direction: column;
  }
  .ve-footer-top { display: contents; }
  .ve-footer-top > img { order: 1; }
  .ve-footer address { order: 2; margin-top: 24px; }
  .ve-footer-instagram { order: 3; margin-top: 12px; }
  .ve-footer nav {
    display: grid;
    order: 4;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 24px;
    margin-top: 26px;
    font-size: 14px;
  }
  .ve-footer-bottom { display: block; order: 5; margin-top: 28px; }
  .ve-footer-bottom .ve-copyright { display: block; margin: 34px 0 0; }
}

/* ==================================================
   Typography map — keep font roles explicit after bundling
   ================================================== */
body,
button,
input,
select,
textarea {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.heading-ja,
.section-title,
.kk-hero__title,
.kk-hero__lead,
.kk-stat-card__value,
.kk-stats h2,
.message__title,
.message__question,
.recruit__header h2,
.sales-hero h3,
.ve-section-head h2,
.ve-voice-columns h3,
.ve-area h2,
.ve-area-future h3,
.ve-flow h2,
.ve-flow-policy h3,
.ve-faq h2,
.ve-final-message h2,
.ve-entry h2 {
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.font-en,
.section-kicker,
.kk-header__entry,
.kk-hero__scroll span,
.kk-eyebrow,
.ve-eyebrow,
.ve-voice-no,
.ve-flow-nav span,
.ve-flow-cards article > p {
  font-family: "Marcellus", serif;
}

@media (max-width: 767px) {
  .ve-section-head h2 {
    font-size: clamp(24px, 7vw, 27px);
  }

  .message__body .message__question {
    font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  .message__body .message__signature {
    font-size: 18px;
    font-weight: 700;
  }

  .kk-stats h2,
  .message__title,
  .recruit__header h2,
  .ve-section-head h2,
  .ve-area h2,
  .ve-flow h2,
  .ve-faq h2 {
    font-size: clamp(28px, 8vw, 30px);
    font-weight: 600;
  }

  .kk-stats__subtitle,
  .message__lead,
  .recruit__header > p:last-child,
  .ve-section-head > p:last-child,
  .ve-area-copy > h2 + p,
  .ve-flow-head > p:last-child,
  .ve-faq header > p:last-child {
    font-size: 16px;
    font-weight: 500;
  }
}

/* SP final layout overrides — keep after every bundled rule */
@media (max-width: 767px) {
  .ve-voice > .ve-container {
    width: 100%;
    margin-inline: 0;
  }

  .ve-voice {
    overflow-x: hidden;
  }

  .ve-voice .ve-section-head {
    padding-inline: 16px;
  }

  .ve-voice .ve-section-head h2 {
    font-size: clamp(22px, 7vw, 28px);
    white-space: nowrap;
  }

  .ve-flow-policy h3 {
    font-size: clamp(16px, 4.8vw, 18px);
    white-space: nowrap;
  }

  .ve-voice-item {
    width: 100vw;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .ve-voice-item > img,
  .ve-voice-item > picture {
    width: 104%;
    margin-left: -2%;
  }

  .ve-voice-item > picture img {
    width: 100%;
    margin-left: 0;
  }

  .design-differences li > strong {
    font-size: 16px;
  }

  .role-panel .design-specs {
    width: 100%;
    align-self: stretch;
  }

  .role-panel .design-specs h4,
  .role-panel .conditions h4 {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
  }

  .role-panel .marketing-people h4 {
    display: flex;
    min-height: 32px;
    align-items: center;
    padding: 0 0 0 10px;
    border-left: 3px solid #1a1a1a;
    border-bottom: 0;
    line-height: 1.5;
  }

  .role-panel .conditions h4 {
    font-size: 18px;
  }

  .role-panel .conditions-list > div,
  .role-panel .conditions-list small {
    font-size: 16px;
  }

  .training-list li {
    align-items: center;
  }

  .training-list li:nth-child(3) {
    margin-top: 18px;
  }

  .ve-flow-cards article {
    margin-bottom: 16px;
    padding: 40px 32px 50px;
  }
}

/* Tablet AREA and access diagram — fluidly preserve the desktop composition */
@media (min-width: 768px) and (max-width: 1200px) {
  .ve-area > .ve-container {
    width: calc(100% - 80px);
  }

  .ve-area-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 53%);
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
  }

  .ve-area-copy {
    width: 100%;
    margin-left: 0;
  }

  .ve-area-copy::before {
    right: auto;
    left: clamp(-180px, -15vw, -115px);
  }

  .ve-area-lead > img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .ve-access {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) clamp(260px, 29vw, 340px);
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
  }

  .ve-routes {
    padding-right: clamp(38px, 4vw, 48px);
  }

  .ve-routes > div {
    grid-template-columns: clamp(190px, 24vw, 240px) minmax(0, 1fr);
  }

  .ve-routes > div::after {
    left: clamp(190px, 24vw, 240px);
  }

  .ve-destination {
    width: clamp(38px, 4vw, 48px);
  }

  .ve-commute {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    padding: clamp(28px, 4vw, 48px);
  }
}

/* Narrow tablets — stack access content so the commute panel stays circular */
@media (min-width: 768px) and (max-width: 1100px) {
  .ve-access {
    grid-template-columns: minmax(0, 1fr);
  }

  .ve-commute {
    width: min(340px, 85vw);
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    justify-self: center;
    margin-top: 42px;
  }
}

/* Mid-size policy frame — compose the four SP corner assets below 1180px */
@media (min-width: 768px) and (max-width: 1180px) {
  .ve-flow-policy {
    min-height: 300px;
    padding: 56px 90px;
    background: none;
  }

  .ve-flow-policy .ve-policy-corner {
    position: absolute;
    display: block;
    width: 76px;
    height: 64px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .ve-flow-policy .ve-policy-corner--tl {
    top: 0;
    left: 0;
    background-image: url("../img/S7-square-left-SP.svg");
  }

  .ve-flow-policy .ve-policy-corner--tr {
    top: 0;
    right: 0;
    background-image: url("../img/S7-square-right-SP.svg");
  }

  .ve-flow-policy .ve-policy-corner--bl {
    bottom: 0;
    left: 0;
    background-image: url("../img/S7-square-left-SP.svg");
    transform: scaleY(-1);
  }

  .ve-flow-policy .ve-policy-corner--br {
    right: 0;
    bottom: 0;
    background-image: url("../img/S7-square-right-SP.svg");
    transform: scaleY(-1);
  }
}

/* Tablets — prevent desktop-only fixed content from widening the page */
@media (min-width: 768px) and (max-width: 1024px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .kk-header__logo {
    flex: 1 1 auto;
    padding-left: 16px;
  }

  .kk-header__logo img {
    width: 150px;
  }

  .kk-header__nav {
    display: none;
  }

  .kk-header__entry {
    flex: 0 0 130px;
  }

  .kk-hero__content {
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    margin: 0;
    padding-top: 0;
    transform: translate(-50%, -50%);
  }

  .kk-stats__feature {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .kk-growth {
    width: 100%;
    min-height: 0;
  }

  .kk-growth__message .kk-sp-break {
    display: initial;
  }

  .kk-growth__message p {
    margin-bottom: 6px;
    border-bottom: 0;
    font-size: 18px;
    line-height: 1.6;
  }

  .kk-stats__photos {
    width: min(712px, 100%);
    align-self: center;
  }

  .kk-stats__photos img {
    width: 100%;
    max-width: 100%;
  }

  .ve-area h2 {
    font-size: clamp(26px, 3.5vw, 34px);
    white-space: nowrap;
  }

  .ve-philosophy-line {
    display: inline;
    white-space: normal;
  }
}

/* Narrow phones — compact only the elements that cannot fit at 320px */
@media (max-width: 374px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .kk-header__entry {
    flex-basis: 94px;
  }

  .ve-routes {
    gap: 24px;
    padding-right: 32px;
  }

  .ve-routes > div {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .ve-routes > div::after {
    left: 112px;
  }

  .ve-route-station {
    padding-inline: 6px;
    font-size: 12px;
  }

  .ve-route-info {
    gap: 5px;
    padding-inline: 4px;
  }

  .ve-route-info b {
    font-size: 12px;
  }

  .ve-routes img {
    max-width: 22px;
    max-height: 22px;
  }

  .ve-destination {
    width: 32px;
    font-size: 12px;
  }

  .ve-commute {
    position: relative;
    left: 50%;
    width: min(96vw, 340px);
    height: min(96vw, 340px);
    padding: 28px;
    transform: translateX(-50%);
  }
}
