/**
 * 1201 Staff Person
 * /staff-person/
 * 求める人材・私たちの考え方ページ専用CSS
 *
 * Optimized: 2026-08-22
 *
 * 方針:
 * - 表示結果を維持
 * - 重複指定を整理
 * - PC / SP の構成を明確化
 * - セクション単位で管理
 */

/* ==================================================
   1201：求める人材・私たちの考え方
   /staff-person/
================================================== */


/* ==================================================
   1201-01 PERSON
================================================== */

.staff-person-page .staff-person-hero {
  padding-top: 112px;
  padding-bottom: 104px;
  background: var(--recruit-beige);
}

.staff-person-page .staff-person-hero__title {
  margin: 0 0 24px;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.staff-person-page .staff-person-hero__catch {
  margin: 0 0 40px;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 600;
  line-height: 1.7;
}

.staff-person-page .staff-person-hero__lead {
  max-width: 800px;
  margin: 0 0 40px;
}

.staff-person-page .staff-person-hero__lead p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 2;
}

.staff-person-page .staff-person-hero__buttons {
  gap: 16px;
}


/* ==================================================
   1201-02 OUR VALUES
================================================== */

.staff-person-page .staff-person-values {
  background: #fff;
}

.staff-person-page .staff-person-values__grid {
  gap: 24px;
}

.staff-person-page .staff-person-value-card {
  height: 100%;
  padding: 36px 32px;
  border: 1px solid var(--recruit-border);
  border-radius: 16px;
  background: #fff;
}

.staff-person-page .staff-person-value-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.6;
}

.staff-person-page .staff-person-value-card p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}


/* ==================================================
   1201-03 OUR PEOPLE
================================================== */

.staff-person-page .staff-person-people {
  background: var(--recruit-beige);
}

.staff-person-page .staff-person-people__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.staff-person-page .staff-person-person-card {
  min-height: 220px;
  padding: 32px 34px;
  border: 1px solid var(--recruit-border);
  border-radius: 14px;
  background: #fff;
}

.staff-person-page .staff-person-person-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--recruit-green);
  font-size: 13px;
  font-weight: 700;
}

.staff-person-page .staff-person-person-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.6;
}

.staff-person-page .staff-person-person-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}


/* ==================================================
   1201-04 EXPERIENCE
================================================== */

.staff-person-page .staff-person-experience {
  background: #fff;
}

.staff-person-page .staff-person-experience__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  max-width: 900px;
  margin-bottom: 40px;
}

.staff-person-page .staff-person-experience__list > div {
  position: relative;
  padding: 20px 22px 20px 48px;
  border-radius: 10px;
  background: var(--recruit-beige);
  font-size: 16px;
  line-height: 1.7;
}

.staff-person-page .staff-person-experience__list > div::before {
  content: "✓";
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--recruit-green);
  font-weight: 700;
}

.staff-person-page .staff-person-experience__note {
  max-width: 900px;
  margin: 0;
  font-size: 16px;
  line-height: 2;
}


/* ==================================================
   1201-05 CHALLENGE
================================================== */

.staff-person-page .staff-person-challenge {
  background: var(--recruit-beige);
}

.staff-person-page .staff-person-message-box {
  max-width: 900px;
  padding: 40px 44px;
  border-radius: 16px;
  background: #fff;
}

.staff-person-page .staff-person-message-box p {
  font-size: 16px;
  line-height: 2;
}

.staff-person-page .staff-person-message-lines {
  margin: 28px 0;
  font-size: 19px !important;
  font-weight: 600;
  line-height: 2.1 !important;
}


/* ==================================================
   1201-06 BETTER
================================================== */

.staff-person-page .staff-person-better {
  background: #fff;
}

.staff-person-page .staff-person-better__questions {
  max-width: 900px;
  margin-bottom: 36px;
}

.staff-person-page .staff-person-better__questions p {
  margin: 0 0 12px;
  padding: 18px 24px;
  border-left: 4px solid var(--recruit-green);
  background: var(--recruit-beige);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.staff-person-page .staff-person-better__closing {
  max-width: 900px;
  margin: 0;
  font-size: 16px;
  line-height: 2;
}


/* ==================================================
   1201-07 FUTURE
================================================== */

.staff-person-page .staff-person-future {
  background: var(--recruit-beige);
}

.staff-person-page .staff-person-future__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin-bottom: 40px;
}

.staff-person-page .staff-person-future__list p {
  margin: 0;
  padding: 20px 24px;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}


/* ==================================================
   1201-08 TEAMWORK
================================================== */

.staff-person-page .staff-person-teamwork {
  background: #fff;
}

.staff-person-page .staff-person-teamwork__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin-bottom: 40px;
}

.staff-person-page .staff-person-teamwork__points p {
  margin: 0;
  padding: 20px 24px;
  border: 1px solid var(--recruit-border);
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.7;
}


/* ==================================================
   1201-09 RESPONSIBILITY
================================================== */

.staff-person-page .staff-person-responsibility {
  background: var(--recruit-beige);
}

.staff-person-page .staff-person-responsibility__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.staff-person-page .staff-person-responsibility__grid > div {
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 20px 24px;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}


/* ==================================================
   1201-10 MESSAGE
================================================== */

.staff-person-page .staff-person-final-message {
  background: #fff;
  text-align: center;
}

.staff-person-page .staff-person-final-message > p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 2;
}

.staff-person-page .staff-person-final-message__lines {
  max-width: 720px;
  margin: 36px auto;
}

.staff-person-page .staff-person-final-message__lines p {
  margin: 7px 0;
  font-size: 17px;
  line-height: 1.8;
}

.staff-person-page .staff-person-final-message__keywords {
  max-width: 760px;
  margin: 48px auto;
  padding: 40px;
  border-radius: 16px;
  background: var(--recruit-beige);
}

.staff-person-page .staff-person-final-message__keywords p {
  margin: 8px 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.8;
}

.staff-person-page .staff-person-final-message__closing {
  margin-top: 40px !important;
}


/* ==================================================
   1201-11 NEXT
================================================== */

.staff-person-page .staff-person-next {
  background: var(--recruit-beige);
}

.staff-person-page .staff-person-entry-button {
  justify-content: center;
  margin-top: 40px;
}


/* ==================================================
   1201：SP
================================================== */

@media screen and (max-width: 781px) {

  .staff-person-page .staff-person-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .staff-person-page .staff-person-hero__title {
    font-size: 34px;
    line-height: 1.45;
  }

  .staff-person-page .staff-person-hero__catch {
    font-size: 20px;
  }

  .staff-person-page .staff-person-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .staff-person-page .staff-person-hero__buttons .wp-block-button,
  .staff-person-page .staff-person-hero__buttons .wp-block-button__link {
    width: 100%;
  }

  .staff-person-page .staff-person-hero__buttons .wp-block-button__link {
    text-align: center;
  }

  .staff-person-page .staff-person-values__grid {
    display: block;
  }

  .staff-person-page
  .staff-person-values__grid
  > .wp-block-column {
    margin-bottom: 16px;
  }

  .staff-person-page .staff-person-people__grid,
  .staff-person-page .staff-person-experience__list,
  .staff-person-page .staff-person-future__list,
  .staff-person-page .staff-person-teamwork__points,
  .staff-person-page .staff-person-responsibility__grid {
    grid-template-columns: 1fr;
  }

  .staff-person-page .staff-person-person-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .staff-person-page .staff-person-message-box {
    padding: 28px 24px;
  }

  .staff-person-page .staff-person-message-lines {
    font-size: 17px !important;
  }

  .staff-person-page .staff-person-final-message__keywords {
    padding: 28px 20px;
  }

  .staff-person-page
  .staff-person-final-message__keywords
  p {
    font-size: 17px;
  }
}
/* =========================================================
   1201 OUR VALUES
   /staff-person/
========================================================= */

.staff-person-values {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf5 48%,
      var(--recruit-ivory) 100%
    );
}

/* 見出し下余白 */
.staff-person-values .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 中央幅 */
.staff-person-values__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

/* 3列 */
.staff-person-values__grid {
  align-items: stretch !important;
  gap: 24px !important;
  margin: 0 !important;
}

.staff-person-values__grid > .wp-block-column {
  display: flex;
}

/* =========================================================
   VALUE CARD
========================================================= */

.staff-person-value-card {
  position: relative;

  width: 100%;
  min-height: 280px;
  padding: 38px 30px 34px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.15);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 62%,
      #f8eedf 100%
    );

  box-shadow:
    0 14px 34px rgba(90, 64, 48, 0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 上部アクセント */
.staff-person-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;

  width: 56px;
  height: 4px;

  border-radius: 0 0 5px 5px;
  background: var(--recruit-orange-dark);
}

/* 右上の薄い装飾円 */
.staff-person-value-card::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;

  width: 132px;
  height: 132px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.07);

  pointer-events: none;
}

/* hover */
.staff-person-value-card:hover {
  transform: translateY(-5px);

  border-color: rgba(185, 104, 40, 0.28);

  box-shadow:
    0 20px 44px rgba(90, 64, 48, 0.11);
}

/* 番号 */
.staff-person-value-card__number {
  position: relative;
  z-index: 1;

  margin: 0 0 18px;

  color: var(--recruit-orange-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

/* タイトル */
.staff-person-value-card__title {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--recruit-brown);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* 本文 */
.staff-person-value-card__text {
  position: relative;
  z-index: 1;

  margin: 16px 0 0;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-values {
    padding: 64px 16px 72px;
  }

  .staff-person-values .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  .staff-person-values__grid {
    display: block !important;
  }

  .staff-person-values__grid > .wp-block-column {
    margin-bottom: 16px;
  }

  .staff-person-values__grid > .wp-block-column:last-child {
    margin-bottom: 0;
  }

  .staff-person-value-card {
    min-height: auto;
    padding: 30px 24px 28px;
    border-radius: 20px;
  }

  .staff-person-value-card::before {
    left: 24px;
    width: 48px;
  }

  .staff-person-value-card::after {
    top: -40px;
    right: -40px;

    width: 116px;
    height: 116px;
  }

  .staff-person-value-card__number {
    margin-bottom: 14px;
  }

  .staff-person-value-card__title {
    font-size: 19px;
  }

  .staff-person-value-card__text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
  }

}
/* =========================================================
   1201 OUR PEOPLE
   /staff-person/
========================================================= */

.staff-person-people {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      var(--recruit-ivory) 0%,
      #fffaf5 45%,
      #ffffff 100%
    );
}

