:root {
  --color-ink: #0a0a0a;
  --color-bg: #ffffff;
  --color-accent: #90f5ff;
  --color-accent-2: #c5fbff;
  --color-muted: #f3f3f3;
  --color-line: #dedede;
  --container: 1120px;
  --header-overlay-offset: 82px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.015), transparent 42%),
    radial-gradient(circle at 86% 76%, rgba(0, 0, 0, 0.012), transparent 48%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.008) 0, rgba(0, 0, 0, 0.008) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.006) 0, rgba(0, 0, 0, 0.006) 1px, transparent 1px, transparent 6px);
  background-size: auto, auto, 100% 100%, 100% 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

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

.l-container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.l-container--narrow {
  width: min(100% - 32px, 840px);
}

.l-main {
  min-height: 50vh;
}

.site-header,
.site-footer {
  padding: 16px 0;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__nav ul,
.site-footer__nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff 0%, #eefcff 100%);
}

.c-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6e6e6e;
}

.home-section-title {
  margin: 0 0 22px;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.2;
}

.c-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.c-pill-button--light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.front-page .site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.home-hero {
  border-bottom: 1px solid var(--color-line);
}

.home-hero__inner {
  position: relative;
  min-height: min(62vw, 680px);
  padding: 48px 0 32px;
  display: grid;
  align-content: center;
}

.home-hero__logo {
  margin: 0;
  font-size: clamp(96px, 22vw, 320px);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.home-hero__copy {
  position: absolute;
  right: 0;
  top: 24%;
  margin: 0;
  writing-mode: vertical-rl;
  letter-spacing: 0.18em;
  font-size: clamp(14px, 1.9vw, 26px);
}

.home-hero__subcopy {
  margin: 8px 0 0;
  color: #555;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.home-message {
  background: #101010;
  color: #f5f5f5;
  padding: 72px 0 80px;
}

.home-message__inner {
  width: min(100% - 32px, 760px);
  margin-inline: auto;
}

.home-message .c-eyebrow {
  color: #aaaaaa;
}

.home-message__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
}

.home-message__body {
  color: #d4d4d4;
  margin-bottom: 14px;
}

.home-message__body>*:first-child {
  margin-top: 0;
}

.home-message__body>*:last-child {
  margin-bottom: 0;
}

.home-services {
  padding: 88px 0;
  scroll-margin-top: 24px;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-service-card {
  min-height: 220px;
  border: 1px solid var(--color-line);
  background: #fff;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.home-service-card__mark {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--card-bg, #fff);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-service-card__mark--image {
  width: clamp(72px, 9vw, 88px);
  height: clamp(72px, 9vw, 88px);
  background: transparent;
}

.home-service-card__mark-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-service-card__title {
  margin: 0;
  font-size: 15px;
}

.home-service-card__summary {
  margin: 0;
  color: #555;
  font-size: 13px;
}

.home-service-card__link {
  margin-top: auto;
  font-size: 12px;
  text-decoration: underline;
}

.home-service-card--force {
  --card-bg: #d8f4ff;
}

.home-service-card--content {
  --card-bg: #ffe8e8;
}

.home-service-card--advertising {
  --card-bg: #fff0d7;
}

.home-service-card--channel {
  --card-bg: #e4fbec;
}

.home-news {
  padding: 82px 0 92px;
  border-top: 1px solid var(--color-line);
}

.home-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.home-news__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}

.home-news__item--empty {
  grid-template-columns: 1fr;
  color: #666;
}

.home-news__date {
  color: #666;
  font-size: 12px;
}

.home-news__link {
  text-decoration: none;
}

.home-news__link:hover,
.home-news__link:focus-visible {
  text-decoration: underline;
}

.home-recruit {
  background: linear-gradient(140deg, var(--color-accent) 0%, var(--color-accent-2) 44%, #7feef8 100%);
  padding: 56px 0 0;
}

.home-recruit__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: end;
}

.home-recruit__text {
  padding-bottom: 44px;
}

.home-recruit__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.home-recruit__copy {
  margin: 12px 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
}

.home-recruit__body {
  margin-bottom: 14px;
  max-width: 44ch;
}

.home-recruit__visual {
  min-height: 340px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 255, 255, 0.85), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.home-recruit__shape {
  position: absolute;
  inset: 10% 14% 0 auto;
  width: 52%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.08) 2px, transparent 2px, transparent 8px);
  clip-path: polygon(50% 0%, 66% 10%, 72% 29%, 79% 46%, 76% 66%, 70% 87%, 58% 100%, 40% 100%, 26% 85%, 23% 66%, 26% 50%, 32% 32%, 39% 12%);
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.c-card {
  border: 1px solid #ddd;
  padding: 12px;
  background: #fff;
}

@media (max-width: 960px) {
  .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-recruit__inner {
    grid-template-columns: 1fr;
  }

  .home-recruit__visual {
    min-height: 240px;
  }
}

@media (max-width: 720px) {

  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__inner {
    display: flex;
    gap: 12px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-content: start;
  }

  .site-footer__menu,
  .site-footer__sns,
  .site-footer__info {
    width: 100%;
  }

  .site-header__nav ul,
  .site-footer__nav ul {
    flex-wrap: wrap;
  }

  .site-footer__nav {
    justify-self: start;
  }

  .site-footer__nav ul {
    gap: 8px;
  }

  .home-hero__inner {
    min-height: 72vw;
  }

  .home-hero__copy {
    top: 18%;
    font-size: 14px;
  }

  .home-message,
  .home-services,
  .home-news {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-news__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .home-news__item::after {
    content: none;
  }

  .home-news__date {
    justify-content: flex-start;
    min-height: auto;
    padding: 12px 0 0;
    text-align: left;
  }

  .home-news__link {
    padding: 0 0 12px;
  }
}

@media (max-width: 560px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }
}

.recruit-top-hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, #bbfbff 45%, #9af1ff 100%);
  padding: 44px 0 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.recruit-top-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
}

.recruit-top-hero__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.recruit-top-hero__copy {
  margin: 10px 0 0;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.35;
}

.recruit-top-message {
  background: #202020;
  color: #f2f2f2;
  padding: 48px 0 56px;
}

.recruit-top-message .c-eyebrow {
  color: #b5b5b5;
}

.recruit-top-message__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.recruit-top-message__body {
  max-width: 760px;
}

.recruit-top-message__body p {
  color: #d4d4d4;
}

.recruit-top-message__entry {
  margin-top: 8px;
  align-self: start;
}

.recruit-top-people,
.recruit-top-info,
.recruit-top-qa {
  padding: 64px 0;
}

.recruit-top-info {
  background: linear-gradient(180deg, #b6fbff 0%, #a6f6ff 100%);
}

.recruit-top-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.recruit-top-people__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.recruit-person-card {
  border: 1px solid var(--color-line);
  background: #fff;
}

.recruit-person-card a {
  display: block;
  text-decoration: none;
}

.recruit-person-card__thumb {
  aspect-ratio: 4 / 5;
  background: #eef7f9;
  overflow: hidden;
}

.recruit-person-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-person-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0, rgba(0, 0, 0, 0.04) 2px, transparent 2px, transparent 8px);
}

.recruit-person-card__meta {
  padding: 10px 12px 12px;
}

.recruit-person-card__name {
  margin: 0;
  font-weight: 700;
}

.recruit-person-card__sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: #666;
}

.recruit-person-card--empty {
  grid-column: 1 / -1;
  padding: 16px;
  color: #555;
}

.recruit-top-people__footer {
  margin-top: 20px;
}

.recruit-top-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recruit-info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  min-height: 86px;
  display: grid;
  align-items: center;
}

.recruit-info-card a {
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: 12px 16px;
  text-decoration: none;
}

.recruit-info-card h3 {
  margin: 0;
  font-size: 16px;
}

.recruit-qa-list {
  display: grid;
  gap: 10px;
}

.recruit-qa-item {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.recruit-qa-item[open] {
  border-radius: 20px;
}

.recruit-qa-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
}

.recruit-qa-item summary::-webkit-details-marker {
  display: none;
}

.recruit-qa-item__q {
  color: #6d6d6d;
  font-weight: 700;
}

.recruit-qa-item__answer {
  padding: 0 16px 14px 16px;
  color: #444;
}

.recruit-qa-item__answer p {
  margin: 0;
}

.recruit-top-entry {
  background: #0a0a0a;
  color: #fff;
  padding: 28px 0 34px;
}

.recruit-top-entry__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.recruit-top-entry__title {
  margin: 0;
  font-size: 24px;
}

.recruit-top-entry__button {
  background: #fff;
  color: #000;
}

@media (max-width: 960px) {
  .recruit-top-people__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .recruit-top-hero__inner,
  .recruit-top-message__inner,
  .recruit-top-section-head,
  .recruit-top-entry__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .recruit-top-section-head {
    gap: 10px;
  }

  .recruit-top-message__entry,
  .recruit-top-hero__entry {
    justify-self: start;
  }

  .recruit-top-info__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .recruit-top-people__grid {
    grid-template-columns: 1fr;
  }
}

.interview-page__hero {
  padding: 28px 0 40px;
  background: linear-gradient(180deg, #fff 0%, #f4fdff 100%);
  border-bottom: 1px solid var(--color-line);
}

.interview-page__hero .l-container {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.interview-page__hero-media {
  border: 1px solid var(--color-line);
  background: #f0f7f8;
}

.interview-page__hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.interview-page__hero-placeholder {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, .86), transparent 46%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .04) 0, rgba(0, 0, 0, .04) 2px, transparent 2px, transparent 8px);
}

.interview-page__name {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
}

.interview-page__sub {
  margin: 6px 0 0;
  color: #666;
}

.interview-page__catch {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.4;
}

.interview-page__intro {
  margin-top: 10px;
  color: #3f3f3f;
}

.interview-page__qa,
.interview-page__schedule,
.interview-page__career,
.interview-page__others {
  padding: 56px 0;
}

.interview-page__schedule {
  background: linear-gradient(180deg, #b9fbff 0%, #e8fdff 100%);
}

.interview-page__career {
  background: #fff;
}

.interview-page__others {
  background: #141414;
  color: #fff;
}

.interview-page__others .c-eyebrow {
  color: #c1c1c1;
}

.interview-blocks {
  display: grid;
  gap: 20px;
}

.interview-block {
  border-top: 1px solid var(--color-line);
  padding-top: 14px;
}

.interview-block__q {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
}

.interview-block__a>*:first-child {
  margin-top: 0;
}

.interview-block__a>*:last-child {
  margin-bottom: 0;
}

.interview-page__extra-content {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-line);
}

.interview-timeline {
  display: grid;
  gap: 10px;
}

.interview-timeline__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 12px;
}

.interview-timeline__time {
  font-weight: 700;
}

.interview-bars {
  display: grid;
  gap: 12px;
}

.interview-bars__item {
  border: 1px solid var(--color-line);
  background: #fff;
  padding: 12px;
}

.interview-bars__bar {
  height: 34px;
  min-width: 10%;
  background: linear-gradient(90deg, #8ff3ff 0%, #b8fbff 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.interview-bars__label {
  margin: 8px 0 0;
  font-weight: 700;
}

.interview-bars__caption {
  margin: 4px 0 0;
  color: #666;
  font-size: 13px;
}

.recruit-jobs-page__hero {
  padding: 30px 0 24px;
  background: linear-gradient(180deg, #fff 0%, #f7fdff 100%);
  border-bottom: 1px solid var(--color-line);
}

.recruit-jobs-page__hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.recruit-jobs-page__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
}

.recruit-jobs-page__lead {
  margin: 10px 0 0;
  color: #555;
}

.recruit-jobs-page__content {
  padding: 36px 0 64px;
}

.recruit-jobs-page__intro {
  margin-bottom: 20px;
}

.recruit-jobs-list {
  display: grid;
  gap: 20px;
}

.recruit-job-card {
  border: 1px solid var(--color-line);
  background: #fff;
}

.recruit-job-card__header {
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--color-line);
}

.recruit-job-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.recruit-job-card__sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
}

.recruit-job-card__status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  font-size: 12px;
  white-space: nowrap;
}

.recruit-job-card__status.is-open {
  background: #ecffef;
  border-color: #9bddaa;
  color: #205d2d;
}

.recruit-job-card__status.is-closed {
  background: #f7f7f7;
  color: #666;
}

.recruit-job-table {
  display: grid;
}

.recruit-job-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--color-line);
  padding: 12px 16px;
}

.recruit-job-row:last-child {
  border-bottom: none;
}

.recruit-job-row__label {
  font-weight: 700;
  font-size: 13px;
}

.recruit-job-row__value {
  min-width: 0;
}

.recruit-job-row__value>*:first-child {
  margin-top: 0;
}

.recruit-job-row__value>*:last-child {
  margin-bottom: 0;
}

.recruit-jobs-empty {
  border: 1px dashed var(--color-line);
  padding: 16px;
  color: #555;
}

@media (max-width: 900px) {
  .interview-page__hero .l-container {
    grid-template-columns: 1fr;
  }

  .recruit-jobs-page__hero-inner {
    grid-template-columns: 1fr;
  }

  .recruit-job-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .recruit-job-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .interview-timeline__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.recruit-interview-archive__content {
  padding: 36px 0 56px;
}

.about-page {
  --about-message-rail: clamp(104px, 12vw, 124px);
  --about-message-photo: clamp(126px, 17vw, 184px);
  --about-axis-width: clamp(132px, 18vw, 260px);
  --about-year-width: clamp(84px, 14vw, 190px);
  --about-card-pad-y: clamp(24px, 3vw, 34px);
  --about-card-pad-x: clamp(16px, 2vw, 26px);
}

.about-hero {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
    var(--about-hero-bg, linear-gradient(180deg, #2b3032 0%, #16191b 100%));
  background-size: cover;
  background-position: center;
  color: #fff;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100% - 12px, 1420px);
  min-height: min(56.25vw, 1080px);
  padding: 138px 0 82px;
  position: relative;
  z-index: 1;
}

.about-hero__title {
  margin: 0;
  font-size: clamp(58px, 8.6vw, 146px);
  line-height: 0.94;
  letter-spacing: 0.02em;
  color: #fff;
}

.about-hero__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.35vw, 22px);
  letter-spacing: 0.1em;
}

.about-hero__content {
  max-width: min(100%, 760px);
  display: grid;
  align-content: start;
  gap: 26px;
  align-self: start;
  padding-top: 56px;
}

.about-hero__nav {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.about-hero__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.about-hero__nav-link:hover,
.about-hero__nav-link:focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

.about-hero__social {
  top: clamp(16px, 1.4vw, 22px);
}

.about-hero__social .home-hero__social-label,
.about-hero__social .home-hero__social-link {
  color: #fff;
}

.about-message {
  padding: 64px 0 8px;
  scroll-margin-top: 90px;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 0, 0, 0.012), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.about-message__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--about-message-rail) var(--about-message-photo);
  gap: clamp(10px, 1.4vw, 16px);
  align-items: end;
}

.about-message__main {
  grid-column: 1 / span 2;
  position: relative;
  z-index: 1;
}

.about-message__body {
  color: #333;
  font-size: clamp(13px, 1.15vw, 14px);
  line-height: 1.72;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(clamp(44px, 8.5vw, 104px));
}

.about-message__body>* {
  margin-top: 0;
  margin-bottom: 0.9em;
}

.about-message__body>*:last-child {
  margin-bottom: 0;
}

.about-message__profile {
  display: grid;
  gap: 4px;
  grid-column: 2;
  align-self: end;
  padding-bottom: 4px;
  justify-self: start;
  width: 100%;
  max-width: var(--about-message-rail);
  transform: translateY(clamp(-56px, -5.5vw, -24px));
  position: relative;
  z-index: 3;
}

.about-message__person-title,
.about-message__person-caption,
.about-message__person-name-ja,
.about-message__person-name-en {
  margin: 0;
}

.about-message__person-title {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #444;
}

.about-message__person-caption {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

.about-message__person-name-ja {
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #111;
}

.about-message__person-name-en {
  font-size: clamp(10px, 0.95vw, 11px);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #666;
  white-space: nowrap;
}

.about-message__person-image {
  position: relative;
  z-index: 3;
  border: 1px solid var(--color-line);
  background: #fff;
  overflow: hidden;
}

.about-message__person {
  grid-column: 3;
  justify-self: end;
  align-self: end;
  width: var(--about-message-photo);
  max-width: var(--about-message-photo);
  transform: translateY(clamp(-56px, -5.5vw, -24px));
  position: relative;
  z-index: 3;
}

.about-message__person-image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-message__person-image--placeholder {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .9), transparent 44%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .04) 0, rgba(0, 0, 0, .04) 2px, transparent 2px, transparent 8px);
}

.about-block {
  padding: 56px 0;
  border-top: 1px solid var(--color-line);
  scroll-margin-top: 90px;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 0, 0, 0.012), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.about-block--purpose {
  padding: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 0, 0, 0.012), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.about-block--history {
  padding: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 0, 0, 0.012), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.about-block--company {
  padding: 128px 0 136px;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 0, 0, 0.012), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.about-section-head {
  margin-bottom: 24px;
}

.about-section-head--center {
  text-align: center;
  display: grid;
  justify-items: center;
  margin-bottom: 52px;
}

.about-section-head .home-section-title {
  margin-bottom: 0;
}

.about-message .home-section-title {
  margin-bottom: 0;
}

.about-section-subtitle {
  margin: 4px 0 0;
  color: #4f4f4c;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-table {
  border-top: 1px solid var(--color-line);
}

.about-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
}

.about-row__label {
  font-weight: 700;
  font-size: 13px;
}

.about-row__value {
  min-width: 0;
}

.about-purpose-grid {
  --about-gutter: max(12px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: var(--about-axis-width) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "axis philosophy philosophy"
    "axis creed guideline";
  min-height: clamp(420px, 44vw, 520px);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: #fff;
  padding-left: var(--about-gutter);
  padding-right: var(--about-gutter);
  position: relative;
}

.about-purpose-grid::after {
  content: "";
  position: absolute;
  left: calc(var(--about-gutter) + var(--about-axis-width));
  right: 0;
  top: 50%;
  border-top: 1px solid #222;
  pointer-events: none;
}

.about-purpose-cell {
  padding: var(--about-card-pad-y) var(--about-card-pad-x);
}

.about-purpose-cell--axis {
  grid-area: axis;
  border-right: 1px solid #222;
  display: grid;
  align-content: start;
  justify-items: start;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}

.about-purpose-cell__axis-inner {
  display: grid;
  gap: 6px;
  justify-items: start;
  margin-top: clamp(24px, 5.5vw, 54px);
}

.about-purpose-cell--philosophy {
  grid-area: philosophy;
  position: relative;
}

.about-purpose-cell--creed {
  grid-area: creed;
  border-right: 1px solid #222;
  position: relative;
}

.about-purpose-cell--guideline {
  grid-area: guideline;
  position: relative;
}

.about-purpose-cell__axis-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-purpose-cell__axis-subtitle {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #333;
}

.about-purpose-cell__heading {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
}

.about-purpose-cell__body {
  margin: 0;
  font-size: clamp(14px, 1.7vw, 20px);
  line-height: 1.55;
  color: #222;
}

.about-purpose-cell--philosophy .about-purpose-cell__body,
.about-purpose-cell--creed .about-purpose-cell__body,
.about-purpose-cell--guideline .about-purpose-cell__body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
}

.about-purpose-cell--philosophy .about-purpose-cell__body {
  width: min(calc(100% - 32px), 468px);
  min-height: clamp(52px, 6vw, 72px);
}

.about-purpose-cell--creed .about-purpose-cell__body {
  width: min(calc(100% - 32px), 337px);
  min-height: clamp(52px, 6vw, 72px);
}

.about-purpose-cell--guideline .about-purpose-cell__body {
  width: min(calc(100% - 24px), 180px);
  min-height: clamp(28px, 4vw, 36px);
}

.about-block--purpose .l-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-block--history .l-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-history-grid {
  --about-gutter: max(12px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: var(--about-axis-width) var(--about-year-width) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "axis story story"
    "axis timeline timeline";
  min-height: clamp(380px, 38vw, 420px);
  border-top: 0;
  border-bottom: 1px solid #222;
  background: #fff;
  padding-left: var(--about-gutter);
  padding-right: var(--about-gutter);
  position: relative;
}

.about-history-cell {
  padding: var(--about-card-pad-y) var(--about-card-pad-x);
}

.about-history-cell--axis {
  grid-area: axis;
  border-right: 1px solid #222;
  display: grid;
  align-content: start;
  justify-items: start;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}

.about-history-cell--story {
  grid-area: story;
  display: grid;
  place-content: center;
  justify-items: center;
  position: relative;
}

.about-history-cell--story::after {
  content: "";
  position: absolute;
  left: 0;
  right: calc(-1 * var(--about-gutter));
  bottom: 0;
  border-bottom: 1px solid #222;
  pointer-events: none;
}

.about-history-cell--timeline {
  grid-area: timeline;
  display: grid;
  align-content: start;
  position: relative;
  padding-top: clamp(46px, 7vw, 84px);
  padding-bottom: clamp(46px, 7vw, 84px);
  padding-left: 0;
  padding-right: 0;
}

.about-history-cell--timeline::before {
  content: "";
  position: absolute;
  left: var(--about-year-width);
  top: 0;
  bottom: 0;
  border-left: 1px solid #222;
  pointer-events: none;
}

.about-history-cell__story,
.about-history-timeline__year,
.about-history-timeline__event {
  margin: 0;
}

.about-history-cell__story {
  width: 840px;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: clamp(128px, 18vw, 200px);
  font-size: clamp(13px, 1.15vw, 14px);
  line-height: 1.8;
  display: grid;
  place-items: center;
  text-align: left;
}

.about-history-timeline {
  display: grid;
  grid-template-columns: var(--about-year-width) minmax(0, 1fr);
  align-items: stretch;
  row-gap: clamp(18px, 3vw, 28px);
}

.about-history-timeline__year {
  display: grid;
  align-content: start;
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 2;
  font-weight: 400;
  text-align: center;
  padding: 0 clamp(12px, 2vw, 26px);
}

.about-history-timeline__event {
  display: grid;
  align-content: start;
  width: min(calc(100% - 32px), 628px);
  font-size: clamp(13px, 1.15vw, 14px);
  line-height: 2;
  text-align: left;
  justify-self: end;
  padding: 0 clamp(12px, 2vw, 26px);
}

.about-company-grid {
  width: min(709px, 100%);
  height: 534px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  background: #fff;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.about-company-cell {
  padding: clamp(12px, 1.8vw, 14px) clamp(12px, 2vw, 18px);
}

.about-company-cell--left {
  border-right: 1px solid #222;
}

.about-company-cell--row-1,
.about-company-cell--row-2,
.about-company-cell--row-3,
.about-company-cell--row-4,
.about-company-cell--row-5 {
  border-bottom: 1px solid #222;
}

.about-company-logo-outside {
  width: min(709px, 100%);
  margin: 0 auto 18px;
}

.about-company-logo-outside .about-company-logo__image {
  width: clamp(180px, 24vw, 238px);
}

.about-company-logo__image {
  height: auto;
  display: block;
  filter: brightness(0);
}

.about-company-logo__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about-company-cell__value {
  margin: 0;
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1.6;
  width: min(440px, 100%);
  text-align: left;
}

.about-company-cell__label-text {
  display: block;
}

.about-company-cell__value-text {
  display: block;
}

.about-company-cell--label {
  font-size: clamp(12px, 1.05vw, 13px);
  font-weight: 600;
  line-height: 1.5;
  display: grid;
  place-items: center;
  text-align: center;
}

.about-company-cell--value {
  display: grid;
  justify-items: center;
  align-items: center;
}

@media (max-width: 800px) {
  :root {
    --header-overlay-offset: 76px;
  }

  .about-hero__inner {
    min-height: 560px;
    padding: 108px 0 56px;
  }

  .about-hero__content {
    gap: 20px;
    padding-top: 28px;
  }

  .about-hero__title {
    font-size: clamp(48px, 10vw, 90px);
  }

  .about-hero__nav-link {
    font-size: 18px;
  }

  .about-hero__inner {
    width: min(100% - 16px, 100%);
  }

  .about-block--company {
    padding: 96px 0 104px;
  }
}

@media (max-width: 720px) {
  .about-hero__inner {
    padding-top: 92px;
  }

  .about-hero__content {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-purpose-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "axis"
      "philosophy"
      "creed"
      "guideline";
    grid-template-rows: auto;
    min-height: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-purpose-grid::after {
    display: none;
  }

  .about-purpose-cell--axis {
    border-right: none;
    border-bottom: 1px solid #222;
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-purpose-cell__axis-inner {
    margin-top: 8px;
  }

  .about-purpose-cell--philosophy,
  .about-purpose-cell--creed {
    border-right: none;
    border-bottom: 1px solid #222;
  }

  .about-purpose-cell--philosophy .about-purpose-cell__body,
  .about-purpose-cell--creed .about-purpose-cell__body,
  .about-purpose-cell--guideline .about-purpose-cell__body {
    position: static;
    transform: none;
    width: auto;
    min-height: 0;
    text-align: left;
    place-items: start;
    margin-top: 12px;
  }

  .about-history-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "axis"
      "story"
      "timeline";
    min-height: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-history-cell--axis,
  .about-history-cell--story,
  .about-history-cell--timeline {
    border-right: none;
    border-bottom: 1px solid #222;
  }

  .about-history-cell--story::after {
    display: none;
  }

  .about-history-cell__story,
  .about-history-timeline__event {
    width: auto;
    min-height: 0;
    max-width: none;
    text-align: left;
  }

  .about-history-timeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-history-cell--timeline::before {
    display: none;
  }

  .about-history-timeline__year {
    text-align: left;
    padding: 0 18px;
  }

  .about-history-timeline__event {
    justify-self: stretch;
    padding: 0 18px;
    margin-bottom: 12px;
  }

  .about-company-grid {
    width: 100%;
    grid-template-rows: repeat(6, minmax(72px, auto));
  }

  .about-company-logo-outside .about-company-logo__image {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .about-message__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-message__body {
    transform: none;
  }

  .about-message__main,
  .about-message__profile,
  .about-message__person {
    grid-column: auto;
  }

  .about-message__profile,
  .about-message__person {
    transform: none;
  }

  .about-message__profile {
    max-width: none;
    padding-bottom: 0;
  }

  .about-message__person {
    justify-self: start;
    width: min(180px, 48vw);
    max-width: min(180px, 48vw);
  }
}

@media (max-width: 420px) {
  .about-company-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .about-company-cell {
    border-right: none !important;
    border-bottom: 1px solid #222;
  }

  .about-company-cell:last-child {
    border-bottom: none;
  }

  .about-company-logo-outside {
    width: 100%;
    margin: 0 0 10px;
    padding-left: 12px;
  }

  .about-company-logo-outside .about-company-logo__image {
    width: 132px;
  }
}

.service-page__hero {
  padding: 30px 0 24px;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, #fff 0%, #f8fdff 100%);
}

.service-page__hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.service-page__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.service-page__lead {
  margin-top: 10px;
  color: #444;
  max-width: 60ch;
}

.service-featured {
  padding: 44px 0 52px;
}

.service-featured__list {
  display: grid;
  gap: 20px;
}

.service-featured-card {
  display: grid;
  grid-template-columns: minmax(260px, 44%) 1fr;
  gap: 16px;
  border: 1px solid var(--color-line);
  background: #fff;
  padding: 14px;
}

.service-featured-card__media {
  min-height: 200px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  background: #f3f6f7;
  overflow: hidden;
}

.service-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-featured-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, .9), transparent 45%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .03) 0, rgba(0, 0, 0, .03) 2px, transparent 2px, transparent 8px);
}

.service-featured-card__content {
  display: grid;
  align-content: start;
  gap: 10px;
}

.service-featured-card__title {
  margin: 0;
  font-size: 22px;
}

.service-featured-card__summary {
  margin: 0;
  color: #555;
}

.service-sub {
  padding: 10px 0 64px;
}

.service-sub__grid {
  display: grid;
  gap: 14px;
}

.service-sub-card {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--color-line);
  padding: 12px 14px;
  background: #fff;
}

.service-sub-card__title {
  margin: 0;
  font-size: 16px;
}

.service-sub-card__summary {
  margin: 6px 0 0;
  color: #666;
  font-size: 13px;
}

.service-sub-card__media {
  min-height: 80px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f2f6f7;
  overflow: hidden;
}

.service-sub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-sub-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 80px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .06)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .03) 0, rgba(0, 0, 0, .03) 2px, transparent 2px, transparent 8px);
}

.service-sub-card__link {
  font-size: 13px;
  text-decoration: underline;
  white-space: nowrap;
}

.service-detail-page__hero {
  padding: 30px 0 34px;
  background: linear-gradient(180deg, #fff 0%, #f6fdff 100%);
  border-bottom: 1px solid var(--color-line);
}

.service-detail-page__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.service-detail-page__lead {
  margin-top: 10px;
  max-width: 62ch;
  color: #444;
}

.service-detail-page__visual {
  margin-top: 14px;
  border: 1px solid var(--color-line);
  background: #f2f6f7;
  overflow: hidden;
}

.service-detail-page__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-page__placeholder {
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .9), transparent 44%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .03) 0, rgba(0, 0, 0, .03) 2px, transparent 2px, transparent 8px);
}

.service-detail-page__sections {
  padding: 40px 0 56px;
}

.service-detail-sections {
  display: grid;
  gap: 18px;
}

.service-detail-section {
  border: 1px solid var(--color-line);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: start;
  background: #fff;
}

.service-detail-section__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.service-detail-section__text {
  color: #333;
}

.service-detail-section__text>*:first-child {
  margin-top: 0;
}

.service-detail-section__text>*:last-child {
  margin-bottom: 0;
}

.service-detail-section__image {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f2f6f7;
  overflow: hidden;
}

.service-detail-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-page__cta {
  padding: 28px 0 36px;
  border-top: 1px solid var(--color-line);
  background: #fafafa;
}

.service-detail-page__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-detail-page__cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .service-featured-card {
    grid-template-columns: 1fr;
  }

  .service-detail-section {
    grid-template-columns: 1fr;
  }

  .service-sub-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {

  .service-page__hero-inner,
  .service-detail-page__cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .service-detail-page__cta-actions {
    justify-content: start;
  }
}

.recruit-subpage__hero {
  padding: 30px 0 24px;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, #fff 0%, #f7fdff 100%);
}

.recruit-subpage__hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.recruit-subpage__title {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 40px);
}

.recruit-subpage__lead {
  margin: 10px 0 0;
  color: #555;
  max-width: 60ch;
}

.recruit-subpage__content {
  padding: 40px 0 56px;
}

.recruit-subpage__content--accent {
  background: linear-gradient(180deg, #bafbff 0%, #eefdff 100%);
}

.recruit-subpage__panel,
.recruit-list-panel {
  border: 1px solid var(--color-line);
  background: #fff;
  padding: 16px;
}

.recruit-simple-list {
  display: grid;
  gap: 12px;
}

.recruit-simple-item {
  border: 1px solid var(--color-line);
  padding: 14px;
  background: #fff;
}

.recruit-simple-item__title {
  margin: 0;
  font-size: 18px;
}

.recruit-simple-item__body {
  margin: 8px 0 0;
  color: #333;
}

.recruit-simple-item__note {
  margin: 6px 0 0;
  color: #666;
  font-size: 13px;
}

.recruit-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.recruit-data-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  min-height: 120px;
  display: grid;
  align-content: start;
}