/* 見出し下余白 */
.staff-person-people .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-people__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

/* 2列グリッド */
.staff-person-people__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* =========================================================
   PERSON CARD
========================================================= */

.staff-person-person-card {
  position: relative;

  min-height: 220px;
  padding: 24px 30px 30px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 70%,
      #f8eedf 100%
    );

  box-shadow:
    0 12px 30px rgba(90, 64, 48, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 上部アクセント */
.staff-person-person-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;

  width: 54px;
  height: 4px;

  border-radius: 0 0 4px 4px;
  background: var(--recruit-orange-dark);
}

/* 右上の装飾円 */
.staff-person-person-card::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;

  width: 130px;
  height: 130px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.065);

  pointer-events: none;
}

/* hover */
.staff-person-person-card:hover {
  transform: translateY(-4px);

  border-color: rgba(185, 104, 40, 0.26);

  box-shadow:
    0 18px 38px rgba(90, 64, 48, 0.10);
}

/* 番号 */
.staff-person-person-card__number {
  position: relative;
  z-index: 1;

  margin: 0 0 14px;

  color: var(--recruit-orange-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

/* タイトル */
.staff-person-person-card__title {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--recruit-brown);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

/* 本文 */
.staff-person-person-card__text {
  position: relative;
  z-index: 1;

  margin: 14px 0 0;

  color: var(--recruit-text);
  font-size: 15px;
  line-height: 1.9;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-people {
    padding: 64px 16px 72px;
  }

  .staff-person-people .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  .staff-person-people__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .staff-person-person-card {
    min-height: auto;
    padding: 28px 24px 26px;
    border-radius: 19px;
  }

  .staff-person-person-card::before {
    left: 24px;
    width: 46px;
  }

  .staff-person-person-card::after {
    top: -40px;
    right: -40px;

    width: 110px;
    height: 110px;
  }

  .staff-person-person-card__number {
    margin-bottom: 12px;
  }

  .staff-person-person-card__title {
    font-size: 19px;
  }

  .staff-person-person-card__text {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.9;
  }

}
/* =========================================================
   1201 EXPERIENCE
   /staff-person/
========================================================= */

.staff-person-experience {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf5 52%,
      var(--recruit-ivory) 100%
    );
}

/* 見出し下余白 */
.staff-person-experience .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-experience__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

/* =========================================================
   EXPERIENCE LIST
========================================================= */

.staff-person-experience__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
}

/* 各項目 */
.staff-person-experience__item {
  position: relative;

  margin: 0;
  padding: 22px 24px 22px 58px;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  color: var(--recruit-brown);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;

  box-shadow:
    0 10px 26px rgba(90, 64, 48, 0.055);
}

/* チェックアイコン */
.staff-person-experience__item::before {
  content: "✓";

  position: absolute;
  top: 50%;
  left: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  background: var(--recruit-orange-light);
  color: var(--recruit-orange-dark);

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  transform: translateY(-50%);
}

/* =========================================================
   NOTE
========================================================= */

.staff-person-experience__note {
  position: relative;

  max-width: 820px;
  margin: 38px auto 0;
  padding: 30px 34px;

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.78);

  box-shadow:
    0 10px 28px rgba(90, 64, 48, 0.05);
}

.staff-person-experience__note p {
  margin: 0 0 6px !important;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
}

/* 下の注意文 */
.staff-person-experience__notice {
  margin-top: 18px !important;
  padding-top: 18px;

  border-top:
    1px solid rgba(185, 104, 40, 0.14);

  color: var(--recruit-brown) !important;
  font-weight: 700;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-experience {
    padding: 64px 16px 72px;
  }

  .staff-person-experience .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* 1列 */
  .staff-person-experience__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .staff-person-experience__item {
    padding: 19px 18px 19px 54px;

    border-radius: 16px;

    font-size: 16px;
    line-height: 1.7;
  }

  .staff-person-experience__item::before {
    left: 18px;

    width: 24px;
    height: 24px;

    font-size: 14px;
  }

  /* NOTE */
  .staff-person-experience__note {
    margin-top: 28px;
    padding: 24px 20px;

    border-radius: 18px;
  }

  .staff-person-experience__note p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left !important;
  }

  .staff-person-experience__notice {
    margin-top: 16px !important;
    padding-top: 16px;
  }

}
/* =========================================================
   1201 CHALLENGE
   /staff-person/
========================================================= */

.staff-person-challenge {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf5 50%,
      var(--recruit-ivory) 100%
    );
}

/* 見出し下余白 */
.staff-person-challenge .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-challenge__inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

/* =========================================================
   PANEL
========================================================= */

.staff-person-challenge__panel {
  position: relative;
  padding: 46px 44px 42px;
  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 250, 245, 0.98) 68%,
      rgba(248, 238, 223, 0.98) 100%
    );

  box-shadow:
    0 18px 42px rgba(90, 64, 48, 0.08);
}

/* 右上装飾 */
.staff-person-challenge__panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;

  width: 240px;
  height: 240px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.07);

  pointer-events: none;
}

/* 左下装飾 */
.staff-person-challenge__panel::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: -90px;

  width: 250px;
  height: 250px;

  border-radius: 50%;
  background: rgba(115, 133, 104, 0.055);

  pointer-events: none;
}

/* 中身を前面へ */
.staff-person-challenge__panel > * {
  position: relative;
  z-index: 1;
}

/* 導入文 */
.staff-person-challenge__intro {
  max-width: 760px;
  margin: 0 auto 28px;

  color: var(--recruit-brown);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

/* =========================================================
   挑戦例
========================================================= */

.staff-person-challenge__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;

  max-width: 900px;
  margin: 0 auto;
}

/* 各項目 */
.staff-person-challenge__item {
  position: relative;

  margin: 0;
  padding: 18px 20px 18px 52px;

  border: 1px solid rgba(185, 104, 40, 0.13);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.84);

  color: var(--recruit-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

/* 小さな丸 */
.staff-person-challenge__item::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 22px;

  width: 10px;
  height: 10px;

  border-radius: 50%;
  background: var(--recruit-orange-dark);

  transform: translateY(-50%);
}

/* =========================================================
   4 STEP
========================================================= */

.staff-person-challenge__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;

  margin-top: 38px;
}

/* 各ステップ */
.staff-person-challenge__step {
  position: relative;

  min-height: 140px;
  padding: 24px 20px 22px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.15);
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  text-align: center;

  box-shadow:
    0 10px 26px rgba(90, 64, 48, 0.05);
}

/* 背景数字 */
.staff-person-challenge__step-number {
  position: absolute;
  top: -8px;
  right: 10px;

  margin: 0;

  color: rgba(217, 138, 58, 0.10);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

/* ステップ本文 */
.staff-person-challenge__step-text {
  position: relative;
  z-index: 1;

  margin: 34px 0 0;

  color: var(--recruit-brown);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

/* =========================================================
   締めメッセージ
========================================================= */

.staff-person-challenge__closing {
  max-width: 760px;
  margin: 36px auto 0;

  color: var(--recruit-brown);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.9;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-challenge {
    padding: 64px 16px 72px;
  }

  .staff-person-challenge .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* パネル */
  .staff-person-challenge__panel {
    padding: 30px 20px 28px;
    border-radius: 22px;
  }

  .staff-person-challenge__panel::before {
    top: -70px;
    right: -65px;

    width: 185px;
    height: 185px;
  }

  .staff-person-challenge__panel::after {
    bottom: -85px;
    left: -70px;

    width: 195px;
    height: 195px;
  }

  /* 導入 */
  .staff-person-challenge__intro {
    margin-bottom: 22px;

    font-size: 17px;
    line-height: 1.85;
    text-align: left;
  }

  /* 挑戦例 */
  .staff-person-challenge__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .staff-person-challenge__item {
    padding: 16px 16px 16px 46px;

    border-radius: 14px;

    font-size: 15px;
    line-height: 1.75;
  }

  .staff-person-challenge__item::before {
    left: 19px;

    width: 9px;
    height: 9px;
  }

  /* 4ステップ */
  .staff-person-challenge__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    margin-top: 28px;
  }

  .staff-person-challenge__step {
    min-height: 126px;
    padding: 20px 14px 18px;

    border-radius: 17px;
  }

  .staff-person-challenge__step-number {
    top: -5px;
    right: 8px;

    font-size: 54px;
  }

  .staff-person-challenge__step-text {
    margin-top: 30px;

    font-size: 16px;
    line-height: 1.65;
  }

  /* 締め */
  .staff-person-challenge__closing {
    margin-top: 28px;

    font-size: 17px;
    line-height: 1.85;
    text-align: left !important;
  }

}
/* =========================================================
   1201 BETTER
   /staff-person/
========================================================= */

.staff-person-better {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf5 48%,
      var(--recruit-ivory) 100%
    );
}

/* 見出し下余白 */
.staff-person-better .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-better__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

/* =========================================================
   QUESTIONS
========================================================= */

.staff-person-better__questions {
  display: grid;
  gap: 14px;

  max-width: 900px;
  margin: 0 auto;
}

/* 各問い */
.staff-person-better__question {
  position: relative;

  margin: 0;
  padding: 20px 24px 20px 30px;

  border: 1px solid rgba(185, 104, 40, 0.13);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  color: var(--recruit-brown);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;

  box-shadow:
    0 9px 24px rgba(90, 64, 48, 0.05);
}

/* 左のアクセント */
.staff-person-better__question::before {
  content: "";

  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;

  width: 4px;

  border-radius: 0 4px 4px 0;
  background: var(--recruit-orange-dark);
}

/* =========================================================
   MESSAGE
========================================================= */

.staff-person-better__message {
  position: relative;

  max-width: 820px;
  margin: 36px auto 0;
  padding: 34px 36px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.13);
  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.82);

  box-shadow:
    0 12px 30px rgba(90, 64, 48, 0.055);
}

/* 装飾円 */
.staff-person-better__message::after {
  content: "";

  position: absolute;
  right: -55px;
  bottom: -55px;

  width: 150px;
  height: 150px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.06);

  pointer-events: none;
}

/* 本文 */
.staff-person-better__message p {
  position: relative;
  z-index: 1;

  margin: 0 0 18px;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
}

.staff-person-better__message p:last-child {
  margin-bottom: 0;
}

/* 締め */
.staff-person-better__closing {
  margin-top: 26px !important;

  color: var(--recruit-brown) !important;
  font-size: 19px !important;
  font-weight: 700;
  line-height: 1.9 !important;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-better {
    padding: 64px 16px 72px;
  }

  .staff-person-better .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* 問い */
  .staff-person-better__questions {
    gap: 10px;
  }

  .staff-person-better__question {
    padding: 18px 18px 18px 24px;

    border-radius: 14px;

    font-size: 16px;
    line-height: 1.75;
  }

  .staff-person-better__question::before {
    top: 10px;
    bottom: 10px;

    width: 3px;
  }

  /* メッセージ */
  .staff-person-better__message {
    margin-top: 28px;
    padding: 26px 22px;

    border-radius: 18px;
  }

  .staff-person-better__message::after {
    right: -45px;
    bottom: -45px;

    width: 120px;
    height: 120px;
  }

  .staff-person-better__message p {
    font-size: 15px;
    line-height: 1.9;
  }

  .staff-person-better__closing {
    margin-top: 22px !important;

    font-size: 17px !important;
    line-height: 1.85 !important;
    text-align: left !important;
  }

}
/* =========================================================
   1201 FUTURE
   /staff-person/
========================================================= */

.staff-person-future {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      var(--recruit-ivory) 0%,
      #fffaf5 50%,
      #ffffff 100%
    );
}

/* 見出し下余白 */
.staff-person-future .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-future__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

/* =========================================================
   PANEL
========================================================= */

.staff-person-future__panel {
  position: relative;
  padding: 44px 46px 42px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,250,245,0.98) 66%,
      rgba(248,238,223,0.98) 100%
    );

  box-shadow:
    0 18px 42px rgba(90, 64, 48, 0.08);
}

/* 右上装飾 */
.staff-person-future__panel::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -85px;

  width: 260px;
  height: 260px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.07);

  pointer-events: none;
}

/* 左下装飾 */
.staff-person-future__panel::after {
  content: "";
  position: absolute;
  bottom: -115px;
  left: -95px;

  width: 270px;
  height: 270px;

  border-radius: 50%;
  background: rgba(115, 133, 104, 0.055);

  pointer-events: none;
}

/* 中身を前面へ */
.staff-person-future__panel > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   INTRO
========================================================= */

.staff-person-future__intro {
  margin: 0 0 24px;

  color: var(--recruit-brown);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

/* =========================================================
   FUTURE LIST
========================================================= */

.staff-person-future__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;

  max-width: 900px;
  margin: 0 auto;
}

/* 各項目 */
.staff-person-future__item {
  position: relative;

  margin: 0;
  padding: 18px 20px 18px 52px;

  border: 1px solid rgba(185, 104, 40, 0.13);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.84);

  color: var(--recruit-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

/* 丸アイコン */
.staff-person-future__item::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 22px;

  width: 10px;
  height: 10px;

  border-radius: 50%;
  background: var(--recruit-orange-dark);

  transform: translateY(-50%);
}

/* =========================================================
   MESSAGE
========================================================= */

.staff-person-future__message {
  max-width: 820px;
  margin: 36px auto 0;
  padding: 30px 34px;

  border-top:
    1px solid rgba(185, 104, 40, 0.14);
}

.staff-person-future__message p {
  margin: 0 0 18px;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
}

/* 締め */
.staff-person-future__closing {
  margin-top: 26px !important;

  color: var(--recruit-brown) !important;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.9 !important;
}

/* =========================================================
   CTA
========================================================= */

.staff-person-future__button {
  justify-content: center;
  margin-top: 34px;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-future {
    padding: 64px 16px 72px;
  }

  .staff-person-future .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* パネル */
  .staff-person-future__panel {
    padding: 30px 20px 28px;
    border-radius: 22px;
  }

  .staff-person-future__panel::before {
    top: -75px;
    right: -65px;

    width: 190px;
    height: 190px;
  }

  .staff-person-future__panel::after {
    bottom: -85px;
    left: -70px;

    width: 200px;
    height: 200px;
  }

  /* 導入 */
  .staff-person-future__intro {
    margin-bottom: 20px;

    font-size: 17px;
    text-align: left;
  }

  /* 1列 */
  .staff-person-future__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .staff-person-future__item {
    padding: 16px 16px 16px 46px;

    border-radius: 14px;

    font-size: 15px;
    line-height: 1.75;
  }

  .staff-person-future__item::before {
    left: 19px;

    width: 9px;
    height: 9px;
  }

  /* メッセージ */
  .staff-person-future__message {
    margin-top: 28px;
    padding: 24px 0 0;
  }

  .staff-person-future__message p {
    font-size: 15px;
    line-height: 1.9;
  }

  .staff-person-future__closing {
    margin-top: 22px !important;

    font-size: 18px !important;
    line-height: 1.85 !important;
    text-align: left !important;
  }

  /* CTA */
  .staff-person-future__button {
    margin-top: 28px;
  }

  .staff-person-future__button,
  .staff-person-future__button .wp-block-button,
  .staff-person-future__button .wp-block-button__link {
    width: 100%;
  }

}
/* =========================================================
   1201 TEAMWORK
   /staff-person/
========================================================= */

.staff-person-teamwork {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf5 50%,
      var(--recruit-ivory) 100%
    );
}

/* 見出し下余白 */
.staff-person-teamwork .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-teamwork__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

/* =========================================================
   PANEL
========================================================= */

.staff-person-teamwork__panel {
  position: relative;
  padding: 44px 44px 42px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 250, 245, 0.98) 66%,
      rgba(248, 238, 223, 0.98) 100%
    );

  box-shadow:
    0 18px 42px rgba(90, 64, 48, 0.08);
}

/* 右上の装飾 */
.staff-person-teamwork__panel::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -80px;

  width: 250px;
  height: 250px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.07);

  pointer-events: none;
}

/* 左下の装飾 */
.staff-person-teamwork__panel::after {
  content: "";
  position: absolute;
  bottom: -105px;
  left: -90px;

  width: 250px;
  height: 250px;

  border-radius: 50%;
  background: rgba(115, 133, 104, 0.055);

  pointer-events: none;
}

/* 中身を前面へ */
.staff-person-teamwork__panel > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   INTRO
========================================================= */

.staff-person-teamwork__intro {
  max-width: 820px;
  margin: 0 auto 30px;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
  text-align: center;
}

/* =========================================================
   4 POINTS
========================================================= */

.staff-person-teamwork__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  max-width: 920px;
  margin: 0 auto;
}

/* カード */
.staff-person-teamwork__point {
  position: relative;

  min-height: 210px;
  padding: 30px 28px 28px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  box-shadow:
    0 10px 26px rgba(90, 64, 48, 0.055);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 上部アクセント */
.staff-person-teamwork__point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;

  width: 50px;
  height: 4px;

  border-radius: 0 0 4px 4px;
  background: var(--recruit-orange-dark);
}

/* 右上の薄い円 */
.staff-person-teamwork__point::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;

  width: 115px;
  height: 115px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.06);

  pointer-events: none;
}

/* hover */
.staff-person-teamwork__point:hover {
  transform: translateY(-4px);

  border-color: rgba(185, 104, 40, 0.26);

  box-shadow:
    0 17px 36px rgba(90, 64, 48, 0.095);
}

/* 番号 */
.staff-person-teamwork__point-number {
  position: relative;
  z-index: 1;

  margin: 0 0 13px;

  color: var(--recruit-orange-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

/* タイトル */
.staff-person-teamwork__point-title {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--recruit-brown);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

/* 本文 */
.staff-person-teamwork__point-text {
  position: relative;
  z-index: 1;

  margin: 13px 0 0;

  color: var(--recruit-text);
  font-size: 15px;
  line-height: 1.9;
}

/* =========================================================
   MESSAGE
========================================================= */

.staff-person-teamwork__message {
  max-width: 800px;
  margin: 34px auto 0;
  padding-top: 30px;

  border-top:
    1px solid rgba(185, 104, 40, 0.14);
}

.staff-person-teamwork__message p {
  margin: 0;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
}

.staff-person-teamwork__closing {
  margin-top: 22px !important;

  color: var(--recruit-brown) !important;
  font-size: 19px !important;
  font-weight: 700;
  line-height: 1.9 !important;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-teamwork {
    padding: 64px 16px 72px;
  }

  .staff-person-teamwork .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* パネル */
  .staff-person-teamwork__panel {
    padding: 30px 20px 28px;
    border-radius: 22px;
  }

  .staff-person-teamwork__panel::before {
    top: -70px;
    right: -60px;

    width: 185px;
    height: 185px;
  }

  .staff-person-teamwork__panel::after {
    bottom: -80px;
    left: -65px;

    width: 190px;
    height: 190px;
  }

  /* 導入 */
  .staff-person-teamwork__intro {
    margin-bottom: 24px;

    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  /* 1列 */
  .staff-person-teamwork__points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .staff-person-teamwork__point {
    min-height: auto;
    padding: 26px 22px 24px;

    border-radius: 17px;
  }

  .staff-person-teamwork__point::before {
    left: 22px;
    width: 44px;
  }

  .staff-person-teamwork__point::after {
    top: -35px;
    right: -35px;

    width: 100px;
    height: 100px;
  }

  .staff-person-teamwork__point-number {
    margin-bottom: 11px;
  }

  .staff-person-teamwork__point-title {
    font-size: 19px;
  }

  .staff-person-teamwork__point-text {
    margin-top: 11px;

    font-size: 15px;
    line-height: 1.9;
  }

  /* メッセージ */
  .staff-person-teamwork__message {
    margin-top: 28px;
    padding-top: 24px;
  }

  .staff-person-teamwork__message p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left !important;
  }

  .staff-person-teamwork__closing {
    margin-top: 20px !important;

    font-size: 17px !important;
    line-height: 1.85 !important;
    text-align: left !important;
  }

}
/* =========================================================
   1201 RESPONSIBILITY
   /staff-person/
========================================================= */

.staff-person-responsibility {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;

  background:
    linear-gradient(
      180deg,
      var(--recruit-ivory) 0%,
      #fffaf5 50%,
      #ffffff 100%
    );
}

/* 見出し下余白 */
.staff-person-responsibility .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-responsibility__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

/* =========================================================
   GRID
========================================================= */

.staff-person-responsibility__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* =========================================================
   CARD
========================================================= */

.staff-person-responsibility-card {
  position: relative;

  min-height: 220px;
  padding: 30px 26px 28px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  box-shadow:
    0 10px 28px rgba(90, 64, 48, 0.055);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 上部アクセント */
.staff-person-responsibility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;

  width: 48px;
  height: 4px;

  border-radius: 0 0 4px 4px;
  background: var(--recruit-orange-dark);
}

/* 右上装飾 */
.staff-person-responsibility-card::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;

  width: 112px;
  height: 112px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.06);

  pointer-events: none;
}