.recruit-data-card--large {
  grid-column: span 2;
  min-height: 160px;
}

.recruit-data-card--medium {
  min-height: 140px;
}

.recruit-data-card__label {
  margin: 0;
  color: #555;
  font-size: 13px;
}

.recruit-data-card__value {
  margin: 8px 0 0;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.recruit-data-card__value span {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

.recruit-data-card__value small {
  font-size: 14px;
  color: #444;
}

.recruit-data-card__note {
  margin: 8px 0 0;
  color: #666;
  font-size: 12px;
}

@media (max-width: 900px) {
  .recruit-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-data-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .recruit-subpage__hero-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 560px) {
  .recruit-data-grid {
    grid-template-columns: 1fr;
  }

  .recruit-data-card--large {
    grid-column: span 1;
  }
}

/* PDF direction refresh (phase 1: CSS-first, data-light safe) */
/*
 * ===================== 編集ガイド（このブロックの見方）=====================
 * セクションの起点:
 * - .site-header 付近: ヘッダー
 * - .home-hero 付近: トップヒーロー（ロゴ/縦書きコピー/SNS）
 * - .home-message: 黒背景メッセージ帯
 * - .home-services: サービスカード群
 * - .home-news: ニュース一覧
 * - .home-recruit: 水色の採用CTA
 *
 * レイヤー（z軸）基準:
 * - z-index は「position が static 以外」の要素で有効
 * - 数字が大きいほど手前
 * - 現在の主な優先順は下記:
 *    50 .site-header (固定ヘッダー)
 *    15 .home-hero__social (SNS)
 *    10 .home-hero__logo-overlay / .home-hero__logo-note
 *     5 .home-hero__logo
 *     1 html::before (全画面ノイズ)
 *     auto その他
 */

:root {
  --color-ink: #0b0b0b;
  --color-bg: #fdfdfc;
  --color-accent: #91f5ff;
  --color-accent-2: #ccfbff;
  --color-line: #d9d9d6;
  --container: 1180px;
  --header-edge-inset: 24px;
  --header-shell-width: 1420px;
  --hero-frame-width: 1420px;
  --hero-edge-inset: 28px;
}

/*body {*/
/*  background:*/
/*    radial-gradient(circle at 85% 5%, rgba(145, 245, 255, 0.18), transparent 30%),*/
/*    radial-gradient(circle at 12% 22%, rgba(0, 0, 0, 0.012), transparent 40%),*/
/*    #fdfdfc;*/
/*  letter-spacing: 0.01em;*/
/*}*/

html::before {
  /* 全画面ノイズ（白/黒/青の背景に共通で乗せる） */
  /* 999 はかなり強い値。下げるとヘッダーやヒーロー要素より背面に回る。 */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("../img/noise.png");
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: 0.38;
  mix-blend-mode: normal;
}

img,
svg,
video,
canvas,
iframe,
.home-service-card__media,
.service-featured-card__media,
.service-showcase__visual,
.service-visual,
.service-detail-figure,
.service-broadcast-visual,
.service-extra-card__visual,
.service-extra-highlight__visual,
.service-support-grid__thumb,
.service-support-flow__support-visual {
  position: relative;
  z-index: 2;
}

.site-header {
  /*
   * sticky ヘッダー。
   * - background の rgba の最後の値(0.3)を下げるとより透ける / 上げると白くなる
   * - backdrop-filter を強くすると背面ノイズ/背景がぼける
   * - z-index は現状 50（ノイズ:1 より前面）
   */
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  padding: 14px 0;
}

.site-header__inner {
  display: grid;
  width: min(100% - 48px, var(--header-shell-width));
  margin-inline: auto;
  /* 左右を同じ幅のカラムにして、中央ナビを構造的に中央固定にする */
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 24px 40px;
}

.site-header__brand {
  justify-self: start;
  min-width: max-content;
  padding-top: 8px;
  margin-left: 0;
}

.site-header__brand a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: clamp(20px, 1.45vw, 24px);
}

.site-header__nav {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  width: 100%;
  max-width: 980px;
  padding-top: 8px;
}

.site-header__nav ul,
.site-footer__nav ul {
  gap: 52px;
}

.site-header__nav ul {
  justify-content: center;
  align-items: center;
}

.site-header__nav a,
.site-footer__nav a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible,
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header__meta {
  position: relative;
  justify-self: end;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0;
  min-width: 62px;
  margin-top: -8px;
  margin-right: 0;
}

.site-header__clock {
  position: relative;
  width: 62px;
  height: 62px;
}

.site-header__clock-face {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
}

.site-header__clock-face::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #111;
}

.site-header__clock-hand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  transform-origin: 50% 100%;
  border-radius: 999px;
}

.site-header__clock-hand--hour {
  height: 17px;
  background: #111;
  transform: translate(-50%, -100%) rotate(28deg);
}

.site-header__clock-hand--minute {
  height: 24px;
  background: #111;
  transform: translate(-50%, -100%) rotate(202deg);
}

.site-header__clock-hand--second {
  height: 27px;
  width: 1px;
  background: #8fefff;
  box-shadow: 0 0 0 1px rgba(143, 239, 255, 0.12);
  transform: translate(-50%, -100%) rotate(110deg);
}

.site-header__social {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: min-content;
  column-gap: 10px;
  row-gap: 0;
  align-items: start;
  justify-items: start;
  white-space: nowrap;
}

.site-header__social-label,
.site-header__social-link {
  writing-mode: sideways-rl;
  text-orientation: mixed;
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}

.site-header__social-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 10px;
  font-weight: 700;
  color: #5a5a5a;
}

.site-header__social-link {
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  color: #666;
}

.site-header__social-link--instagram {
  grid-column: 2;
  grid-row: 2;
  margin-left: 2px;
}

.site-header__social-link--facebook {
  grid-column: 1;
  grid-row: 2;
  margin-left: 5px;
}

.site-header__social-link--empty {
  opacity: 0.68;
}

.site-header__social a:hover,
.site-header__social a:focus-visible {
  color: #000;
}

html.is-about-hero-active::before {
  opacity: 0;
}

html.is-about-hero-active .site-header__brand a,
html.is-about-hero-active .site-header__nav a,
html.is-about-hero-active .site-header__social-label,
html.is-about-hero-active .site-header__social-link {
  color: #fff;
}

html.is-about-hero-active .site-header__clock-face::before,
html.is-about-hero-active .site-header__clock-hand--hour,
html.is-about-hero-active .site-header__clock-hand--minute {
  background: #fff;
}

html.is-about-hero-active .site-header__clock-hand--second {
  background: #8fefff;
  box-shadow: 0 0 0 1px rgba(143, 239, 255, 0.12);
}

.home-hero,
.about-hero,
.service-page__hero,
.service-detail-page__hero,
.recruit-subpage__hero,
.recruit-jobs-page__hero,
.interview-page__hero,
.recruit-top-hero,
.news-index__hero,
.news-single__hero {
  margin-top: calc(-1 * var(--header-overlay-offset));
  padding-top: var(--header-overlay-offset);
}

.site-footer {
  background: #090909;
  color: #f2f2f2;
  padding: 48px 0 26px;
  margin-top: 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  padding-top: 20px;
}

.site-footer__brand {
  display: grid;
  justify-items: center;
  align-content: end;
  min-height: 100%;
  position: relative;
  left: -80px;
  top: -135px;
}

.site-footer__logo,
.site-footer__logo .custom-logo-link {
  display: inline-flex;
}

.site-footer__logo img {
  width: auto;
  max-width: 128px;
  max-height: 44px;
  display: block;
}

@media (max-width: 960px) {
  .site-footer__brand {
    left: 0;
    top: 0;
  }
}

.site-footer__brand-text {
  display: inline-block;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 11px;
  white-space: nowrap;
}

.site-footer__info {
  display: grid;
  gap: 14px;
  justify-self: start;
  width: min(100%, 320px);
}

.site-footer__heading {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.site-footer__heading--lined {
  display: inline-block;
  padding-bottom: 1px;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.site-footer__heading--lined::after {
  content: none;
}

.site-footer__info-body,
.site-footer__sns-links {
  display: grid;
  gap: 6px;
}

.site-footer__info-line {
  margin: 0;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #fff;
}

.site-footer__links {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: start;
  gap: 42px;
}

.site-footer__menu,
.site-footer__sns {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer__nav ul {
  display: grid;
  justify-content: start;
  gap: 5px;
}

.site-footer__nav li {
  margin: 0;
  line-height: 1.12;
}

.site-footer__nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 400;
  line-height: 1.12;
  display: inline-block;
}

.site-footer__sns {
  justify-self: start;
  padding-top: 31px;
}

.site-footer__sns-link {
  font-size: 10px;
  line-height: 1.18;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
}

.site-footer__sns-link--empty {
  opacity: 0.7;
}

.site-footer__sns-link:hover,
.site-footer__sns-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.c-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.c-pill-button {
  min-height: 34px;
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
  border-width: 1px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.c-pill-button:hover,
.c-pill-button:focus-visible {
  background: var(--color-accent);
  border-color: rgba(0, 0, 0, 0.45);
}

.c-pill-button--light:hover,
.c-pill-button--light:focus-visible {
  background: rgba(145, 245, 255, 0.16);
  color: #fff;
  border-color: rgba(145, 245, 255, 0.7);
}

.front-page .site-header {
  border-bottom: none;
}

.home-hero {
  /*
   * ヒーロー全体。absolute 配置の基準は主に .home-hero__inner 側で作る。
   * overflow を visible にすると、はみ出したロゴ/装飾が見えるようになる。
   */
  position: relative;
  border-bottom: none;
  overflow: clip;
  background: linear-gradient(180deg, #fff 0%, #fff 74%, #fbfbfb 100%);
}

.home-hero::before {
  content: none;
}

.home-hero__inner {
  /*
   * ヒーロー内 absolute 要素の座標原点。
   * - min-height: ヒーローの高さ感（上げると余白が広がる）
   * - padding-top/bottom: ロゴ全体の上下位置
   */
  width: min(100% - 12px, 1420px);
  min-height: min(66vw, 790px);
  padding: 54px 0 26px;
  position: relative;
}

.home-hero__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-hero__logo {
  /*
   * レイヤー2: SCN / 閃きコピー / Satellite をまとめたロックアップ。
   * SCN 本体と重ね文字を同じ座標系に閉じ込めて、崩れを防ぐ。
   */
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
  z-index: 5;
  transform: translateY(-40px);
}

.home-hero__logo-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.home-hero__logo-glyph {
  fill: #050505;
  font-family: "Arial Black", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 500px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.72;
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: skewX(-14deg) scaleX(0.95);
  text-transform: uppercase;
}

.home-hero__logo-glyph--n {
  transform: skewX(-14deg) scaleX(0.92);
}

.home-hero__logo-overlay {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.home-hero__logo-overlay--base {
  fill: #111;
}

.home-hero__logo-overlay--clip {
  fill: #fff;
}

.home-hero__logo-note text {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.01em;
  transform: skewX(-8deg);
  text-transform: none;
}

.home-hero__logo-note--base text {
  fill: #111;
}

.home-hero__logo-note--clip text {
  fill: #fff;
}

.home-hero__logo::after {
  content: none;
}

.home-hero__media {
  position: absolute;
  right: 6%;
  top: 10%;
  z-index: 6;
  width: clamp(86px, 12vw, 160px);
  aspect-ratio: 3 / 5;
  border: 1px solid rgba(0, 0, 0, 0.14);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero__copy,
.home-hero__subcopy {
  display: none;
}

.home-hero__social {
  /*
   * レイヤー5: ヒーロー最前面。ロゴ/コピーより前。
   * - z-index を 2-3 に下げるとロゴやコピーに隠れる場合がある。
   * SNSブロック全体の位置（右上のまとまりを動かす）
   * - right: 値を小さくすると「右」へ、値を大きくすると「左」へ移動
   * - top: 値を小さくすると「上」へ、値を大きくすると「下」へ移動
   */
  position: absolute;
  right: calc(var(--hero-edge-inset) - max(6px, calc((100vw - var(--hero-frame-width)) / 2)));
  top: clamp(16px, 1.4vw, 22px);
  transform: none;
  z-index: 15;
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: min-content;
  column-gap: 10px;
  row-gap: 0;
  align-items: start;
  justify-items: start;
}

.home-hero__social-label {
  /*
   * Share on: の向き・文字サイズ
   * - font-size: 文字サイズ
   * - margin-top: 上下位置の微調整（+で下、-で上）
   * - 必要なら margin-left を追加して左右位置も調整可能（+で右、-で左）
   */
  writing-mode: sideways-rl;
  text-orientation: mixed;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #5a5a5a;
  margin-top: 0;
  margin-left: 0;
  justify-self: start;
  align-self: start;
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

.home-hero__social-link {
  /*
   * Instagram / Facebook 共通の文字スタイル
   * - font-size: 文字サイズ
   * - writing-mode: 文字の向き（sideways-rl / vertical-rl など）
   * - letter-spacing: 文字間
   */
  text-decoration: none;
  writing-mode: sideways-rl;
  text-orientation: mixed;
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #666;
  justify-self: start;
  align-self: start;
}

.home-hero__social-link--instagram {
  /*
   * SNSグリッド内の Instagram 配置
   * - grid-row / grid-column: 段・列の位置を変える
   * - margin-top: 上下微調整（+で下、-で上）
   * - margin-left: 左右微調整（+で右、-で左）
   */
  margin-top: 0;
  margin-left: +2px;
  grid-column: 2;
  grid-row: 2;
}

.home-hero__social-link--facebook {
  /*
   * SNSグリッド内の Facebook 配置（x/y微調整はここ）
   * - margin-left: 左右微調整（+で右、-で左）
   * - margin-top: 上下微調整（+で下、-で上）
   * - grid-row / grid-column: 段・列を変えたい時に使う
   */
  margin-top: 0;
  margin-left: +5px;
  grid-column: 1;
  grid-row: 2;
}

.home-hero__social a:hover,
.home-hero__social a:focus-visible {
  color: #000;
}

.home-message {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.05), transparent 35%),
    radial-gradient(circle at 80% 78%, rgba(145, 245, 255, 0.08), transparent 45%),
    #0c0c0c;
  padding: 124px 0 132px;
}

.home-message::before {
  content: none;
}

.home-message__inner {
  position: relative;
  width: min(100% - 32px, 760px);
  text-align: center;
}

.home-message .c-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d6d6d6;
}

.home-message__title {
  margin: 0;
  display: inline-grid;
  gap: 0;
  justify-items: center;
  font-size: 13px;
  line-height: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}

.home-message__title-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  line-height: 1;
  color: #111;
  z-index: 0;
}

.home-message__title-line::before {
  content: "";
  position: absolute;
  inset: 10px 0;
  outline: 1px solid #fff;
  background: #fff;
  z-index: -1;
  pointer-events: none;
}

.home-message__body {
  font-size: 13px;
  line-height: 2.15;
  color: #d9d9d9;
  margin-bottom: 26px;
}

.home-message__cta {
  display: inline-grid;
  gap: 8px;
  justify-items: center;
  min-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 13px;
  line-height: 1;
}

.home-message__cta-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 3px;
  line-height: 1;
  font-size: 13px;
  color: #111;
  z-index: 0;
}

.home-message__cta-line::before {
  content: "";
  position: absolute;
  inset: 10px 0;
  outline: 1px solid #9bf6ff;
  background: #9bf6ff;
  z-index: -1;
  pointer-events: none;
}

.home-message__cta:hover,
.home-message__cta:focus-visible {
  background: transparent;
  border-color: transparent;
}

.home-message__cta:hover .home-message__cta-line,
.home-message__cta:focus-visible .home-message__cta-line {
  color: #111;
}

.home-message__cta:hover .home-message__cta-line::before,
.home-message__cta:focus-visible .home-message__cta-line::before {
  outline-color: #b9fbff;
  background: #b9fbff;
}

.home-services {
  padding: 108px 0 104px;
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 0, 0, .012), transparent 46%),
    rgba(255, 255, 255, 0.94);
}

.home-services .c-eyebrow,
.home-news .c-eyebrow {
  text-align: center;
}

.home-services .home-section-title,
.home-news .home-section-title {
  text-align: center;
  margin-bottom: 70px;
}

.home-news .home-section-title {
  margin-bottom: 40px;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.08em;
}

.home-services__grid {
  gap: 18px;
}

.home-service-card {
  position: relative;
  z-index: 2;
  min-height: 240px;
  border: 1px solid #d7d7d4;
  padding: 14px 14px 12px;
  gap: 10px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 250, 0.96));
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.home-service-card__mark {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
}

.home-service-card__mark--image {
  width: clamp(72px, 9vw, 88px);
  height: clamp(72px, 9vw, 88px);
}

.home-service-card__title {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.home-service-card__summary {
  font-size: 11px;
  line-height: 1.8;
  max-width: 30ch;
}

.home-service-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
  text-decoration: none;
  margin-top: 10px;
  color: #fff;
  padding: 0 0px;
  z-index: 0;
}

.home-service-card__link::before {
  content: "";
  position: absolute;
  inset: 3px 0;
  outline: 1px solid #111;
  background: #111;
  z-index: -1;
  pointer-events: none;
}

.home-service-card__link:hover,
.home-service-card__link:focus-visible {
  text-decoration: none;
  color: #111;
}

.home-service-card__link:hover::before,
.home-service-card__link:focus-visible::before {
  background: #b9fbff;
  outline-color: #b9fbff;
}

.home-news {
  padding: 88px 0 98px;
  background: transparent;
}

.home-news__list {
  max-width: 842px;
  margin: 0 auto;
  border-top: 1px solid #111;
}

.home-news__item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border-bottom: 1px solid #111;
  position: relative;
}

.home-news__item::after {
  content: "";
  position: absolute;
  top: -14px;
  bottom: -14px;
  left: 116px;
  width: 1px;
  background: #111;
}

.home-news__date {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 12px 12px 0;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #111;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.home-news__link {
  display: block;
  padding: 14px 0 14px 30px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #111;
  font-weight: 500;
  text-decoration: none;
}

.home-news__link:hover,
.home-news__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-news__footer {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.home-news__index-link {
  margin-top: 0;
}

.home-news__index-link::after {
  content: "→";
  margin-left: 6px;
}

.home-recruit {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.home-recruit::before {
  content: none;
}

.home-recruit__media {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 32px), var(--container));
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
}

.home-recruit__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.home-recruit__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.02);
}

.home-recruit__background-image--fallback {
  object-position: 68% 50%;
}

.home-recruit__inner {
  position: relative;
  z-index: 1;
  min-height: auto;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px);
}

.home-recruit__title {
  margin: 0;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: calc(100% - 48px);
  text-align: center;
  font-size: clamp(28px, 5.1vw, 72px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  color: #90f3fb;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.home-recruit__cta {
  display: inline-flex;
  align-self: flex-end;
  margin-top: auto;
  color: #111;
  text-decoration: none;
  position: relative;
  z-index: 0;
}

.home-recruit__cta-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 4px 14px;
  line-height: 1;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #111;
  text-align: center;
  text-transform: none;
  transition: color 0.2s ease;
}

.home-recruit__cta-line::before {
  content: "";
  position: absolute;
  inset: 0;
  outline: 1px solid #fff;
  background: #fff;
  z-index: -1;
  pointer-events: none;
}

.home-recruit__cta:hover,
.home-recruit__cta:focus-visible {
  color: #111;
}

.home-recruit__cta:hover .home-recruit__cta-line,
.home-recruit__cta:focus-visible .home-recruit__cta-line {
  color: #111;
}

.home-recruit__cta:hover .home-recruit__cta-line::before,
.home-recruit__cta:focus-visible .home-recruit__cta-line::before {
  background: #b9fbff;
  outline-color: #b9fbff;
}

.recruit-top .site-header {
  background: rgba(181, 250, 255, 0.82);
}

.recruit-top-hero {
  position: relative;
  padding: 34px 0 20px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, .48), transparent 32%),
    linear-gradient(135deg, #a4f7ff 0%, #95f1fb 50%, #87ecf7 100%);
}

.recruit-top-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 61%;
  width: 1px;
  background: rgba(0, 0, 0, 0.14);
}

.recruit-top-hero__inner {
  grid-template-columns: 1fr auto;
  gap: 22px;
}

.recruit-top-hero__title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recruit-top-hero__copy {
  margin-top: 12px;
  max-width: 14em;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  height: clamp(180px, 22vw, 300px);
}

.recruit-top-hero__entry {
  min-width: 102px;
  background: rgba(255, 255, 255, 0.8);
}

.recruit-top-message {
  position: relative;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .05), transparent 32%),
    radial-gradient(circle at 86% 80%, rgba(145, 245, 255, .08), transparent 40%),
    #1a1a1a;
  padding: 54px 0 60px;
}

.recruit-top-message__body {
  max-width: 680px;
}

.recruit-top-message__body>p {
  line-height: 1.95;
}

.recruit-top-people,
.recruit-top-info,
.recruit-top-qa {
  padding: 72px 0;
}

.recruit-top-section-head {
  margin-bottom: 24px;
}

.recruit-top-section-head .c-eyebrow {
  margin-bottom: 6px;
}

.recruit-top-people {
  background: #fff;
}

.recruit-top-people__grid {
  gap: 20px 18px;
}

.recruit-person-card {
  border: none;
  background: transparent;
}

.recruit-person-card__thumb {
  border: 1px solid #d9d9d6;
  background: #eef7f9;
}

.recruit-person-card__meta {
  padding: 8px 2px 0;
}

.recruit-person-card__name {
  font-size: 12px;
  font-weight: 600;
}

.recruit-person-card__sub {
  font-size: 10px;
  letter-spacing: 0.06em;
}

.recruit-top-info {
  position: relative;
  background:
    linear-gradient(180deg, #b7fbff 0%, #a7f6ff 100%);
}

.recruit-top-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.55;
  pointer-events: none;
}

.recruit-top-info .l-container {
  position: relative;
}