/* hover */
.staff-person-responsibility-card:hover {
  transform: translateY(-4px);

  border-color: rgba(185, 104, 40, 0.26);

  box-shadow:
    0 17px 36px rgba(90, 64, 48, 0.095);
}

/* 番号 */
.staff-person-responsibility-card__number {
  position: relative;
  z-index: 1;

  margin: 0 0 13px;

  color: var(--recruit-orange-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

/* タイトル */
.staff-person-responsibility-card__title {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--recruit-brown);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

/* 本文 */
.staff-person-responsibility-card__text {
  position: relative;
  z-index: 1;

  margin: 13px 0 0;

  color: var(--recruit-text);
  font-size: 15px;
  line-height: 1.9;
}

/* =========================================================
   MESSAGE
========================================================= */

.staff-person-responsibility__message {
  max-width: 820px;
  margin: 36px auto 0;
  padding: 30px 32px;

  border-top:
    1px solid rgba(185, 104, 40, 0.14);
}

.staff-person-responsibility__message p {
  margin: 0;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
}

/* 締め */
.staff-person-responsibility__closing {
  margin-top: 22px !important;

  color: var(--recruit-brown) !important;
  font-size: 19px !important;
  font-weight: 700;
  line-height: 1.9 !important;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-responsibility {
    padding: 64px 16px 72px;
  }

  .staff-person-responsibility .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* 1列 */
  .staff-person-responsibility__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .staff-person-responsibility-card {
    min-height: auto;
    padding: 26px 22px 24px;

    border-radius: 17px;
  }

  .staff-person-responsibility-card::before {
    left: 22px;
    width: 44px;
  }

  .staff-person-responsibility-card::after {
    top: -36px;
    right: -36px;

    width: 100px;
    height: 100px;
  }

  .staff-person-responsibility-card__number {
    margin-bottom: 11px;
  }

  .staff-person-responsibility-card__title {
    font-size: 18px;
  }

  .staff-person-responsibility-card__text {
    margin-top: 11px;

    font-size: 15px;
    line-height: 1.9;
  }

  /* メッセージ */
  .staff-person-responsibility__message {
    margin-top: 28px;
    padding: 24px 0 0;
  }

  .staff-person-responsibility__message p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left !important;
  }

  .staff-person-responsibility__closing {
    margin-top: 20px !important;

    font-size: 17px !important;
    line-height: 1.85 !important;
    text-align: left !important;
  }

}
/* =========================================================
   1201 MESSAGE
   /staff-person/
========================================================= */

.staff-person-message {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 104px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf5 46%,
      var(--recruit-ivory) 100%
    );
}

/* 見出し下余白 */
.staff-person-message .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-message__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================================================
   MESSAGE PANEL
========================================================= */

.staff-person-message__panel {
  position: relative;

  max-width: 840px;
  margin: 0 auto;
  padding: 46px 48px 44px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 250, 245, 0.98) 64%,
      rgba(248, 238, 223, 0.98) 100%
    );

  box-shadow:
    0 18px 44px rgba(90, 64, 48, 0.08);
}

/* 右上装飾 */
.staff-person-message__panel::before {
  content: "";
  position: absolute;
  top: -105px;
  right: -90px;

  width: 270px;
  height: 270px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.07);

  pointer-events: none;
}

/* 左下装飾 */
.staff-person-message__panel::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;

  width: 285px;
  height: 285px;

  border-radius: 50%;
  background: rgba(115, 133, 104, 0.055);

  pointer-events: none;
}

/* 中身を前面へ */
.staff-person-message__panel > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   ACTIONS
========================================================= */

.staff-person-message__actions {
  display: grid;
  gap: 10px;

  max-width: 700px;
  margin: 0 auto 30px;
}

.staff-person-message__action {
  position: relative;

  margin: 0;
  padding: 15px 18px 15px 44px;

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.76);

  color: var(--recruit-brown);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

/* 小さな丸 */
.staff-person-message__action::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 20px;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--recruit-orange-dark);

  transform: translateY(-50%);
}

/* =========================================================
   TEXT
========================================================= */

.staff-person-message__text {
  max-width: 720px;
  margin: 0 auto 18px;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.95;
}

/* =========================================================
   KEYWORDS
========================================================= */

.staff-person-message__keywords {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;

  max-width: 720px;
  margin: 34px auto 0;
}

.staff-person-message__keyword {
  margin: 0;
  padding: 16px 18px;

  border: 1px solid rgba(185, 104, 40, 0.13);
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  color: var(--recruit-brown);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

/* =========================================================
   LEAD / CLOSING
========================================================= */

.staff-person-message__lead {
  margin: 36px auto 0 !important;

  color: var(--recruit-orange-dark) !important;
  font-size: 22px !important;
  font-weight: 700;
  line-height: 1.8 !important;
}

.staff-person-message__closing {
  max-width: 760px;
  margin: 28px auto 0 !important;

  color: var(--recruit-brown) !important;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.95 !important;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-message {
    padding: 64px 16px 76px;
  }

  .staff-person-message .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* パネル */
  .staff-person-message__panel {
    padding: 30px 20px 28px;
    border-radius: 22px;
  }

  .staff-person-message__panel::before {
    top: -75px;
    right: -65px;

    width: 195px;
    height: 195px;
  }

  .staff-person-message__panel::after {
    bottom: -90px;
    left: -75px;

    width: 205px;
    height: 205px;
  }

  /* ACTION */
  .staff-person-message__actions {
    gap: 8px;
    margin-bottom: 24px;
  }

  .staff-person-message__action {
    padding: 14px 14px 14px 40px;

    border-radius: 12px;

    font-size: 15px;
    line-height: 1.7;
  }

  .staff-person-message__action::before {
    left: 18px;

    width: 7px;
    height: 7px;
  }

  /* 本文 */
  .staff-person-message__text {
    font-size: 15px;
    line-height: 1.9;
  }

  /* キーワード */
  .staff-person-message__keywords {
    grid-template-columns: 1fr;
    gap: 9px;

    margin-top: 26px;
  }

  .staff-person-message__keyword {
    padding: 14px 16px;

    border-radius: 12px;

    font-size: 15px;
    text-align: left;
  }

  /* メインメッセージ */
  .staff-person-message__lead {
    margin-top: 28px !important;

    font-size: 19px !important;
    line-height: 1.8 !important;
  }

  .staff-person-message__closing {
    margin-top: 22px !important;

    font-size: 16px !important;
    line-height: 1.9 !important;
    text-align: left !important;
  }

}
/* =========================================================
   1201 NEXT
   /staff-person/
========================================================= */

.staff-person-next {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 104px;

  background:
    linear-gradient(
      180deg,
      var(--recruit-ivory) 0%,
      #fffaf5 48%,
      #ffffff 100%
    );
}

/* 見出し下余白 */
.staff-person-next .daikon-section-heading {
  margin-bottom: 42px !important;
}

/* 内側 */
.staff-person-next__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

/* =========================================================
   NEXT GRID
========================================================= */

.staff-person-next__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* =========================================================
   NEXT CARD
========================================================= */

.staff-person-next-card {
  position: relative;

  min-height: 300px;
  padding: 34px 30px 30px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 66%,
      #f8eedf 100%
    );

  box-shadow:
    0 14px 34px rgba(90, 64, 48, 0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 上部アクセント */
.staff-person-next-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;

  width: 54px;
  height: 4px;

  border-radius: 0 0 4px 4px;
  background: var(--recruit-orange-dark);
}

/* 右上装飾 */
.staff-person-next-card::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;

  width: 132px;
  height: 132px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.065);

  pointer-events: none;
}

/* hover */
.staff-person-next-card:hover {
  transform: translateY(-5px);

  border-color: rgba(185, 104, 40, 0.27);

  box-shadow:
    0 20px 44px rgba(90, 64, 48, 0.11);
}

/* 番号 */
.staff-person-next-card__number {
  position: relative;
  z-index: 1;

  margin: 0 0 16px;

  color: var(--recruit-orange-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

/* タイトル */
.staff-person-next-card__title {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--recruit-brown);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}

/* 本文 */
.staff-person-next-card__text {
  position: relative;
  z-index: 1;

  margin: 15px 0 0;

  color: var(--recruit-text);
  font-size: 15px;
  line-height: 1.9;
}

/* リンク */
.staff-person-next-card__link {
  position: relative;
  z-index: 1;

  margin: 24px 0 0;
}

.staff-person-next-card__link a {
  color: var(--recruit-orange-dark);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;

  text-decoration: none;

  transition:
    color 0.2s ease,
    letter-spacing 0.2s ease;
}

.staff-person-next-card__link a:hover,
.staff-person-next-card__link a:focus-visible {
  color: var(--recruit-orange);
  letter-spacing: 0.02em;
}

/* =========================================================
   ENTRY PANEL
========================================================= */

.staff-person-next__entry {
  position: relative;

  max-width: 860px;
  margin: 42px auto 0;
  padding: 40px 42px 38px;

  overflow: hidden;

  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      var(--recruit-brown) 0%,
      #684936 100%
    );

  box-shadow:
    0 18px 42px rgba(90, 64, 48, 0.14);
}

/* 装飾 */
.staff-person-next__entry::before {
  content: "";

  position: absolute;
  top: -90px;
  right: -70px;

  width: 230px;
  height: 230px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.14);

  pointer-events: none;
}

.staff-person-next__entry::after {
  content: "";

  position: absolute;
  bottom: -100px;
  left: -80px;

  width: 240px;
  height: 240px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);

  pointer-events: none;
}

/* 前面へ */
.staff-person-next__entry > * {
  position: relative;
  z-index: 1;
}

/* 小見出し */
.staff-person-next__entry-label {
  margin: 0 0 10px !important;

  color: #f1c28f !important;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.6 !important;
}

/* タイトル */
.staff-person-next__entry-title {
  margin: 0;

  color: #ffffff !important;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
}

/* 本文 */
.staff-person-next__entry-text {
  max-width: 680px;
  margin: 18px auto 0 !important;

  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 16px !important;
  line-height: 1.95 !important;
}

/* ボタン */
.staff-person-next__entry-button {
  justify-content: center;
  margin-top: 28px;
}

/* 暗背景なのでprimaryを少し明るく */
.staff-person-next__entry
.recruit-btn--primary
.wp-block-button__link {
  background: var(--recruit-orange);
  color: #ffffff;
}

.staff-person-next__entry
.recruit-btn--primary
.wp-block-button__link:hover,
.staff-person-next__entry
.recruit-btn--primary
.wp-block-button__link:focus-visible {
  background: var(--recruit-orange-dark);
  color: #ffffff;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-next {
    padding: 64px 16px 76px;
  }

  .staff-person-next .daikon-section-heading {
    margin-bottom: 32px !important;
  }

  /* 1列 */
  .staff-person-next__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .staff-person-next-card {
    min-height: auto;
    padding: 28px 24px 26px;

    border-radius: 19px;
  }

  .staff-person-next-card::before {
    left: 24px;
    width: 46px;
  }

  .staff-person-next-card::after {
    top: -40px;
    right: -40px;

    width: 110px;
    height: 110px;
  }

  .staff-person-next-card__number {
    margin-bottom: 12px;
  }

  .staff-person-next-card__title {
    font-size: 19px;
  }

  .staff-person-next-card__text {
    margin-top: 12px;

    font-size: 15px;
    line-height: 1.9;
  }

  .staff-person-next-card__link {
    margin-top: 20px;
  }

  /* ENTRY */
  .staff-person-next__entry {
    margin-top: 30px;
    padding: 32px 20px 28px;

    border-radius: 22px;
  }

  .staff-person-next__entry::before {
    top: -70px;
    right: -60px;

    width: 185px;
    height: 185px;
  }

  .staff-person-next__entry::after {
    bottom: -80px;
    left: -65px;

    width: 190px;
    height: 190px;
  }

  .staff-person-next__entry-label {
    font-size: 13px !important;
  }

  .staff-person-next__entry-title {
    font-size: 23px;
  }

  .staff-person-next__entry-text {
    margin-top: 14px !important;

    font-size: 15px !important;
    line-height: 1.9 !important;

    text-align: left !important;
  }

  .staff-person-next__entry-button {
    margin-top: 24px;
  }

  .staff-person-next__entry-button,
  .staff-person-next__entry-button .wp-block-button,
  .staff-person-next__entry-button .wp-block-button__link {
    width: 100%;
  }

}
/* =========================================================
   1201 PERSON - Impact Message Card
========================================================= */

.staff-person-intro__message-card {
  position: relative;
  max-width: 820px;
  margin: 34px auto;
  padding: 46px 54px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.18);
  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      var(--recruit-brown) 0%,
      #6a4935 100%
    );

  box-shadow:
    0 22px 50px rgba(90, 64, 48, 0.18);
}

/* 右上の大きな装飾円 */
.staff-person-intro__message-card::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -70px;

  width: 250px;
  height: 250px;

  border-radius: 50%;
  background: rgba(217, 138, 58, 0.18);

  pointer-events: none;
}

/* 左下の薄い装飾円 */
.staff-person-intro__message-card::after {
  content: "";
  position: absolute;
  bottom: -115px;
  left: -90px;

  width: 260px;
  height: 260px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);

  pointer-events: none;
}

/* メッセージ本体 */
.staff-person-intro__message-card
.staff-person-intro__message {
  position: relative;
  z-index: 1;

  margin: 0;

  color: #ffffff !important;

  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.03em;

  text-align: center;
}

/* 強調ライン */
.staff-person-intro__message-card
.staff-person-intro__message::before {
  content: "";

  display: block;

  width: 52px;
  height: 4px;

  margin: 0 auto 24px;

  border-radius: 999px;

  background: #f1c28f;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-intro__message-card {
    margin: 26px auto;
    padding: 34px 22px 32px;

    border-radius: 22px;
  }

  .staff-person-intro__message-card::before {
    top: -70px;
    right: -60px;

    width: 190px;
    height: 190px;
  }

  .staff-person-intro__message-card::after {
    bottom: -85px;
    left: -70px;

    width: 200px;
    height: 200px;
  }

  .staff-person-intro__message-card
  .staff-person-intro__message {
    font-size: 20px;
    line-height: 1.8;
    text-align: left !important;
  }

  .staff-person-intro__message-card
  .staff-person-intro__message::before {
    width: 44px;
    height: 3px;

    margin: 0 0 20px;
  }

}
@media screen and (min-width: 782px) {

  .staff-person-intro__message-line {
    white-space: nowrap;
  }

}

/* =========================================================
   1201 PERSON - Final Adjustments
========================================================= */

/* Intro message */
.staff-person-intro__message-card {
  max-width: 900px;
  padding-right: 40px;
  padding-left: 40px;
}

/* PERSON section spacing */
.staff-person-person {
  padding-top: 20px !important;
}

.staff-person-person .daikon-section-heading {
  margin-bottom: 20px !important;
}

/* Keypoint cards */
.staff-person-keypoint-card {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
}

.staff-person-keypoint-card__number {
  position: absolute;
  top: -10px !important;
  right: 12px;
  z-index: 0;
  margin: 0 !important;
  color: #55A64E;
  font-size: 100px !important;
  font-weight: 700;
  line-height: 1 !important;
  opacity: 0.08;
  pointer-events: none;
}

.staff-person-keypoint-card__title,
.staff-person-keypoint-card__text {
  position: relative;
  z-index: 1;
}

/* Values cards - background number */
.staff-person-value-card {
  position: relative;
  overflow: hidden;
}

.staff-person-value-card__number {
  position: absolute;
  right: 16px;
  bottom: -40px;
  z-index: 0;
  margin: 0;
  color: var(--recruit-orange-dark);
  font-size: 100px !important;
  font-weight: 700;
  line-height: 1 !important;
  opacity: 0.08;
  pointer-events: none;
}

.staff-person-value-card__title,
.staff-person-value-card__text {
  position: relative;
  z-index: 1;
}

/* PERSON cards - background number / inner spacing */
.staff-person-person-card {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 32px 40px 30px !important;
}

.staff-person-person-card__number {
  position: absolute;
  right: 14px;
  bottom: -75px !important;
  z-index: 0;
  margin: 0;
  color: var(--recruit-orange-dark);
  font-size: 100px !important;
  font-weight: 700;
  line-height: 1 !important;
  opacity: 0.08;
  pointer-events: none;
}

.staff-person-person-card__title,
.staff-person-person-card__text {
  position: relative;
  z-index: 1;
}

/* Experience cards */
.staff-person-experience .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-person-experience__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 10px 18px 10px 58px;
  line-height: 1.6;
}

.staff-person-experience__item::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--recruit-orange-light);
  color: var(--recruit-orange-dark);
  font-size: 16px;
  font-weight: 700;
  transform: translateY(-50%);
}

/* CTA buttons */
.staff-person-person__buttons .recruit-btn {
  flex: 0 0 240px;
  width: 240px;
}

.staff-person-person__buttons .recruit-btn .wp-block-button__link {
  width: 100%;
}

/* Smartphone */
@media screen and (max-width: 781px) {
  .staff-person-intro__message-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .staff-person-person-card {
    padding: 22px 24px 26px !important;
  }

  .staff-person-person__buttons .recruit-btn {
    flex-basis: auto;
    width: 100%;
  }

  .staff-person-experience .wp-block-column {
    gap: 8px;
  }
}
/* =========================================================
   1201 EXPERIENCE CARDS
========================================================= */

.staff-person-experience-cards__grid {
  gap: 20px;
  margin: 0;
}

.staff-person-experience-cards__grid > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-person-experience-cards__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 58px;
  margin: 0 !important;
  padding: 11px 22px 11px 62px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;

  box-shadow:
    0 8px 22px rgba(90, 64, 48, 0.055);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* チェック丸 */
.staff-person-experience-cards__item::before {
  content: "✓";

  position: absolute;
  top: 50%;
  left: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: var(--recruit-orange-light);
  color: var(--recruit-orange-dark);

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  transform: translateY(-50%);
}

/* 右側の薄い装飾 */
.staff-person-experience-cards__item::after {
  content: "";

  position: absolute;
  top: -28px;
  right: -28px;

  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.05);

  pointer-events: none;
}

.staff-person-experience-cards__item:hover {
  transform: translateY(-2px);

  border-color: rgba(185, 104, 40, 0.24);

  box-shadow:
    0 12px 28px rgba(90, 64, 48, 0.085);
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-experience-cards__grid {
    display: block !important;
  }

  .staff-person-experience-cards__grid > .wp-block-column {
    gap: 8px;
    margin-bottom: 8px;
  }

  .staff-person-experience-cards__grid > .wp-block-column:last-child {
    margin-bottom: 0;
  }

  .staff-person-experience-cards__item {
    min-height: 54px;
    padding: 10px 18px 10px 56px;

    border-radius: 16px;

    font-size: 15px;
  }

  .staff-person-experience-cards__item::before {
    left: 18px;

    width: 28px;
    height: 28px;

    font-size: 14px;
  }

}
/* =========================================================
   1201 EXPERIENCE 背景デザイン
========================================================= */