.recruit-info-card {
  border-radius: 8px;
  min-height: 72px;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.recruit-info-card a {
  justify-content: center;
  text-align: center;
}

.recruit-info-card h3 {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.recruit-top-qa {
  background: #222;
  color: #fff;
}

.recruit-top-qa .c-eyebrow {
  color: #c4c4c4;
}

.recruit-top-qa .home-section-title {
  color: #fff;
}

.recruit-qa-item {
  border: none;
  background: #fff;
  border-radius: 999px;
}

.recruit-qa-item summary {
  min-height: 40px;
  padding: 0 14px;
  font-size: 12px;
}

.recruit-qa-item summary::after {
  content: "+";
  margin-left: auto;
  color: #666;
  font-weight: 700;
}

.recruit-qa-item[open] summary::after {
  content: "−";
}

.recruit-qa-item__answer {
  font-size: 13px;
}

.recruit-top-entry {
  padding: 24px 0 30px;
}

.recruit-top-entry__title {
  font-size: 18px;
  letter-spacing: 0.18em;
}

.service-page__hero,
.service-detail-page__hero,
.recruit-subpage__hero,
.recruit-jobs-page__hero,
.interview-page__hero {
  background:
    linear-gradient(180deg, #fff 0%, #f7fdff 100%);
}

.service-page__title,
.service-detail-page__title,
.recruit-subpage__title,
.recruit-jobs-page__title {
  letter-spacing: 0.04em;
}

.service-featured {
  padding: 52px 0 60px;
}

.service-featured__list {
  gap: 26px;
}

.service-featured-card {
  grid-template-columns: minmax(320px, 46%) 1fr;
  gap: 22px;
  border: none;
  border-top: 1px solid #dadad7;
  border-bottom: 1px solid #dadad7;
  padding: 26px 0;
  background: transparent;
}

.service-featured-card:nth-child(even) {
  grid-template-columns: 1fr minmax(320px, 46%);
}

.service-featured-card:nth-child(even) .service-featured-card__media {
  order: 2;
}

.service-featured-card:nth-child(even) .service-featured-card__content {
  order: 1;
}

.service-featured-card__media {
  min-height: 220px;
  border: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0)),
    var(--service-accent, #eef6f7);
  position: relative;
}

.service-featured-card__media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.service-featured-card__content {
  gap: 12px;
  align-content: center;
}

.service-featured-card__title {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.03em;
}

.service-featured-card__summary {
  font-size: 13px;
  line-height: 1.9;
  max-width: 44ch;
}

.service-featured-card .c-pill-button {
  width: fit-content;
}

.service-sub {
  padding-top: 0;
}

.service-sub-card {
  border-color: #dadad7;
  min-height: 132px;
  grid-template-columns: 1fr 260px auto;
  padding: 16px 18px;
}

.service-sub-card__title {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.service-sub-card__summary {
  font-size: 12px;
  line-height: 1.8;
}

.service-sub-card__media {
  min-height: 92px;
}

.service-sub-card__link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-sub-card__link::after {
  content: "→";
  margin-left: 6px;
}

.service-sub-card__link:hover,
.service-sub-card__link:focus-visible {
  text-decoration: underline;
}

.news-index__hero {
  padding: 68px 0 10px;
  border-bottom: none;
  background: transparent;
}

.news-index__hero-inner,
.news-single__hero-inner,
.news-index__list-section .l-container--narrow,
.news-single__content-wrap .l-container--narrow {
  width: min(100% - 32px, 980px);
}

.news-index__hero .c-eyebrow {
  display: none;
}

.news-index__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.06em;
}

.news-index__intro {
  display: none;
}

.news-index__intro>*:first-child {
  margin-top: 0;
}

.news-index__intro>*:last-child {
  margin-bottom: 0;
}

.news-index__list-section {
  padding: 18px 0 76px;
}

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

.news-list__item {
  border-bottom: 1px solid #d7d7d4;
}

.news-list__article {
  display: block;
  padding: 18px 0 14px;
}

.news-list__date {
  display: block;
  margin-top: 10px;
  color: #767676;
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.news-list__title {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.news-list__title a {
  text-decoration: none;
}

.news-list__title a:hover,
.news-list__title a:focus-visible {
  text-decoration: underline;
}

.news-list__excerpt {
  display: none;
}

.news-list__empty {
  padding: 22px 0;
  color: #666;
}

.news-index .navigation.pagination {
  margin-top: 22px;
}

.news-index .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.news-index .nav-links .page-numbers {
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7d7d4;
  text-decoration: none;
  font-size: 12px;
  background: #fff;
  padding: 0 10px;
}

.news-index .nav-links .page-numbers.current {
  background: #0f0f0f;
  border-color: #0f0f0f;
  color: #fff;
}

.news-single__hero {
  padding: 68px 0 12px;
  border-bottom: none;
  background: transparent;
}

.news-single__date {
  display: block;
  margin: 14px 0 0;
  padding-top: 10px;
  border-top: 1px solid #d7d7d4;
  color: #767676;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.news-single__title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.news-single__content-wrap {
  padding: 18px 0 64px;
}

.news-single__thumb {
  max-width: 760px;
  margin: 26px 0 24px;
  border: none;
  background: transparent;
}

.news-single__thumb img {
  display: block;
  width: 100%;
}

.news-single__content {
  max-width: 760px;
  font-size: 14px;
  line-height: 2.05;
}

.news-single__content>*:first-child {
  margin-top: 0;
}

.news-single__content h2,
.news-single__content h3,
.news-single__content h4 {
  margin-top: 2.2em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}

.news-single__content p {
  margin: 0 0 1.15em;
}

.news-single__content ul,
.news-single__content ol {
  padding-left: 1.4em;
}

.news-single__content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-single__nav {
  max-width: 760px;
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid #d7d7d4;
  display: grid;
  gap: 18px;
  justify-items: start;
}

.news-single__back {
  margin-top: 2px;
  width: fit-content;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #fff;
}

.news-single__back::after {
  content: "→";
  margin-left: 6px;
}

.news-single__back:hover,
.news-single__back:focus-visible {
  color: #111;
  text-decoration: none;
}

.news-single__adjacent {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.news-single__adjacent a {
  text-decoration: none;
  border: none;
  background: transparent;
  min-height: auto;
  padding: 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.news-single__adjacent a:hover,
.news-single__adjacent a:focus-visible {
  text-decoration: underline;
  border-color: transparent;
}

.news-contact-rail {
  padding: 0;
  border-top: none;
}

@media (max-width: 960px) {
  .site-header__inner {
    width: min(100% - 32px, var(--header-shell-width));
    gap: 18px 24px;
  }

  .site-header__brand {
    padding-top: 6px;
  }

  .site-header__nav {
    max-width: none;
    padding-top: 6px;
  }

  .site-header__nav ul {
    justify-content: center;
    gap: 14px 22px;
    flex-wrap: wrap;
  }

  .site-header__meta {
    display: grid;
    min-width: 56px;
    margin-top: -4px;
  }

  .site-header__clock {
    width: 56px;
    height: 56px;
  }

  .site-header__social {
    top: calc(100% + 6px);
  }

  .service-featured-card,
  .service-featured-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-featured-card:nth-child(even) .service-featured-card__media,
  .service-featured-card:nth-child(even) .service-featured-card__content {
    order: initial;
  }

  .home-recruit__inner {
    min-height: 320px;
    aspect-ratio: 16 / 9;
    padding: 16px;
  }

  .home-recruit__media {
    width: min(calc(100% - 32px), var(--container));
  }

  .home-recruit__title {
    max-width: calc(100% - 32px);
    font-size: clamp(24px, 8.1vw, 42px);
    letter-spacing: 0.02em;
  }

  .home-recruit__cta-line {
    padding: 4px 12px;
    font-size: 14px;
  }

  .recruit-top-hero::before {
    display: none;
  }

  .recruit-top-hero__copy {
    writing-mode: horizontal-tb;
    height: auto;
    letter-spacing: 0.06em;
    max-width: 20ch;
  }

  .home-news__item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .home-news__item::after {
    left: 96px;
  }

  .home-news__link {
    padding-left: 22px;
  }

  .news-index__hero-inner,
  .news-single__hero-inner,
  .news-index__list-section .l-container--narrow,
  .news-single__content-wrap .l-container--narrow {
    width: min(100% - 32px, 840px);
  }

  .news-list__article {
    padding: 16px 0 13px;
  }

  .news-list__title {
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    width: min(100% - 24px, var(--header-shell-width));
    gap: 14px 18px;
  }

  .site-header__brand {
    padding-top: 4px;
  }

  .site-header__brand a {
    font-size: 18px;
  }

  .site-header__nav {
    padding-top: 4px;
  }

  .site-header__nav ul {
    gap: 10px 14px;
  }

  .site-header__nav a {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .site-header__meta {
    min-width: 50px;
    margin-top: 0;
  }

  .site-header__clock {
    width: 50px;
    height: 50px;
  }

  .site-header__social {
    top: calc(100% + 4px);
    transform: translateX(-50%) scale(0.92);
    transform-origin: top center;
  }

  .home-hero__inner {
    min-height: 74vw;
    padding-top: 32px;
    width: min(100% - 16px, 100%);
  }

  .home-hero__logo {
    width: min(100%, 900px);
    transform: none;
  }

  .home-hero__logo-overlay {
    font-size: 46px;
  }

  .home-hero__logo-note text {
    font-size: 20px;
  }

  .home-hero__media {
    position: static;
    width: min(38vw, 144px);
    margin: 10px 0 0 auto;
    transform: none;
  }

  .home-hero__social {
    /* mobile は static 化。z-index:5 の優先制御は無効。 */
    position: static;
    transform: none;
    margin-top: 6px;
    justify-content: flex-start;
  }


  .home-hero__copy {
    position: static;
    writing-mode: horizontal-tb;
    margin-top: 8px;
    letter-spacing: 0.08em;
  }

  .home-message {
    padding: 64px 0 70px;
  }

  .home-services,
  .home-news,
  .recruit-top-people,
  .recruit-top-info,
  .recruit-top-qa {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .news-index__hero,
  .news-single__hero {
    padding-top: 44px;
    padding-bottom: 8px;
  }

  .news-index__list-section,
  .news-single__content-wrap {
    padding-top: 16px;
    padding-bottom: 56px;
  }

  .news-list__article {
    padding: 14px 0 12px;
  }

  .news-list__title {
    font-size: 16px;
  }

  .news-single__content {
    font-size: 13px;
    line-height: 1.9;
  }

  .news-single__nav {
    display: grid;
    gap: 10px;
  }

  .news-single__adjacent {
    display: flex;
    gap: 12px;
  }

  .news-single__adjacent a {
    width: auto;
  }

  .service-sub-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__nav {
    justify-self: end;
  }

  .site-header__nav ul {
    justify-content: flex-end;
    gap: 8px 12px;
  }

  .site-header__meta {
    min-width: 42px;
  }

  .site-header__clock {
    width: 42px;
    height: 42px;
  }

  .site-header__social {
    display: none;
  }
}

/* --- Design Pass: Service / Recruit subpages --- */
.service-page--designed .service-page__hero,
.service-detail-page--designed .service-detail-hero,
.recruit-top--designed .recruit-top-hero,
.recruit-subpage--designed .recruit-subpage__hero,
.recruit-jobs-page--designed .recruit-jobs-page__hero,
.recruit-interview-single--designed .interview-page__hero {
  border-bottom: 1px solid var(--color-line);
}

.service-page--designed .service-page__hero {
  padding: 42px 0 58px;
}

.service-page__hero-inner {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 44px;
  gap: 28px;
  align-items: start;
}

.service-page__hero-mark {
  width: 48px;
  height: 48px;
  border: 4px solid #0f0f0f;
  margin-top: 38px;
}

.service-page__hero-kicker,
.service-page__hero-page-name,
.service-page__section-label,
.service-page__contact-label,
.service-detail-contact-rail__label,
.recruit-subpage__section-kicker,
.recruit-message-hero__label,
.recruit-top-message__kicker,
.interview-page__eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a6a6a;
}

.service-page__hero-page-name {
  margin-top: 14px;
  text-transform: none;
  letter-spacing: 0.08em;
}

.service-page__title,
.service-detail-page__title,
.recruit-jobs-page--designed .recruit-jobs-page__title,
.recruit-subpage--designed .recruit-subpage__title {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.service-page__lead,
.service-detail-hero__lead,
.recruit-message-hero__body,
.recruit-subpage__lead,
.recruit-jobs-page--designed .recruit-jobs-page__lead {
  margin-top: 18px;
  max-width: 720px;
  color: #3d3d3d;
  font-size: 14px;
  line-height: 2;
}

.service-page__lead p {
  margin: 0;
}

.service-page__hero-meta,
.service-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.service-page__hero-meta li,
.service-detail-hero__meta li {
  padding: 7px 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.service-page__hero-side {
  writing-mode: vertical-rl;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: #888;
}

.service-page__featured {
  padding: 38px 0 26px;
}

.service-page__featured-list {
  display: grid;
  gap: 26px;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--color-line);
}

.service-showcase:last-child {
  border-bottom: 1px solid var(--color-line);
}

.service-showcase__copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.service-showcase__index {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #8a8a8a;
}

.service-showcase__title,
.service-page__section-title,
.service-feature-row__title,
.service-process-section__title,
.service-panel-stack__title,
.service-offer-card__title,
.service-channel-card__title,
.service-case-study__title,
.recruit-subpage__section-title,
.recruit-message-belief-card__title {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.18;
}

.service-showcase__summary,
.service-support-card__summary,
.service-feature-row__text,
.service-panel-stack__body,
.service-offer-card__text,
.service-channel-card__text,
.service-case-study__text,
.recruit-message-belief-card__body,
.recruit-welfare-benefit-card__body,
.recruit-welfare-event-card__body p,
.recruit-welfare-environment-card p,
.recruit-message-gallery__text p {
  margin: 0;
  color: #454545;
  font-size: 13px;
  line-height: 1.95;
}

.service-showcase__visual {
  min-height: 320px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--service-accent, #d6f5fb), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.service-showcase__image-frame,
.service-showcase__image-frame img,
.service-detail-hero__image,
.service-detail-hero__image img {
  width: 100%;
  height: 100%;
}

.service-showcase__image-frame,
.service-detail-hero__image {
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-showcase__image-frame img,
.service-detail-hero__image img {
  display: block;
  object-fit: cover;
}

.service-visual,
.service-detail-figure {
  height: 100%;
  min-height: 268px;
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
  display: grid;
  align-content: space-between;
  gap: 16px;
}

.service-visual__brand,
.service-detail-figure__label {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-visual__screen,
.service-detail-figure__screen,
.service-feature-row__art,
.service-gallery-card__visual,
.service-offer-card__icon,
.service-channel-card__icon,
.recruit-message-gallery__placeholder,
.recruit-welfare-event-card__placeholder,
.recruit-welfare-environment-card__placeholder,
.service-detail-extra__placeholder {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.4)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0.03) 2px, transparent 2px, transparent 10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-visual__screen,
.service-detail-figure__screen {
  display: block;
  min-height: 140px;
}

.service-visual__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #303030;
}

.service-visual--force,
.service-detail-figure--force {
  background-color: #cceaff;
}

.service-visual--content-sales,
.service-detail-figure--content-sales {
  background-color: #ffd6cf;
}

.service-visual--advertising,
.service-detail-figure--advertising {
  background-color: #d6f1ea;
}

.service-visual--channel-operations,
.service-detail-figure--channel-operations {
  background-color: #f7f7f2;
}

.service-detail-figure--multi-screen {
  background-color: #eceef2;
}

.service-detail-figure--mojic {
  background-color: #d7f3ea;
}

.service-page__support {
  padding: 56px 0 50px;
}

.service-page__section-head,
.recruit-subpage__section-head,
.interview-page__section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.service-support__stack {
  display: grid;
  gap: 18px;
}

.service-support-card,
.service-support-row {
  position: relative;
  padding: 28px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.94);
}

.service-support-row {
  min-height: 154px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 26px;
  gap: 24px;
  align-items: center;
}

.service-support-row__body {
  display: grid;
  gap: 12px;
}

.service-support-row__visual {
  min-height: 98px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.4)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0.03) 2px, transparent 2px, transparent 10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-support-card__title,
.service-catalog-card__title,
.recruit-welfare-benefit-card__title,
.recruit-welfare-event-card__body h3,
.recruit-welfare-environment-card h3,
.recruit-message-gallery__text h3,
.recruit-data-card__label,
.interview-block__q,
.service-detail-extra__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.service-support-card__plus,
.service-offer-card__plus,
.service-channel-card__plus {
  font-size: 26px;
  line-height: 1;
  color: #303030;
}

.service-support-card__link {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}

.service-support-card--aqua,
.service-support-row--aqua {
  background: linear-gradient(135deg, rgba(144, 245, 255, 0.22), rgba(255, 255, 255, 0.96));
}

.service-support-card--sand,
.service-support-row--sand {
  background: linear-gradient(135deg, rgba(250, 229, 186, 0.26), rgba(255, 255, 255, 0.96));
}

.service-support-card--ink,
.service-support-row--ink {
  background: linear-gradient(135deg, rgba(15, 18, 24, 0.12), rgba(255, 255, 255, 0.96));
}

.service-page__contact-rail,
.service-detail-contact-rail {
  padding: 18px 0 24px;
  border-top: 1px solid var(--color-line);
}

.service-page__contact-rail-inner,
.service-detail-contact-rail__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-page__contact-address,
.service-detail-contact-rail__text {
  margin: 4px 0 0;
  color: #585858;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.service-detail-page--designed .service-detail-hero {
  padding: 42px 0 48px;
}

.service-detail-hero__figure-kicker {
  margin: 0;
}

.service-detail-page--advertising .service-detail-hero__inner,
.service-detail-page--channel-operations .service-detail-hero__inner {
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 36px;
}

.service-detail-page--advertising .service-detail-hero {
  padding: 44px 0 62px;
}

.service-detail-page--advertising .service-detail-hero__visual {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.service-detail-page--advertising .service-detail-hero__figure-kicker--advertising {
  color: #1e1e1e;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.service-detail-page--advertising .service-detail-hero__copy,
.service-detail-page--channel-operations .service-detail-hero__copy {
  padding-top: 0;
}

.service-detail-page--advertising .service-detail-figure,
.service-detail-page--channel-operations .service-detail-figure {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-detail-page--advertising .service-detail-figure__label,
.service-detail-page--channel-operations .service-detail-figure__label {
  display: none;
}

.service-detail-page--advertising .service-detail-figure__screen,
.service-detail-page--channel-operations .service-detail-figure__screen {
  width: 58px;
  min-height: 58px;
  margin-top: 0;
  border: 5px solid #111;
  border-radius: 0;
  background: transparent;
}

.service-detail-hero__inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.service-detail-hero__copy {
  padding-top: 8px;
}

.service-feature-rows,
.service-gallery-grid,
.service-process-section,
.service-catalog-section,
.service-panel-stack,
.service-offer-section,
.service-channel-section,
.service-case-study,
.service-detail-extra,
.recruit-top--designed .recruit-top-people,
.recruit-top--designed .recruit-top-info,
.recruit-top--designed .recruit-top-qa,
.recruit-message-beliefs,
.recruit-message-gallery,
.recruit-welfare-benefits,
.recruit-welfare-events,
.recruit-welfare-environment,
.recruit-data-mosaic,
.recruit-jobs-page--designed .recruit-jobs-page__content,
.recruit-interview-single--designed .interview-page__qa,
.recruit-interview-single--designed .interview-page__career,
.recruit-interview-single--designed .interview-page__others {
  padding: 50px 0;
}

.service-feature-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--color-line);
}

.service-feature-row:last-child {
  border-bottom: 1px solid var(--color-line);
}

.service-feature-row.is-reversed {
  direction: rtl;
}

.service-feature-row.is-reversed > * {
  direction: ltr;
}

.service-feature-row__copy {
  display: grid;
  gap: 12px;
}

.service-feature-row__label {
  margin: 0;
  color: #7d7d7d;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-feature-row__art {
  min-height: 208px;
}

.service-feature-row__art--aqua {
  background-color: rgba(144, 245, 255, 0.42);
}

.service-feature-row__art--sky {
  background-color: rgba(144, 205, 255, 0.42);
}

.service-feature-row__art--ink {
  background-color: rgba(24, 27, 36, 0.16);
}

.service-feature-row__art--sand {
  background-color: rgba(250, 229, 186, 0.44);
}

.service-feature-row__art--mint {
  background-color: rgba(182, 232, 210, 0.44);
}

.service-feature-row__art--rose {
  background-color: rgba(255, 212, 216, 0.44);
}

.service-gallery-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-gallery-card,
.service-panel-stack__item,
.recruit-message-belief-card,
.recruit-data-card,
.service-catalog-card,
.recruit-welfare-benefit-card,
.recruit-message-gallery__item,
.recruit-welfare-environment-card,
.recruit-job-card,
.service-detail-extra__item {
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.96);
}

.service-gallery-card {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.service-gallery-card__visual {
  min-height: 180px;
}

.service-gallery-card__title,
.service-case-study__label,
.recruit-data-card__note,
.recruit-message-hero__sign,
.recruit-message-gallery__text p,
.recruit-welfare-event-card__body p,
.recruit-welfare-environment-card p,
.recruit-job-card__sub,
.interview-bars__caption {
  font-size: 12px;
  line-height: 1.8;
}

.service-gallery-card__title {
  margin: 0;
  font-size: 18px;
}

.service-gallery-card__caption {
  margin: 0;
  color: #666;
  font-size: 12px;
}

.service-process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-process-flow__item,
.service-step-columns__item,
.service-process-step-grid__item {
  min-height: 120px;
  padding: 20px 18px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  align-content: start;
  gap: 10px;
}

.service-process-flow__name,
.service-step-columns__label,
.service-process-step-grid__index {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #7a7a7a;
}

.service-process-flow__caption,
.service-step-columns__title,
.service-process-step-grid__label {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.service-movie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-movie-grid__item {
  min-height: 150px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  color: #666;
  font-size: 13px;
}

.service-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-catalog-card {
  padding: 22px;
  display: grid;
  gap: 16px;
  min-height: 210px;
}

.service-catalog-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.08);
}

.service-catalog-card--cloud .service-catalog-card__icon {
  border-radius: 999px;
}

.service-catalog-card__meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #5f5f5f;
}

.service-panel-stack {
  padding-top: 10px;
}

.service-panel-stack .l-container {
  display: grid;
  gap: 16px;
}

.service-panel-stack__item {
  padding: 28px;
  min-height: 170px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.service-process-section--steps .service-process-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-offer-list,
.service-channel-list,
.recruit-welfare-events__list {
  display: grid;
  gap: 18px;
}

.service-offer-card,
.service-channel-card,
.recruit-welfare-event-card {
  padding: 26px;
  border: 1px solid var(--color-line);
}

.service-offer-card,
.service-channel-card {
  display: block;
}

.service-offer-card__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 24px;
  align-items: center;
}

.service-channel-card__summary {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 120px;
  gap: 24px;
  align-items: center;
}

.recruit-welfare-event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 24px;
  align-items: center;
}

.service-offer-card__aside,
.service-channel-card__aside {
  align-self: stretch;
}

.service-offer-card__icon,
.service-channel-card__icon {
  min-height: 130px;
}

.service-offer-card__body,
.service-case-study__copy,
.recruit-welfare-event-card__body {
  display: grid;
  gap: 12px;
}

.service-offer-card--aqua,
.service-channel-card--aqua {
  background: rgba(255, 255, 255, 0.98);
}

.service-offer-card--ink,
.service-channel-card--ink {
  background: rgba(255, 255, 255, 0.98);
}

.service-offer-card--sand,
.service-channel-card--sand {
  background: rgba(255, 255, 255, 0.98);
}

.service-offer-card--mint,
.service-channel-card--mint {
  background: rgba(255, 255, 255, 0.98);
}

.service-offer-card--rose,
.service-channel-card--rose {
  background: rgba(255, 255, 255, 0.98);
}

.service-channel-card {
  position: relative;
}

.service-channel-card__label {
  margin: 0;
  writing-mode: vertical-rl;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: #6f6f6f;
  justify-self: start;
}

.service-case-study__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 26px;
  align-items: center;
}

.service-case-study__image,
.service-case-study__image img {
  width: 100%;
}

.service-case-study__image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-case-study__image .service-detail-extra__placeholder {
  min-height: 320px;
}

.service-case-study__image img {
  display: block;
  object-fit: cover;
}

.service-case-study__block {
  width: min(100%, 930px);
  margin-inline: auto;
}

.service-case-study__block-image {
  display: block;
  width: 100%;
  height: auto;
}

.service-detail-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.service-detail-section-head__intro {
  margin: 0;
  max-width: 720px;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.9;
}

.service-offer-card--accordion,
.service-channel-card--accordion,
.service-case-study__shell--accordion {
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.service-offer-card--accordion.is-open,
.service-channel-card--accordion.is-open,
.service-case-study__shell--accordion.is-open {
  border-color: rgba(17, 17, 17, 0.78);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.service-detail-page--advertising .service-detail-hero__lead,
.service-detail-page--channel-operations .service-detail-hero__lead {
  max-width: 660px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.95;
}

.service-detail-page--advertising .service-detail-hero__meta,
.service-detail-page--channel-operations .service-detail-hero__meta {
  gap: 18px;
  margin-top: 24px;
}

.service-detail-page--advertising .service-detail-hero__meta li,
.service-detail-page--channel-operations .service-detail-hero__meta li {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #656565;
}

.service-detail-page--advertising .service-process-section--advertising {
  padding: 72px 0 58px;
  border-bottom: 1px solid #222;
}

.service-detail-page--advertising .service-process-section--advertising .service-process-section__title {
  text-align: center;
}

.service-detail-page--advertising .service-process-section--advertising .service-process-step-grid {
  width: min(100%, 820px);
  margin: 38px auto 0;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: center;
}

.service-detail-page--advertising .service-process-step-grid__item--advertising {
  min-height: 318px;
  padding: 24px 22px 26px;
  border: 1px solid #222;
  background: rgba(255, 255, 255, 0.96);
  justify-items: start;
  text-align: left;
  align-content: start;
  gap: 0;
}

.service-detail-page--advertising .service-process-step-grid__item--advertising .service-process-step-grid__index {
  color: #111;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.service-detail-page--advertising .service-process-step-grid__item--advertising .service-process-step-grid__label {
  margin-top: 34px;
  color: #171717;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.service-detail-page--advertising .service-process-step-grid__item--advertising .service-process-step-grid__body {
  max-width: none;
  margin-top: 22px;
  color: #232323;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.95;
  text-align: left;
}

.service-detail-page--advertising .service-offer-section--advertising {
  padding: 62px 0 50px;
}

.service-detail-page--advertising .service-detail-section-head--advertising {
  justify-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.service-detail-page--advertising .service-detail-section-head--advertising .service-detail-section-head__intro {
  max-width: 460px;
  margin-inline: auto;
}

.service-detail-page--advertising .service-offer-list--accordion {
  width: min(100%, 1080px);
  margin-inline: auto;
  gap: 24px;
}

.service-detail-page--advertising .service-offer-card--advertising {
  border-color: #222;
  background: #fff;
  box-shadow: none;
}

.service-detail-page--advertising .service-offer-card--advertising .service-offer-card__summary {
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 36px;
  min-height: 176px;
  align-items: center;
}

.service-detail-page--advertising .service-offer-card--advertising .service-broadcast-panel__summary-copy {
  max-width: 520px;
}

.service-detail-page--advertising .service-offer-card--advertising .service-broadcast-panel__lead {
  max-width: 420px;
}

.service-detail-page--advertising .service-offer-card__aside--advertising {
  display: grid;
  align-self: center;
}

.service-detail-page--advertising .service-offer-card__icon--advertising {
  min-height: 0;
  width: 100%;
  display: grid;
  place-items: center;
}

.service-detail-page--advertising .service-offer-card__icon--media {
  width: 112px;
  height: 112px;
  padding: 0;
  border: 0;
  background: transparent;
  box-sizing: border-box;
}

.service-offer-card__icon-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-detail-page--advertising .service-offer-card--advertising .service-detail-accordion-icon {
  justify-self: center;
  width: 112px;
}

.service-detail-page--advertising .service-offer-card--advertising.is-open {
  border-color: #111;
  box-shadow: none;
  background: #fff;
}

.service-detail-page--advertising .service-detail-accordion-panel--advertising {
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 26px;
}

.service-detail-page--advertising .service-detail-accordion-panel__copy {
  justify-items: center;
  text-align: center;
}

.service-detail-page--advertising .service-detail-accordion-panel__text {
  max-width: 520px;
}

.service-detail-page--advertising .service-detail-accordion-panel__aside {
  justify-items: center;
}

.service-detail-page--advertising .service-detail-accordion-panel__gallery-grid {
  width: min(100%, 720px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-detail-page--advertising .service-detail-accordion-panel__gallery-card {
  min-height: 168px;
  padding: 16px 14px 12px;
}

.service-detail-page--advertising .service-detail-accordion-panel__gallery-thumb {
  min-height: 96px;
}

.service-detail-page--advertising .service-detail-accordion-panel__gallery-thumb img {
  max-width: 140px;
  max-height: 96px;
}

.service-detail-page--advertising .service-detail-accordion-panel__gallery-label {
  color: #2d2d2d;
  font-size: 11px;
  font-weight: 600;
}

.service-detail-page--channel-operations .service-channel-overview {
  padding: 56px 0 62px;
  border-bottom: 1px solid #222;
}

.service-detail-page--channel-operations .service-channel-overview__inner {
  width: min(100%, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 52px;
  align-items: center;
}

.service-detail-page--channel-operations .service-channel-overview__copy {
  display: grid;
  gap: 12px;
}

.service-detail-page--channel-operations .service-channel-overview__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #171717;
}

.service-detail-page--channel-operations .service-channel-overview__text {
  max-width: 620px;
  margin: 0;
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}

.service-detail-page--channel-operations .service-channel-overview__mark {
  width: min(100%, 120px);
  justify-self: center;
  border: 0;
  background: transparent;
  box-sizing: border-box;
}

.service-detail-page--channel-operations .service-channel-overview__mark-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}

.service-detail-page--channel-operations .service-channel-section {
  padding: 72px 0 62px;
}

.service-detail-page--channel-operations .service-channel-section .service-detail-section-head {
  margin-bottom: 34px;
}

.service-detail-page--channel-operations .service-channel-list {
  width: min(100%, 1080px);
  margin-inline: auto;
  gap: 24px;
}

.service-detail-page--channel-operations .service-channel-card--pdf {
  border-color: #222;
  background: transparent;
  box-shadow: none;
}

.service-detail-page--channel-operations .service-channel-card--pdf .service-channel-card__summary {
  width: min(100%, 900px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) 166px;
  gap: 42px;
  min-height: 182px;
  align-items: center;
}

.service-detail-page--channel-operations .service-channel-card--pdf .service-broadcast-panel__summary-copy {
  max-width: 560px;
  justify-items: start;
  text-align: left;
  margin-inline: 0;
}

.service-detail-page--channel-operations .service-channel-card--pdf .service-broadcast-panel__lead {
  max-width: 520px;
  margin-inline: 0;
  color: #242424;
  font-weight: 500;
}

.service-detail-page--channel-operations .service-channel-card__aside {
  display: grid;
  align-self: center;
  justify-self: end;
}

.service-detail-page--channel-operations .service-detail-accordion-media--channel {
  justify-items: center;
}

.service-detail-page--channel-operations .service-detail-accordion-media--channel img {
  max-width: 150px;
  max-height: 118px;
}

.service-detail-page--channel-operations .service-channel-card--pdf.is-open {
  border-color: #111;
  background: transparent;
  box-shadow: none;
}

.service-detail-page--channel-operations .service-detail-accordion-panel--channel {
  width: min(100%, 940px);
  margin-inline: auto;
  gap: 32px;
  padding-top: 34px;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__copy {
  width: min(100%, 760px);
  max-width: none;
  margin-inline: auto;
  gap: 18px;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__meta {
  width: min(100%, 760px);
  margin-inline: auto;
  gap: 14px;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__list {
  gap: 10px;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__figure-stack {
  width: min(100%, 880px);
  margin-inline: auto;
  gap: 28px;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__figure-card {
  gap: 12px;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__text,
.service-detail-page--channel-operations .service-detail-accordion-panel__note {
  color: #1f1f1f;
  font-weight: 500;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__meta-label {
  color: #1d1d1d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__figure-title {
  color: #222;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-detail-page--channel-operations .service-detail-accordion-panel__figure--diagram {
  width: min(100%, 880px);
}

.service-detail-page--channel-operations .service-case-study {
  padding: 60px 0 64px;
}

.service-detail-page--channel-operations .service-case-study__shell--channel {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 34px 36px 24px;
  border-color: #222;
  background: transparent;
}

.service-detail-page--channel-operations .service-case-study__summary {
  gap: 22px;
}

.service-detail-page--channel-operations .service-case-study__head {
  display: grid;
  gap: 12px;
}

.service-detail-page--channel-operations .service-case-study__label {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.03em;
}

.service-detail-page--channel-operations .service-case-study__org {
  color: #4a4a4a;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.service-detail-page--channel-operations .service-case-study__photo {
  border-color: rgba(0, 0, 0, 0.12);
}

.service-detail-page--channel-operations .service-case-study__copy--channel {
  width: min(100%, 820px);
  margin-inline: auto;
  gap: 12px;
  padding: 22px 26px;
  border: 1px solid #222;
  background: transparent;
}

.service-detail-page--channel-operations .service-case-study__title {
  font-size: 24px;
}

.service-detail-page--channel-operations .service-case-study__text {
  color: #232323;
  font-weight: 500;
}

.service-detail-page--channel-operations .service-case-study__copy--channel .service-accordion-panel {
  margin-top: 0;
}

.service-detail-page--channel-operations .service-case-study__shell--accordion.is-open .service-case-study__copy--channel .service-accordion-panel {
  margin-top: 18px;
}

.service-detail-page--channel-operations .service-case-study__details {
  padding-top: 22px;
  border-top: 0;
}

.service-detail-page--channel-operations .service-case-study__board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
}

.service-detail-page--channel-operations .service-case-study__board-section {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 20px 22px 22px;
  border: 1px solid #222;
  background: transparent;
}

.service-detail-page--channel-operations .service-case-study__board-section--ops {
  grid-column: 1;
}

.service-detail-page--channel-operations .service-case-study__board-section--programs {
  grid-column: 2;
}

.service-detail-page--channel-operations .service-case-study__board-section--systems {
  grid-column: 1;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
}

.service-detail-page--channel-operations .service-case-study__board-title {
  margin: 0;
  color: #171717;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.service-detail-page--channel-operations .service-case-study__board-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2em;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.service-detail-page--channel-operations .service-case-study__board-list--systems {
  grid-template-columns: 1fr;
  gap: 8px;
  list-style: none;
  padding-left: 0;
}

.service-detail-page--channel-operations .service-case-study__board-list--systems li {
  position: relative;
  padding-left: 14px;
}

.service-detail-page--channel-operations .service-case-study__board-list--systems li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #111;
}

.service-detail-page--channel-operations .service-case-study__board-link {
  justify-self: center;
  margin-top: 2px;
}

.service-detail-page--channel-operations .service-case-study__board-link.home-service-card__link {
  margin-top: 2px;
}

.service-detail-page--channel-operations .service-case-study__toggle-row {
  margin-top: 4px;
}

.service-detail-page--channel-operations .service-content-flow--channel {
  padding: 44px 0 30px;
}

.service-detail-page--channel-operations .service-content-flow--channel .l-container {
  width: min(100%, 1040px);
  gap: 26px;
}

.service-detail-page--channel-operations .service-content-flow__note--channel {
  max-width: 720px;
  margin-top: 8px;
  color: #202020;
  font-weight: 500;
  text-align: center;
}

.service-detail-page--channel-operations .service-content-flow__steps--channel {
  gap: 10px;
}

.service-detail-page--channel-operations .service-content-flow__steps--channel .service-content-flow__step-text {
  width: 58px;
  min-height: 190px;
  font-size: 15px;
  font-weight: 700;
}

.service-detail-page--channel-operations .service-content-flow__steps--channel .service-content-flow__arrow {
  font-size: 20px;
}

.service-process-step-grid__body,
.service-step-columns__body {
  margin: 0;
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1.9;
}

.service-accordion-panel--detail {
  margin-top: 0;
}

.service-detail-accordion-panel {
  display: grid;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-detail-accordion-panel--advertising {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: start;
}

.service-detail-accordion-panel--channel {
  grid-template-columns: 1fr;
}

.service-detail-accordion-panel__copy,
.service-detail-accordion-panel__meta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.service-detail-accordion-panel__text,
.service-detail-accordion-panel__note {
  margin: 0;
  color: #464646;
  font-size: 13px;
  line-height: 1.95;
}

.service-detail-accordion-panel__meta-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #6a6a6a;
}

.service-detail-accordion-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-detail-accordion-panel__chips li {
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.service-detail-accordion-panel__note {
  grid-column: 1 / -1;
  padding-top: 2px;
}

.service-detail-accordion-panel__aside {
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: stretch;
}

.service-detail-accordion-panel__gallery {
  width: min(100%, 410px);
}

.service-detail-accordion-panel__gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.service-detail-accordion-panel__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 420px);
  justify-self: center;
}

.service-detail-accordion-panel__gallery-card {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 12px 10px 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}

.service-detail-accordion-panel__gallery-thumb {
  display: grid;
  min-height: 54px;
  place-items: center;
}

.service-detail-accordion-panel__gallery-thumb img {
  display: block;
  width: auto;
  max-width: 88px;
  max-height: 54px;
}

.service-detail-accordion-panel__gallery-label {
  margin: 0;
  color: #424242;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.service-detail-accordion-panel__actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.service-detail-accordion-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 10px 20px;
  border: 1px solid rgba(17, 17, 17, 0.58);
  border-radius: 999px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #111;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  isolation: isolate;
}

.service-detail-accordion-panel__button:hover,
.service-detail-accordion-panel__button:focus-visible {
  background: #fff;
}

.service-detail-accordion-panel__list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2em;
  color: #454545;
  font-size: 13px;
  line-height: 1.85;
}

.service-detail-accordion-panel__figure {
  display: block;
}

.service-detail-accordion-panel__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.service-detail-accordion-panel__figure--diagram {
  width: min(100%, 980px);
  justify-self: center;
}

.service-detail-accordion-panel__figure-stack {
  display: grid;
  gap: 18px;
}

.service-detail-accordion-panel__figure-card {
  display: grid;
  gap: 10px;
}

.service-detail-accordion-panel__figure-title {
  margin: 0;
  color: #676767;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.service-accordion-toggle-row--detail {
  margin-top: 12px;
}

.service-accordion-toggle--detail {
  min-width: 36px;
  min-height: 36px;
  font-size: 30px;
}

.service-detail-accordion-icon {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 98px;
  aspect-ratio: 1;
  justify-self: end;
  border: 1.5px solid #111;
  background: #fff;
}

.service-detail-accordion-icon::before,
.service-detail-accordion-icon::after {
  content: "";
  position: absolute;
}

.service-detail-accordion-icon::before {
  inset: 16px;
  border: 1.5px solid #111;
}

.service-detail-accordion-icon::after {
  width: 16px;
  height: 16px;
  right: 14px;
  top: 14px;
  border: 1.5px solid #111;
  border-radius: 999px;
}

.service-detail-accordion-icon--communication-design::after,
.service-detail-accordion-icon--media-planning::after,
.service-detail-accordion-icon--creative-production::after,
.service-detail-accordion-icon--event-promotion::after,
.service-detail-accordion-icon--area-report::after,
.service-detail-accordion-icon--program-editing::after,
.service-detail-accordion-icon--scheduling::after,
.service-detail-accordion-icon--maintenance::after,
.service-detail-accordion-icon--live-support::after,
.service-detail-accordion-icon--vod-support::after {
  border-radius: 16px;
}

.service-detail-accordion-icon--communication-design::after {
  width: 22px;
  height: 22px;
  right: 12px;
  top: 12px;
  border-radius: 0;
}

.service-detail-accordion-icon--media-planning::after {
  width: 28px;
  height: 20px;
  right: 11px;
  top: 15px;
  border-radius: 0;
}

.service-detail-accordion-icon--creative-production::after {
  width: 18px;
  height: 18px;
  right: 14px;
  top: 12px;
  border-radius: 999px;
}

.service-detail-accordion-icon--event-promotion::after {
  width: 24px;
  height: 20px;
  right: 12px;
  top: 15px;
  border-radius: 0;
}

.service-detail-accordion-icon--area-report::after {
  width: 18px;
  height: 18px;
  right: 14px;
  top: 14px;
  border-radius: 999px;
}

.service-detail-accordion-icon--program-editing::after {
  width: 28px;
  height: 18px;
  right: 10px;
  top: 18px;
}

.service-detail-accordion-icon--scheduling::after {
  width: 30px;
  height: 30px;
  right: 10px;
  top: 10px;
  border-radius: 999px;
}

.service-detail-accordion-icon--maintenance::after {
  width: 22px;
  height: 22px;
  right: 8px;
  top: 50px;
  border-radius: 999px;
}

.service-detail-accordion-icon--live-support {
  border: 0;
  background: transparent;
}

.service-detail-accordion-icon--live-support::before {
  inset: 20px 8px;
  border: 0;
  border-radius: 16px;
  background: #111;
}

.service-detail-accordion-icon--live-support::after {
  content: "LIVE";
  inset: auto 18px 34px 18px;
  width: auto;
  height: auto;
  border: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-detail-accordion-icon--vod-support::before {
  inset: 18px 12px;
}

.service-detail-accordion-icon--vod-support::after {
  width: 0;
  height: 0;
  top: 36px;
  right: 34px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #111;
  border-right: 0;
  border-radius: 0;
}

.service-detail-accordion-media {
  display: grid;
  width: 100%;
  justify-items: end;
}

.service-detail-accordion-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.service-detail-accordion-media--advertising img {
  max-width: 110px;
  max-height: 90px;
}

.service-detail-accordion-media--channel img {
  max-width: 120px;
  max-height: 108px;
}

.service-offer-card__summary,
.service-channel-card__summary {
  align-items: start;
}

.service-offer-card__summary {
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 32px;
}

.service-channel-card__summary {
  grid-template-columns: 44px minmax(0, 1fr) 110px;
  gap: 24px;
}

.service-offer-card__title,
.service-channel-card__title,
.service-case-study__org {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.22;
}

.service-offer-card__text,
.service-channel-card__text,
.service-case-study__text {
  max-width: 640px;
  font-size: 13px;
  line-height: 1.95;
}

.service-channel-card__label {
  padding-top: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #747474;
}

.service-case-study__shell {
  padding: 30px 34px 18px;
}

.service-case-study__summary {
  display: grid;
  gap: 22px;
}

.service-case-study__org {
  margin: 0;
}

.service-case-study__photo {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-case-study__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.service-case-study__details {
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-case-study__info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-case-study__info-card {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.98);
}

.service-case-study__info-card:last-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.service-case-study__info-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.service-case-study__info-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2em;
  color: #454545;
  font-size: 13px;
  line-height: 1.8;
}

.service-case-study__info-card:last-child .service-case-study__info-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  list-style: none;
  padding-left: 0;
}

.service-case-study__info-card:last-child .service-case-study__info-list li {
  position: relative;
  padding-left: 14px;
}

.service-case-study__info-card:last-child .service-case-study__info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #111;
}

.service-case-study__info-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.service-step-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-detail-extra__list {
  display: grid;
  gap: 18px;
}

.service-detail-extra__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  padding: 22px;
}

.service-detail-extra__copy {
  display: grid;
  gap: 12px;
}

.service-detail-extra__media,
.service-detail-extra__media img {
  width: 100%;
  height: 100%;
}

.service-detail-extra__media img {
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.service-detail-contact-rail__actions {
  display: flex;
  gap: 12px;
}

.recruit-subnav {
  padding: 26px 0 10px;
}

.recruit-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.recruit-subnav__brand {
  min-width: 110px;
}

.recruit-subnav__eyebrow {
  font-size: 16px;
  letter-spacing: 0.12em;
}

.recruit-subnav__links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.recruit-subnav__link {
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #797979;
}

.recruit-subnav__link.is-current {
  color: var(--color-accent);
}

.recruit-subnav__link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.recruit-subnav__entry {
  min-width: 120px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.24);
  color: #171717;
}

.recruit-top--designed .recruit-top-hero {
  background: linear-gradient(90deg, #baf4ff 0%, #9fefff 58%, #baf7ff 100%);
  padding: 14px 0 0;
}

.recruit-top--designed .recruit-top-hero__inner {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr) 138px;
  gap: 34px;
  align-items: stretch;
  min-height: 560px;
}

.recruit-top--designed .recruit-top-hero__copy-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 46px 0 54px;
}

.recruit-top--designed .recruit-top-hero__label {
  display: none;
}

.recruit-top--designed .recruit-top-hero__title {
  display: none;
}

.recruit-top--designed .recruit-top-hero__copy {
  margin: 0;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: 0.12em;
  line-height: 1.18;
}

.recruit-top-hero__nav {
  display: grid;
  align-content: center;
  gap: 16px;
  padding-top: 72px;
}

.recruit-top-hero__nav-link {
  color: #4c4c4c;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.recruit-top-hero__stage {
  position: relative;
  min-height: 520px;
}

.recruit-top-hero__stage::before,
.recruit-top-hero__stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}

.recruit-top-hero__stage::before {
  left: 22%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.recruit-top-hero__stage::after {
  left: 38%;
  width: 26%;
  top: 38px;
  bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.recruit-top--designed .recruit-top-message {
  background: linear-gradient(135deg, #1b1b1b, #0f1218);
  color: #f6f6f6;
  padding: 48px 0;
}

.recruit-top-message__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.recruit-top-message__body {
  display: grid;
  gap: 28px;
  max-width: 680px;
}

.recruit-top-message__text {
  color: rgba(255, 255, 255, 0.82);
}

.recruit-top-message__text p {
  margin: 0;
  font-size: 12px;
  line-height: 2.5;
}

.recruit-top-message__phrase {
  display: inline-block;
  margin: 0;
  padding: 4px 8px;
  background: #fff;
  color: #111;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.recruit-top-message__entry,
.recruit-top-section-head .c-pill-button,
.recruit-top-people__footer .c-pill-button,
.interview-page__others .c-pill-button {
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: #171717;
  border: 1px solid rgba(0, 0, 0, 0.22);
}

.recruit-top--designed .recruit-top-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.recruit-top-section-head__title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.recruit-top-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 6px 4px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.recruit-top-section-label--aqua {
  background: #8feeff;
}

.recruit-top-section-label--white {
  background: rgba(255, 255, 255, 0.92);
}

.recruit-top--designed .recruit-top-people__grid,
.recruit-top-people__grid--compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 34px;
}

.recruit-top-people__grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recruit-person-card {
  border: 0;
  background: transparent;
  overflow: hidden;
}

.recruit-person-card a {
  display: grid;
  gap: 10px;
  text-decoration: none;
}

.recruit-person-card__thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(114, 233, 245, 0.92);
  background: #d5fbff;
}

.recruit-person-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-person-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.9)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.07), transparent 70%);
}

.recruit-person-card__placeholder--aqua {
  background-color: rgba(144, 245, 255, 0.36);
}

.recruit-person-card__placeholder--mint {
  background-color: rgba(182, 232, 210, 0.38);
}

.recruit-person-card__placeholder--blue {
  background-color: rgba(170, 211, 255, 0.38);
}

.recruit-person-card__placeholder--ink {
  background-color: rgba(24, 27, 36, 0.16);
}

.recruit-person-card__placeholder--sand {
  background-color: rgba(250, 229, 186, 0.34);
}

.recruit-person-card__placeholder--rose {
  background-color: rgba(255, 212, 216, 0.38);
}

.recruit-person-card__meta {
  padding: 0;
}

.recruit-person-card__name {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.recruit-person-card__sub {
  margin: 4px 0 0;
  color: #6d6d6d;
  font-size: 11px;
  line-height: 1.6;
}

.recruit-top-people__footer {
  margin-top: 24px;
}

.recruit-top--designed .recruit-top-info {
  background: linear-gradient(180deg, rgba(144, 245, 255, 0.58), rgba(144, 245, 255, 0.44));
}

.recruit-top-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recruit-info-card {
  min-height: 118px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.recruit-info-card a {
  display: grid;
  place-items: center;
  min-height: 118px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.recruit-top--designed .recruit-top-qa {
  background: linear-gradient(135deg, #202022, #0f1116);
  color: #f6f6f6;
}

.recruit-qa-list {
  display: grid;
  gap: 12px;
}

.recruit-qa-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #181818;
  overflow: hidden;
}

.recruit-qa-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-size: 13px;
}

.recruit-qa-item summary::-webkit-details-marker {
  display: none;
}

.recruit-qa-item__q {
  font-weight: 700;
  color: var(--color-accent);
}

.recruit-qa-item__answer {
  padding: 0 18px 16px 44px;
}

.recruit-qa-item__answer p {
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.9;
}

.recruit-subpage--designed .recruit-subpage__hero--compact,
.recruit-jobs-page--designed .recruit-jobs-page__hero--compact {
  padding: 8px 0 24px;
}

.recruit-message-hero,
.recruit-welfare-benefits,
.recruit-data-mosaic,
.recruit-jobs-page--designed .recruit-jobs-page__content {
  padding-top: 28px;
}

.recruit-message-hero__inner {
  display: grid;
  gap: 28px;
}

.recruit-message-hero__profile {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.recruit-message-hero__photo,
.recruit-message-hero__photo img,
.recruit-message-gallery__media,
.recruit-message-gallery__media img,
.recruit-welfare-event-card__media,
.recruit-welfare-event-card__media img,
.recruit-welfare-environment-card__media,
.recruit-welfare-environment-card__media img,
.interview-page__hero-media,
.interview-page__hero-media img,
.interview-page__schedule-photo,
.interview-page__schedule-photo img {
  width: 100%;
}

.recruit-message-hero__photo,
.recruit-message-gallery__media,
.recruit-welfare-event-card__media,
.recruit-welfare-environment-card__media,
.interview-page__hero-media,
.interview-page__schedule-photo {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.interview-page__schedule-photo .service-detail-extra__placeholder {
  min-height: 260px;
}

.recruit-message-hero__photo img,
.recruit-message-gallery__media img,
.recruit-welfare-event-card__media img,
.recruit-welfare-environment-card__media img,
.interview-page__hero-media img,
.interview-page__schedule-photo img {
  display: block;
  object-fit: cover;
}

.recruit-message-hero__copy {
  display: grid;
  gap: 14px;
  align-content: end;
}

.recruit-message-hero__sign {
  margin: 0;
  justify-self: end;
  text-align: right;
}

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

.recruit-message-belief-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.recruit-message-gallery__grid,
.recruit-welfare-environment__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.recruit-message-gallery__item,
.recruit-welfare-environment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.recruit-message-gallery__media,
.recruit-welfare-environment-card__media {
  min-height: 180px;
}

.recruit-message-gallery__placeholder,
.recruit-welfare-environment-card__placeholder {
  min-height: 180px;
}

.recruit-message-gallery__text,
.recruit-welfare-environment-card {
  display: grid;
  gap: 10px;
}

.recruit-welfare-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.recruit-welfare-benefit-card {
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
}

.recruit-welfare-event-card__media,
.recruit-welfare-environment-card__media {
  min-height: 160px;
}

.recruit-data-mosaic {
  background: linear-gradient(180deg, rgba(144, 245, 255, 0.52), rgba(144, 245, 255, 0.3));
}

.recruit-data-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.recruit-data-card {
  min-height: 168px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.recruit-data-card--large,
.recruit-data-card--wide,
.recruit-data-card--medium {
  grid-column: span 2;
}

.recruit-data-card--large {
  min-height: 220px;
}

.recruit-data-card__value {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.recruit-data-card__value span {
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1;
  color: #39dbe8;
  font-weight: 700;
}

.recruit-data-card__value small {
  font-size: 18px;
  color: #2d2d2d;
}

.recruit-data-card__graph {
  align-self: end;
}

.recruit-data-card__media {
  width: 100%;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.recruit-data-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.recruit-data-card__graph--trend {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 78px;
}

.recruit-data-card__graph--trend span,
.recruit-data-card__graph--stack span {
  display: block;
  width: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #1e232f, #5b6677);
}

.recruit-data-card__graph--trend span:nth-child(1) {
  height: 34px;
}

.recruit-data-card__graph--trend span:nth-child(2) {
  height: 58px;
}

.recruit-data-card__graph--trend span:nth-child(3) {
  height: 78px;
  background: linear-gradient(180deg, #39dbe8, #1da7b5);
}

.recruit-data-card__graph--ratio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 64px;
}

.recruit-data-card__graph--ratio span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.recruit-data-card__graph--stack {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 70px;
}

.recruit-data-card__graph--stack span:nth-child(1) { height: 26px; }
.recruit-data-card__graph--stack span:nth-child(2) { height: 40px; }
.recruit-data-card__graph--stack span:nth-child(3) { height: 58px; }
.recruit-data-card__graph--stack span:nth-child(4) { height: 66px; background: linear-gradient(180deg, #39dbe8, #1da7b5); }

.recruit-data-card__graph--pie {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: conic-gradient(#39dbe8 0 22.2%, #1f232d 22.2% 100%);
}

.recruit-data-card__rank-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  color: #3d3d3d;
  font-size: 13px;
  line-height: 1.7;
}

.recruit-data-card__note {
  margin: 0;
  color: #666;
}

.recruit-jobs-page--designed .recruit-jobs-list {
  display: grid;
  gap: 36px;
}

.recruit-job-card {
  padding-top: 18px;
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.recruit-job-card__header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}

.recruit-job-card__title {
  margin: 0;
  font-size: 28px;
}

.recruit-job-card__sub {
  margin: 8px 0 0;
  color: #666;
}

.recruit-job-table {
  display: grid;
}

.recruit-job-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
}

.recruit-job-row__label {
  color: #757575;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.recruit-job-row__value {
  color: #2d2d2d;
  font-size: 13px;
  line-height: 2;
}

.recruit-interview-single--designed .interview-page__hero {
  background: linear-gradient(180deg, rgba(144, 245, 255, 0.74), rgba(144, 245, 255, 0.56));
  padding: 20px 0 34px;
  position: relative;
  z-index: 0;
}

.recruit-interview-single--designed .interview-page > section {
  position: relative;
  z-index: 2;
}

.recruit-interview-single--designed .interview-page__hero .l-container {
  display: block;
  width: min(100% - 24px, 980px);
}

.recruit-interview-single--designed .interview-page__qa .l-container--narrow,
.recruit-interview-single--designed .interview-page__career .l-container,
.recruit-interview-single--designed .interview-page__others .l-container {
  width: min(100% - 44px, 760px);
}

.recruit-interview-single--designed .interview-page__schedule .l-container {
  width: min(100% - 44px, 820px);
}

.interview-page__hero-frame {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  justify-self: stretch;
}

.interview-page__hero-main {
  position: relative;
  width: min(100%, 720px);
  margin: 0 auto;
  padding-right: 78px;
}

.interview-page__hero-media--wide {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  min-height: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.interview-page__hero-media--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.interview-page__hero-catch {
  position: absolute;
  top: 16px;
  right: -2px;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.46;
  letter-spacing: 0.08em;
  color: #161616;
  z-index: 4;
}

.interview-page__hero-overlay {
  position: absolute;
  right: 86px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  justify-items: end;
  z-index: 4;
}

.interview-page__role {
  margin: 0;
  color: #121212;
  font-size: 11px;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.84);
  padding: 4px 8px;
}

.interview-page__name {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.08;
  background: rgba(255, 255, 255, 0.84);
  padding: 6px 10px 5px;
}

.interview-page__sub {
  margin: 0;
  color: #111;
  font-size: 12px;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.84);
  padding: 4px 10px;
}

.recruit-interview-single--designed .interview-page__qa {
  padding: 54px 0 60px;
  background: #fff;
}

.recruit-interview-single--designed .interview-page__career {
  background: #fff;
}

.recruit-interview-single--designed .interview-page__section-head,
.recruit-interview-single--designed .interview-page__schedule-head {
  gap: 6px;
}

.recruit-interview-single--designed .interview-page__section-head {
  margin-bottom: 22px;
}

.recruit-interview-single--designed .interview-page__section-head .home-section-title,
.recruit-interview-single--designed .interview-page__schedule-head .home-section-title {
  margin: 0;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.recruit-interview-single--designed .interview-page__section-head .c-eyebrow,
.recruit-interview-single--designed .interview-page__schedule-head .c-eyebrow {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.interview-blocks {
  display: grid;
  gap: 20px;
}

.interview-block {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
}

.interview-block--feature {
  grid-template-columns: minmax(200px, 248px) minmax(0, 1fr);
  gap: 18px 26px;
  align-items: start;
}

.interview-block__feature-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(143, 238, 255, 0.94);
  overflow: hidden;
}

.interview-block__feature-media img,
.interview-block__feature-media .service-detail-extra__placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.interview-block__feature-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.interview-block__feature-profile {
  display: grid;
  gap: 6px;
  max-width: 320px;
}

.interview-block__feature-meta {
  margin: 0;
  color: #4d4d4d;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.interview-block__feature-intro {
  color: #404040;
  font-size: 11px;
  line-height: 1.9;
}

.interview-block__feature-intro p {
  margin: 0;
}

.interview-block__head {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.interview-block__index {
  min-width: 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #565656;
}

.interview-block__q {
  margin: 0;
  max-width: 18em;
  font-size: 14px;
  line-height: 1.45;
}

.interview-block__a {
  color: #404040;
  font-size: 11px;
  line-height: 1.95;
  max-width: 58em;
}

.interview-block__a p {
  margin: 0;
}

.interview-page__intro-panel {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 28px;
}

.interview-page__intro-accent {
  width: 100%;
  max-width: 148px;
  aspect-ratio: 1 / 0.88;
  background: rgba(143, 238, 255, 0.94);
}

.interview-page__intro-copy {
  display: grid;
  gap: 8px;
  max-width: 300px;
  padding-top: 2px;
}

.interview-page__intro-meta {
  margin: 0;
  color: #4d4d4d;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.interview-page__intro-text {
  color: #404040;
  font-size: 11px;
  line-height: 1.95;
}

.interview-page__intro-text p {
  margin: 0;
}

.recruit-interview-single--designed .interview-page__schedule {
  background: linear-gradient(180deg, rgba(144, 245, 255, 0.72), rgba(144, 245, 255, 0.56));
  padding: 56px 0 60px;
}

.interview-page__schedule-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px 48px;
  align-items: end;
}

.interview-page__schedule-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  margin-bottom: 8px;
}

.interview-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 10px;
}

.interview-timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(12, 16, 20, 0.18);
}

.interview-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  padding: 11px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.interview-timeline__item::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(12, 16, 20, 0.18);
}

.interview-timeline__time {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #4e4e4e;
}

.interview-timeline__desc {
  font-size: 12px;
  line-height: 1.88;
  max-width: 34em;
}

.interview-page__schedule-photo {
  width: min(100%, 268px);
  border: 0;
  position: relative;
  z-index: 3;
  isolation: isolate;
  justify-self: end;
  align-self: end;
  transform: translateY(16px);
}

.recruit-interview-single--designed .interview-page__others .recruit-person-card__thumb {
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.interview-page__schedule-photo img {
  aspect-ratio: 1.24 / 1;
  border: 4px solid rgba(255, 255, 255, 0.94);
  object-position: center 26%;
}

.recruit-interview-single--designed .interview-page__career {
  padding: 52px 0 62px;
}

.interview-career-visual {
  width: min(100%, 720px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(143, 238, 255, 0.12);
}

.interview-career-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.interview-career-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding-top: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.interview-career-steps__item {
  display: grid;
  grid-template-rows: auto 26px auto auto;
  gap: 10px;
  justify-items: center;
  align-content: end;
}

.interview-career-steps__tag {
  margin: 0;
  padding: 4px 10px;
  border: 1px solid rgba(57, 219, 232, 0.54);
  border-radius: 999px;
  color: #4a4a4a;
  font-size: 11px;
  letter-spacing: 0.14em;
  background: rgba(255, 255, 255, 0.96);
}

.interview-career-steps__stem {
  width: 1px;
  height: 100%;
  background: rgba(57, 219, 232, 0.56);
}

.interview-career-steps__bar {
  width: min(100%, 94px);
  height: var(--career-bar-height);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(145, 245, 255, 0.74), rgba(57, 219, 232, 0.96));
}

.interview-career-steps__caption {
  margin: 0;
  color: #4d4d4d;
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
  max-width: 124px;
}

.recruit-interview-single--designed .interview-page__others {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.05), transparent 35%),
    radial-gradient(circle at 80% 78%, rgba(145, 245, 255, 0.08), transparent 45%),
    #0c0c0c;
  color: #f5f5f5;
  padding: 42px 0 48px;
}

.recruit-interview-single--designed .interview-page__others::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("../img/noise.png");
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: 0.34;
}

.recruit-interview-single--designed .interview-page__others > .l-container {
  position: relative;
  z-index: 1;
}

.interview-page__others .interview-page__section-head {
  margin-bottom: 26px;
}

.interview-page__others .interview-page__section-head .home-section-title,
.interview-page__others .recruit-top-people__footer {
  display: none;
}

.interview-page__others .recruit-top-people__grid--compact {
  max-width: 860px;
  margin: 0 auto;
  gap: 18px 20px;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(148px, 148px));
}

.interview-page__others .recruit-person-card a {
  gap: 6px;
}

.interview-page__others .recruit-person-card__thumb {
  aspect-ratio: 129 / 184;
  border: 0;
  background: transparent;
}

.interview-page__others .recruit-person-card__meta {
  display: grid;
  gap: 2px;
  justify-items: center;
  text-align: center;
}

.interview-page__others .recruit-person-card__name,
.interview-page__others .recruit-person-card__sub {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
}

.interview-page__others .recruit-person-card__sub {
  margin: 0;
}

.interview-page__section-head--light .c-eyebrow,
.interview-page__section-head--light .home-section-title {
  color: #f5f5f5;
}

.recruit-top-people--archive {
  padding-top: 18px;
}

.recruit-header {
  position: relative;
  padding: 24px 0 18px;
  background: transparent;
}

.recruit-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.recruit-header__brand {
  color: #111;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.recruit-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.recruit-header__link {
  position: relative;
  color: #5f5f5f;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.recruit-header__link.is-current {
  color: #17c9d6;
}

.recruit-header__link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
}

.recruit-header__entry {
  min-width: 136px;
  min-height: 50px;
  background: #fff;
  color: #121212;
  border: 1px solid rgba(0, 0, 0, 0.28);
}

.recruit-header__share {
  position: absolute;
  right: 20px;
  top: 118px;
  display: grid;
  gap: 5px;
  justify-items: end;
}

.recruit-header__share-label,
.recruit-header__share-link {
  writing-mode: vertical-rl;
  color: #575757;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.recruit-header--top {
  padding-bottom: 10px;
}

.recruit-header--top .recruit-header__inner {
  align-items: center;
}

.recruit-mode .site-footer {
  background: #fff;
  color: #0f1116;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.recruit-mode .site-footer__logo img {
  filter: invert(1);
}

.recruit-mode .site-footer__brand-text,
.recruit-mode .site-footer__heading,
.recruit-mode .site-footer__info-line,
.recruit-mode .site-footer__nav a,
.recruit-mode .site-footer__sns-link {
  color: #0f1116;
}

.recruit-mode .site-footer__heading--lined::after {
  background: rgba(0, 0, 0, 0.12);
}

.recruit-mode .site-footer__sns-link--empty {
  color: rgba(15, 17, 22, 0.55);
}

.recruit-mode .site-footer__nav a:hover,
.recruit-mode .site-footer__nav a:focus-visible,
.recruit-mode .site-footer__sns-link:hover,
.recruit-mode .site-footer__sns-link:focus-visible {
  color: #17c9d6;
}

.recruit-top--designed .recruit-top-info,
.recruit-data-mosaic {
  background: linear-gradient(180deg, rgba(144, 245, 255, 0.72), rgba(144, 245, 255, 0.44));
}

.recruit-message-hero,
.recruit-welfare-benefits,
.recruit-welfare-events,
.recruit-welfare-environment,
.recruit-data-mosaic,
.recruit-jobs-page--designed .recruit-jobs-page__content,
.recruit-interview-archive__content {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.recruit-subpage--designed .recruit-subpage__hero--compact,
.recruit-jobs-page--designed .recruit-jobs-page__hero--compact {
  padding: 18px 0 26px;
}

.recruit-message-hero__inner {
  gap: 42px;
}

.recruit-message-hero__main {
  display: grid;
  gap: 14px;
}

.recruit-message-hero__label {
  color: #17c9d6;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.recruit-message-hero__profile {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}

.recruit-message-hero__photo {
  max-width: 132px;
}

.recruit-message-hero__copy {
  gap: 32px;
  width: 100%;
  max-width: 520px;
}

.recruit-message-hero__body {
  max-width: none;
  font-size: 13px;
  line-height: 2;
}

.recruit-message-beliefs,
.recruit-message-gallery,
.recruit-welfare-events,
.recruit-welfare-environment {
  margin-top: 42px;
  padding-top: 42px;
}

.recruit-message-belief-card {
  padding: 18px 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
}

.recruit-message-gallery__item,
.recruit-welfare-environment-card {
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  align-items: start;
}

.recruit-welfare-benefits__grid {
  gap: 16px 46px;
}

.recruit-welfare-event-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.recruit-welfare-events__list {
  display: grid;
  gap: 26px;
}

.recruit-welfare-event-card__media {
  min-height: 132px;
}

.recruit-data-card {
  min-height: 154px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.recruit-jobs-page__title,
.recruit-subpage__title {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: 0.06em;
}

.recruit-jobs-page__lead,
.recruit-subpage__lead {
  max-width: 520px;
  color: #4c4c4c;
}

.recruit-job-row {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
}

.recruit-job-row__label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: center;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.recruit-job-row__value {
  font-size: 12px;
  line-height: 2.1;
}

.recruit-jobs-document-hero .recruit-jobs-page__hero-inner {
  grid-template-columns: 1fr;
}

.recruit-jobs-page--designed .recruit-jobs-page__hero {
  background: transparent;
  border-bottom: 0;
}

.recruit-jobs-document-hero__copy,
.recruit-jobs-document-stack {
  width: 100%;
  max-width: 920px;
}

.recruit-jobs-document-hero__copy {
  margin: 0 auto;
}

.recruit-jobs-document-stack {
  margin: 0 auto;
  display: grid;
  gap: clamp(42px, 6vw, 72px);
}

.recruit-jobs-document-hero .recruit-jobs-page__title {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.02em;
}

.recruit-jobs-document-hero .recruit-jobs-page__lead {
  margin-top: 12px;
  max-width: 440px;
  font-size: 12px;
  line-height: 1.9;
}

.recruit-jobs-page--designed .recruit-jobs-page__hero--compact {
  padding: clamp(72px, 10vw, 112px) 0 32px;
}

.recruit-jobs-page--designed .recruit-jobs-page__content {
  padding-top: 18px;
  padding-bottom: clamp(72px, 9vw, 116px);
  border-top: 0;
}

.recruit-jobs-document {
  display: grid;
  gap: 14px;
}

.recruit-jobs-document__section-head {
  padding-bottom: 14px;
}

.recruit-jobs-document__section-kicker {
  margin: 0;
  display: inline-block;
  padding: 3px 7px 4px;
  color: #111;
  background: #a9f1f7;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.recruit-jobs-document__table {
  display: grid;
}

.recruit-jobs-document__row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.74);
}

.recruit-jobs-document__row-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
}

.recruit-jobs-document__row-label span {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #121212;
}

.recruit-jobs-document__row-body {
  min-width: 0;
  padding: 18px 0 18px 22px;
  border-left: 1px solid rgba(0, 0, 0, 0.74);
}

.recruit-jobs-document__body-content {
  display: grid;
  gap: 0;
  color: #151515;
}

.recruit-jobs-document__body-content > * {
  margin: 0;
}

.recruit-jobs-document__body-content > * + * {
  margin-top: 10px;
}

.recruit-jobs-document__body-content h3,
.recruit-jobs-document__body-content h4 {
  color: #121212;
  font-weight: 700;
}

.recruit-jobs-document__body-content h3 {
  font-size: 14px;
  line-height: 1.7;
}

.recruit-jobs-document__body-content h4 {
  font-size: 12px;
  line-height: 1.8;
}

.recruit-jobs-document__body-content p,
.recruit-jobs-document__body-content li {
  margin: 0;
  color: #151515;
  font-size: 12px;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.recruit-jobs-document__body-content ul,
.recruit-jobs-document__body-content ol {
  margin: 0;
  padding-left: 1.4em;
}

.recruit-jobs-document__body-content li + li {
  margin-top: 4px;
}

.recruit-jobs-document__row--positions .recruit-jobs-document__body-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding-left: 0;
  list-style: none;
}

.recruit-jobs-document__row--positions .recruit-jobs-document__body-content li {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.74);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.recruit-jobs-document__row--contact .recruit-jobs-document__body-content a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .recruit-jobs-document-stack {
    max-width: 860px;
  }
}

@media (max-width: 768px) {
  .recruit-jobs-document__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .recruit-jobs-document__row-label {
    justify-content: flex-start;
    padding: 14px 0 0;
  }

  .recruit-jobs-document__row-label span {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #5b5b5b;
  }

  .recruit-jobs-document__row-body {
    padding: 0 0 16px;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .recruit-jobs-document-stack {
    gap: 36px;
  }

  .recruit-jobs-document__section-head {
    padding-bottom: 8px;
  }

  .recruit-jobs-document__row-body {
    gap: 10px;
  }

  .recruit-jobs-document__body-content p,
  .recruit-jobs-document__body-content li {
    font-size: 11px;
  }

  .recruit-jobs-document__body-content h3 {
    font-size: 11px;
  }

  .recruit-jobs-document__body-content h4 {
    font-size: 10px;
  }

  .recruit-jobs-document__row--positions .recruit-jobs-document__body-content li {
    min-height: 24px;
    padding: 0 10px;
    font-size: 10px;
  }
}

@media (max-width: 1120px) {
  .service-showcase,
  .service-feature-row,
  .service-detail-hero__inner,
  .service-case-study__inner,
  .interview-page__schedule-inner,
  .recruit-message-hero__profile {
    grid-template-columns: 1fr;
  }

  .service-support__grid,
  .service-gallery-grid__inner,
  .service-catalog-grid,
  .recruit-top--designed .recruit-top-people__grid,
  .recruit-top-people__grid--compact,
  .recruit-data-mosaic__grid,
  .recruit-welfare-benefits__grid,
  .recruit-message-beliefs__grid,
  .recruit-message-gallery__grid,
  .recruit-welfare-environment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-channel-card,
  .recruit-message-gallery__item,
  .recruit-welfare-environment-card,
  .service-detail-extra__item,
  .service-support-row {
    grid-template-columns: 1fr;
  }

  .interview-page__intro-panel,
  .interview-career-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interview-block--feature {
    grid-template-columns: 1fr;
  }

  .interview-block__feature-media {
    max-width: 260px;
  }

  .interview-page__schedule-photo {
    width: min(100%, 280px);
    margin-left: auto;
  }

  .service-offer-card__summary,
  .service-channel-card__summary,
  .service-detail-accordion-panel {
    grid-template-columns: 1fr;
  }

  .service-detail-accordion-panel__gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-case-study__info-card:last-child {
    grid-template-columns: 1fr;
  }

  .service-case-study__info-card:last-child .service-case-study__info-list {
    grid-template-columns: 1fr;
  }

  .service-case-study__info-grid {
    grid-template-columns: 1fr;
  }

  .service-channel-card__label {
    writing-mode: horizontal-tb;
    letter-spacing: 0.14em;
  }

  .service-detail-page--advertising .service-detail-figure__screen,
  .service-detail-page--channel-operations .service-detail-figure__screen {
    margin-top: 0;
  }

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

  .service-process-section--steps .service-process-step-grid,
  .service-process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-page--advertising .service-process-section--advertising .service-process-step-grid {
    width: min(100%, 540px);
    grid-template-columns: repeat(2, minmax(0, 250px));
  }

  .service-detail-page--advertising .service-detail-hero__visual {
    justify-items: center;
  }

  .service-detail-page--advertising .service-detail-hero__copy {
    text-align: center;
  }

  .service-detail-page--advertising .service-detail-hero__lead {
    margin-inline: auto;
  }

  .service-detail-page--advertising .service-detail-hero__meta {
    justify-content: center;
  }

  .service-detail-page--channel-operations .service-channel-overview__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-page--channel-operations .service-channel-overview__copy {
    justify-items: center;
    text-align: center;
  }

  .service-detail-page--channel-operations .service-channel-card--pdf .service-channel-card__summary {
    width: min(100%, 680px);
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .service-detail-page--channel-operations .service-detail-accordion-media--channel img {
    max-width: 124px;
    max-height: 104px;
  }

  .service-detail-page--channel-operations .service-case-study__board {
    grid-template-columns: 1fr;
  }

  .service-detail-page--channel-operations .service-case-study__board-section--programs,
  .service-detail-page--channel-operations .service-case-study__board-section--systems {
    grid-column: 1;
  }
}

@media (max-width: 820px) {
  .service-page__hero-inner,
  .recruit-subnav__inner,
  .recruit-top-message__inner,
  .recruit-top--designed .recruit-top-section-head,
  .service-page__contact-rail-inner,
  .service-detail-contact-rail__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-page__hero-inner {
    grid-template-columns: 1fr;
  }

  .service-page__hero-side,
  .service-page__hero-mark {
    display: none;
  }

  .recruit-top--designed .recruit-top-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .recruit-top--designed .recruit-top-hero__visual {
    min-height: 280px;
  }

  .recruit-top--designed .recruit-top-hero__copy-wrap {
    justify-content: flex-start;
    padding-top: 0;
  }

  .recruit-top--designed .recruit-top-hero__copy {
    writing-mode: horizontal-tb;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  .recruit-info-card a,
  .service-process-flow__caption,
  .service-step-columns__title,
  .service-process-step-grid__label,
  .recruit-job-card__title,
  .interview-page__catch,
  .service-showcase__title,
  .service-page__section-title,
  .service-feature-row__title,
  .service-process-section__title,
  .service-offer-card__title,
  .service-channel-card__title,
  .service-case-study__title,
  .recruit-subpage__section-title,
  .recruit-message-belief-card__title {
    font-size: 22px;
  }

  .recruit-top--designed .recruit-top-people__grid,
  .recruit-top-people__grid--compact,
  .service-support__grid,
  .service-gallery-grid__inner,
  .service-catalog-grid,
  .service-process-section--steps .service-process-step-grid,
  .service-process-flow,
  .service-step-columns,
  .recruit-message-beliefs__grid,
  .recruit-message-gallery__grid,
  .recruit-welfare-environment__grid,
  .recruit-data-mosaic__grid,
  .recruit-welfare-benefits__grid,
  .recruit-top-info__grid {
    grid-template-columns: 1fr;
  }

  .recruit-data-card--large,
  .recruit-data-card--wide,
  .recruit-data-card--medium {
    grid-column: span 1;
  }

  .service-showcase,
  .service-offer-card__summary,
  .service-channel-card__summary,
  .recruit-welfare-event-card,
  .recruit-job-row {
    grid-template-columns: 1fr;
  }

  .service-offer-card--accordion,
  .service-channel-card--accordion,
  .service-case-study__shell--accordion {
    padding: 22px 22px 16px;
  }

  .service-showcase__visual,
  .service-visual,
  .service-detail-figure,
  .interview-page__hero-media,
  .interview-page__schedule-photo {
    min-height: 220px;
  }

  .service-detail-contact-rail__actions {
    width: 100%;
    flex-direction: column;
  }

  .service-offer-card__title,
  .service-channel-card__title,
  .service-case-study__org {
    font-size: 24px;
  }

  .interview-page__hero-main {
    width: min(100%, 620px);
    padding-right: 58px;
  }

  .interview-page__hero-catch {
    top: 16px;
    right: 0;
    font-size: clamp(20px, 5.6vw, 30px);
  }

  .interview-page__hero-overlay {
    right: 68px;
    bottom: 12px;
  }

  .interview-page__intro-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .interview-block--feature {
    gap: 16px;
  }

  .interview-block__feature-media {
    max-width: 220px;
  }

  .interview-page__intro-accent {
    max-width: 142px;
  }

  .interview-page__schedule-head {
    justify-items: start;
    text-align: left;
  }

  .interview-page__schedule-photo {
    width: min(100%, 220px);
    margin-left: auto;
    transform: none;
  }

  .interview-timeline {
    padding-left: 0;
  }

  .interview-timeline::before {
    left: 50px;
  }

  .interview-timeline__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }

  .interview-timeline__item::before {
    left: 46px;
  }

  .interview-career-steps {
    gap: 24px 16px;
  }

  .interview-career-steps__bar {
    width: min(100%, 74px);
  }

  .service-detail-contact-rail__actions .c-pill-button,
  .recruit-subnav__entry {
    width: 100%;
  }

  .service-detail-page--advertising .service-process-section--advertising {
    padding: 56px 0 42px;
  }

  .service-detail-page--advertising .service-process-section--advertising .service-process-step-grid {
    width: min(100%, 320px);
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .service-detail-page--advertising .service-process-step-grid__item--advertising {
    min-height: 224px;
    padding: 22px 18px 22px;
  }

  .service-detail-page--advertising .service-process-step-grid__item--advertising .service-process-step-grid__index {
    font-size: 24px;
  }

  .service-detail-page--advertising .service-process-step-grid__item--advertising .service-process-step-grid__label {
    margin-top: 20px;
    font-size: 18px;
  }

  .service-detail-page--advertising .service-process-step-grid__item--advertising .service-process-step-grid__body {
    margin-top: 16px;
    font-size: 12px;
  }

  .service-detail-page--advertising .service-offer-card--advertising .service-offer-card__summary {
    gap: 20px;
    min-height: 0;
  }

  .service-detail-page--advertising .service-offer-card--advertising .service-detail-accordion-icon {
    width: 98px;
  }

  .service-detail-page--advertising .service-offer-card__icon--media {
    width: 98px;
    height: 98px;
  }

  .service-detail-page--advertising .service-detail-accordion-panel__gallery-grid {
    width: min(100%, 560px);
  }

  .service-detail-page--channel-operations .service-channel-overview {
    padding: 40px 0 44px;
  }

  .service-detail-page--channel-operations .service-channel-section {
    padding: 56px 0 48px;
  }

  .service-detail-page--channel-operations .service-case-study__shell--channel {
    padding: 22px 22px 16px;
  }

  .service-detail-page--channel-operations .service-case-study {
    padding: 48px 0 50px;
  }

  .service-detail-page--channel-operations .service-case-study__label {
    font-size: 22px;
  }

  .service-detail-page--channel-operations .service-case-study__org {
    font-size: 18px;
    line-height: 1.55;
  }

  .service-detail-page--channel-operations .service-content-flow--channel {
    padding: 36px 0 24px;
  }

  .recruit-subnav__links {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Service page refinement against PDF ③ */
.service-page--designed .service-page__hero {
  padding: 44px 0 66px;
}

.service-page--designed .service-page__hero-inner {
  grid-template-columns: 84px minmax(0, 1fr) 44px;
  gap: 36px;
}

.service-page--designed .service-page__hero-mark {
  width: 52px;
  height: 52px;
  border-width: 5px;
  margin-top: 34px;
}

.service-page--designed .service-page__title {
  font-size: clamp(30px, 4vw, 52px);
}

.service-page--designed .service-page__lead {
  max-width: 560px;
  font-size: 12px;
  line-height: 1.95;
}

.service-page--designed .service-page__hero-meta {
  gap: 12px;
  margin-top: 20px;
}

.service-page--designed .service-page__hero-meta li {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #7a7a7a;
}

.service-page--designed .service-page__featured {
  padding: 26px 0 10px;
}

.service-page--designed .service-showcase {
  padding: 30px 0 34px;
}

.service-page--designed .service-showcase__copy {
  gap: 10px;
}

.service-page--designed .service-showcase__title {
  font-size: clamp(20px, 2.2vw, 28px);
}

.service-page--designed .service-showcase__summary {
  max-width: 320px;
  font-size: 11px;
  line-height: 1.9;
}

.service-page--designed .service-showcase__button {
  min-height: 32px;
  width: 140px;
  padding: 6px 12px;
  font-size: 10px;
}

.service-page--designed .service-showcase__visual {
  min-height: 260px;
  padding: 20px;
  border-radius: 22px;
}

.service-page--designed .service-visual {
  min-height: 220px;
  padding: 22px;
  border-radius: 20px;
}

.service-page--designed .service-visual__brand {
  font-size: clamp(20px, 2.4vw, 32px);
}

.service-page--designed .service-visual__screen {
  min-height: 104px;
}

.service-page--designed .service-visual__note {
  font-size: 10px;
}

.service-page--designed .service-page__support {
  padding: 68px 0 42px;
}

.service-page--designed .service-page__section-head {
  gap: 6px;
  margin-bottom: 22px;
}

.service-page--designed .service-page__section-title {
  font-size: 18px;
  line-height: 1.4;
}

.service-page--designed .service-support__stack {
  gap: 22px;
}

.service-page--designed .service-support-row {
  min-height: 150px;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 26px;
  align-items: center;
  padding: 22px 26px 30px;
  background: #fff;
  box-shadow: none;
}

.service-page--designed .service-support-row__body {
  gap: 8px;
}

.service-page--designed .service-support-row__visual {
  min-height: 92px;
  border-radius: 4px;
}

.service-page--designed .service-support-card__title {
  font-size: 14px;
  line-height: 1.55;
}

.service-page--designed .service-support-card__summary {
  font-size: 10px;
  line-height: 1.8;
}

.service-page--designed .service-support-card__plus {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  font-size: 16px;
}

.service-page--designed .service-support-row--aqua,
.service-page--designed .service-support-row--sand,
.service-page--designed .service-support-row--ink {
  background: #fff;
}

.service-page--designed .service-support-row--aqua .service-support-row__visual {
  background-color: rgba(144, 245, 255, 0.18);
}

.service-page--designed .service-support-row--sand .service-support-row__visual {
  background-color: rgba(250, 229, 186, 0.2);
}

.service-page--designed .service-support-row--ink .service-support-row__visual {
  background-color: rgba(145, 204, 255, 0.18);
}

.service-page--designed .service-page__contact-rail {
  padding: 18px 0 26px;
}

.service-page--designed .service-page__contact-address {
  font-size: 10px;
}

@media (max-width: 820px) {
  .service-page--designed .service-page__hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-page--designed .service-support-row {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
  }

  .service-page--designed .service-showcase__summary {
    max-width: none;
  }
}

/* Service page rebuild against イメージPDF/放送システム・サービス.pdf */
.service-page--broadcast {
  background: #fff;
}

.service-page--broadcast .service-page__hero {
  padding: 136px 0 108px;
  background: #fff;
}

.service-multi-hero {
  padding: 86px 0 92px;
  border-bottom: 1px solid var(--color-line);
}

.service-multi-hero__inner {
  width: min(100%, 960px);
  margin-inline: auto;
  display: grid;
  gap: 46px;
}

.service-multi-hero__head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  justify-content: center;
}

.service-multi-hero__logo {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.service-multi-hero__logo-mark {
  width: 90px;
  height: 90px;
}

.service-multi-hero__logo-mark.service-system-logo--multi-screen::before,
.service-multi-hero__logo-mark.service-system-logo--multi-screen::after {
  left: 8px;
  width: 24px;
  height: 24px;
  border-width: 5px;
  box-shadow:
    34px 0 0 -5px #fff,
    34px 0 0 0 #333,
    0 34px 0 -5px #fff,
    0 34px 0 0 #333,
    34px 34px 0 -5px #fff,
    34px 34px 0 0 #333;
}

.service-multi-hero__logo-mark.service-system-logo--multi-screen::before {
  top: 8px;
}

.service-multi-hero__logo-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #272727;
  text-align: center;
}

.service-multi-hero__title {
  margin: 0;
  font-size: clamp(42px, 4.1vw, 58px);
  line-height: 1.12;
}

.service-multi-hero__intro {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.service-multi-hero__intro p,
.service-multi-feature__text,
.service-multi-layouts__body p,
.service-multi-layout-card__points li,
.service-multi-operation__text,
.service-multi-demo__caption {
  margin: 0;
  color: #3c3c3c;
  font-size: 13px;
  line-height: 1.95;
}

.service-multi-features {
  padding: 0;
}

.service-multi-features__list {
  border-top: 1px solid var(--color-line);
}

.service-multi-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--color-line);
}

.service-multi-feature__media {
  padding: 44px 46px 42px;
  display: grid;
  place-items: center;
}

.service-multi-feature__media img,
.service-multi-layout-card__image img,
.service-multi-operation__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.service-multi-feature__copy {
  padding: 56px 64px 52px 56px;
  border-left: 1px solid var(--color-line);
  display: grid;
  align-content: center;
  gap: 28px;
}

.service-multi-feature__label {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #2a2a2a;
}

.service-multi-feature__title,
.service-multi-layouts__title,
.service-multi-operation__title,
.service-multi-demo__title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.4;
}

.service-multi-layouts {
  padding: 72px 0 64px;
}

.service-multi-layouts__inner,
.service-multi-operation__inner,
.service-multi-demo__inner {
  width: min(100%, 1100px);
  margin-inline: auto;
}

.service-multi-layouts__intro {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.service-multi-layouts__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 118px;
  min-height: 32px;
  padding: 4px 16px;
  border: 1px solid var(--color-line);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #333;
}

.service-multi-layouts__body {
  display: grid;
  gap: 10px;
}

.service-multi-layouts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-multi-layout-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.service-multi-layout-card__image {
  width: 100%;
}

.service-multi-layout-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
}

.service-multi-layout-card__points {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.service-multi-layout-card__points li::before {
  content: "・";
  margin-right: 0.18em;
}

.service-multi-operation {
  padding: 18px 0 68px;
}

.service-multi-operation__inner {
  display: grid;
  gap: 24px;
}

.service-multi-operation__intro {
  display: grid;
  gap: 14px;
}

.service-multi-operation__figure {
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
}

.service-multi-demo {
  padding: 6px 0 84px;
}

.service-multi-demo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin-top: 28px;
}

.service-multi-demo__item {
  display: grid;
  gap: 12px;
}

.service-multi-demo__placeholder {
  aspect-ratio: 16 / 9;
  border: 1px solid #a8a8a8;
  background: #ececec;
}

.service-detail-page--multi-screen .service-detail-contact-rail {
  margin-top: 0;
}

@media (max-width: 960px) {
  .service-multi-hero {
    padding: 64px 0 72px;
  }

  .service-multi-hero__head {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }

  .service-multi-feature {
    grid-template-columns: 1fr;
  }

  .service-multi-feature__copy {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .service-multi-layouts__grid,
  .service-multi-demo__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .service-multi-hero {
    padding: 42px 0 54px;
  }

  .service-multi-hero__inner {
    gap: 28px;
  }

  .service-multi-hero__title {
    font-size: 34px;
  }

  .service-multi-hero__intro p,
  .service-multi-feature__text,
  .service-multi-layouts__body p,
  .service-multi-layout-card__points li,
  .service-multi-operation__text,
  .service-multi-demo__caption {
    font-size: 12px;
  }

  .service-multi-feature__media {
    padding: 24px 18px;
  }

  .service-multi-feature__copy {
    gap: 16px;
    padding: 24px 18px 26px;
  }

  .service-multi-feature__label {
    font-size: 16px;
  }

  .service-multi-layouts {
    padding: 44px 0 38px;
  }

  .service-multi-layouts__intro {
    margin-bottom: 28px;
  }

  .service-multi-layout-card__title {
    font-size: 18px;
  }

  .service-multi-operation {
    padding: 10px 0 42px;
  }

  .service-multi-operation__figure {
    padding-top: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .service-multi-operation__figure img {
    width: 760px;
    max-width: none;
  }

  .service-multi-demo {
    padding-bottom: 52px;
  }

  .service-multi-demo__grid {
    gap: 28px;
    margin-top: 22px;
  }
}

.service-page--broadcast .service-page__hero-inner {
  width: min(100%, 920px);
  margin-inline: auto;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.service-page--broadcast .service-page__hero-mark-block {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 18px;
  padding-top: 18px;
}

.service-page--broadcast .service-page__hero-mark {
  width: 118px;
  height: 118px;
  margin-top: 0;
  border-width: 17px;
}

.service-page__hero-mark--uploaded {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.service-page__hero-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-page__hero-mark--uploaded .service-page__hero-mark-image {
  max-width: 100%;
  max-height: 100%;
}

.service-page--broadcast .service-page__title {
  margin-top: 10px;
  font-size: clamp(28px, 3.55vw, 46px);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #161616;
}

.service-page--broadcast .service-page__hero-page-name {
  margin-top: 0;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #222;
}

.service-page--broadcast .service-page__lead {
  margin-top: 30px;
  max-width: 620px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.service-page--broadcast .service-page__lead p + p {
  margin-top: 12px;
}

.service-page--broadcast .service-page__hero-side {
  display: none;
}

.service-page--broadcast .service-page__hero-kicker {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: none;
  color: #1e1e1e;
}

.service-page__hero-links {
  display: grid;
  gap: 12px;
  width: fit-content;
  margin-top: 36px;
}

.service-page__hero-link-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.service-page__hero-link {
  display: inline-flex;
  align-items: flex-end;
  min-width: 98px;
  padding: 0 8px 7px;
  border-bottom: 1px solid #cfcfcf;
  color: #101010;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.service-page__hero-link:hover,
.service-page__hero-link:focus-visible {
  color: #0a0a0a;
  border-bottom-color: #111;
}

.service-page--broadcast .service-page__contact-rail {
  margin-top: 30px;
  padding: 82px 0 0;
  border-top-color: #dddddd;
  background: #fff;
}

.service-page--broadcast .service-page__contact-band {
  min-height: 126px;
  background: #efefef;
  display: flex;
  align-items: center;
}

.service-page--broadcast .service-page__contact-rail-inner {
  width: min(100%, 1020px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 40px;
  align-items: center;
}

.service-page--broadcast .service-page__contact-copy {
  justify-self: start;
}

.service-page--broadcast .service-page__contact-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #6b6b6b;
}

.service-page--broadcast .service-page__contact-meta {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin-inline: auto;
  justify-items: start;
  text-align: left;
}

.service-page--broadcast .service-page__contact-detail {
  margin: 0;
  display: block;
  color: #555;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.service-page--broadcast .service-page__contact-action {
  justify-self: end;
}

.service-page--broadcast .service-page__contact-rail .c-pill-button {
  position: relative;
  z-index: 2;
  min-height: 34px;
  padding: 6px 18px;
  border: 1px solid #c5c5c5;
  background: #fff;
  color: #232323;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.service-page--broadcast .service-page__contact-rail .c-pill-button:hover,
.service-page--broadcast .service-page__contact-rail .c-pill-button:focus-visible {
  background: var(--color-accent);
  border-color: #61dfe8;
  color: #111;
}

.service-broadcast-section {
  padding: 58px 0 36px;
  border-top: 1px solid var(--color-line);
}

.service-broadcast-section--overview {
  padding-top: 66px;
  padding-bottom: 40px;
}

.service-broadcast-section--panels,
.service-broadcast-section--extras {
  padding-bottom: 36px;
}

.service-broadcast-shell {
  width: min(100%, 950px);
  margin-inline: auto;
}

.service-anchor-target {
  scroll-margin-top: 120px;
}

.service-broadcast-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.service-broadcast-section-head--center {
  justify-items: center;
  text-align: center;
}

.service-broadcast-section-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: #111;
}

.service-broadcast-section--overview .service-broadcast-section-title {
  font-size: 29px;
}

.service-broadcast-section-copy,
.service-system-row__summary,
.service-broadcast-overview__copy p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.service-broadcast-panel__lead,
.service-broadcast-panel__text,
.service-extra-card__lead,
.service-extra-card__text,
.service-extra-highlight__body,
.service-support-grid__body {
  margin: 0;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.92;
}

.service-broadcast-overview__copy {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.service-broadcast-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.service-broadcast-category {
  position: relative;
  min-height: 136px;
  border: 1px solid #d6d6d6;
  background: #a9a9a9;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.service-broadcast-category--content {
  background: #9f9f9f;
}

.service-broadcast-category--support {
  background: #969696;
}

.service-broadcast-category__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-broadcast-category__media {
  position: absolute;
  inset: 0;
}

.service-broadcast-category__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-broadcast-category--has-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.2), rgba(24, 24, 24, 0.5));
}

.service-broadcast-category__plus {
  color: #888;
  font-size: 22px;
  line-height: 1;
}

.service-system-list {
  display: grid;
  gap: 24px;
  max-width: 780px;
  margin-inline: auto;
}

.service-system-row {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-bottom: 28px;
}

.service-system-row__body {
  display: grid;
  gap: 8px;
}

.service-system-row__link {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-top: 0;
  transform: translateX(-50%);
}

.service-system-row__title {
  margin: 0;
  color: #131313;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.service-system-row__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-system-row__logo-media {
  display: grid;
  place-items: center;
  width: 88px;
  height: 68px;
}

.service-system-row__logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-system-logo {
  position: relative;
  display: block;
  width: 68px;
  height: 52px;
}

.service-system-logo--force::before,
.service-system-logo--force::after {
  content: "";
  position: absolute;
  background: #3445a6;
}

.service-system-logo--force::before {
  left: 16px;
  top: 6px;
  width: 16px;
  height: 42px;
}

.service-system-logo--force::after {
  left: 30px;
  top: 26px;
  width: 30px;
  height: 16px;
}

.service-system-logo--multi-screen::before,
.service-system-logo--multi-screen::after {
  content: "";
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 3px solid #333;
  box-shadow:
    24px 0 0 -3px #fff,
    24px 0 0 0 #333,
    0 24px 0 -3px #fff,
    0 24px 0 0 #333,
    24px 24px 0 -3px #fff,
    24px 24px 0 0 #333;
}

.service-system-logo--multi-screen::before {
  top: 8px;
}

.service-system-logo--mojic {
  border-radius: 10px;
  background: linear-gradient(135deg, #0f8f8d, #59d0ac 70%, #c9fff1 100%);
  overflow: hidden;
}

.service-system-logo--mojic::before {
  content: "Mojic";
  position: absolute;
  left: 10px;
  bottom: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-system-logo--mojic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 60%);
}

.service-broadcast-actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.service-broadcast-link {
  margin-top: 0;
}

.service-broadcast-link::before {
  inset: 3px -10px;
}

.service-broadcast-panel-stack,
.service-extra-stack {
  display: grid;
  gap: 28px;
}

.service-broadcast-panel,
.service-extra-card {
  padding: 28px 30px 26px;
  border: 1px solid #d7d7d7;
  background: #fff;
}

.service-broadcast-panel--accordion,
.service-extra-card--accordion {
  padding: 24px 26px 18px;
}

.service-broadcast-panel--content {
  padding: 24px 26px 18px;
}

.service-broadcast-panel__head {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.service-broadcast-panel__title,
.service-extra-card__title {
  margin: 0;
  color: #171717;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.service-broadcast-panel__lead {
  max-width: 700px;
}

.service-broadcast-panel__summary,
.service-extra-card__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  min-height: 190px;
}

.service-broadcast-panel__summary-copy,
.service-extra-card__summary-copy {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  max-width: 500px;
  margin-inline: auto;
}

.service-broadcast-panel__summary-copy--content {
  max-width: 480px;
}

.service-broadcast-panel--content .service-broadcast-panel__summary {
  min-height: 178px;
}

.service-broadcast-panel--content .service-broadcast-panel__summary-copy {
  justify-items: center;
  text-align: center;
}

.service-broadcast-panel--content .service-broadcast-panel__text {
  max-width: 480px;
}

.service-broadcast-panel--accordion .service-broadcast-panel__lead,
.service-extra-card--accordion .service-extra-card__lead {
  max-width: 460px;
  margin-inline: auto;
  font-size: 13px;
  color: #2f2f2f;
  line-height: 1.92;
}

.service-broadcast-panel__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}

.service-broadcast-panel__copy,
.service-extra-card__copy {
  display: grid;
  gap: 12px;
}

.service-accordion-toggle-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.service-accordion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #232323;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.service-accordion-toggle:hover,
.service-accordion-toggle:focus-visible {
  color: #111;
}

.service-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows 0.28s ease, opacity 0.28s ease, margin-top 0.28s ease;
}

.service-accordion-panel__inner {
  overflow: hidden;
}

.service-broadcast-panel--accordion.is-open .service-accordion-panel,
.service-extra-card--accordion.is-open .service-accordion-panel,
.service-offer-card--accordion.is-open .service-accordion-panel,
.service-channel-card--accordion.is-open .service-accordion-panel,
.service-case-study__shell--accordion.is-open .service-accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 20px;
}

.service-broadcast-panel__details {
  display: grid;
  gap: 24px;
  padding-top: 6px;
}

.service-broadcast-panel__body--expanded {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.service-extra-card__details {
  display: grid;
  gap: 24px;
}

.service-detail-block-head {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #1d1d1d;
}

.service-accordion-actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.service-accordion-contact {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 30px;
  padding: 5px 14px;
  border: 1px solid #c6c6c6;
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-accordion-contact:hover,
.service-accordion-contact:focus-visible {
  background: var(--color-accent);
  border-color: #61dfe8;
  color: #111;
}

.service-broadcast-panel--accordion .service-broadcast-visual,
.service-extra-card--accordion .service-extra-card__visual {
  min-height: 146px;
}

.service-broadcast-panel--accordion .service-broadcast-panel__title,
.service-extra-card--accordion .service-extra-card__title {
  font-size: 20px;
}

.service-broadcast-chip-list,
.service-broadcast-stat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-broadcast-chip-list {
  justify-content: flex-start;
}

.service-broadcast-panel--content .service-broadcast-chip-list {
  justify-content: center;
}

.service-broadcast-chip-list li,
.service-broadcast-stat-list li {
  position: relative;
  z-index: 2;
  padding: 7px 12px;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.service-broadcast-stat-list li {
  border-color: #111;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.service-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-support-grid__item {
  padding: 14px 14px;
  border: 1px solid #ebebeb;
  background: #fafafa;
  display: grid;
  align-content: start;
  gap: 8px;
}

.service-support-grid__title,
.service-extra-highlight__title {
  margin: 0 0 8px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.service-support-grid__thumb {
  min-height: 70px;
  border: 1px solid #dedede;
  background: #f1f1f1;
  overflow: hidden;
}

.service-support-grid__thumb--1 {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 50%),
    linear-gradient(135deg, #dff0ff, #eef5fb);
}

.service-support-grid__thumb--1::before,
.service-support-grid__thumb--2::before,
.service-support-grid__thumb--3::before,
.service-support-grid__thumb--4::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.service-support-grid__thumb--1::before {
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(0, 0, 0, 0.08) 54% 56%, transparent 56%),
    linear-gradient(180deg, rgba(56, 193, 220, 0.9), rgba(56, 193, 220, 0.9)) 16px 18px / 42px 24px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 22px 24px / 28px 12px no-repeat;
}

.service-support-grid__thumb--2 {
  background: linear-gradient(135deg, #f2edf7, #f8f6fb);
}

.service-support-grid__thumb--2::before {
  background:
    linear-gradient(180deg, rgba(88, 88, 96, 0.9), rgba(70, 70, 78, 0.9)) 14px 12px / 58px 40px no-repeat,
    linear-gradient(180deg, rgba(165, 141, 236, 0.85), rgba(165, 141, 236, 0.85)) 82px 18px / 24px 22px no-repeat;
}

.service-support-grid__thumb--3 {
  background: linear-gradient(135deg, #eaf2f0, #f6faf9);
}

.service-support-grid__thumb--3::before {
  background:
    linear-gradient(180deg, rgba(46, 54, 66, 0.95), rgba(20, 28, 42, 0.95)) 16px 12px / 78px 18px no-repeat,
    linear-gradient(180deg, rgba(167, 255, 154, 0.9), rgba(86, 201, 93, 0.9)) 16px 36px / 22px 18px no-repeat,
    linear-gradient(180deg, rgba(255, 221, 126, 0.92), rgba(226, 170, 58, 0.92)) 44px 36px / 22px 18px no-repeat,
    linear-gradient(180deg, rgba(142, 223, 255, 0.92), rgba(73, 171, 220, 0.92)) 72px 36px / 22px 18px no-repeat;
}

.service-support-grid__thumb--4 {
  background: linear-gradient(135deg, #e7ecef, #f5f7f8);
}

.service-support-grid__thumb--4::before {
  background:
    linear-gradient(180deg, rgba(36, 41, 47, 0.95), rgba(36, 41, 47, 0.95)) 12px 14px / 20px 40px no-repeat,
    linear-gradient(180deg, rgba(56, 56, 64, 0.95), rgba(56, 56, 64, 0.95)) 38px 14px / 20px 40px no-repeat,
    linear-gradient(180deg, rgba(65, 77, 88, 0.95), rgba(65, 77, 88, 0.95)) 64px 14px / 20px 40px no-repeat,
    linear-gradient(180deg, rgba(76, 89, 103, 0.95), rgba(76, 89, 103, 0.95)) 90px 14px / 20px 40px no-repeat;
}

.service-support-grid__thumb--uploaded {
  background: #fff;
}

.service-support-grid__thumb--uploaded::before {
  content: none;
}

.service-support-grid__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-support-flow {
  display: grid;
  gap: 18px;
  margin-top: 4px;
}

.service-support-flow__diagram {
  display: grid;
  grid-template-columns: auto auto minmax(0, 304px) auto auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  margin-inline: auto;
}

.service-support-flow__steps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}

.service-support-flow__step-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-support-flow__step {
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 104px;
  padding: 10px 8px;
  border: 1px solid #cfcfcf;
  border-radius: 16px;
  background: #fff;
  color: #232323;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  writing-mode: vertical-rl;
  letter-spacing: 0.06em;
}

.service-support-flow__arrow {
  color: #232323;
  font-size: 24px;
  line-height: 1;
}

.service-support-flow__arrow--wide {
  align-self: center;
}

.service-support-flow__arrow--diagram {
  font-size: 28px;
}

.service-support-flow__cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.service-support-flow__support {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  width: 100%;
}

.service-support-flow__support-visual {
  width: 100%;
  min-height: 76px;
  border: 1px solid #d7d7d7;
  background: #f6f6f6;
  overflow: hidden;
}

.service-support-flow__support-visual--collection {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.service-support-flow__support-visual--collection::before,
.service-support-flow__support-visual--collection::after {
  content: "";
  position: absolute;
}

.service-support-flow__support-visual--collection::before {
  left: 42px;
  top: 16px;
  width: 48px;
  height: 36px;
  box-sizing: border-box;
  border: 4px solid rgba(44, 44, 44, 0.92);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) 8px 8px / 28px 5px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) 8px 18px / 20px 5px no-repeat;
}

.service-support-flow__support-visual--collection::after {
  left: 94px;
  top: 24px;
  width: 26px;
  height: 18px;
  background:
    linear-gradient(180deg, rgba(44, 44, 44, 0.92), rgba(44, 44, 44, 0.92)) 0 8px / 12px 2px no-repeat,
    linear-gradient(180deg, rgba(44, 44, 44, 0.92), rgba(44, 44, 44, 0.92)) 12px 4px / 14px 2px no-repeat,
    linear-gradient(180deg, rgba(44, 44, 44, 0.92), rgba(44, 44, 44, 0.92)) 12px 12px / 14px 2px no-repeat;
}

.service-support-flow__support-visual--landscape {
  background: linear-gradient(180deg, #d8f0ff 0%, #f7fbff 54%, #edf5db 54%, #c6dc9a 100%);
}

.service-support-flow__support-visual--landscape::before,
.service-support-flow__support-visual--landscape::after,
.service-support-flow__support-visual--bulletin::before,
.service-support-flow__support-visual--bulletin::after {
  content: "";
  display: block;
  position: relative;
}

.service-support-flow__support-visual--landscape::before {
  top: 34px;
  left: 42px;
  width: 54px;
  height: 22px;
  border-radius: 999px;
  background: #7fc16c;
}

.service-support-flow__support-visual--landscape::after {
  top: 2px;
  left: 12px;
  width: 48px;
  height: 18px;
  border-radius: 999px;
  background: #9ed57d;
}

.service-support-flow__support-visual--bulletin {
  background: linear-gradient(180deg, #fff9f6, #f7f0ea);
}

.service-support-flow__support-visual--bulletin::before {
  top: 12px;
  left: 14px;
  width: 86px;
  height: 42px;
  background:
    linear-gradient(180deg, rgba(255, 110, 77, 0.95), rgba(255, 110, 77, 0.95)) 0 0 / 100% 10px no-repeat,
    linear-gradient(180deg, rgba(60, 60, 60, 0.9), rgba(60, 60, 60, 0.9)) 0 16px / 64px 8px no-repeat,
    linear-gradient(180deg, rgba(80, 135, 200, 0.9), rgba(80, 135, 200, 0.9)) 0 30px / 72px 8px no-repeat;
}

.service-support-flow__support-visual--bulletin::after {
  top: -20px;
  left: 70px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.75);
}

.service-support-flow__support-visual--uploaded {
  border-color: transparent;
  background: transparent;
}

.service-support-flow__support-visual--uploaded::before,
.service-support-flow__support-visual--uploaded::after {
  content: none;
}

.service-support-flow__support-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-support-flow__support-label {
  margin: 0;
  color: #232323;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.service-support-flow__goal {
  font-size: 24px;
  line-height: 1;
  color: #2d2d2d;
  white-space: nowrap;
}

.service-extra-card__body {
  display: grid;
  gap: 18px;
}

.service-extra-card__body--voice {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
}

.service-extra-card__body-copy {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.service-extra-card__brand--voice {
  display: grid;
  gap: 12px;
  justify-items: start;
  align-content: start;
  padding-top: 0;
}

.service-extra-card__brand-mark {
  position: relative;
  display: block;
  width: 140px;
  height: 42px;
}

.service-extra-card__brand-mark::before,
.service-extra-card__brand-mark::after {
  content: "";
  position: absolute;
}

.service-extra-card__brand-mark::before {
  inset: 0;
  border: 3px solid #8f8f8f;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(145, 245, 255, 0.26), rgba(145, 245, 255, 0.26)) 10px 11px / 24px 16px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) 18px 17px / 10px 4px no-repeat;
}

.service-extra-card__brand-mark::after {
  left: 20px;
  bottom: -10px;
  width: 24px;
  height: 14px;
  border-left: 3px solid #8f8f8f;
  border-bottom: 3px solid #8f8f8f;
  transform: skewX(-24deg);
}

.service-extra-card__brand-copy {
  display: grid;
  gap: 4px;
}

.service-extra-card__brand-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2a2a2a;
}

.service-extra-card__brand-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #7a7a7a;
}

.service-extra-card__brand--image {
  padding-top: 0;
}

.service-extra-card__brand-image {
  display: block;
  width: min(100%, 240px);
  height: auto;
  object-fit: contain;
}

.service-extra-card__notes {
  display: grid;
  gap: 4px;
}

.service-extra-card__notes p {
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
  color: #6d6d6d;
}

.service-broadcast-visual,
.service-extra-card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid #d7d7d7;
  background: #f7f7f7;
  overflow: hidden;
}

.service-broadcast-visual__label {
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #666;
  text-transform: uppercase;
}

.service-broadcast-visual--content {
  background: linear-gradient(180deg, #d8f0ff 0%, #f7fbff 54%, #edf5db 54%, #c6dc9a 100%);
}

.service-broadcast-visual--content::before,
.service-broadcast-visual--content::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
}

.service-broadcast-visual--content::before {
  right: -28px;
  width: 180px;
  height: 92px;
  background: #7fc16c;
}

.service-broadcast-visual--content::after {
  left: 24px;
  width: 150px;
  height: 70px;
  background: #9ed57d;
}

.service-broadcast-visual--support::before {
  content: "";
  position: absolute;
  inset: 24px 28px 28px;
  background:
    linear-gradient(90deg, transparent 0, transparent 8px, rgba(0, 0, 0, 0.08) 8px, rgba(0, 0, 0, 0.08) 10px, transparent 10px) 0 0 / 62px 100%,
    linear-gradient(180deg, rgba(40, 40, 40, 0.95), rgba(58, 58, 58, 0.95)) 0 0 / 48px 28px,
    linear-gradient(180deg, rgba(120, 175, 255, 0.6), rgba(17, 34, 61, 0.95)) 64px 0 / 48px 28px,
    linear-gradient(180deg, rgba(179, 137, 255, 0.55), rgba(34, 25, 63, 0.95)) 128px 0 / 48px 28px,
    linear-gradient(180deg, rgba(255, 181, 112, 0.55), rgba(67, 35, 11, 0.95)) 0 40px / 48px 28px,
    linear-gradient(180deg, rgba(102, 219, 207, 0.55), rgba(13, 62, 57, 0.95)) 64px 40px / 48px 28px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(78, 78, 78, 0.95)) 128px 40px / 48px 28px,
    linear-gradient(180deg, rgba(140, 190, 255, 0.62), rgba(16, 29, 56, 0.95)) 0 80px / 48px 28px,
    linear-gradient(180deg, rgba(255, 137, 137, 0.55), rgba(68, 18, 18, 0.95)) 64px 80px / 48px 28px,
    linear-gradient(180deg, rgba(197, 255, 164, 0.62), rgba(39, 58, 17, 0.95)) 128px 80px / 48px 28px;
  background-repeat: no-repeat;
}

.service-broadcast-visual--support::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 66px;
  height: 44px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.62);
}

.service-broadcast-visual--uploaded {
  border-color: transparent;
  background: transparent;
}

.service-broadcast-visual--uploaded::before,
.service-broadcast-visual--uploaded::after {
  content: none;
}

.service-broadcast-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-extra-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 24px;
  align-items: start;
}

.service-extra-card__visual--voice {
  background: linear-gradient(135deg, #8ec2ff 0%, #2f6cc2 100%);
}

.service-extra-card__visual--voice::before,
.service-extra-card__visual--voice::after {
  content: "";
  position: absolute;
  background: transparent;
}

.service-extra-card__visual--voice::before {
  right: 92px;
  bottom: 22px;
  width: 112px;
  height: 118px;
  background:
    radial-gradient(circle at 58% 28%, rgba(255, 255, 255, 0.88) 0 28px, transparent 29px),
    radial-gradient(ellipse at 52% 90%, rgba(32, 93, 171, 0.72) 0 54px, transparent 55px),
    radial-gradient(circle at 66% 40%, rgba(255, 255, 255, 0.38) 0 38px, transparent 39px);
}

.service-extra-card__visual--voice::after {
  right: 34px;
  top: 34px;
  width: 86px;
  height: 56px;
  box-shadow:
    none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 0 0 / 72px 2px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 10px 16px / 76px 2px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 0 32px / 72px 2px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 10px 48px / 76px 2px no-repeat;
}

.service-extra-card__visual--network {
  background: linear-gradient(180deg, #f6f0ea 0%, #ece5de 100%);
}

.service-extra-card__visual--network::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 28px;
  width: 150px;
  height: 92px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(18, 24, 32, 0.92), rgba(18, 24, 32, 0.92)) 0 0 / 100% 100% no-repeat;
  box-shadow:
    110px -14px 0 -22px rgba(40, 46, 54, 0.95),
    126px 6px 0 -24px rgba(40, 46, 54, 0.95),
    0 16px 28px rgba(0, 0, 0, 0.16);
}

.service-extra-card__visual--network::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 40px;
  width: 118px;
  height: 66px;
  background:
    linear-gradient(180deg, rgba(122, 183, 255, 0.96), rgba(21, 53, 103, 0.96)) 0 0 / 100% 100% no-repeat,
    linear-gradient(180deg, rgba(86, 136, 201, 0.95), rgba(42, 79, 134, 0.95)) 126px -6px / 34px 22px no-repeat,
    linear-gradient(180deg, rgba(82, 126, 187, 0.95), rgba(35, 67, 117, 0.95)) 144px 16px / 24px 18px no-repeat;
  border-radius: 5px;
  box-shadow:
    126px -6px 0 0 rgba(21, 28, 36, 0.98),
    144px 16px 0 0 rgba(21, 28, 36, 0.98);
}

.service-extra-card__visual--uploaded {
  border-color: transparent;
  background: transparent;
}

.service-extra-card__visual--uploaded::before,
.service-extra-card__visual--uploaded::after {
  content: none;
}

.service-extra-card__visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-extra-card__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.service-extra-highlight {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #e7e7e7;
}

.service-extra-highlight__visual {
  position: relative;
  min-height: 88px;
  border: 1px solid #d8d8d8;
  background: #f7f7f7;
  overflow: hidden;
}

.service-extra-highlight__sample {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 96px;
  min-height: 24px;
  padding: 2px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  color: #444;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service-extra-highlight__audio-wrap {
  display: grid;
}

.service-extra-highlight__audio {
  width: 100%;
  min-width: 0;
}

.service-extra-highlight__visual--voice {
  background: linear-gradient(135deg, #f6f6f6, #fbfbfb);
}

.service-extra-highlight__visual--voice::before,
.service-extra-highlight__visual--voice::after,
.service-extra-highlight__visual--network::before,
.service-extra-highlight__visual--network::after {
  content: "";
  display: block;
  position: absolute;
}

.service-extra-highlight__visual--voice::before {
  inset: 0;
  background: transparent;
}

.service-extra-highlight__visual--voice::after {
  inset: 0;
  background: transparent;
}

.service-extra-highlight__visual--network {
  background: linear-gradient(135deg, #fafafa, #f2f2f2);
}

.service-extra-highlight__visual--network::before {
  inset: 0;
  background: transparent;
}

.service-extra-highlight__visual--network::after {
  inset: 0;
  background: transparent;
}

.service-extra-highlight__visual--voice.service-extra-highlight__visual--1::before {
  left: 18px;
  top: 18px;
  width: 116px;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f9a7a7, #d95466) 0 0 / 38px 28px no-repeat,
    linear-gradient(135deg, #ffffff, #ffffff) 8px 8px / 22px 10px no-repeat,
    linear-gradient(135deg, #f7dce2, #f7dce2) 44px 2px / 34px 14px no-repeat,
    linear-gradient(135deg, #efefef, #efefef) 44px 20px / 56px 12px no-repeat;
}

.service-extra-highlight__visual--voice.service-extra-highlight__visual--1::after {
  left: 90px;
  top: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(48, 48, 48, 0.92) 0 10px, transparent 11px),
    conic-gradient(from 220deg, rgba(48, 48, 48, 0.92) 0 72deg, transparent 72deg 360deg);
}

.service-extra-highlight__visual--voice.service-extra-highlight__visual--2::before {
  left: 22px;
  top: 18px;
  width: 110px;
  height: 44px;
  background:
    linear-gradient(135deg, #ffc466, #e9982e) 0 0 / 40px 28px no-repeat,
    linear-gradient(180deg, #ffffff, #ffffff) 10px 8px / 18px 9px no-repeat,
    linear-gradient(180deg, #ffffff, #ffffff) 56px 14px / 28px 8px no-repeat,
    linear-gradient(180deg, #eaeaea, #eaeaea) 56px 28px / 36px 8px no-repeat;
}

.service-extra-highlight__visual--voice.service-extra-highlight__visual--2::after {
  right: 24px;
  top: 24px;
  width: 34px;
  height: 18px;
  border: 2px solid rgba(58, 58, 58, 0.92);
  border-radius: 10px 10px 8px 8px;
  background:
    radial-gradient(circle at 8px 17px, rgba(58, 58, 58, 0.92) 0 4px, transparent 5px),
    radial-gradient(circle at 28px 17px, rgba(58, 58, 58, 0.92) 0 4px, transparent 5px);
}

.service-extra-highlight__visual--voice.service-extra-highlight__visual--3::before {
  left: 20px;
  top: 18px;
  width: 116px;
  height: 42px;
  background:
    linear-gradient(135deg, #93db78, #56b55e) 0 0 / 40px 28px no-repeat,
    linear-gradient(180deg, #ffffff, #ffffff) 12px 9px / 16px 8px no-repeat,
    linear-gradient(180deg, #f4f4f4, #f4f4f4) 54px 8px / 54px 10px no-repeat,
    linear-gradient(180deg, #e3e3e3, #e3e3e3) 54px 24px / 40px 10px no-repeat;
}

.service-extra-highlight__visual--voice.service-extra-highlight__visual--3::after {
  right: 28px;
  top: 18px;
  width: 22px;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(44, 44, 44, 0.92), rgba(44, 44, 44, 0.92)) 8px 22px / 6px 18px no-repeat,
    linear-gradient(180deg, rgba(44, 44, 44, 0.92), rgba(44, 44, 44, 0.92)) 0 0 / 22px 20px no-repeat;
}

.service-extra-highlight__visual--network.service-extra-highlight__visual--1::before {
  left: 34px;
  top: 14px;
  width: 44px;
  height: 44px;
  border: 4px solid rgba(36, 36, 36, 0.96);
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
}

.service-extra-highlight__visual--network.service-extra-highlight__visual--1::after {
  left: 92px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(36, 36, 36, 0.96);
}

.service-extra-highlight__visual--network.service-extra-highlight__visual--2::before {
  left: 26px;
  top: 20px;
  width: 102px;
  height: 38px;
  background:
    linear-gradient(180deg, rgba(31, 31, 31, 0.94), rgba(31, 31, 31, 0.94)) 0 6px / 34px 22px no-repeat,
    linear-gradient(180deg, rgba(31, 31, 31, 0.94), rgba(31, 31, 31, 0.94)) 42px 12px / 28px 16px no-repeat,
    linear-gradient(180deg, rgba(31, 31, 31, 0.94), rgba(31, 31, 31, 0.94)) 78px 0 / 18px 30px no-repeat;
}

.service-extra-highlight__visual--network.service-extra-highlight__visual--2::after {
  left: 36px;
  top: 28px;
  width: 82px;
  height: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 0 0 / 16px 12px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 28px 2px / 12px 8px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) 52px 0 / 9px 12px no-repeat;
}

.service-extra-highlight__visual--network.service-extra-highlight__visual--3::before {
  left: 44px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(36, 36, 36, 0.96);
}

.service-extra-highlight__visual--network.service-extra-highlight__visual--3::after {
  left: 59px;
  top: 26px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.service-extra-highlight__visual--uploaded {
  display: grid;
  place-items: center;
  border-color: transparent;
  background: transparent;
}

.service-extra-highlight__visual--uploaded::before,
.service-extra-highlight__visual--uploaded::after {
  content: none;
}

.service-extra-highlight__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-extra-highlight__image--contain {
  width: auto;
  height: auto;
  max-width: 72px;
  max-height: 72px;
  margin: auto;
  object-fit: contain;
}

.service-detail-page--designed .service-detail-contact-rail {
  margin-top: 30px;
  padding: 82px 0 0;
  border-top-color: #dddddd;
  background: transparent;
}

.service-detail-contact-rail__band {
  min-height: 126px;
  background: #efefef;
  display: flex;
  align-items: center;
}

.service-detail-contact-rail__inner {
  width: min(100%, 1020px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 40px;
  align-items: center;
}

.service-detail-contact-rail__copy {
  justify-self: start;
}

.service-detail-contact-rail__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #6b6b6b;
}

.service-detail-contact-rail__meta {
  display: grid;
  gap: 8px;
  width: fit-content;
  margin-inline: auto;
  justify-items: start;
  text-align: left;
}

.service-detail-contact-rail__text {
  margin: 0;
  display: block;
  color: #555;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.service-detail-contact-rail__actions {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.service-detail-contact-rail__actions .c-pill-button {
  position: relative;
  z-index: 2;
  min-height: 34px;
  padding: 6px 18px;
  border: 1px solid #c5c5c5;
  background: #fff;
  color: #232323;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.service-detail-contact-rail__actions .c-pill-button:hover,
.service-detail-contact-rail__actions .c-pill-button:focus-visible {
  background: #f8f8f8;
  border-color: #a9a9a9;
  color: #111;
}

@media (max-width: 980px) {
  .service-page--broadcast .service-page__hero-inner {
    grid-template-columns: 112px minmax(0, 1fr);
    width: min(100%, 820px);
    gap: 30px;
  }

  .service-page--broadcast .service-page__hero-mark-block {
    gap: 14px;
    padding-top: 12px;
  }

  .service-page--broadcast .service-page__hero-mark {
    width: 92px;
    height: 92px;
    border-width: 14px;
  }

  .service-page__hero-links {
    width: 100%;
  }

  .service-page__hero-link-row {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .service-page__hero-link {
    min-width: 0;
    font-size: 12px;
  }

  .service-broadcast-category-row,
  .service-extra-card__highlights {
    grid-template-columns: 1fr;
  }

  .service-broadcast-category__plus {
    display: none;
  }

  .service-broadcast-panel__summary,
  .service-extra-card__summary,
  .service-broadcast-panel__body,
  .service-extra-card__top {
    grid-template-columns: 1fr;
  }

  .service-support-flow__diagram {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    gap: 16px;
  }

  .service-support-flow__arrow--diagram {
    transform: rotate(90deg);
  }

  .service-support-flow__steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-support-flow__cluster {
    width: min(100%, 320px);
  }

  .service-extra-card__body--voice {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-broadcast-visual,
  .service-extra-card__visual {
    min-height: 0;
  }

  .service-detail-contact-rail__inner {
    grid-template-columns: 160px minmax(0, 1fr) 180px;
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .service-page--broadcast .service-page__contact-rail-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .service-page--broadcast .service-page__contact-band {
    min-height: 148px;
  }

  .service-page--broadcast .service-page__contact-meta {
    justify-items: start;
    text-align: left;
  }

  .service-page--broadcast .service-page__contact-action {
    justify-self: start;
  }

  .service-detail-contact-rail__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .service-detail-contact-rail__band {
    min-height: 148px;
  }

  .service-detail-contact-rail__meta {
    justify-items: start;
    text-align: left;
  }

  .service-detail-contact-rail__actions {
    justify-self: start;
    width: 100%;
    max-width: 240px;
  }
}

@media (max-width: 720px) {
  .service-page--broadcast .service-page__hero {
    padding: 94px 0 82px;
  }

  .service-page--broadcast .service-page__hero-inner {
    grid-template-columns: 1fr;
    width: min(100%, 580px);
    gap: 22px;
  }

  .service-page--broadcast .service-page__hero-mark-block {
    justify-items: center;
    gap: 12px;
    padding-top: 0;
  }

  .service-page--broadcast .service-page__hero-mark {
    width: 82px;
    height: 82px;
    border-width: 12px;
  }

  .service-page--broadcast .service-page__hero-copy {
    text-align: center;
  }

  .service-page--broadcast .service-page__hero-side {
    display: none;
  }

  .service-page--broadcast .service-page__title {
    font-size: clamp(24px, 6.4vw, 34px);
  }

  .service-page--broadcast .service-page__hero-page-name {
    font-size: clamp(18px, 4.6vw, 24px);
  }

  .service-page--broadcast .service-page__lead {
    margin-top: 20px;
    max-width: none;
    font-size: 14px;
  }

  .service-page__hero-links {
    margin: 28px auto 0;
  }

  .service-page__hero-link-row {
    justify-content: center;
  }

  .service-page__hero-link {
    justify-content: center;
    padding-inline: 8px;
  }

  .service-broadcast-section {
    padding: 32px 0 28px;
  }

  .service-broadcast-panel,
  .service-extra-card {
    padding: 22px 18px 22px;
  }

  .service-broadcast-panel--content,
  .service-broadcast-panel--accordion,
  .service-extra-card--accordion {
    padding: 22px 18px 18px;
  }

  .service-broadcast-category {
    min-height: 104px;
  }

  .service-system-row {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    text-align: center;
    padding-bottom: 0;
  }

  .service-system-row__link {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    justify-self: center;
    margin-top: 4px;
  }

  .service-page--broadcast .service-page__contact-rail {
    margin-top: 22px;
    padding: 46px 0 0;
  }

  .service-page--broadcast .service-page__contact-rail-inner {
    justify-items: center;
    text-align: center;
  }

  .service-page--broadcast .service-page__contact-band {
    min-height: 164px;
  }

  .service-page--broadcast .service-page__contact-meta {
    justify-items: start;
    text-align: left;
  }

  .service-page--broadcast .service-page__contact-action {
    justify-self: center;
  }

  .service-page--broadcast .service-page__contact-rail .c-pill-button {
    width: 100%;
    max-width: 240px;
  }

  .service-detail-page--designed .service-detail-contact-rail {
    margin-top: 22px;
    padding: 46px 0 0;
  }

  .service-detail-contact-rail__inner {
    justify-items: center;
    text-align: center;
  }

  .service-detail-contact-rail__band {
    min-height: 164px;
  }

  .service-detail-contact-rail__meta {
    justify-items: start;
    text-align: left;
  }

  .service-detail-contact-rail__actions {
    justify-self: center;
  }

  .service-detail-contact-rail__actions .c-pill-button {
    width: 100%;
    max-width: 240px;
  }

  .service-support-grid {
    grid-template-columns: 1fr;
  }

  .service-broadcast-chip-list {
    justify-content: center;
  }

  .service-support-flow__cluster {
    grid-template-columns: 1fr;
    width: min(100%, 230px);
  }

  .service-support-flow__goal {
    font-size: 22px;
  }
}

.service-pdf-hero {
  padding: 112px 0 58px;
  border-bottom: 1px solid var(--color-line);
}

.service-pdf-hero__inner {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.service-pdf-hero__branding {
  display: grid;
  justify-items: start;
}

.service-pdf-hero__logo-image {
  display: block;
  width: min(100%, 184px);
  height: auto;
}

.service-pdf-hero__logo-art {
  position: relative;
  width: 132px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #d9e1d8;
  background: #f3f8f2;
}

.service-pdf-hero__logo-sky,
.service-pdf-hero__logo-hill {
  position: absolute;
  left: 0;
  right: 0;
}

.service-pdf-hero__logo-sky {
  top: 0;
  height: 63%;
  background: #d7edf8;
}

.service-pdf-hero__logo-hill {
  border-radius: 50% 50% 0 0;
}

.service-pdf-hero__logo-hill--back {
  bottom: 12%;
  height: 34%;
  background: #bed575;
  transform: translateX(-16%);
}

.service-pdf-hero__logo-hill--front {
  bottom: -8%;
  height: 40%;
  background: #87af2d;
  transform: translateX(18%);
}

.service-pdf-hero__copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.service-pdf-hero__label,
.service-pdf-feature-row__label {
  margin: 0;
  color: #7a7a7a;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-pdf-hero__eyebrow {
  margin: 0;
  color: #7a7a7a;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.service-pdf-hero__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.service-pdf-hero__body {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.service-pdf-hero__body p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.9;
}

.service-pdf-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-pdf-hero__meta li {
  padding: 7px 15px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.service-pdf-hero__meta--bar {
  gap: 10px 24px;
}

.service-pdf-hero__meta--bar li {
  min-width: 88px;
  padding: 0 2px 8px;
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: left;
}

.service-pdf-hero--content-sales .service-pdf-hero__inner {
  width: min(100%, 920px);
  margin-inline: auto;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.service-pdf-hero--content-sales {
  padding: 126px 0 84px;
  border-bottom: 0;
}

.service-pdf-hero--content-sales .service-pdf-hero__branding {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 18px;
  padding-top: 18px;
}

.service-pdf-hero__label--content-sales {
  color: #1e1e1e;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: none;
}

.service-pdf-hero--content-sales .service-pdf-hero__logo-image {
  width: 118px;
  padding: 12px;
  border: 17px solid #111;
  background: #fff;
  box-sizing: border-box;
}

.service-pdf-hero--content-sales .service-pdf-hero__logo-image--uploaded {
  width: auto;
  max-width: 118px;
  padding: 0;
  border: 0;
  background: transparent;
  box-sizing: content-box;
}

.service-pdf-hero--content-sales .service-pdf-hero__copy {
  gap: 0;
}

.service-pdf-hero--content-sales .service-pdf-hero__eyebrow {
  margin: 0;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #222;
}

.service-pdf-hero--content-sales .service-pdf-hero__title {
  margin-top: 10px;
  font-size: clamp(28px, 3.55vw, 46px);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #161616;
}

.service-pdf-hero--content-sales .service-pdf-hero__body {
  margin-top: 30px;
  max-width: 620px;
  gap: 12px;
}

.service-pdf-hero--content-sales .service-pdf-hero__body p {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.service-pdf-hero--content-sales .service-pdf-hero__meta {
  width: fit-content;
  margin-top: 36px;
}

.service-pdf-hero--content-sales .service-pdf-hero__meta--bar {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px 20px;
}

.service-pdf-hero--content-sales .service-pdf-hero__meta--bar li {
  min-width: 98px;
  padding: 0 8px 7px;
  border-bottom: 1px solid #b5b5b5;
  color: #101010;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: left;
}

.service-pdf-hero--advertising {
  padding: 136px 0 108px;
  border-bottom-color: #222;
}

.service-pdf-hero__inner--advertising {
  width: min(100%, 920px);
  margin-inline: auto;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.service-page__hero-mark-block--advertising {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 18px;
  padding-top: 18px;
}

.service-page__hero-kicker--advertising {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: none;
  color: #1e1e1e;
}

.service-page__hero-mark--advertising {
  width: 118px;
  height: 118px;
  margin-top: 0;
  border-width: 17px;
}

.service-page__hero-page-name--advertising {
  margin-top: 0;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #222;
}

.service-page__title--advertising {
  margin-top: 10px;
  font-size: clamp(28px, 3.55vw, 46px);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #161616;
}

.service-page__lead--advertising {
  margin-top: 30px;
  max-width: 620px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.service-page__lead--advertising p + p {
  margin-top: 12px;
}

.service-page__hero-links--advertising {
  margin-top: 36px;
}

.service-page__hero-link--static {
  cursor: default;
}

.service-page__hero-link--static:hover,
.service-page__hero-link--static:focus-visible {
  color: #101010;
  border-bottom-color: #cfcfcf;
}

.service-pdf-hero--channel-operations {
  padding: 136px 0 72px;
  border-bottom-color: #222;
}

.service-pdf-hero__inner--channel {
  width: min(100%, 920px);
  margin-inline: auto;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.service-page__hero-mark-block--channel {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 18px;
  padding-top: 18px;
}

.service-page__hero-kicker--channel {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: none;
  color: #1e1e1e;
}

.service-page__hero-mark--channel {
  width: 118px;
  height: 118px;
  margin-top: 0;
  border-width: 17px;
}

.service-page__hero-page-name--channel {
  margin-top: 0;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #222;
}

.service-page__title--channel {
  margin-top: 10px;
  font-size: clamp(28px, 3.55vw, 46px);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #161616;
}

.service-page__lead--channel {
  margin-top: 30px;
  max-width: 700px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.service-page__hero-links--channel {
  width: min(100%, 760px);
  margin-top: 34px;
}

.service-page__hero-links--channel .service-page__hero-link-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 22px;
  width: 100%;
}

.service-page__hero-links--channel .service-page__hero-link {
  min-width: 0;
  min-height: 42px;
  padding: 0 2px 8px;
  align-items: flex-end;
  justify-content: flex-start;
  white-space: normal;
  line-height: 1.45;
}

.service-pdf-hero--force {
  padding: 126px 0 84px;
}

.service-pdf-hero--multi-screen {
  padding: 108px 0 84px;
}

.service-pdf-hero--mojic {
  padding: 118px 0 84px;
}

.service-pdf-hero__force-shell {
  display: grid;
  gap: 46px;
  max-width: 1040px;
  margin-inline: auto;
}

.service-pdf-hero__force-head {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  width: min(100%, 760px);
  margin-inline: auto;
}

.service-pdf-hero--force .service-pdf-hero__branding {
  justify-items: center;
  width: min(100%, 124px);
  margin-inline: auto;
}

.service-pdf-hero--multi-screen .service-pdf-hero__branding {
  justify-items: center;
  width: min(100%, 124px);
  margin-inline: auto;
}

.service-pdf-hero--mojic .service-pdf-hero__branding {
  justify-items: center;
}

.service-pdf-hero--force .service-pdf-hero__logo-image {
  width: auto;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

.service-pdf-hero--multi-screen .service-pdf-hero__logo-image {
  width: auto;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

.service-pdf-hero--mojic .service-pdf-hero__logo-image {
  width: min(100%, 138px);
}

.service-pdf-hero--multi-screen .service-pdf-hero__force-shell {
  max-width: 980px;
  gap: 40px;
}

.service-pdf-hero--mojic .service-pdf-hero__force-shell {
  max-width: 980px;
  gap: 40px;
}

.service-pdf-hero--multi-screen .service-pdf-hero__force-head {
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 32px;
  width: min(100%, 700px);
}

.service-pdf-hero--force .service-pdf-hero__force-head {
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 36px;
  width: min(100%, 728px);
}

.service-pdf-hero--mojic .service-pdf-hero__force-head {
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 44px;
  width: min(100%, 760px);
}

.service-pdf-hero__force-title-wrap {
  display: grid;
  align-items: center;
  min-width: 0;
}

.service-pdf-hero--force .service-pdf-hero__title {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.service-pdf-hero--multi-screen .service-pdf-hero__title {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-wrap: balance;
}

.service-pdf-hero--mojic .service-pdf-hero__title {
  font-size: clamp(28px, 2.9vw, 44px);
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.service-pdf-hero__body--force {
  gap: 4px;
  max-width: 760px;
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}

.service-pdf-hero__body--force p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.service-detail-page--force,
.service-detail-page--multi-screen,
.service-detail-page--mojic {
  overflow-x: hidden;
}

.service-pdf-hero--multi-screen .service-pdf-hero__body--force {
  max-width: 820px;
  gap: 2px;
}

.service-pdf-hero--multi-screen .service-pdf-hero__body--force p {
  font-size: 13px;
  line-height: 1.95;
}

.service-pdf-hero--mojic .service-pdf-hero__body--force {
  max-width: 760px;
  gap: 2px;
}

.service-pdf-hero--mojic .service-pdf-hero__body--force p {
  font-size: 13px;
  line-height: 1.95;
}

.service-pdf-features {
  padding: 62px 0 24px;
}

.service-pdf-feature-row {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-top: 1px solid var(--color-line);
}

.service-pdf-feature-row:last-child {
  border-bottom: 1px solid var(--color-line);
}

.service-pdf-feature-row__media {
  display: flex;
  align-items: center;
  padding: 34px 28px 34px 8px;
}

.service-pdf-feature-row__media img {
  display: block;
  width: 100%;
  max-width: 292px;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-pdf-feature-row__copy {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 260px;
  padding: 34px 16px 34px 34px;
  border-left: 1px solid var(--color-line);
}

.service-pdf-feature-row__title {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.32;
}

.service-pdf-feature-row__text {
  margin: 0;
  max-width: 500px;
  color: #3a3a3a;
  font-size: 13px;
  line-height: 1.9;
}

.service-detail-page--force .service-pdf-features,
.service-detail-page--multi-screen .service-pdf-features,
.service-detail-page--mojic .service-pdf-features {
  padding: 0 0 24px;
}

.service-detail-page--force .service-pdf-gallery,
.service-detail-page--multi-screen .service-pdf-gallery,
.service-detail-page--mojic .service-pdf-gallery {
  padding: 56px 0 42px;
}

.service-detail-page--force .service-pdf-gallery,
.service-detail-page--force .service-force-scenario,
.service-detail-page--force .service-force-demo,
.service-detail-page--multi-screen .service-pdf-gallery,
.service-detail-page--multi-screen .service-force-scenario,
.service-detail-page--multi-screen .service-force-demo,
.service-detail-page--mojic .service-pdf-gallery {
  position: relative;
}

.service-detail-page--force .service-force-scenario::before,
.service-detail-page--force .service-force-demo::before,
.service-detail-page--multi-screen .service-force-scenario::before,
.service-detail-page--multi-screen .service-force-demo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid #222;
  pointer-events: none;
}

.service-detail-page--force .service-pdf-gallery::before,
.service-detail-page--multi-screen .service-pdf-gallery::before,
.service-detail-page--mojic .service-pdf-gallery::before {
  display: none;
}

.service-pdf-feature-row--force {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: 0;
}

.service-pdf-feature-row--force:last-child {
  border-bottom: 0;
}

.service-pdf-feature-row--force:first-child::before,
.service-pdf-feature-row--force:last-child::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid #222;
  pointer-events: none;
}

.service-pdf-feature-row--force:first-child::before {
  top: 0;
}

.service-pdf-feature-row--force:last-child::after {
  bottom: 0;
}

.service-pdf-feature-row--force .service-pdf-feature-row__media {
  justify-content: flex-end;
  padding: 38px 54px 38px 0;
}

.service-pdf-feature-row--force .service-pdf-feature-row__media img {
  max-width: 360px;
  border: 0;
}

.service-pdf-feature-row--force .service-pdf-feature-row__copy {
  min-height: 214px;
  padding: 38px 0 38px 52px;
  gap: 0;
  border-left: 1px solid #222;
}

.service-pdf-feature-row--force + .service-pdf-feature-row--force .service-pdf-feature-row__copy {
  border-top: 1px solid #222;
}

.service-detail-page--force .service-pdf-feature-row__label,
.service-detail-page--multi-screen .service-pdf-feature-row__label,
.service-detail-page--mojic .service-pdf-feature-row__label {
  color: #161616;
  font-size: clamp(26px, 2.5vw, 36px);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 18px;
}

.service-detail-page--force .service-pdf-feature-row__title,
.service-detail-page--multi-screen .service-pdf-feature-row__title,
.service-detail-page--mojic .service-pdf-feature-row__title {
  color: #1c1c1c;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 58px;
}

.service-detail-page--force .service-pdf-feature-row__text,
.service-detail-page--multi-screen .service-pdf-feature-row__text,
.service-detail-page--mojic .service-pdf-feature-row__text {
  max-width: 420px;
  color: #262626;
  line-height: 1.95;
}

.service-detail-page--force .service-pdf-gallery__head,
.service-detail-page--multi-screen .service-pdf-gallery__head,
.service-detail-page--mojic .service-pdf-gallery__head {
  max-width: 660px;
  gap: 0;
  margin-bottom: 34px;
}

.service-pdf-gallery__label {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  width: fit-content;
  padding: 3px 14px;
  border: 1px solid #222;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.service-detail-page--force .service-pdf-gallery__intro,
.service-detail-page--multi-screen .service-pdf-gallery__intro,
.service-detail-page--mojic .service-pdf-gallery__intro {
  max-width: 620px;
  margin-inline: auto;
  color: #2c2c2c;
  line-height: 1.95;
}

.service-detail-page--multi-screen .service-pdf-gallery__intro-group {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.service-detail-page--force .service-pdf-gallery__title--force {
  max-width: 620px;
  margin: 24px auto 0;
  color: #161616;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
}

.service-detail-page--multi-screen .service-pdf-gallery__title--multi-screen {
  max-width: 680px;
  margin: 24px auto 0;
  color: #161616;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.service-detail-page--mojic .service-pdf-gallery__title--mojic {
  max-width: 680px;
  margin: 24px auto 0;
  color: #161616;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.service-detail-page--force .service-pdf-gallery__intro {
  margin-top: 16px;
  font-size: 13px;
}

.service-detail-page--force .service-pdf-gallery__grid--force,
.service-detail-page--multi-screen .service-pdf-gallery__grid--force,
.service-detail-page--mojic .service-pdf-gallery__grid--force {
  max-width: 1080px;
  gap: 28px;
  margin-inline: auto;
}

.service-detail-page--force .service-reference-card,
.service-detail-page--multi-screen .service-reference-card,
.service-detail-page--mojic .service-reference-card {
  border: 0;
  background: transparent;
}

.service-detail-page--force .service-reference-card__copy,
.service-detail-page--multi-screen .service-reference-card__copy,
.service-detail-page--mojic .service-reference-card__copy {
  gap: 8px;
  padding: 16px 0 0;
  justify-items: center;
  text-align: center;
}

.service-detail-page--force .service-reference-card__title,
.service-detail-page--multi-screen .service-reference-card__title,
.service-detail-page--mojic .service-reference-card__title {
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.service-detail-page--force .service-reference-card__text,
.service-detail-page--mojic .service-reference-card__text {
  color: #2f2f2f;
  font-size: 12px;
  line-height: 1.8;
}

.service-detail-page--multi-screen .service-reference-card__points {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2f2f2f;
  font-size: 10px;
  line-height: 1.8;
  justify-items: center;
}

.service-detail-page--force .service-force-scenario,
.service-detail-page--multi-screen .service-force-scenario {
  padding: 54px 0 46px;
}

.service-detail-page--force .service-force-scenario__head,
.service-detail-page--multi-screen .service-force-scenario__head {
  max-width: 980px;
  margin: 0 auto 28px;
  display: grid;
  gap: 14px;
  text-align: left;
  justify-items: start;
}

.service-detail-page--force .service-force-scenario__title,
.service-detail-page--multi-screen .service-force-scenario__title {
  color: #171717;
}

.service-detail-page--force .service-force-scenario__intro,
.service-detail-page--multi-screen .service-force-scenario__intro {
  color: #2d2d2d;
}

.service-detail-page--force .service-force-scenario__figure,
.service-detail-page--multi-screen .service-force-scenario__figure {
  max-width: 980px;
}

.service-detail-page--force .service-force-demo,
.service-detail-page--multi-screen .service-force-demo {
  padding: 46px 0 58px;
}

.service-detail-page--force .service-force-demo__grid,
.service-detail-page--multi-screen .service-force-demo__grid {
  max-width: 1040px;
  margin: 28px auto 0;
  gap: 26px;
}

.service-detail-page--force .service-force-demo__item,
.service-detail-page--multi-screen .service-force-demo__item {
  padding: 0;
  gap: 10px;
  border: 0;
  background: transparent;
}

.service-detail-page--force .service-force-demo__placeholder,
.service-detail-page--multi-screen .service-force-demo__placeholder {
  min-height: 228px;
  border: 0;
  background: #f5f7f8;
  overflow: hidden;
}

.service-detail-page--force .service-force-demo__placeholder--media,
.service-detail-page--multi-screen .service-force-demo__placeholder--media {
  background: transparent;
}

.service-detail-page--force .service-force-demo__placeholder img,
.service-detail-page--force .service-force-demo__placeholder video,
.service-detail-page--multi-screen .service-force-demo__placeholder img,
.service-detail-page--multi-screen .service-force-demo__placeholder video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 228px;
}

.service-detail-page--force .service-force-demo__placeholder video,
.service-detail-page--multi-screen .service-force-demo__placeholder video {
  background: #000;
  object-fit: contain;
}

.service-detail-page--force .service-force-demo__item-title,
.service-detail-page--multi-screen .service-force-demo__item-title {
  color: #202020;
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}

.service-detail-page--force .service-force-demo__item-text,
.service-detail-page--multi-screen .service-force-demo__item-text {
  color: #444;
  font-size: 10px;
  text-align: center;
}

.service-pdf-gallery {
  padding: 40px 0 30px;
}

.service-pdf-gallery__head {
  max-width: 760px;
  margin: 0 auto 26px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.service-pdf-gallery__title,
.service-force-scenario__title,
.service-force-demo__title,
.service-content-overview__title,
.service-content-catalog__title,
.service-content-flow__title,
.service-content-examples__title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.3;
}

.service-pdf-gallery__intro,
.service-force-scenario__intro,
.service-content-flow__note,
.service-content-flow__term {
  margin: 0;
  color: #444;
  font-size: 13px;
  line-height: 1.9;
}

.service-pdf-gallery__grid {
  display: grid;
  gap: 22px;
}

.service-pdf-gallery__grid--force,
.service-pdf-gallery__grid--mojic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-reference-card {
  border: 1px solid var(--color-line);
  background: #fff;
  display: grid;
  align-content: start;
}

.service-reference-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.service-reference-card--mojic .service-reference-card__image {
  aspect-ratio: 1.92;
  overflow: hidden;
}

.service-reference-card--mojic .service-reference-card__image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.service-reference-card__copy {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
}

.service-reference-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.service-reference-card__text {
  margin: 0;
  color: #515151;
  font-size: 13px;
  line-height: 1.8;
}

.service-force-scenario {
  padding: 36px 0 30px;
}

.service-force-scenario__figure {
  max-width: 1050px;
  margin: 0 auto;
}

.service-force-scenario__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.service-force-scenario__inner {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.service-force-scenario__timeline {
  display: grid;
  gap: 14px;
}

.service-force-scenario__steps {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 26px;
}

.service-force-scenario__steps::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, #66cf73 0%, #95d84a 48%, #c73557 100%);
}

.service-force-scenario__step {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--color-line);
  background: #fff;
}

.service-force-scenario__step::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.service-force-scenario__step--mint {
  color: #31b46b;
}

.service-force-scenario__step--lime {
  color: #8dbe28;
}

.service-force-scenario__step--rose {
  color: #d94768;
}

.service-force-scenario__step-label {
  margin: 0;
  color: #121212;
  font-size: 17px;
  font-weight: 600;
}

.service-force-scenario__step-body {
  margin: 0;
  color: #464646;
  font-size: 13px;
  line-height: 1.8;
}

.service-force-scenario__cards {
  display: grid;
  gap: 16px;
}

.service-force-scenario-card {
  display: grid;
  grid-template-columns: 192px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--color-line);
  background: #fff;
}

.service-force-scenario-card--green {
  box-shadow: inset 4px 0 0 #7bcf71;
}

.service-force-scenario-card--amber {
  box-shadow: inset 4px 0 0 #efb752;
}

.service-force-scenario-card--rose {
  box-shadow: inset 4px 0 0 #ea8b8e;
}

.service-force-scenario-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.service-force-scenario-card__copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.service-force-scenario-card__label {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-force-scenario-card__text,
.service-force-scenario__footer,
.service-force-demo__item-text,
.service-content-example-card__text {
  margin: 0;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.8;
}

.service-force-scenario__footer {
  text-align: right;
}

.service-force-demo {
  padding: 26px 0 36px;
}

.service-force-demo__title {
  text-align: center;
}

.service-force-demo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.service-force-demo__item {
  border: 1px solid var(--color-line);
  background: #fff;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.service-force-demo__placeholder {
  min-height: 210px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(55, 181, 229, 0.2), rgba(15, 56, 115, 0.06));
}

.service-force-demo__item-title,
.service-content-example-card__title,
.service-content-catalog-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.service-detail-page--content-sales .service-content-overview,
.service-detail-page--content-sales .service-content-catalog,
.service-detail-page--content-sales .service-content-flow,
.service-detail-page--content-sales .service-content-examples {
  position: relative;
}

.service-detail-page--content-sales .service-content-overview::before,
.service-detail-page--content-sales .service-content-catalog::before,
.service-detail-page--content-sales .service-content-flow::before,
.service-detail-page--content-sales .service-content-examples::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(calc(100% - 48px), 1080px);
  border-top: 1px solid #222;
  transform: translateX(-50%);
  pointer-events: none;
}

.service-content-overview {
  padding: 88px 0;
}

.service-content-overview .l-container,
.service-content-catalog .l-container {
  width: min(100%, 1080px);
  margin-inline: auto;
}

.service-content-overview__title,
.service-content-catalog__title,
.service-content-examples__title {
  text-align: center;
}

.service-content-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
  align-items: start;
}

.service-content-overview__item {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.service-content-overview__visual {
  position: relative;
  width: min(100%, 164px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #dff1fb 0%, #dff1fb 68%, #d0e094 68%, #d0e094 100%);
}

.service-content-overview__visual--image {
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.service-content-overview__visual--image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  place-self: center;
}

.service-content-overview__cloud,
.service-content-overview__hill {
  position: absolute;
}

.service-content-overview__cloud {
  top: 26px;
  width: 64px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.service-content-overview__cloud::before,
.service-content-overview__cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.service-content-overview__cloud::before {
  left: 10px;
  bottom: 10px;
  width: 20px;
  height: 20px;
}

.service-content-overview__cloud::after {
  right: 8px;
  bottom: 12px;
  width: 18px;
  height: 18px;
}

.service-content-overview__cloud--left {
  left: 24px;
}

.service-content-overview__cloud--right {
  display: none;
}

.service-content-overview__hill {
  left: -6%;
  right: -6%;
  border-radius: 50% 50% 0 0;
}

.service-content-overview__hill--back {
  bottom: 14px;
  height: 26%;
  background: #b9d266;
}

.service-content-overview__hill--front {
  bottom: -18px;
  height: 30%;
  background: #7da61c;
  transform: translateX(10%);
}

.service-content-overview__label {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.service-content-overview__body {
  width: min(100%, 760px);
  margin: 52px auto 0;
  text-align: center;
}

.service-content-overview__body p {
  margin: 0;
  color: #222;
  font-size: 14px;
  line-height: 1.95;
}

.service-content-overview__body p + p {
  margin-top: 8px;
}

.service-content-catalog {
  padding: 88px 0;
}

.service-content-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
  align-items: stretch;
}

.service-content-catalog-card {
  border: 1px solid #222;
  background: transparent;
  min-height: 360px;
  height: 100%;
  padding: 22px 18px 18px;
  display: grid;
  grid-template-rows: auto 128px 1fr;
  gap: 16px;
  align-content: start;
  justify-items: stretch;
  text-align: left;
}

.service-content-catalog-card__icon {
  position: relative;
  width: min(100%, 152px);
  height: 128px;
  display: grid;
  place-items: center;
  justify-self: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.service-content-catalog-card__icon img {
  position: absolute;
  inset: 10px 12px;
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 20px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  margin: 0;
}

.service-content-catalog-card__glyph {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
}

.service-content-catalog-card__glyph::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.service-content-catalog-card__glyph--1::before {
  content: "緊";
}

.service-content-catalog-card__glyph--2::before {
  content: "気";
}

.service-content-catalog-card__glyph--3::before {
  content: "L";
}

.service-content-catalog-card__glyph--4::before {
  content: "天";
}

.service-content-catalog-card__glyph--5::before {
  content: "交";
}

.service-content-catalog-card__glyph--6::before {
  content: "生";
}

.service-content-catalog-card__title {
  text-align: center;
}

.service-content-catalog-card__body {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.service-content-catalog-card__list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  font-size: 11px;
  line-height: 1.75;
  justify-items: center;
  text-align: center;
}

.service-content-flow {
  padding: 88px 0;
}

.service-content-flow .l-container {
  width: min(100%, 1080px);
  margin-inline: auto;
  border: 1px solid #222;
  background: transparent;
  padding: 30px 36px 34px;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.service-content-flow__steps {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 0;
  padding-inline: 4px;
  padding-bottom: 0;
}

.service-content-flow__step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.service-content-flow__step-text {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  min-height: 176px;
  padding: 16px 0;
  border: 1px solid #1a1a1a;
  border-radius: 28px;
  background: #fff;
  background-image: none;
  color: #0d0d0d;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.service-content-flow__arrow {
  color: #222;
  font-size: 18px;
}

.service-content-flow__note {
  margin-top: 18px;
  color: #232323;
  font-size: 14px;
  font-weight: 500;
}

.service-content-flow__term {
  margin-top: 2px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.service-content-examples {
  padding: 88px 0;
}

.service-content-examples .l-container {
  width: min(100%, 1080px);
  margin-inline: auto;
  border: 1px solid #222;
  padding: 34px 36px 38px;
}

.service-content-examples__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-content-example-card {
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 14px;
}

.service-content-example-card__visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, #dff1fb 0%, #dff1fb 68%, #d0e094 68%, #d0e094 100%);
}

.service-content-example-card__visual--image {
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.service-content-example-card__visual--image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  place-self: center;
}

.service-content-example-card__cloud,
.service-content-example-card__hill {
  position: absolute;
}

.service-content-example-card__cloud {
  top: 34px;
  width: 82px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.service-content-example-card__cloud::before,
.service-content-example-card__cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.service-content-example-card__cloud::before {
  left: 12px;
  bottom: 12px;
  width: 26px;
  height: 26px;
}

.service-content-example-card__cloud::after {
  right: 10px;
  bottom: 14px;
  width: 22px;
  height: 22px;
}

.service-content-example-card__cloud--left {
  left: 34px;
}

.service-content-example-card__cloud--right {
  right: 46px;
}

.service-content-example-card__hill {
  left: -6%;
  right: -6%;
  border-radius: 50% 50% 0 0;
}

.service-content-example-card__hill--back {
  bottom: 18px;
  height: 34%;
  background: #b9d266;
}

.service-content-example-card__hill--front {
  bottom: -24px;
  height: 38%;
  background: #7da61c;
  transform: translateX(10%);
}

.service-content-example-card__copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

@media (max-width: 980px) {
  .service-pdf-hero {
    padding: 92px 0 48px;
  }

  .service-pdf-hero__inner,
  .service-pdf-hero--content-sales .service-pdf-hero__inner,
  .service-force-scenario__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-pdf-hero--content-sales {
    padding: 108px 0 72px;
  }

  .service-pdf-hero--advertising {
    padding: 104px 0 60px;
  }

  .service-pdf-hero--channel-operations {
    padding: 104px 0 58px;
  }

  .service-pdf-hero--force {
    padding: 108px 0 60px;
  }

  .service-pdf-hero--multi-screen {
    padding: 96px 0 58px;
  }

  .service-pdf-hero--mojic {
    padding: 104px 0 58px;
  }

  .service-pdf-hero__force-shell {
    gap: 30px;
  }

  .service-pdf-hero__force-head {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 560px);
  }

  .service-pdf-hero--multi-screen .service-pdf-hero__force-head {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 560px);
  }

  .service-pdf-hero--mojic .service-pdf-hero__force-head {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 560px);
  }

  .service-pdf-hero__force-title-wrap,
  .service-pdf-hero__body--force {
    text-align: center;
    justify-items: center;
  }

  .service-pdf-hero__branding {
    justify-items: center;
  }

  .service-pdf-hero--content-sales .service-pdf-hero__branding {
    justify-items: center;
    gap: 14px;
    padding-top: 0;
  }

  .service-pdf-hero--content-sales .service-pdf-hero__copy {
    text-align: center;
  }

  .service-pdf-hero--advertising .service-pdf-hero__inner {
    width: min(100%, 580px);
  }

  .service-pdf-hero--channel-operations .service-pdf-hero__inner {
    width: min(100%, 580px);
  }

  .service-page__hero-mark-block--advertising {
    justify-items: center;
    gap: 14px;
    padding-top: 0;
  }

  .service-page__hero-mark-block--channel {
    justify-items: center;
    gap: 14px;
    padding-top: 0;
  }

  .service-page__hero-mark--advertising {
    width: 92px;
    height: 92px;
    border-width: 14px;
  }

  .service-page__hero-mark--channel {
    width: 92px;
    height: 92px;
    border-width: 14px;
  }

  .service-page__hero-copy--advertising {
    text-align: center;
  }

  .service-page__hero-copy--channel {
    text-align: center;
  }

  .service-page__lead--advertising {
    margin: 22px auto 0;
    max-width: none;
  }

  .service-page__lead--channel {
    margin: 22px auto 0;
    max-width: none;
  }

  .service-page__hero-links--channel {
    margin-inline: auto;
  }

  .service-pdf-hero--content-sales .service-pdf-hero__body {
    margin-top: 22px;
    max-width: none;
  }

  .service-pdf-hero--content-sales .service-pdf-hero__meta {
    margin-inline: auto;
  }

  .service-pdf-hero__copy,
  .service-pdf-gallery__head,
  .service-force-demo__title,
  .service-content-overview__title,
  .service-content-catalog__title,
  .service-content-examples__title {
    text-align: center;
  }

  .service-pdf-hero__meta {
    justify-content: center;
  }

  .service-pdf-feature-row {
    grid-template-columns: 1fr;
  }

  .service-pdf-feature-row__copy {
    min-height: 0;
    padding: 0 0 30px;
    border-left: 0;
  }

  .service-pdf-feature-row__media {
    padding: 28px 0 18px;
  }

  .service-pdf-feature-row--force .service-pdf-feature-row__media {
    justify-content: center;
    padding: 32px 0 18px;
  }

  .service-pdf-feature-row--force .service-pdf-feature-row__copy {
    padding: 0 0 32px;
    justify-items: center;
    text-align: center;
    border-left: 0;
  }

  .service-pdf-feature-row--force + .service-pdf-feature-row--force .service-pdf-feature-row__copy {
    border-top: 1px solid #222;
  }

  .service-detail-page--force .service-force-demo__grid,
  .service-detail-page--multi-screen .service-force-demo__grid {
    gap: 20px;
  }

  .service-content-overview .l-container,
  .service-content-catalog .l-container,
  .service-content-flow .l-container,
  .service-content-examples .l-container {
    padding-inline: 24px;
  }

  .service-content-overview,
  .service-content-catalog,
  .service-content-flow,
  .service-content-examples {
    padding-block: 72px;
  }

  .service-content-overview__grid,
  .service-pdf-gallery__grid--force,
  .service-pdf-gallery__grid--mojic,
  .service-content-catalog__grid,
  .service-force-demo__grid,
  .service-content-examples__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-pdf-hero__title {
    font-size: 30px;
  }

  .service-pdf-hero--force .service-pdf-hero__title {
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .service-pdf-hero--multi-screen .service-pdf-hero__title {
    font-size: 26px;
    letter-spacing: 0.04em;
  }

  .service-pdf-hero--mojic .service-pdf-hero__title {
    font-size: 26px;
    letter-spacing: 0.03em;
  }

  .service-pdf-hero--content-sales .service-pdf-hero__title {
    font-size: clamp(24px, 6.4vw, 34px);
  }

  .service-page__title--advertising {
    font-size: clamp(24px, 6.4vw, 34px);
  }

  .service-page__title--channel {
    font-size: clamp(24px, 6.4vw, 34px);
  }

  .service-page__hero-page-name--advertising {
    font-size: clamp(18px, 4.6vw, 24px);
  }

  .service-page__hero-page-name--channel {
    font-size: clamp(18px, 4.6vw, 24px);
  }

  .service-page__hero-mark--advertising {
    width: 82px;
    height: 82px;
    border-width: 12px;
  }

  .service-page__hero-mark--channel {
    width: 82px;
    height: 82px;
    border-width: 12px;
  }

  .service-page__hero-links--channel .service-page__hero-link-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .service-page__hero-links--channel .service-page__hero-link {
    min-height: 38px;
    font-size: 12px;
  }

  .service-pdf-hero--content-sales .service-pdf-hero__eyebrow {
    font-size: clamp(18px, 4.6vw, 24px);
  }

  .service-pdf-hero__body p,
  .service-pdf-gallery__intro,
  .service-force-scenario__intro,
  .service-content-overview__body p,
  .service-content-flow__note,
  .service-content-flow__term {
    font-size: 12px;
  }

  .service-pdf-hero__body--force p {
    font-size: 13px;
    line-height: 1.9;
  }

  .service-detail-page--force .service-pdf-feature-row__label,
  .service-detail-page--multi-screen .service-pdf-feature-row__label,
  .service-detail-page--mojic .service-pdf-feature-row__label {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .service-detail-page--force .service-pdf-feature-row__title,
  .service-detail-page--multi-screen .service-pdf-feature-row__title,
  .service-detail-page--mojic .service-pdf-feature-row__title {
    font-size: 18px;
    margin-bottom: 42px;
  }

  .service-detail-page--force .service-pdf-gallery__title--force,
  .service-detail-page--multi-screen .service-pdf-gallery__title--multi-screen,
  .service-detail-page--mojic .service-pdf-gallery__title--mojic,
  .service-detail-page--force .service-pdf-gallery__intro {
    font-size: 12px;
  }

  .service-detail-page--multi-screen .service-pdf-gallery__intro,
  .service-detail-page--mojic .service-pdf-gallery__intro {
    font-size: 12px;
  }

  .service-detail-page--force .service-force-scenario__head,
  .service-detail-page--multi-screen .service-force-scenario__head {
    text-align: left;
    justify-items: start;
  }

  .service-detail-page--force .service-force-demo__placeholder,
  .service-detail-page--multi-screen .service-force-demo__placeholder {
    min-height: 180px;
  }

  .service-pdf-hero__meta {
    gap: 8px;
  }

  .service-pdf-hero__meta li {
    padding: 6px 12px;
    font-size: 11px;
  }

  .service-pdf-hero__meta--bar {
    gap: 8px 16px;
  }

  .service-pdf-hero__meta--bar li {
    min-width: 74px;
    padding: 0 0 6px;
    font-size: 11px;
  }

  .service-force-scenario-card {
    grid-template-columns: 1fr;
  }

  .service-content-overview,
  .service-content-catalog,
  .service-content-flow,
  .service-content-examples {
    padding-block: 56px;
  }

  .service-content-overview__visual {
    width: min(100%, 220px);
    margin-inline: auto;
  }

  .service-content-overview__body {
    margin-top: 34px;
  }

  .service-content-catalog-card {
    min-height: 0;
    grid-template-rows: auto 120px 1fr;
  }

  .service-content-flow .l-container {
    padding: 22px 16px 24px;
  }

  .service-content-examples .l-container {
    padding: 26px 16px 28px;
  }

  .service-content-flow__step-text {
    width: 52px;
    min-height: 154px;
    padding: 14px 0;
    font-size: 13px;
  }

  .service-pdf-hero--content-sales .service-pdf-hero__meta--bar {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 12px 18px;
  }

  .service-page__lead--advertising {
    margin-top: 20px;
    font-size: 14px;
  }

  .service-page__lead--channel {
    margin-top: 20px;
    font-size: 14px;
  }

  .service-content-example-card__visual {
    min-height: 180px;
  }

  .service-detail-page--content-sales .service-content-overview::before,
  .service-detail-page--content-sales .service-content-catalog::before,
  .service-detail-page--content-sales .service-content-flow::before,
  .service-detail-page--content-sales .service-content-examples::before {
    width: calc(100% - 32px);
  }
}

/* Recruit top redesign */
.recruit-top--designed {
  --recruit-aqua: #97f4ff;
  --recruit-aqua-deep: #22bad3;
  --recruit-ink-deep: #0d1017;
  --recruit-ink-soft: #181d26;
  --recruit-shell-height: clamp(560px, 70vw, 940px);
  --recruit-top-hero-image: none;
  --recruit-section-indent: clamp(34px, 3vw, 58px);
  --recruit-label-offset: clamp(42px, 4vw, 56px);
  --recruit-heading-overhang: clamp(16px, 1.4vw, 26px);
}

body.recruit-mode {
  background-image: none;
}

body.recruit-mode--top {
  background: #c9fbff;
}

.recruit-mode--top .recruit-header--top {
  padding: clamp(22px, 2.6vw, 34px) 0 0;
  background: #c9fbff;
  position: relative;
  z-index: 3;
}

.recruit-mode--top .recruit-header--top .recruit-header__inner {
  align-items: flex-start;
}

.recruit-mode--top .recruit-header__brand {
  color: #0f1116;
  font-size: clamp(15px, 1.2vw, 21px);
  letter-spacing: 0.16em;
}

.recruit-header__entry,
.recruit-top-entry {
  position: relative;
  z-index: 2;
  min-width: clamp(142px, 12vw, 196px);
  min-height: clamp(52px, 4.2vw, 72px);
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid #c5c5c5;
  background: #fff;
  background-image: none;
  color: #232323;
  font-size: clamp(12px, 0.92vw, 16px);
  font-weight: 600;
  letter-spacing: 0.12em;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.recruit-header__entry::before,
.recruit-header__entry::after,
.recruit-top-entry::before,
.recruit-top-entry::after {
  content: none;
}

.recruit-header__entry:hover,
.recruit-header__entry:focus-visible,
.recruit-top-entry:hover,
.recruit-top-entry:focus-visible {
  background: #b9fbff;
  color: #111;
  border-color: #b9fbff;
  transform: translateY(-1px);
}

.recruit-top--designed .recruit-top-hero {
  position: relative;
  z-index: 2;
  isolation: isolate;
  margin-top: 0;
  padding: clamp(14px, 2vw, 28px) 0 clamp(44px, 5vw, 78px);
  background-color: #c9fbff;
  background-image:
    linear-gradient(180deg, rgba(151, 244, 255, 0.22), rgba(151, 244, 255, 0.22)),
    var(--recruit-top-hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.recruit-top--designed .recruit-top-hero::before {
  display: none;
}

.recruit-top--designed .recruit-top-hero__inner {
  display: block;
  position: relative;
  min-height: clamp(520px, 54vw, 720px);
}

.recruit-top-hero__canvas {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.recruit-top--designed .recruit-top-hero__brand {
  position: absolute;
  top: 0;
  left: clamp(-36px, -2.6vw, -18px);
  z-index: 3;
  color: #0f1116;
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.recruit-top--designed .recruit-top-hero__visual {
  position: absolute;
  left: 50%;
  top: clamp(72px, 8vw, 108px);
  width: min(58vw, 780px);
  aspect-ratio: 16 / 9;
  transform: translateX(-50%);
  border: 0;
  background: none;
  box-shadow: none;
  filter: none;
}

.recruit-top--designed .recruit-top-hero__visual::before,
.recruit-top--designed .recruit-top-hero__visual::after {
  content: none;
}

.recruit-top--designed .recruit-top-hero__nav {
  position: absolute;
  left: clamp(-36px, -2.6vw, -18px);
  bottom: clamp(6px, 1vw, 14px);
  display: grid;
  gap: 14px;
  z-index: 1;
}

.recruit-top--designed .recruit-top-hero__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-left: 0;
  color: var(--recruit-aqua-deep);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.recruit-top--designed .recruit-top-hero__nav-link::before {
  content: none;
}

.recruit-top--designed .recruit-top-hero__nav-link:hover,
.recruit-top--designed .recruit-top-hero__nav-link:focus-visible {
  color: #0f4b59;
}

.recruit-top--designed .recruit-top-hero__copy-wrap {
  position: absolute;
  top: clamp(320px, 28vw, 388px);
  left: calc(50% + min(11vw, 156px));
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.recruit-top--designed .recruit-top-hero__copy {
  margin: 0;
  position: relative;
  z-index: 3;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  overflow: visible;
  color: #fff;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.12em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  filter: none;
  background: none;
}

.recruit-top--designed .recruit-top-message,
.recruit-top--designed .recruit-top-qa {
  color: #fff;
  background-color: var(--recruit-ink-deep);
  background-image: none;
}

.recruit-top--designed .recruit-top-message,
.recruit-top--designed .recruit-top-people,
.recruit-top--designed .recruit-top-info,
.recruit-top--designed .recruit-top-qa {
  padding: clamp(44px, 5vw, 78px) 0;
}

.recruit-top--designed .recruit-top-message__inner,
.recruit-top--designed .recruit-top-section-shell {
  min-height: var(--recruit-shell-height);
}

.recruit-top--designed .recruit-top-message__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: clamp(34px, 4vw, 56px);
  justify-content: normal;
  align-items: stretch;
}

.recruit-top--designed .recruit-top-message__head {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.recruit-top--designed .recruit-top-message__body {
  display: grid;
  align-content: center;
  gap: clamp(54px, 7vw, 110px);
  max-width: min(100%, 760px);
}

.recruit-top--designed .recruit-top-message__text {
  color: rgba(255, 255, 255, 0.92);
}

.recruit-top--designed .recruit-top-message__text p {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 2.08;
  letter-spacing: 0.06em;
}

.recruit-top--designed .recruit-top-message__text p + p {
  margin-top: clamp(24px, 2.6vw, 42px);
}

.recruit-top--designed .recruit-top-message__phrase {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border: 1px solid #fff;
  background: #fff;
  background-image: none;
  color: #111318;
  font-size: clamp(18px, 1.18vw, 22px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  box-shadow: none;
  filter: none;
}

.recruit-top--designed .recruit-top-message__phrase::before,
.recruit-top--designed .recruit-top-message__phrase::after {
  content: none;
}

.recruit-top--designed .recruit-top-section-shell {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  gap: clamp(26px, 3vw, 40px);
}

.recruit-top--designed .recruit-top-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding-left: calc(var(--recruit-section-indent) - var(--recruit-heading-overhang));
}

.recruit-top--designed .recruit-top-section-head__title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-left: calc(var(--recruit-label-offset) - 4px);
}

.recruit-top--designed .recruit-top-section-head .recruit-top-section-label {
  position: absolute;
  z-index: 3;
  left: calc((var(--recruit-label-offset) + var(--recruit-heading-overhang)) * -1);
  top: 0;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  isolation: isolate;
  box-sizing: border-box;
  width: auto;
  min-height: 0;
  height: auto;
  padding: 5px 4px 11px;
  background: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  color: var(--recruit-aqua-deep);
  font-size: clamp(12px, 0.98vw, 16px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  box-shadow: none;
  filter: none;
}

.recruit-top--designed .recruit-top-section-head .recruit-top-section-label__text {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
}

.recruit-top--designed .recruit-top-section-head .recruit-top-section-label::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--recruit-aqua);
}

.recruit-top--designed .recruit-top-section-head .recruit-top-section-label::after {
  content: none;
}

.recruit-top--designed .recruit-top-section-head .recruit-top-section-label--white {
  color: #0f1116;
}

.recruit-top--designed .recruit-top-section-head .recruit-top-section-label--white::before {
  background: #fff;
}

.recruit-top--designed .home-section-title {
  margin: 0;
  margin-left: calc(var(--recruit-heading-overhang) * -1);
  font-size: clamp(34px, 3.2vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.05em;
}

.recruit-top--designed .recruit-top-people {
  background-color: #fff;
  background-image: none;
}

.recruit-top--designed .recruit-top-people .recruit-top-section-head__title,
.recruit-top--designed .recruit-top-info .recruit-top-section-head__title {
  padding-left: calc(var(--recruit-label-offset) - 32px);
}

.recruit-top--designed .recruit-top-people .home-section-title,
.recruit-top--designed .recruit-top-info .home-section-title {
  margin-left: calc((var(--recruit-heading-overhang) + 14px) * -1);
}

.recruit-top--designed .recruit-top-people .recruit-top-section-label__text {
  color: #0f4b59;
}

.recruit-top--designed .recruit-top-people__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 44px) clamp(20px, 2vw, 32px);
  width: calc(100% - var(--recruit-section-indent));
  margin-left: var(--recruit-section-indent);
  align-content: start;
}

.recruit-top--designed .recruit-person-card {
  background: transparent;
}

.recruit-top--designed .recruit-person-card a {
  gap: 12px;
}

.recruit-top--designed .recruit-person-card__thumb {
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(103, 234, 255, 0.9);
  background: #dffcff;
  background-image: none;
  box-shadow: none;
  filter: none;
}

.recruit-top--designed .recruit-person-card__meta {
  display: grid;
  gap: 3px;
  padding: 0;
}

.recruit-top--designed .recruit-person-card__name,
.recruit-top--designed .recruit-person-card__sub {
  margin: 0;
  color: #17191d;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.04em;
}

.recruit-top--designed .recruit-top-info {
  position: relative;
  background-color: #b8f8ff;
  background-image: none;
}

.recruit-top--designed .recruit-top-info::before {
  display: none;
}

.recruit-top--designed .recruit-top-section-shell--info {
  min-height: 0;
  gap: clamp(20px, 2.2vw, 30px);
}

.recruit-top--designed .recruit-top-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: calc(100% - var(--recruit-section-indent));
  margin-left: var(--recruit-section-indent);
  align-content: start;
}

.recruit-top--designed .recruit-info-card {
  position: relative;
  z-index: 2;
  min-height: clamp(126px, 11vw, 172px);
  border: 1px solid rgba(15, 18, 24, 0.12);
  border-radius: 0;
  background: #fff !important;
  background-image: none !important;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
}

.recruit-top--designed .recruit-info-card a {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  color: #111318;
  text-align: center;
  text-decoration: none;
}

.recruit-top--designed .recruit-info-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.65vw, 30px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.recruit-top--designed .recruit-top-section-shell--qa {
  min-height: 0;
  gap: clamp(22px, 2.4vw, 34px);
}

.recruit-top--designed .recruit-top-section-head--qa {
  position: relative;
  justify-content: center;
  margin-bottom: clamp(8px, 1vw, 16px);
}

.recruit-top--designed .recruit-top-section-head--qa .home-section-title {
  color: #fff;
  text-align: center;
}

.recruit-top--designed .recruit-top-section-head--qa .recruit-top-entry {
  position: absolute;
  top: 0;
  right: 0;
}

.recruit-top--designed .recruit-qa-list {
  display: grid;
  gap: 18px;
  width: min(100%, 980px);
  max-width: 1040px;
  margin: 0 auto;
  align-content: start;
}

.recruit-top--designed .recruit-qa-item {
  position: relative;
  z-index: 2;
  border: 0;
  border-radius: 0;
  background: none !important;
  background-image: none !important;
  color: #17191d;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
}

.recruit-top--designed .recruit-qa-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  border-radius: 999px;
  background: #fff;
  font-size: clamp(16px, 1.14vw, 20px);
  font-weight: 500;
  list-style: none;
}

.recruit-top--designed .recruit-qa-item summary::after {
  content: "+";
  margin-left: auto;
  color: #111318;
  font-size: 24px;
  line-height: 1;
}

.recruit-top--designed .recruit-qa-item[open] summary::after {
  content: "\2212";
}

.recruit-top--designed .recruit-qa-item__q {
  color: var(--recruit-aqua-deep);
  font-size: 0.95em;
  font-weight: 700;
}

.recruit-top--designed .recruit-qa-item__answer {
  margin-top: 14px;
  padding: 0 34px 18px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.recruit-top--designed .recruit-qa-item__answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 0.98vw, 18px);
  line-height: 1.9;
}

@media (max-width: 1080px) {
  .recruit-top--designed {
    --recruit-shell-height: clamp(520px, 88vw, 820px);
  }

  .recruit-top--designed .recruit-top-hero__inner {
    min-height: clamp(500px, 62vw, 660px);
  }

  .recruit-top--designed .recruit-top-hero__visual {
    top: clamp(76px, 8vw, 96px);
    width: min(62vw, 700px);
  }

  .recruit-top--designed .recruit-top-hero__copy-wrap {
    top: clamp(282px, 30vw, 348px);
    left: calc(50% + min(12vw, 128px));
  }

  .recruit-top--designed .recruit-top-hero__copy {
    font-size: clamp(30px, 4.8vw, 52px);
  }

  .recruit-top--designed .recruit-top-people__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.recruit-mode {
    background-image: none;
  }

  .recruit-mode--top .recruit-header--top .recruit-header__inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .recruit-header__entry,
  .recruit-top-entry {
    min-width: 132px;
    min-height: 50px;
    padding: 0 20px;
    font-size: 13px;
  }

  .recruit-top--designed .recruit-top-hero {
    padding-top: 18px;
    padding-bottom: 44px;
  }

  .recruit-top--designed .recruit-top-hero__inner {
    min-height: 520px;
  }

  .recruit-top--designed .recruit-top-hero__visual {
    left: 50%;
    top: 74px;
    width: min(72vw, 520px);
  }

  .recruit-top--designed .recruit-top-hero__nav {
    left: -12px;
    bottom: 6px;
    gap: 14px;
  }

  .recruit-top--designed .recruit-top-hero__nav-link {
    font-size: 12px;
    padding-left: 0;
  }

  .recruit-top--designed .recruit-top-hero__copy-wrap {
    top: 276px;
    left: calc(50% + min(10vw, 70px));
  }

  .recruit-top--designed .recruit-top-hero__copy {
    font-size: clamp(24px, 6.2vw, 40px);
  }

  .recruit-top--designed .recruit-top-message__inner,
  .recruit-top--designed .recruit-top-section-shell,
  .recruit-top--designed .recruit-top-section-shell--info,
  .recruit-top--designed .recruit-top-section-shell--qa {
    min-height: 0;
  }

  .recruit-top--designed .recruit-top-message__body {
    gap: 34px;
  }

  .recruit-top--designed .recruit-top-message__text p {
    font-size: 16px;
    line-height: 1.95;
  }

  .recruit-top--designed .recruit-top-section-head,
  .recruit-top--designed .recruit-top-section-head__title {
    gap: 16px;
  }

  .recruit-top--designed .recruit-top-section-head {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .recruit-top--designed .recruit-top-section-head__title {
    padding-left: 42px;
  }

  .recruit-top--designed .recruit-top-people .recruit-top-section-head__title,
  .recruit-top--designed .recruit-top-info .recruit-top-section-head__title {
    padding-left: 24px;
  }

  .recruit-top--designed .recruit-top-section-label {
    left: -24px;
    width: auto;
    min-height: 0;
    height: auto;
    padding: 5px 4px 10px;
    font-size: 12px;
  }

  .recruit-top--designed .recruit-top-section-head--qa {
    align-items: center;
    padding-top: 0;
  }

  .recruit-top--designed .recruit-top-section-head--qa .recruit-top-entry {
    position: static;
    margin-top: 10px;
  }

  .recruit-top--designed .home-section-title {
    margin-left: -12px;
    font-size: clamp(28px, 6vw, 40px);
  }

  .recruit-top--designed .recruit-top-people__grid,
  .recruit-top--designed .recruit-top-info__grid {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .recruit-top--designed .recruit-qa-item {
    border-radius: 0;
  }

  .recruit-top--designed .recruit-qa-item summary {
    padding: 18px 24px;
    font-size: 15px;
  }

  .recruit-top--designed .recruit-qa-item__answer {
    margin-top: 12px;
    padding: 0 24px 18px 24px;
  }
}

@media (max-width: 520px) {
  body.recruit-mode {
    background-image: none;
  }

  .recruit-mode--top .recruit-header--top {
    padding-top: 18px;
  }

  .recruit-mode--top .recruit-header__brand {
    font-size: 14px;
  }

  .recruit-header__entry,
  .recruit-top-entry {
    min-width: 118px;
    min-height: 46px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .recruit-top--designed .recruit-top-hero__inner {
    min-height: 500px;
  }

  .recruit-top--designed .recruit-top-hero__visual {
    top: 78px;
    width: min(80vw, 360px);
  }

  .recruit-top--designed .recruit-top-hero__copy-wrap {
    top: 208px;
    left: calc(50% + min(9vw, 36px));
  }

  .recruit-top--designed .recruit-top-hero__copy {
    font-size: 20px;
  }

  .recruit-top--designed .recruit-top-hero__brand {
    top: 0;
    left: -12px;
    font-size: 18px;
    letter-spacing: 0.14em;
  }

  .recruit-top--designed .recruit-top-hero__nav-link {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .recruit-top--designed .recruit-top-message__text p,
  .recruit-top--designed .recruit-qa-item__answer p {
    font-size: 14px;
  }

  .recruit-top--designed .recruit-top-message__phrase {
    font-size: 16px;
  }

  .recruit-top--designed .recruit-info-card h3 {
    font-size: 17px;
  }
}

.recruit-mode--top .recruit-header--top {
  background: #c9fbff;
}

.recruit-header__entry,
.recruit-top-entry {
  background-color: #fff !important;
  background-image: none !important;
  box-shadow: none !important;
}

.recruit-top--designed .recruit-top-hero__copy,
.recruit-top--designed .recruit-top-message__phrase,
.recruit-top--designed .recruit-top-section-head .recruit-top-section-label,
.recruit-top--designed .recruit-info-card,
.recruit-top--designed .recruit-info-card a,
.recruit-top--designed .recruit-qa-item,
.recruit-top--designed .recruit-qa-item summary,
.recruit-top--designed .recruit-qa-item__answer {
  background-image: none !important;
  box-shadow: none !important;
  filter: none;
  backdrop-filter: none;
}

/* Recruit interview refinement */
body.recruit-mode:not(.recruit-mode--top) {
  background-color: var(--color-bg);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.015), transparent 42%),
    radial-gradient(circle at 86% 76%, rgba(0, 0, 0, 0.012), transparent 48%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.008) 0, rgba(0, 0, 0, 0.008) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.006) 0, rgba(0, 0, 0, 0.006) 1px, transparent 1px, transparent 6px);
  background-size: auto, auto, 100% 100%, 100% 100%;
}

body.recruit-mode.single-recruit_interview,
body.recruit-mode.post-type-archive-recruit_interview {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.015), transparent 42%),
    radial-gradient(circle at 86% 76%, rgba(0, 0, 0, 0.012), transparent 48%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.008) 0, rgba(0, 0, 0, 0.008) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.006) 0, rgba(0, 0, 0, 0.006) 1px, transparent 1px, transparent 6px);
  background-size: auto, auto, 100% 100%, 100% 100%;
}

.recruit-header {
  position: sticky;
  top: 0;
  z-index: 32;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.single-recruit_interview .recruit-header,
body.post-type-archive-recruit_interview .recruit-header {
  background: transparent;
}

.recruit-header__inner {
  align-items: flex-start;
}

.recruit-header__meta {
  position: relative;
  justify-self: end;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0;
  min-width: 156px;
  margin-top: -2px;
}

.recruit-header__brand {
  color: #060606;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruit-header__nav {
  gap: clamp(16px, 2vw, 30px);
  padding-top: 7px;
}

.recruit-header__link {
  color: #141414;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.recruit-header__link:hover,
.recruit-header__link:focus-visible {
  color: #000;
}

.recruit-header__link.is-current {
  color: #111;
}

.recruit-header__link.is-current::after {
  height: 2px;
  bottom: -8px;
  background: #97f4ff;
}

.recruit-header__entry {
  position: relative;
  z-index: 16;
}

.recruit-header__share {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  right: auto;
  transform: translateX(-50%);
  z-index: 15;
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: min-content;
  column-gap: 10px;
  row-gap: 0;
  align-items: start;
  justify-items: start;
  white-space: nowrap;
}

.recruit-header__share-label,
.recruit-header__share-link {
  writing-mode: sideways-rl;
  text-orientation: mixed;
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}

.recruit-header__share-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 10px;
  font-weight: 700;
  color: #5a5a5a;
}

.recruit-header__share-link {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  text-decoration: none;
}

.recruit-header__share-link--instagram {
  grid-column: 2;
  grid-row: 2;
  margin-left: 2px;
}

.recruit-header__share-link--facebook {
  grid-column: 1;
  grid-row: 2;
  margin-left: 5px;
}

.recruit-header__share-link--empty {
  opacity: 0.68;
}

.recruit-header__share a:hover,
.recruit-header__share a:focus-visible {
  color: #000;
}

.recruit-interview-single--designed .interview-page__hero {
  --interview-hero-frame-max: 940px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.08), transparent 40%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.008) 0, rgba(0, 0, 0, 0.008) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.006) 0, rgba(0, 0, 0, 0.006) 1px, transparent 1px, transparent 6px),
    linear-gradient(180deg, rgba(144, 245, 255, 0.5), rgba(144, 245, 255, 0.28));
  border-bottom: 0;
  margin-top: calc(-1 * var(--header-overlay-offset) - 18px);
  padding: calc(var(--header-overlay-offset) + 34px) 0 104px;
  overflow: visible;
}

.recruit-interview-single--designed .interview-page__hero .l-container {
  width: min(100% - 88px, 1040px);
}

.recruit-interview-single--designed .interview-page__qa .l-container--narrow,
.recruit-interview-single--designed .interview-page__career .l-container,
.recruit-interview-single--designed .interview-page__others .l-container {
  width: min(100% - 48px, 900px);
}

.recruit-interview-single--designed .interview-page__schedule .l-container {
  width: min(100% - 48px, 960px);
}

.interview-page__hero-frame {
  max-width: var(--interview-hero-frame-max);
  margin: 0 auto;
}

.interview-page__hero-main {
  position: relative;
  width: 100%;
  padding-right: 0;
}

.interview-page__hero-department {
  position: absolute;
  left: clamp(-46px, -3.4vw, -26px);
  top: clamp(24px, 3vw, 40px);
  margin: 0;
  max-width: min(68%, 320px);
  padding: 8px 12px 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(8, 14, 20, 0.1);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.02;
  color: #111;
  z-index: 4;
}

.interview-page__hero-media--wide {
  aspect-ratio: 16 / 9;
  min-height: clamp(400px, 54vh, 620px);
  background: #fff;
  box-shadow: 0 22px 44px rgba(8, 14, 20, 0.08);
}

.interview-page__hero-media--wide img {
  object-position: center 24%;
}

.interview-page__hero-overlay {
  right: calc((var(--interview-hero-frame-max) - var(--container)) / 2);
  bottom: clamp(16px, 2.6vw, 34px);
  gap: 8px;
  justify-items: end;
}

.interview-page__hero-profile {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.interview-page__name {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(8, 14, 20, 0.1);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.02;
  color: #111;
}

.interview-page__name--position {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
}

.interview-page__sub {
  color: #111;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  background: none;
  padding: 0;
}

.recruit-interview-single--designed .interview-page__qa {
  padding: clamp(104px, 9.6vw, 132px) 0 84px;
  background: transparent;
}

.recruit-interview-single--designed .interview-page__career {
  padding: 72px 0 84px;
  background: transparent;
}

.recruit-interview-single--designed .interview-page__schedule {
  background: linear-gradient(180deg, rgba(144, 245, 255, 0.3), rgba(144, 245, 255, 0.18));
  padding: 72px 0 78px;
}

.recruit-interview-single--designed .interview-page__section-head,
.recruit-interview-single--designed .interview-page__schedule-head {
  gap: 14px;
}

.recruit-interview-single--designed .interview-page__section-head {
  margin-bottom: 68px;
}

.recruit-interview-single--designed .interview-page__section-head .home-section-title,
.recruit-interview-single--designed .interview-page__schedule-head .home-section-title {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.24;
  letter-spacing: 0.04em;
}

.recruit-interview-single--designed .interview-page__section-head .c-eyebrow,
.recruit-interview-single--designed .interview-page__schedule-head .c-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #666;
}

.recruit-interview-single--designed .interview-page__schedule-head .c-eyebrow,
.recruit-interview-single--designed .interview-page__career .interview-page__section-head .c-eyebrow {
  display: none;
}

.interview-blocks {
  gap: clamp(40px, 4.4vw, 68px);
}

.interview-block {
  gap: 28px;
  padding-top: 0;
  border-top: 0;
}

.interview-block--feature {
  gap: 22px 38px;
}

.interview-block__feature-media {
  max-width: 280px;
  aspect-ratio: 1 / 1.08;
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 14, 20, 0.08);
}

.interview-block__feature-copy {
  gap: 16px;
}

.interview-block__head {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.interview-block__index {
  min-width: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #101318;
}

.interview-block__q {
  max-width: none;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.72;
}

.interview-block__q span {
  display: inline;
  box-shadow: inset 0 -0.36em 0 rgba(151, 244, 255, 0.78);
}

.interview-block__a {
  max-width: 60em;
  padding-left: 46px;
  color: #303030;
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 2;
}

.interview-block__a p {
  margin: 0;
}

.interview-page__others .interview-page__section-head .c-eyebrow {
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

@media (max-width: 1120px) {
  .recruit-interview-single--designed .interview-page__hero .l-container {
    width: min(100% - 28px, 100%);
  }

  .interview-page__hero-media--wide {
    min-height: clamp(380px, 48vw, 520px);
  }

  .interview-page__hero-overlay {
    right: clamp(-64px, -8vw, -18px);
    bottom: clamp(14px, 2.8vw, 24px);
  }

  .interview-page__hero-department {
    left: clamp(-28px, -4vw, -12px);
  }
}

@media (max-width: 820px) {
  .recruit-header__nav {
    gap: 12px 16px;
    padding-top: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .recruit-header__meta {
    min-width: 146px;
  }

  .recruit-header__share {
    top: calc(100% + 6px);
    transform: translateX(-50%) scale(0.92);
    transform-origin: top center;
  }

  .recruit-interview-single--designed .interview-page__hero {
    padding-top: calc(var(--header-overlay-offset) + 8px);
    padding-bottom: 82px;
  }

  .recruit-interview-single--designed .interview-page__qa {
    padding-top: 90px;
  }

  .interview-page__hero-media--wide {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .interview-page__hero-overlay {
    right: 10px;
    bottom: 14px;
  }

  .interview-page__hero-department {
    left: 10px;
    top: 10px;
    max-width: calc(100% - 72px);
    padding: 7px 10px 6px;
    font-size: clamp(18px, 4vw, 24px);
  }

  .interview-page__name {
    padding: 7px 10px 6px;
    font-size: clamp(19px, 4.2vw, 27px);
  }

  .interview-page__name--position {
    font-size: clamp(17px, 3.9vw, 24px);
  }

  .interview-page__sub {
    font-size: 11px;
  }

  .recruit-interview-single--designed .interview-page__section-head {
    margin-bottom: 52px;
  }

  .interview-blocks {
    gap: 34px;
  }

  .interview-block--feature {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .interview-block__feature-media {
    width: min(100%, 260px);
  }

  .interview-block__head {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .interview-block__index {
    font-size: 18px;
  }

  .interview-block__q {
    font-size: clamp(15px, 3.7vw, 19px);
  }

  .interview-block__a {
    padding-left: 40px;
    font-size: 12px;
    line-height: 1.95;
  }

  .interview-page__others .recruit-top-people__grid--compact {
    grid-template-columns: repeat(2, minmax(0, 148px));
  }
}

@media (max-width: 640px) {
  .recruit-header__share {
    display: none;
  }
}

@media (max-width: 520px) {
  .recruit-header__inner {
    gap: 14px;
  }

  .recruit-header__meta {
    min-width: 118px;
  }

  .recruit-header__brand {
    font-size: 15px;
  }

  .recruit-header__nav {
    max-width: calc(100% - 124px);
    gap: 10px 12px;
  }

  .recruit-header__link {
    font-size: 10px;
  }

  .recruit-interview-single--designed .interview-page__hero .l-container {
    width: min(100% - 16px, 100%);
  }

  .interview-page__hero-media--wide {
    aspect-ratio: 3 / 4.2;
  }

  .interview-page__hero-overlay {
    right: 8px;
    bottom: 10px;
    gap: 6px;
  }

  .interview-page__hero-department {
    left: 8px;
    top: 8px;
    max-width: calc(100% - 56px);
    padding: 6px 8px 5px;
    font-size: 16px;
  }

  .interview-page__name {
    padding: 6px 8px 5px;
    font-size: 17px;
  }

  .interview-page__name--position {
    font-size: 16px;
  }

  .interview-page__sub {
    font-size: 10px;
  }

  .recruit-interview-single--designed .interview-page__qa {
    padding-top: 72px;
  }

  .recruit-interview-single--designed .interview-page__section-head .home-section-title,
  .recruit-interview-single--designed .interview-page__schedule-head .home-section-title {
    font-size: 22px;
  }

  .interview-block__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .interview-block__index {
    font-size: 17px;
  }

  .interview-block__a {
    padding-left: 0;
  }

  .interview-page__others .recruit-top-people__grid--compact {
    grid-template-columns: 1fr;
    max-width: 220px;
  }
}

.contact-page {
  padding-bottom: 112px;
}

.contact-page__hero {
  border-bottom: 1px solid var(--color-line);
}

.contact-page__hero-inner {
  padding: 88px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 40px;
  align-items: end;
}

.contact-page__title {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact-page__intro {
  font-size: 15px;
  line-height: 2;
}

.contact-page__intro p:first-child {
  margin-top: 0;
}

.contact-page__intro p:last-child {
  margin-bottom: 0;
}

.contact-page__note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  font-size: 12px;
  color: rgba(11, 11, 11, 0.64);
}

.contact-page__section {
  padding: 48px 0 0;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  align-items: start;
}

.contact-page__panel {
  border: 1px solid var(--color-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 254, 0.98) 100%);
  box-shadow: 0 24px 54px rgba(10, 10, 10, 0.05);
}

.contact-page__panel--meta {
  padding: 28px 24px 24px;
}

.contact-page__panel--form {
  padding: 32px;
}

.contact-page__panel-head {
  margin-bottom: 24px;
}

.contact-page__panel-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(11, 11, 11, 0.52);
}

.contact-page__panel-title {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.15;
}

.contact-page__source,
.contact-page__info-block {
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.contact-page__info-block + .contact-page__info-block {
  margin-top: 18px;
}

.contact-page__source-label,
.contact-page__info-label {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(11, 11, 11, 0.56);
}

.contact-page__source-title,
.contact-page__info-text,
.contact-page__info-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.contact-page__source-url {
  margin: 6px 0 0;
  font-size: 12px;
  word-break: break-all;
}

.contact-page__source-url a {
  color: rgba(11, 11, 11, 0.7);
}

.contact-page__info-lines {
  display: grid;
  gap: 6px;
}

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

.contact-form__notice {
  margin-bottom: 20px;
  padding: 18px 18px 16px;
  border: 1px solid var(--color-line);
  font-size: 14px;
  line-height: 1.8;
}

.contact-form__notice p:first-child {
  margin-top: 0;
}

.contact-form__notice p:last-child {
  margin-bottom: 0;
}

.contact-form__notice--success {
  background: linear-gradient(135deg, rgba(145, 245, 255, 0.18), rgba(255, 255, 255, 0.98));
}

.contact-form__notice--error {
  background: linear-gradient(135deg, rgba(255, 232, 232, 0.72), rgba(255, 255, 255, 0.98));
}

.contact-form__notice-title {
  margin: 0 0 8px;
  font-weight: 700;
}

.contact-form__error-list {
  margin: 0;
  padding-left: 18px;
}

.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.contact-form__required {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(11, 11, 11, 0.54);
}

.contact-form__control {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: #fff;
  color: var(--color-ink);
  font: inherit;
  line-height: 1.5;
}

.contact-form__control:focus {
  outline: none;
  border-color: var(--color-ink);
  box-shadow: 0 0 0 3px rgba(145, 245, 255, 0.2);
}

.contact-form__control--textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form__consent {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.contact-form__checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.8;
}

.contact-form__checkbox input {
  margin-top: 4px;
}

.contact-form__consent-help {
  margin: 0;
  font-size: 12px;
  color: rgba(11, 11, 11, 0.64);
}

.contact-form__actions {
  display: flex;
  justify-content: flex-start;
}

.contact-form__submit {
  min-width: 180px;
  min-height: 48px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .contact-page__hero-inner,
  .contact-page__layout {
    grid-template-columns: 1fr;
  }

  .contact-page__hero-inner {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding-bottom: 80px;
  }

  .contact-page__hero-inner {
    padding: 72px 0 44px;
  }

  .contact-page__panel--meta,
  .contact-page__panel--form {
    padding: 24px 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__field--full {
    grid-column: auto;
  }

  .contact-form__submit {
    width: 100%;
  }
}