.staff-person-experience {
  position: relative;
  overflow: hidden;
  padding: 56px 32px;
  border-radius: 28px;

  background:
    linear-gradient(135deg, #fffdf9 0%, #fdf6ee 52%, #f7efe5 100%);

  box-shadow:
    0 12px 36px rgba(90, 64, 48, 0.06);
}

/* 背景のやわらかい装飾 */
.staff-person-experience::before,
.staff-person-experience::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.staff-person-experience::before {
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  background: rgba(217, 138, 58, 0.08);
}

.staff-person-experience::after {
  left: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: rgba(85, 166, 78, 0.07);
}

/* 中身を装飾より前面に */
.staff-person-experience-cards,
.staff-person-experience__note {
  position: relative;
  z-index: 1;
}
/* =========================================================
   1201 CHALLENGE LIST
========================================================= */

.staff-person-challenge-list {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.staff-person-challenge-list__grid > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 各カード */
.staff-person-challenge-list__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 62px;
  margin: 0 !important;
  padding: 12px 24px 12px 64px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffaf5 65%,
      #f8eedf 100%
    );

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;

  box-shadow:
    0 8px 22px rgba(90, 64, 48, 0.055);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 左のアイコン */
.staff-person-challenge-list__item::before {
  content: "→";

  position: absolute;
  top: 50%;
  left: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: var(--recruit-orange-dark);
  color: #fff;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  transform: translateY(-50%);
}

/* 右上の装飾 */
.staff-person-challenge-list__item::after {
  content: "";

  position: absolute;
  top: -34px;
  right: -34px;

  width: 86px;
  height: 86px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.055);

  pointer-events: none;
}

/* hover */
.staff-person-challenge-list__item:hover {
  transform: translateY(-2px);

  border-color: rgba(185, 104, 40, 0.26);

  box-shadow:
    0 12px 28px rgba(90, 64, 48, 0.09);
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-challenge-list__grid > .wp-block-column {
    gap: 8px;
    margin-bottom: 8px;
  }

  .staff-person-challenge-list__grid > .wp-block-column:last-child {
    margin-bottom: 0;
  }

  .staff-person-challenge-list__item {
    min-height: 56px;
    padding: 10px 18px 10px 56px;

    border-radius: 16px;

    font-size: 15px;
  }

  .staff-person-challenge-list__item::before {
    left: 18px;

    width: 28px;
    height: 28px;

    font-size: 15px;
  }

}
/* =========================================================
   1201 CHALLENGE LIST - Simple
========================================================= */

.staff-person-challenge-list__grid {
  gap: 20px;
  margin: 0 !important;
}

.staff-person-challenge-list__grid > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-person-challenge-list__item {
  margin: 0 !important;
  padding: 10px 14px;

  border-bottom: 1px solid rgba(185, 104, 40, 0.12);

  color: var(--recruit-brown);
  font-size: 16px;
  line-height: 1.7;
}

.staff-person-challenge-list__item:last-child {
  border-bottom: 0;
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-challenge-list__grid > .wp-block-column {
    gap: 6px;
  }

  .staff-person-challenge-list__grid > .wp-block-column:first-child {
    margin-bottom: 6px;
  }

  .staff-person-challenge-list__item {
    padding: 9px 10px;
    font-size: 15px;
  }
}
/* =========================================================
   1201 CHALLENGE LIST - RESET & SIMPLE
========================================================= */

.staff-person-challenge-list {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 30px;

  border-radius: 20px;
  background: #fffaf5;
}

.staff-person-challenge-list__grid {
  gap: 20px !important;
  margin: 0 !important;
}

.staff-person-challenge-list__grid > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 8px !important;
}

/* 項目 */
.staff-person-challenge-list__item {
  position: static !important;
  display: block !important;

  min-height: 0 !important;
  margin: 0 !important;
  padding: 11px 14px !important;

  overflow: visible !important;

  border: 0 !important;
  border-bottom: 1px solid rgba(185, 104, 40, 0.14) !important;
  border-radius: 0 !important;

  background: transparent !important;

  color: var(--recruit-brown);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;

  box-shadow: none !important;
  transform: none !important;
}

/* 前に作った矢印を完全に削除 */
.staff-person-challenge-list__item::before,
.staff-person-challenge-list__item::after {
  content: none !important;
  display: none !important;
}

.staff-person-challenge-list__item:last-child {
  border-bottom: 0 !important;
}

/* hoverも解除 */
.staff-person-challenge-list__item:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-challenge-list {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .staff-person-challenge-list__grid {
    display: block !important;
  }

  .staff-person-challenge-list__grid > .wp-block-column {
    gap: 6px !important;
  }

  .staff-person-challenge-list__grid > .wp-block-column:first-child {
    margin-bottom: 8px;
  }

  .staff-person-challenge-list__item {
    padding: 9px 10px !important;
    font-size: 15px;
  }
}
/* =========================================================
   1201 CHALLENGE FLOW
========================================================= */

.staff-person-challenge-flow {
  position: relative;
  max-width: 1080px;
  margin: 32px auto 0;
}

.staff-person-challenge-flow__grid {
  position: relative;
  gap: 18px;
  margin: 0 !important;
}

/* 4ステップをつなぐライン */
.staff-person-challenge-flow__grid::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  z-index: 0;

  height: 2px;

  background: rgba(185, 104, 40, 0.16);
}

.staff-person-challenge-flow__grid > .wp-block-column {
  position: relative;
  z-index: 1;

  display: flex;
}

/* カード */
.staff-person-challenge-flow__step {
  position: relative;

  width: 100%;
  min-height: 205px;

  padding: 74px 22px 24px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.14);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  text-align: center;

  box-shadow:
    0 10px 28px rgba(90, 64, 48, 0.055);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* 番号 */
.staff-person-challenge-flow__number {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  margin: 0;

  border-radius: 50%;

  background: var(--recruit-orange-dark);
  color: #fff;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  transform: translateX(-50%);

  box-shadow:
    0 6px 16px rgba(185, 104, 40, 0.18);
}

/* タイトル */
.staff-person-challenge-flow__title {
  position: relative;
  z-index: 1;

  margin: 0 0 10px;

  color: var(--recruit-brown);

  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

/* 説明 */
.staff-person-challenge-flow__text {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--recruit-text);

  font-size: 14px;
  line-height: 1.8;
}

/* 薄い背景装飾 */
.staff-person-challenge-flow__step::after {
  content: "";

  position: absolute;
  right: -36px;
  bottom: -36px;

  width: 100px;
  height: 100px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.055);

  pointer-events: none;
}

/* Hover */
.staff-person-challenge-flow__step:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 34px rgba(90, 64, 48, 0.09);
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-challenge-flow {
    margin-top: 24px;
  }

  .staff-person-challenge-flow__grid {
    display: block !important;
  }

  /* スマホでは縦ライン */
  .staff-person-challenge-flow__grid::before {
    top: 24px;
    bottom: 24px;
    left: 21px;
    right: auto;

    width: 2px;
    height: auto;
  }

  .staff-person-challenge-flow__grid > .wp-block-column {
    margin-bottom: 10px;
  }

  .staff-person-challenge-flow__grid > .wp-block-column:last-child {
    margin-bottom: 0;
  }

  .staff-person-challenge-flow__step {
    min-height: auto;

    padding: 20px 18px 20px 70px;

    border-radius: 18px;

    text-align: left;
  }

  .staff-person-challenge-flow__number {
    top: 20px;
    left: 20px;

    width: 38px;
    height: 38px;

    font-size: 13px;

    transform: none;
  }

  .staff-person-challenge-flow__title {
    margin: 0 0 5px;

    font-size: 17px;
  }

  .staff-person-challenge-flow__text {
    font-size: 14px;
  }
}
.staff-person-challenge-flow__number {
  background: var(--recruit-orange-dark) !important;
  color: #fff !important;
}
/* CHALLENGE FLOW 番号を確実に表示 */
.staff-person-challenge-flow__number {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 44px !important;
  height: 44px !important;

  margin: 0 !important;

  border-radius: 50% !important;

  background: #b96828 !important;
  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  opacity: 1 !important;
  visibility: visible !important;
}
.staff-person-challenge__intro,
.staff-person-challenge__closing {
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
/* =========================================================
   1201 BETTER QUESTIONS - Simple Accent
========================================================= */

.staff-person-better-questions {
  max-width: 1040px;
  margin: 0 auto;
}

.staff-person-better-questions__grid {
  gap: 18px;
  margin: 0 !important;
}

.staff-person-better-questions__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 62px;
  margin: 0 !important;
  padding: 13px 22px 13px 28px;

  border: 1px solid rgba(185, 104, 40, 0.12);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;

  box-shadow:
    0 7px 20px rgba(90, 64, 48, 0.045);
}

/* 左側の細いアクセント */
.staff-person-better-questions__item::before {
  content: "";

  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;

  width: 4px;

  border-radius: 0 4px 4px 0;

  background: var(--recruit-orange-dark);
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-better-questions__grid > .wp-block-column {
    gap: 8px;
    margin-bottom: 8px;
  }

  .staff-person-better-questions__grid > .wp-block-column:last-child {
    margin-bottom: 0;
  }

  .staff-person-better-questions__item::before {
    top: 12px;
    bottom: 12px;
    width: 3px;
  }
}
/* =========================================================
   1201 BETTER QUESTIONS
   上品・シンプルカード
========================================================= */

.staff-person-better-questions {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 30px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      #fffdf9 0%,
      #fbf5ee 100%
    );
}

.staff-person-better-questions__grid {
  gap: 18px !important;
  margin: 0 !important;
}

.staff-person-better-questions__grid > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-person-better-questions__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 62px;

  margin: 0 !important;
  padding: 13px 22px 13px 26px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.11);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.88);

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;

  box-shadow:
    0 6px 18px rgba(90, 64, 48, 0.045);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 左の細いライン */
.staff-person-better-questions__item::before {
  content: "";

  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;

  width: 3px;

  border-radius: 0 3px 3px 0;

  background: var(--recruit-orange-dark);
}

/* 右下にごく薄い装飾 */
.staff-person-better-questions__item::after {
  content: "";

  position: absolute;
  right: -28px;
  bottom: -32px;

  width: 78px;
  height: 78px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.045);

  pointer-events: none;
}

.staff-person-better-questions__item:hover {
  transform: translateY(-2px);

  border-color: rgba(185, 104, 40, 0.2);

  box-shadow:
    0 10px 24px rgba(90, 64, 48, 0.07);
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-better-questions {
    padding: 20px 16px;

    border-radius: 18px;
  }

  .staff-person-better-questions__grid {
    display: block !important;
  }

  .staff-person-better-questions__grid > .wp-block-column {
    gap: 8px;
  }

  .staff-person-better-questions__grid > .wp-block-column:first-child {
    margin-bottom: 8px;
  }

  .staff-person-better-questions__item {
    min-height: 56px;

    padding: 11px 16px 11px 22px;

    border-radius: 14px;

    font-size: 15px;
  }

  .staff-person-better-questions__item::before {
    top: 11px;
    bottom: 11px;

    width: 3px;
  }
}
/* =========================================================
   1201 FUTURE GOALS
========================================================= */

.staff-person-future-goals__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 62px;
  margin: 0 !important;
  padding: 13px 44px 13px 22px;

  overflow: hidden;

  border: 1px solid rgba(85, 166, 78, 0.14);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fbf5 100%
    );

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;

  box-shadow:
    0 7px 20px rgba(90, 64, 48, 0.045);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* 右上の小さなアクセント */
.staff-person-future-goals__item::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 42px;
  height: 42px;

  border-radius: 0 16px 0 42px;

  background: rgba(85, 166, 78, 0.09);
}

/* 小さなドット */
.staff-person-future-goals__item::after {
  content: "";

  position: absolute;
  top: 13px;
  right: 13px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #55A64E;
  opacity: 0.7;
}

.staff-person-future-goals__item:hover {
  transform: translateY(-2px);

  box-shadow:
    0 11px 26px rgba(90, 64, 48, 0.07);
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-future-goals__item {
    min-height: 56px;
    padding: 11px 40px 11px 18px;

    border-radius: 14px;

    font-size: 15px;
  }

  .staff-person-future-goals__item::before {
    width: 38px;
    height: 38px;

    border-radius: 0 14px 0 38px;
  }

  .staff-person-future-goals__item::after {
    top: 12px;
    right: 12px;
  }
}
/* =========================================================
   1201 FUTURE GOALS
   BETTERセクションとトーン統一
========================================================= */

.staff-person-future-goals {
  gap: 18px !important;
  max-width: 1040px;
  margin: 0 auto !important;
}

.staff-person-future-goals > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-person-future-goals__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 62px;
  margin: 0 !important;
  padding: 13px 22px 13px 26px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.12);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;

  box-shadow:
    0 7px 20px rgba(90, 64, 48, 0.045);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 左側のアクセント */
.staff-person-future-goals__item::before {
  content: "";

  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;

  width: 3px;

  border-radius: 0 3px 3px 0;

  background: var(--recruit-orange-dark);
}

/* 右下のごく薄い装飾 */
.staff-person-future-goals__item::after {
  content: "";

  position: absolute;
  right: -28px;
  bottom: -32px;

  width: 78px;
  height: 78px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.045);

  pointer-events: none;
}

.staff-person-future-goals__item:hover {
  transform: translateY(-2px);

  border-color: rgba(185, 104, 40, 0.2);

  box-shadow:
    0 10px 24px rgba(90, 64, 48, 0.07);
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-future-goals {
    display: block !important;
  }

  .staff-person-future-goals > .wp-block-column {
    gap: 8px;
  }

  .staff-person-future-goals > .wp-block-column:first-child {
    margin-bottom: 8px;
  }

  .staff-person-future-goals__item {
    min-height: 56px;

    padding: 11px 16px 11px 22px;

    border-radius: 14px;

    font-size: 15px;
  }

  .staff-person-future-goals__item::before {
    top: 11px;
    bottom: 11px;

    width: 3px;
  }
}
/* =========================================================
   1201 FUTURE MESSAGE
   White Base
========================================================= */

.staff-person-future__message {
  position: relative;

  max-width: 820px;
  margin: 36px auto 0;
  padding: 30px 34px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.10);
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffdf9 100%
    );

  box-shadow:
    0 8px 24px rgba(90, 64, 48, 0.045);
}

.staff-person-future__message p {
  position: relative;
  z-index: 1;

  margin-top: 0;
  margin-bottom: 16px;

  color: var(--recruit-text);

  font-size: 16px;
  line-height: 1.9;
}

.staff-person-future__message p:last-child {
  margin-bottom: 0;
}

/* 締めの文章 */
.staff-person-future__closing {
  margin-top: 24px !important;

  color: var(--recruit-brown) !important;

  font-weight: 700;
  line-height: 1.8;
}

/* 右下にごく薄い装飾 */
.staff-person-future__message::after {
  content: "";

  position: absolute;
  right: -50px;
  bottom: -60px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.035);

  pointer-events: none;
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-future__message {
    margin-top: 28px;

    padding: 24px 20px;

    border-radius: 16px;
  }

  .staff-person-future__message p {
    font-size: 15px;
    line-height: 1.85;
  }

  .staff-person-future__closing {
    margin-top: 20px !important;
  }
}
.staff-person-teamwork__point {
  position: relative;
  overflow: hidden;
}

.staff-person-teamwork__point-number {
  position: absolute;
  top: -8px;
  right: 14px;

  margin: 0 !important;

  font-size: 100px !important;
  font-weight: 700;
  line-height: 1 !important;

  color: var(--recruit-orange-dark);
  opacity: 0.08;

  pointer-events: none;
  z-index: 0;
}

.staff-person-teamwork__point-title,
.staff-person-teamwork__point-text {
  position: relative;
  z-index: 1;
}
/* =========================================================
   1201 TEAMWORK MESSAGE
   White Base
========================================================= */

.staff-person-teamwork__message {
  position: relative;

  max-width: 800px;
  margin: 36px auto 0;
  padding: 30px 34px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.10);
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffdf9 100%
    );

  box-shadow:
    0 8px 24px rgba(90, 64, 48, 0.045);
}

.staff-person-teamwork__message p {
  position: relative;
  z-index: 1;

  margin-top: 0;
  margin-bottom: 16px;

  color: var(--recruit-text);

  font-size: 16px;
  line-height: 1.9;
}

.staff-person-teamwork__message p:last-child {
  margin-bottom: 0;
}

/* 締めの文章 */
.staff-person-teamwork__closing {
  margin-top: 24px !important;

  color: var(--recruit-brown) !important;

  font-weight: 700;
  line-height: 1.8;
}

/* 右下のごく薄い装飾 */
.staff-person-teamwork__message::after {
  content: "";

  position: absolute;
  right: -50px;
  bottom: -60px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.035);

  pointer-events: none;
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-teamwork__message {
    margin-top: 28px;

    padding: 24px 20px;

    border-radius: 16px;
  }

  .staff-person-teamwork__message p {
    font-size: 15px;
    line-height: 1.85;
  }

  .staff-person-teamwork__closing {
    margin-top: 20px !important;
  }
}
.staff-person-responsibility-card {
  position: relative;
  overflow: hidden;
}

.staff-person-responsibility-card__number {
  position: absolute;
  top: -8px !important;
  right: 14px;
  z-index: 0;

  margin: 0 !important;

  color: var(--recruit-orange-dark);
  font-size: 100px !important;
  font-weight: 700;
  line-height: 1 !important;

  opacity: 0.08;
  pointer-events: none;
}

.staff-person-responsibility-card__title,
.staff-person-responsibility-card__text {
  position: relative;
  z-index: 1;
}
/* =========================================================
   1201 RESPONSIBILITY
   Section Background
========================================================= */

.staff-person-responsibility__inner {
  position: relative;
  overflow: hidden;

  padding: 36px 28px 40px;
  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      #fffdf9 0%,
      #fbf5ee 55%,
      #f7efe5 100%
    );

  box-shadow:
    0 12px 36px rgba(90, 64, 48, 0.06);
}

/* 背景のやわらかい装飾 */
.staff-person-responsibility__inner::before,
.staff-person-responsibility__inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.staff-person-responsibility__inner::before {
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  background: rgba(217, 138, 58, 0.07);
}

.staff-person-responsibility__inner::after {
  left: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: rgba(185, 104, 40, 0.05);
}

/* 中身を前面に */
.staff-person-responsibility__inner > .wp-block-group,
.staff-person-responsibility__inner .wp-block-columns,
.staff-person-responsibility__message {
  position: relative;
  z-index: 1;
}

/* =========================================================
   RESPONSIBILITY MESSAGE
   White Base
========================================================= */

.staff-person-responsibility__message {
  position: relative;
  overflow: hidden;

  margin: 36px auto 0;
  padding: 30px 34px;

  border: 1px solid rgba(185, 104, 40, 0.10);
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffdf9 100%
    );

  box-shadow:
    0 8px 24px rgba(90, 64, 48, 0.045);
}

.staff-person-responsibility__message p {
  position: relative;
  z-index: 1;

  margin-top: 0;
  margin-bottom: 16px;

  color: var(--recruit-text);
  font-size: 16px;
  line-height: 1.9;
}

.staff-person-responsibility__message p:last-child {
  margin-bottom: 0;
}

.staff-person-responsibility__closing {
  margin-top: 24px !important;
  color: var(--recruit-brown) !important;
  font-weight: 700;
  line-height: 1.8;
}

/* メッセージ右下の薄い装飾 */
.staff-person-responsibility__message::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;

  width: 150px;
  height: 150px;
  border-radius: 50%;

  background: rgba(217, 138, 58, 0.035);
  pointer-events: none;
}

/* =========================================================
   Smartphone
========================================================= */

@media screen and (max-width: 781px) {

  .staff-person-responsibility__inner {
    padding: 24px 16px 28px;
    border-radius: 20px;
  }

  .staff-person-responsibility__inner::before {
    width: 140px;
    height: 140px;
    top: -35px;
    right: -35px;
  }

  .staff-person-responsibility__inner::after {
    width: 120px;
    height: 120px;
    left: -30px;
    bottom: -35px;
  }

  .staff-person-responsibility__message {
    margin-top: 28px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .staff-person-responsibility__message p {
    font-size: 15px;
    line-height: 1.85;
  }

  .staff-person-responsibility__closing {
    margin-top: 20px !important;
  }
}
/* =========================================================
   1201 MESSAGE ACTIONS
========================================================= */

.staff-person-message-actions {
  gap: 18px !important;
  max-width: 960px;
  margin: 0 auto !important;
}

.staff-person-message-actions > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-person-message-actions__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 60px;
  margin: 0 !important;
  padding: 13px 22px 13px 26px;

  overflow: hidden;

  border: 1px solid rgba(185, 104, 40, 0.11);
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffaf5 100%
    );

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;

  box-shadow:
    0 7px 20px rgba(90, 64, 48, 0.045);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* 左側アクセント */
.staff-person-message-actions__item::before {
  content: "";

  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;

  width: 3px;

  border-radius: 0 3px 3px 0;

  background: var(--recruit-orange-dark);
}

/* 右下の薄い装飾 */
.staff-person-message-actions__item::after {
  content: "";

  position: absolute;
  right: -28px;
  bottom: -30px;

  width: 74px;
  height: 74px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.04);

  pointer-events: none;
}

.staff-person-message-actions__item:hover {
  transform: translateY(-2px);

  border-color: rgba(185, 104, 40, 0.20);

  box-shadow:
    0 10px 24px rgba(90, 64, 48, 0.07);
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-message-actions {
    display: block !important;
  }

  .staff-person-message-actions > .wp-block-column {
    gap: 8px;
  }

  .staff-person-message-actions > .wp-block-column:first-child {
    margin-bottom: 8px;
  }

  .staff-person-message-actions__item {
    min-height: 56px;

    padding: 11px 16px 11px 22px;

    border-radius: 14px;

    font-size: 15px;
  }

  .staff-person-message-actions__item::before {
    top: 11px;
    bottom: 11px;
  }
}
/* =========================================================
   1201 MESSAGE BODY
   White Base
========================================================= */

.staff-person-message__body {
  position: relative;
  overflow: hidden;

  max-width: 820px;
  margin: 32px auto 0;
  padding: 28px 32px;

  border: 1px solid rgba(185, 104, 40, 0.10);
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffdf9 100%
    );

  box-shadow:
    0 8px 24px rgba(90, 64, 48, 0.045);
}

.staff-person-message__text {
  position: relative;
  z-index: 1;

  margin: 0 0 16px !important;

  color: var(--recruit-text);

  font-size: 16px;
  line-height: 1.9;
}

.staff-person-message__text:last-child {
  margin-bottom: 0 !important;
}

/* 右下のごく薄い装飾 */
.staff-person-message__body::after {
  content: "";

  position: absolute;
  right: -48px;
  bottom: -58px;

  width: 145px;
  height: 145px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.035);

  pointer-events: none;
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-message__body {
    margin-top: 26px;
    padding: 22px 20px;

    border-radius: 16px;
  }

  .staff-person-message__text {
    font-size: 15px;
    line-height: 1.85;
  }
}
/* =========================================================
   1201 MESSAGE KEYWORDS
   Impact Design
========================================================= */

.staff-person-message-keywords {
  position: relative;
  max-width: 1000px;
  margin: 36px auto 0;
  padding: 34px 32px;

  overflow: hidden;

  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      #5a4030 0%,
      #684936 100%
    );

  box-shadow:
    0 18px 42px rgba(90, 64, 48, 0.14);
}

/* 背景装飾 */
.staff-person-message-keywords::before {
  content: "";

  position: absolute;
  top: -90px;
  right: -70px;

  width: 230px;
  height: 230px;

  border-radius: 50%;

  background: rgba(217, 138, 58, 0.14);

  pointer-events: none;
}

.staff-person-message-keywords::after {
  content: "";

  position: absolute;
  left: -70px;
  bottom: -90px;

  width: 210px;
  height: 210px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  pointer-events: none;
}

.staff-person-message-keywords__grid {
  position: relative;
  z-index: 1;

  gap: 16px !important;
  margin: 0 !important;
}

.staff-person-message-keywords__grid > .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-person-message-keywords__item {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 60px;
  margin: 0 !important;
  padding: 13px 22px 13px 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.94);

  color: var(--recruit-brown);

  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;

  box-shadow:
    0 8px 22px rgba(40, 25, 18, 0.10);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* 左のアクセント */
.staff-person-message-keywords__item::before {
  content: "";

  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;

  width: 4px;

  border-radius: 0 4px 4px 0;

  background: var(--recruit-orange);
}

.staff-person-message-keywords__item:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 26px rgba(40, 25, 18, 0.16);
}

/* Smartphone */
@media screen and (max-width: 781px) {

  .staff-person-message-keywords {
    margin-top: 28px;
    padding: 24px 16px;

    border-radius: 20px;
  }

  .staff-person-message-keywords__grid {
    display: block !important;
  }

  .staff-person-message-keywords__grid > .wp-block-column {
    gap: 8px;
  }

  .staff-person-message-keywords__grid > .wp-block-column:first-child {
    margin-bottom: 8px;
  }

  .staff-person-message-keywords__item {
    min-height: 56px;

    padding: 11px 16px 11px 22px;

    border-radius: 14px;

    font-size: 15px;
  }
}
.staff-person-next-card {
  position: relative;
  overflow: hidden;
}

.staff-person-next-card__number {
  position: absolute;
  top: -8px;
  right: 14px;
  z-index: 0;

  margin: 0 !important;

  color: var(--recruit-orange-dark);
  font-size: 100px !important;
  font-weight: 700;
  line-height: 1 !important;

  opacity: 0.08;

  pointer-events: none;
}

.staff-person-next-card__title,
.staff-person-next-card__text,
.staff-person-next-card__link {
  position: relative;
  z-index: 1;
}
.staff-person-next__entry-label {
  font-size: 16px !important;
}
/* OUR VALUES 見出し → 価値観カード間の余白を縮小 */
.daikon-section-heading + .staff-person-values {
  margin-top: 32px;
}
/* OUR VALUES 見出し → 価値観カード間の余白を縮小 */
.daikon-section-heading + .staff-person-values {
  margin-block-start: 32px !important;
}
/* PEOPLE カード間の余白 */


/* 最後の行だけ下余白なし */


/* スマホ */
@media (max-width: 767px) {
  .staff-person-people__inner > .wp-block-columns {
    gap: 24px;
    margin-bottom: 24px;
  }
}
/* =========================
   PEOPLE カード間の余白
========================= */

/* 各行の横・縦の間隔 */
.staff-person-people__inner > .wp-block-columns {
  gap: 24px;
  margin-bottom: 24px;
}

/* 最後の行だけ下余白なし */
.staff-person-people__inner > .wp-block-columns:last-child {
  margin-bottom: 0;
}

/* スマホ */
@media (max-width: 767px) {

  .staff-person-people__inner > .wp-block-columns {
    gap: 24px;
    margin-bottom: 24px;
  }

  .staff-person-people__inner > .wp-block-columns > .wp-block-column {
    margin: 0 !important;
  }

  .staff-person-people__inner > .wp-block-columns:last-child {
    margin-bottom: 0;
  }
}
/* =========================
   PEOPLE カード間の余白
========================= */

/* PC：横2列 */
.staff-person-people__inner .wp-block-columns {
  gap: 24px !important;
  margin-bottom: 24px !important;
}

/* 最後の行だけ下余白なし */
.staff-person-people__inner .wp-block-columns:last-child {
  margin-bottom: 0 !important;
}

/* スマホ */
@media (max-width: 767px) {

  .staff-person-people__inner .wp-block-columns {
    gap: 0 !important;
    margin-bottom: 0 !important;
  }

  /* すべてのカードの下に24px */
  .staff-person-people__inner .staff-person-person-card {
    margin-bottom: 24px !important;
  }

  /* 最後のカードだけ余白なし */
  .staff-person-people__inner
  .wp-block-columns:last-child
  .wp-block-column:last-child
  .staff-person-person-card {
    margin-bottom: 0 !important;
  }
}
/* 見出し下 → カードエリアの余白を縮小 */
.staff-person-ideas {
  margin-top: 48px !important;
  padding-top: 0 !important;
}
/* =========================
   BETTER
   見出し → 質問カードの余白
========================= */

.daikon-section-heading + .staff-person-better {
  margin-top: 48px !important;
  padding-top: 0 !important;
}

.staff-person-better__inner,
.staff-person-better-questions {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* スマホ */
@media (max-width: 767px) {
  .daikon-section-heading + .staff-person-better {
    margin-top: 32px !important;
  }
}
/* =========================
   TEAMWORK
   見出し → 内容エリアの余白
========================= */

.daikon-section-heading + .staff-person-teamwork {
  margin-top: 40px !important;
  padding-top: 0 !important;
}

/* スマホ */
@media (max-width: 767px) {
  .daikon-section-heading + .staff-person-teamwork {
    margin-top: 28px !important;
  }
}
/* BETTER：質問カード群の上余白 */

/* BETTER：質問カード群の上余白 */
.staff-person-better-questions {
  margin-top: 40px !important;
}

@media (max-width: 767px) {
  .staff-person-better-questions {
    margin-top: 28px !important;
  }
}
/* BETTER：ベージュ背景内の上余白 */
.staff-person-better {
  padding-top: 32px !important;
}
/* =========================
   MESSAGE
   見出し → 内容エリアの余白
========================= */

.daikon-section-heading + .staff-person-message {
  margin-top: 40px !important;
  padding-top: 0 !important;
}

/* スマホ */
@media (max-width: 767px) {
  .daikon-section-heading + .staff-person-message {
    margin-top: 28px !important;
  }
}